/* ==============================================
   ON DEMAND DETAIL — styles.css
   Mobile-first. Breakpoints: 768px, 1280px.
============================================== */

/* -----------------------------------------------
   CUSTOM PROPERTIES
----------------------------------------------- */
:root {
  --bg:        #0A0A0A;
  --surface:   #1C1C1C;
  --accent:    #E8C547;
  --accent-dim: rgba(232, 197, 71, 0.12);
  --accent-glow: rgba(232, 197, 71, 0.2);
  --text:      #F5F5F5;
  --muted:     #9A9A9A;
  --border:    rgba(255, 255, 255, 0.07);

  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Inter', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  --radius:    4px;
  --radius-md: 8px;

  --nav-h: 68px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -----------------------------------------------
   BASE RESET
----------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

/* -----------------------------------------------
   TYPOGRAPHY SCALE
----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  max-width: 60ch;
  line-height: 1.65;
}

/* -----------------------------------------------
   CONTAINER
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* -----------------------------------------------
   BUTTONS
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease-out),
              background 0.2s ease,
              color 0.2s ease,
              box-shadow 0.2s ease;
  cursor: pointer;
  min-height: 48px;
  min-width: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0d050;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(245, 245, 245, 0.3);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg);
  color: var(--accent);
  border: 2px solid var(--bg);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: rgba(10, 10, 10, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 20px;
  margin-top: var(--space-xs);
}

/* Focus visible for keyboard nav */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* -----------------------------------------------
   SECTION INTROS
----------------------------------------------- */
.section-intro {
  margin-bottom: var(--space-lg);
}

.section-intro--center {
  text-align: center;
}

.section-intro--center p {
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  display: block;
  max-width: none;
}

.section-intro h2 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 0.95;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}

/* -----------------------------------------------
   NAVIGATION
----------------------------------------------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#nav.is-scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-md);
  max-width: 1240px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 15px;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 var(--space-lg);
  }

  .nav-logo {
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .nav-links {
    display: flex;
  }
}

/* -----------------------------------------------
   HERO
----------------------------------------------- */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*
    BACKGROUND IMAGE:
    When adding a real photo, replace the gradient below with:
    background-image: url('../images/hero-detail.jpg');
    background-size: cover;
    background-position: center 30%;
  */
  background: radial-gradient(ellipse at 60% 40%, #1a1a1a 0%, #0D0D0D 50%, #0A0A0A 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*
    Keeps readability when background image is added.
    Adjust opacity as needed with real photo.
  */
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.6) 60%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Large decorative watermark */
.hero-deco {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 28vw, 420px);
  color: rgba(232, 197, 71, 0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--nav-h) + 40px) var(--space-md) var(--space-xl);
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: block;
  max-width: none;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  font-size: clamp(50px, 13vw, 148px);
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.hero-line {
  display: block;
}

.hero-line--accent {
  color: var(--accent);
}

.hero-rule {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: var(--space-md) 0;
  transform-origin: left center;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  margin-bottom: var(--space-lg);
  max-width: 44ch;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.hero-scroll:hover {
  opacity: 0.8;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--text);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (min-width: 768px) {
  .hero-content {
    padding: calc(var(--nav-h) + 60px) var(--space-lg) var(--space-2xl);
  }
}

/* -----------------------------------------------
   TRUST BAR
----------------------------------------------- */
#trust {
  background: var(--surface);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-sm);
  max-width: 1240px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  justify-content: center;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  #trust {
    padding: var(--space-lg) var(--space-lg);
  }

  .trust-list {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
  }

  .trust-item {
    font-size: 16px;
    letter-spacing: 0.08em;
    gap: 10px;
  }
}

/* -----------------------------------------------
   SERVICES
----------------------------------------------- */
#services {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  #services {
    padding: var(--space-2xl) 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--surface);
  padding: 20px 16px;
  transition: background 0.25s ease;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
  background: #222222;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-num {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(232, 197, 71, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.service-card:hover .service-num {
  color: rgba(232, 197, 71, 0.1);
}

.service-icon {
  margin-bottom: var(--space-md);
  display: flex;
}

.service-name {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.04em;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28ch;
}

/* -----------------------------------------------
   HOW IT WORKS
----------------------------------------------- */
#how-it-works {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

@media (min-width: 768px) {
  #how-it-works {
    padding: var(--space-2xl) 0;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-sm);
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 96px);
  color: var(--accent);
  line-height: 1;
  display: block;
  opacity: 0.9;
}

.step-content h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--text);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.03em;
}

.step-content p {
  color: var(--muted);
  font-size: 16px;
  max-width: 42ch;
}

.step-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-left: 30px;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
  }

  .step {
    flex: 1;
    padding: 0 var(--space-lg) 0 0;
  }

  .step:last-child {
    padding-right: 0;
  }

  .step-divider {
    width: 40px;
    height: 1px;
    margin: 56px 0 0 0;
    flex-shrink: 0;
    align-self: flex-start;
  }
}

/* -----------------------------------------------
   WHY US
----------------------------------------------- */
#why-us {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  #why-us {
    padding: var(--space-2xl) 0;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.why-item {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.why-icon {
  margin-bottom: var(--space-md);
  display: flex;
}

.why-item h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.why-item p {
  color: var(--muted);
  font-size: 16px;
  max-width: 38ch;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

/* -----------------------------------------------
   CTA BANNER
----------------------------------------------- */
.cta-banner {
  background: var(--accent);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 64px);
  color: #0A0A0A;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  max-width: none;
}

.cta-banner-sub {
  font-size: 16px;
  color: rgba(10, 10, 10, 0.65);
  margin-top: -8px;
  max-width: none;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: var(--space-2xl) var(--space-lg);
  }
}

/* -----------------------------------------------
   SHOWCASE
----------------------------------------------- */
#showcase {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

@media (min-width: 768px) {
  #showcase {
    padding: var(--space-2xl) 0;
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 4px;
}

.showcase-tile {
  background: var(--surface);
  min-height: 180px;
  overflow: hidden;
}

.showcase-tile--tall {
  grid-row: span 2;
  min-height: 364px;
}

.showcase-tile--wide {
  grid-column: span 2;
}

/*
  When adding real photos:
  .showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease-out);
  }
  .showcase-tile:hover img {
    transform: scale(1.04);
  }
*/

.showcase-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  background: linear-gradient(
    135deg,
    #181818 0%,
    #1C1C1C 50%,
    #161616 100%
  );
  position: relative;
  overflow: hidden;
}

.showcase-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 197, 71, 0.03) 0%,
    transparent 60%
  );
}

.showcase-placeholder span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Reset mobile spans — uniform 3×2 grid for placeholders.
     When real photos are added, restore span classes for art direction. */
  .showcase-tile {
    min-height: 240px;
  }

  .showcase-tile--tall {
    grid-row: auto;
    min-height: 240px;
  }

  .showcase-tile--wide {
    grid-column: auto;
  }
}

/* -----------------------------------------------
   CONTACT
----------------------------------------------- */
#contact {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

@media (min-width: 768px) {
  #contact {
    padding: var(--space-2xl) 0;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.contact-info .section-label {
  display: block;
  margin-bottom: var(--space-xs);
}

.contact-info h2 {
  font-size: clamp(30px, 5vw, 60px);
  margin-bottom: var(--space-md);
}

.contact-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: var(--space-lg);
}

.phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #f0d050;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  margin-bottom: var(--space-lg);
  min-height: 44px;
}

.ig-link:hover {
  color: var(--text);
}

.service-area-note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  max-width: none;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-optional {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-family: var(--font-body);
  color: var(--muted);
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 154, 154, 0.5);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(232, 197, 71, 0.04);
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
  max-width: none;
}

.footer-location {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
  max-width: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-legal {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-legal p {
  font-size: 13px;
  color: var(--muted);
  max-width: none;
}

.footer-credit {
  color: rgba(154, 154, 154, 0.6);
}

.footer-credit a {
  color: rgba(232, 197, 71, 0.6);
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
    flex-wrap: wrap;
  }

  .footer-legal {
    border-top: none;
    padding-top: 0;
    text-align: right;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav a {
    min-height: auto;
  }
}

/* -----------------------------------------------
   ANIMATION INITIAL STATES
   Elements hidden before JS-controlled reveals.
   GSAP/animejs override these on load/scroll.
----------------------------------------------- */
.hero-tag,
.hero-line,
.hero-rule,
.hero-sub,
.hero-ctas .btn,
.hero-scroll {
  opacity: 0;
}

/* -----------------------------------------------
   REDUCED MOTION SUPPORT
----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-tag,
  .hero-line,
  .hero-rule,
  .hero-sub,
  .hero-ctas .btn,
  .hero-scroll,
  .service-card,
  .step,
  .why-item,
  .trust-item,
  .showcase-tile {
    opacity: 1 !important;
    transform: none !important;
  }
}
