    /* ═══════════════════════════
       SUB-PAGE TOP SPACING
       (pages that open without a hero, so first
        section clears the fixed nav with breathing room)
    ═══════════════════════════ */
    .page-top { padding-top: 160px; }
    @media (max-width: 900px) { .page-top { padding-top: 120px; } }

    /* ═══════════════════════════
       TOKENS
    ═══════════════════════════ */
    :root {
      --ivory:        #faf8f4;
      --stone:        #f0ebe2;
      --chalk:        #ffffff;
      --charcoal:     #1c1917;
      --charcoal-soft:#44403c;
      --orange:       #c8652f;
      --orange-dark:  #b55828;
      --orange-pale:  rgba(200,101,47,0.08);
      --blue:         #8db8c0;
      --blue-pale:    #ddeaed;
      --text:         #3d3733;
      --text-muted:   #574f49;
      --text-light:   #a8a29e;
      --border:       #e8e2d9;
      --border-light: #f0ebe3;
    }

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

    html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      color: var(--text);
      background: var(--chalk);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ═══════════════════════════
       SCROLL REVEAL
    ═══════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible        { opacity: 1; transform: translateY(0); }
    .reveal-delay-1        { transition-delay: 0.12s; }
    .reveal-delay-2        { transition-delay: 0.24s; }
    .reveal-delay-3        { transition-delay: 0.36s; }

    /* ═══════════════════════════
       NAV
    ═══════════════════════════ */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      background: var(--ivory);
      transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    }

    .site-nav.scrolled {
      height: 64px;
      background: rgba(250,248,244,0.93);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.07);
    }

    .nav-logo-link { display: block; line-height: 0; flex-shrink: 0; }
    .nav-logo-link img {
      height: 52px; width: auto; display: block;
      transition: opacity 0.2s;
    }
    .nav-logo-link:hover img { opacity: 0.8; }

    .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }

    .nav-links a {
      color: var(--charcoal-soft);
      text-decoration: none;
      font-size: 0.76rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--orange); }

    .nav-cta {
      background: var(--orange) !important;
      color: var(--chalk) !important;
      padding: 0.55rem 1.4rem !important;
      border-radius: 2px;
    }
    .nav-cta:hover { background: var(--orange-dark) !important; }

    /* ─ Mobile hamburger ─ */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px; height: 32px;
      background: none; border: none;
      cursor: pointer; padding: 0;
      z-index: 210;
    }
    .nav-toggle span {
      display: block;
      width: 100%; height: 1.5px;
      background: var(--charcoal);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: var(--ivory);
      padding: 96px 8% 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
      z-index: 199;
      transform: translateY(-100%);
      opacity: 0;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
      pointer-events: none;
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--charcoal);
      text-decoration: none;
      border-bottom: 1px solid var(--border-light);
      padding-bottom: 1.25rem;
    }
    .mobile-menu a.nav-cta {
      color: var(--orange) !important;
      background: none !important;
      border-bottom: 1px solid var(--border-light);
      padding: 0 0 1.25rem 0 !important;
    }

    /* ═══════════════════════════
       HERO
    ═══════════════════════════ */
    #hero {
      min-height: 100vh;
      background: var(--ivory);
      display: flex;
      align-items: center;
      padding: 96px 5% 48px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-circle {
      position: absolute;
      top: -8%; right: -4%;
      width: 52vmin; height: 52vmin;
      background: var(--blue-pale);
      border-radius: 50%;
      pointer-events: none;
      will-change: transform;
    }

    .hero-accent-line {
      position: absolute;
      bottom: 0; left: 0;
      width: 38%; height: 1px;
      background: linear-gradient(90deg, var(--orange), transparent);
    }

    .hero-inner {
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 5rem;
      align-items: center;
      position: relative;
    }

    .hero-lead { display: flex; flex-direction: column; align-items: flex-start; }
    .hero-logo {
      width: min(360px, 82%);
      height: auto; display: block;
      margin-bottom: 1.85rem;
    }

    .hero-eyebrow {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.75rem;
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.2vw, 3rem);
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.1;
      margin-bottom: 1rem;
      will-change: transform;
    }
    .hero-headline em { font-style: italic; color: var(--orange); }

    .hero-sub {
      font-size: 0.96rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 1.5rem;
      max-width: 420px;
    }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* ─ Buttons ─ */
    .btn-primary {
      background: var(--orange);
      color: var(--chalk);
      padding: 0.9rem 2.25rem;
      border: none; border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      cursor: pointer; text-decoration: none; display: inline-block;
      transition: background 0.25s ease, transform 0.2s ease;
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

    .btn-ghost {
      background: transparent;
      color: var(--charcoal);
      padding: 0.9rem 2.25rem;
      border: 1px solid rgba(28,25,23,0.22);
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none; display: inline-block;
      transition: border-color 0.25s, color 0.25s, transform 0.2s;
    }
    .btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

    /* ─ Hero stat cards ─ */
    .hero-stats { display: flex; flex-direction: column; gap: 1.25rem; }

    .stat-card {
      background: var(--chalk);
      border: 1px solid var(--border);
      padding: 1.5rem 1.75rem;
      border-radius: 2px;
      position: relative; overflow: hidden;
      transition: box-shadow 0.3s ease;
    }
    .stat-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0; width: 3px;
      background: var(--orange);
      transform: scaleY(0.35);
      transform-origin: center;
      transition: transform 0.35s ease;
    }
    .stat-card:hover::before  { transform: scaleY(1); }
    .stat-card:hover          { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

    .stat-card p              { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
    .stat-card p strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 0.3rem;
    }

    /* ═══════════════════════════
       SECTION SHARED
    ═══════════════════════════ */
    section { padding: 120px 5%; }
    .section-inner { max-width: 1240px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      font-size: 0.66rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 0.85rem;
    }

    .section-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 600; color: var(--charcoal);
      line-height: 1.15; margin-bottom: 0.85rem;
    }

    .section-lead {
      font-size: 0.98rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.85;
      max-width: 560px;
    }

    .rule {
      width: 36px; height: 1px;
      background: var(--orange); opacity: 0.55;
      margin: 1.25rem 0 1.75rem;
    }

    /* ═══════════════════════════
       ABOUT
    ═══════════════════════════ */
    #about { background: var(--ivory); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: start;
      margin-top: 3.5rem;
    }

    .about-text p {
      font-size: 0.96rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.9;
      margin-bottom: 1.25rem;
    }
    .about-text p:last-child { margin-bottom: 0; }

    .about-quote {
      background: var(--chalk);
      border: 1px solid var(--border-light);
      padding: 3rem;
      position: relative; overflow: hidden;
    }
    .about-quote::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem; line-height: 0.8;
      color: var(--orange); opacity: 0.18;
      position: absolute; top: 1.75rem; left: 2.5rem;
      pointer-events: none;
    }
    .about-quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 400;
      line-height: 1.65; color: var(--charcoal);
      font-style: italic;
      position: relative; z-index: 1;
      margin-bottom: 1.5rem;
    }
    .about-quote cite {
      font-family: 'DM Sans', sans-serif;
      font-style: normal; font-size: 0.7rem; font-weight: 500;
      color: var(--orange); letter-spacing: 0.15em; text-transform: uppercase;
    }

    /* ═══════════════════════════
       SERVICES
    ═══════════════════════════ */
    #services { background: var(--chalk); }

    .services-header { max-width: 540px; margin-bottom: 5rem; }

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

    .service-card {
      background: var(--chalk);
      padding: 3rem 2.5rem;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: var(--orange);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(0,0,0,0.08); z-index: 1; }
    .service-card:hover::after { transform: scaleX(1); }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.82rem; font-weight: 400;
      color: var(--text-light); letter-spacing: 0.06em;
      margin-bottom: 1.75rem;
    }

    .service-icon {
      width: 62px; height: 62px;
      background: var(--blue-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.75rem; flex-shrink: 0;
      box-shadow: 0 12px 24px -8px rgba(141,184,192,0.55),
                  inset 0 0 0 1px rgba(141,184,192,0.35);
      transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    }
    .service-card:hover .service-icon {
      background: #cfe2e7;
      box-shadow: 0 16px 30px -8px rgba(141,184,192,0.7),
                  inset 0 0 0 1px rgba(141,184,192,0.5);
      transform: translateY(-2px);
    }
    .service-icon svg {
      width: 26px; height: 26px;
      stroke: var(--orange); fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.2;
    }
    .service-card > p {
      font-size: 0.88rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem;
    }

    .service-list {
      list-style: none; margin-top: auto;
      padding-top: 1.75rem; border-top: 1px solid var(--border-light);
    }
    .service-list li {
      font-size: 0.82rem; font-weight: 300;
      color: var(--text-muted);
      padding: 0.4rem 0 0.4rem 1.2rem;
      position: relative; line-height: 1.5;
    }
    .service-list li::before {
      content: '';
      position: absolute; left: 0; top: 50%;
      transform: translateY(-50%);
      width: 4px; height: 4px;
      background: var(--orange); border-radius: 50%; opacity: 0.65;
    }

    /* ═══════════════════════════
       FLEXIBLE SUPPORT
    ═══════════════════════════ */
    #flexible { background: var(--ivory); }

    #flexible .section-heading { max-width: 680px; }

    .flexible-modes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border-light);
      border: 1px solid var(--border-light);
      margin-top: 4rem;
      margin-bottom: 4rem;
    }

    .flexible-mode {
      background: var(--chalk);
      padding: 2.75rem 2.5rem;
      position: relative;
      transition: background 0.3s ease;
    }
    .flexible-mode:hover { background: var(--ivory); }

    .flexible-mode-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.78rem;
      color: var(--text-light);
      letter-spacing: 0.06em;
      display: block;
      margin-bottom: 1.25rem;
    }

    .flexible-mode h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.25;
      margin-bottom: 0.75rem;
    }

    .flexible-mode p {
      font-size: 0.86rem;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .flexible-mode::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: var(--orange);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .flexible-mode:hover::before { transform: scaleX(1); }

    .flexible-cta {
      text-align: center;
      padding-top: 1rem;
    }

    .flexible-cta-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 2vw, 1.55rem);
      font-weight: 400;
      font-style: italic;
      color: var(--charcoal);
      max-width: 680px;
      margin: 0 auto 2.25rem;
      line-height: 1.6;
    }

    /* ═══════════════════════════
       HOW IT WORKS
    ═══════════════════════════ */
    #how { background: var(--blue-pale); }

    .steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 3rem; margin-top: 5rem;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 21px;
      left: calc(12.5% + 21px);
      right: calc(12.5% + 21px);
      height: 1px; background: var(--orange); opacity: 0.18;
    }

    .step { text-align: center; }

    .step-num {
      width: 42px; height: 42px;
      border: 1px solid var(--orange);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; font-weight: 500; color: var(--orange);
      position: relative; z-index: 1;
      background: var(--blue-pale);
      transition: background 0.3s ease, color 0.3s ease;
    }
    .step:hover .step-num { background: var(--orange); color: var(--chalk); }

    .step h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.6rem;
    }
    .step p { font-size: 0.84rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

    /* ═══════════════════════════
       WHO WE SERVE
    ═══════════════════════════ */
    #who { background: var(--chalk); }

    .who-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border-light);
      border: 1px solid var(--border-light);
      margin-top: 4rem;
    }

    .who-card {
      background: var(--chalk);
      padding: 2.75rem;
      transition: background 0.3s ease;
    }
    .who-card:hover { background: var(--ivory); }

    .who-card-num {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.78rem; color: var(--text-light);
      margin-bottom: 1rem; letter-spacing: 0.06em;
    }
    .who-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600;
      color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.3;
    }
    .who-card p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

    /* ═══════════════════════════
       MEET THE TEAM
    ═══════════════════════════ */
    #team { background: var(--ivory); }

    .team-list {
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--border-light);
      border: 1px solid var(--border-light);
      margin-top: 4rem;
    }

    .team-member {
      background: var(--chalk);
      display: grid;
      grid-template-columns: 250px 1fr;
      gap: 3rem;
      padding: 3rem;
      position: relative;
      transition: background 0.3s ease;
    }
    .team-member:hover { background: var(--ivory); }

    .team-aside {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .team-photo {
      width: 185px; height: 185px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--chalk);
      box-shadow: 0 6px 24px rgba(0,0,0,0.1),
                  0 0 0 1px var(--border);
      margin-bottom: 1.5rem;
      flex-shrink: 0;
      transition: box-shadow 0.35s ease, transform 0.35s ease;
    }
    .team-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .team-photo--zoom img {
      transform: scale(1.16);
      transform-origin: center bottom;
    }
    .team-member:hover .team-photo {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.14),
                  0 0 0 1px rgba(200,101,47,0.35);
    }

    .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 600;
      color: var(--charcoal); line-height: 1.2;
      margin-bottom: 0.4rem;
    }

    .team-role {
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--orange);
    }

    .team-tagline {
      margin-top: 0.85rem;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.08rem;
      line-height: 1.4;
      color: var(--charcoal-soft);
    }

    .team-bio p {
      font-size: 0.92rem; font-weight: 400;
      color: var(--text-muted); line-height: 1.85;
      margin-bottom: 1rem;
    }
    .team-bio p:last-child { margin-bottom: 0; }

    .team-bio .team-lead {
      font-size: 1.05rem; font-weight: 600;
      color: var(--charcoal); line-height: 1.6;
      margin-bottom: 1.1rem;
    }

    /* ═══════════════════════════
       CONTACT
    ═══════════════════════════ */
    #contact { background: var(--ivory); }

    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.5fr;
      gap: 7rem; margin-top: 4rem; align-items: start;
    }

    .contact-info p {
      font-size: 0.95rem; font-weight: 300;
      color: var(--text-muted); line-height: 1.9; margin-bottom: 2.5rem;
    }
    .contact-detail {
      display: flex; align-items: center;
      gap: 0.85rem; margin-bottom: 1.1rem;
      font-size: 0.88rem; color: var(--text-muted);
    }
    .contact-detail svg {
      width: 15px; height: 15px;
      stroke: var(--orange); fill: none;
      stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0; opacity: 0.8;
    }

    .contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .form-group { display: flex; flex-direction: column; gap: 0.5rem; }

    .form-group label {
      font-size: 0.66rem; font-weight: 500;
      color: var(--charcoal); letter-spacing: 0.15em; text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      border: none;
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      padding: 0.75rem 0;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem; font-weight: 300;
      color: var(--charcoal); background: transparent;
      transition: border-color 0.25s; outline: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--orange); }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--text-light); }
    .form-group textarea { resize: none; min-height: 100px; }

    .form-submit {
      background: var(--charcoal); color: var(--chalk);
      border: none; padding: 1rem 2.5rem; border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.76rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.2s ease;
      align-self: flex-start; margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--orange); transform: translateY(-2px); }

    /* ═══════════════════════════
       FOOTER
    ═══════════════════════════ */
    footer {
      background: var(--ivory);
      border-top: 1px solid var(--border-light);
      padding: 0.5rem 0 0 0;
      overflow: hidden;
    }

    .footer-inner {
      max-width: 1240px; margin: 0 auto;
      display: grid; grid-template-columns: auto 1fr;
      align-items: end; padding: 0 5% 0 0;
    }

    .footer-logo-wrap { display: block; line-height: 0; }
    .footer-logo-wrap img {
      display: block; height: 160px; width: auto;
      margin-bottom: -4px;
    }

    .footer-right {
      display: flex; flex-direction: column;
      align-items: flex-end; padding-bottom: 1.5rem; gap: 0.9rem;
    }

    .footer-brand { display: flex; align-items: center; gap: 1.85rem; }
    .footer-bas { height: 96px; width: auto; display: block; }

    .footer-nav { display: flex; gap: 2rem; }
    .footer-nav a {
      font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-light); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--orange); }

    .footer-copy { font-size: 0.74rem; color: var(--text-light); }

    /* ═══════════════════════════
       RESPONSIVE
    ═══════════════════════════ */
    @media (max-width: 900px) {
      section { padding: 80px 5%; }
      #flexible { padding: 80px 5%; }
      .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
      .hero-stats { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr; }
      .flexible-modes { grid-template-columns: 1fr; }
      .team-member { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem; }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .who-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .footer-inner { grid-template-columns: 1fr; padding: 0; }
      .footer-logo-wrap img { height: 120px; }
      .footer-right { align-items: flex-start; padding: 1.5rem 5%; }
    }

    @media (max-width: 600px) {
      #hero { padding: 80px 5% 50px; }
      .hero-actions { flex-direction: column; }
      .hero-actions a { text-align: center; }
      .steps { grid-template-columns: 1fr; }
      .who-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

  
