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

  :root {
    --cream:    #F1E8F4;
    --cream-dk: #EDE5D8;
    --sage:     #8A9E82;
    --sage-lt:  #D6DAB5;
    --sage-dk:  #4A573C;
    --terra:    #4A573C;
    --terra-lt: #D6DAB5;
    --terra-dk: #7A4C2F;
    --olive:     #6B7A4E;
    --olive-lt:  #A8B480;
    --charcoal: #49272F;
    --warm-wh:  #FDFAF6;
    --serif: 'AESTHICA', Georgia, serif;
    --sans:  'Zalando Sans Expanded', sans-serif;
    --nav-h: 76px;
  }




@font-face {
    font-family: 'AESTHICA';
    src: url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/AESTHICA.woff2') format('woff2'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/AESTHICA.woff') format('woff'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/AESTHICA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Zalando Sans Expanded';
    src: url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/ZalandoSansExpanded-Regular.woff2') format('woff2'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/ZalandoSansExpanded-Regular.woff') format('woff'),
        url('https://51290022.fs1.hubspotusercontent-na1.net/hubfs/51290022/ZalandoSansExpanded-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
  }


 /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4rem;
    background: rgba(74,87,60,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--terra);
  }
  .nav-logo {
    font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
    letter-spacing: .1em; color: var(--charcoal); text-decoration: none;
    display: flex; align-items: center; gap: .7rem;
    position: relative; z-index: 160;
  }
  .nav-logo-mark {
    width: 30px; height: 30px; border: 1px solid var(--terra-lt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: .75rem; color: var(--terra-dk); font-style: italic;
    flex-shrink: 0;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--sans); font-size: .72rem; font-weight: 300;
    letter-spacing: .18em; text-transform: uppercase;
    text-decoration: none; color: var(--cream); transition: color .3s;
  }
   .nav-links a:hover { color: var(--terra-lt); !important; font-style:italic; }
   .nav-cta {
    font-family: var(--sans); font-size: .7rem; font-weight: 300;
    letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
    border: 1px solid rgba(255,255,255,.6); color: rgba(255,255,255,.9);
    padding: .55rem 1.4rem; transition: all .3s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--terra-lt); border-color: var(--terra-lt); color: var(--olive) !important; }

  /* Hamburger */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px; z-index: 160; position: relative;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--charcoal); transition: all .3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--warm-wh) !important; }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--warm-wh) !important; }

  /* Mobile Drawer */
  .nav-drawer {
    position: fixed; inset: 0; z-index: 150; background: var(--charcoal);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2.2rem;
    opacity: 0; pointer-events: none; transition: opacity .35s ease;
  }
  .nav-drawer.open { opacity: 1; pointer-events: all; }
  .nav-drawer a {
    font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
    font-style: italic; color: var(--warm-wh); text-decoration: none;
    letter-spacing: .06em; transition: color .3s;
  }
  .nav-drawer a:hover { color: var(--terra-lt); }
  .nav-drawer .drawer-cta {
    margin-top: .8rem; font-family: var(--sans); font-size: .72rem;
    letter-spacing: .24em; text-transform: uppercase; font-style: normal;
    border: 1px solid rgba(255,255,255,.3); padding: .85rem 2.5rem; color: var(--warm-wh);
  }

  /* ══════════════════════════════════════════
     SECTION 1 — HERO
  ══════════════════════════════════════════ */
  .page-hero {
    padding-top: var(--nav-h);
    min-height: 68vh;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    background: var(--charcoal);
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1490750967868-88df5691cc37?w=1600&q=75');
    background-size: cover; background-position: center 35%;
    opacity: .15;
    animation: slowZoom 16s ease-out forwards;
  }
  @keyframes slowZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }

  /* Diagonal color wash overlay */
  .page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      130deg,
      rgba(73,39,47,.75) 0%,
      rgba(74,87,60,.35) 60%,
      rgba(73,39,47,.5) 100%
    );
  }

  /* Decorative circle */
  .hero-circle {
    position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
    width: clamp(220px, 28vw, 420px); height: clamp(220px, 28vw, 420px);
    border: 1px solid rgba(214,218,181,.12); border-radius: 50%;
    pointer-events: none;
  }
  .hero-circle::before {
    content: ''; position: absolute; inset: 18px;
    border: 1px solid rgba(214,218,181,.07); border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
  }
  .hero-circle::after {
    content: ''; position: absolute; inset: 40px;
    border: 1px solid rgba(214,218,181,.04); border-radius: 50%;
  }
  @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* Watermark background text */
  .hero-wm {
    position: absolute; pointer-events: none; user-select: none;
    font-family: var(--serif); font-weight: 300; letter-spacing: .06em;
    bottom: -1.5rem; left: -1rem;
    font-size: clamp(6rem, 14vw, 16rem); font-style: italic; line-height: 1;
    color: rgba(214,218,181,.04); white-space: nowrap; z-index: 0;
  }

  .page-hero-content {
    position: relative; z-index: 2;
    padding: 4rem 4rem 4rem;
    max-width: 860px;
  }
  .hero-eyebrow {
    font-family: var(--sans); font-size: .6rem; font-weight: 300;
    letter-spacing: .38em; text-transform: uppercase;
    color: var(--sage-lt); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: .8rem;
    opacity: 0; animation: fadeUp .8s .15s ease forwards;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--sage-lt); }
  .page-hero-content h1 {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 300;
    line-height: 1.06; color: var(--cream); margin-bottom: 2rem;
    opacity: 0; animation: fadeUp .9s .3s ease forwards;
  }
  .page-hero-content h1 strong {
    font-style: normal; font-weight: 300; color: var(--sage-lt);
  }
  .hero-lead {
    font-family: var(--sans); font-size: .85rem; font-weight: 300;
    line-height: 1.9; letter-spacing: .04em;
    color: var(--cream); max-width: 480px;
    opacity: 0; animation: fadeUp .9s .45s ease forwards;
  }

  /* Vertical side label */
  .hero-side-label {
    position: absolute; right: 3.5rem; bottom: 3rem; z-index: 2;
    writing-mode: vertical-rl;
    font-family: var(--sans); font-size: .55rem; font-weight: 300;
    letter-spacing: .3em; text-transform: uppercase;
    color: rgba(253,250,246,.22);
    display: flex; align-items: center; gap: .6rem;
  }
  .hero-side-label::after { content: ''; display: block; width: 1px; height: 50px; background: rgba(253,250,246,.14); }

  /* Scroll hint */
  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 4rem; z-index: 2;
    display: flex; align-items: center; gap: .8rem;
    font-family: var(--sans); font-size: .58rem; font-weight: 300;
    letter-spacing: .26em; text-transform: uppercase;
    color: rgba(253,250,246,.28);
    opacity: 0; animation: fadeUp .8s .7s ease forwards;
  }
  .hero-scroll-line {
    width: 36px; height: 1px; background: rgba(253,250,246,.2);
    position: relative; overflow: hidden;
  }
  .hero-scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--sage-lt);
    animation: scanLine 2.5s ease-in-out 1.2s infinite;
  }
  @keyframes scanLine { 0% { left: -100%; } 100% { left: 100%; } }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

  /* ══════════════════════════════════════════
     MARQUEE BAND
  ══════════════════════════════════════════ */
  .band {
    background: var(--sage-dk); overflow: hidden; padding: .9rem 0; display: flex;
  }
  .band-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
  .band-item {
    font-family: var(--serif); font-style: italic;
    font-size: .9rem; color: var(--sage-lt); padding: 0 2.5rem; letter-spacing: .06em;
  }
  .band-sep { color: rgba(214,218,181,.45); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ══════════════════════════════════════════
     SECTION 2 — CERTIFICATIONS
  ══════════════════════════════════════════ */
  .certifications {
    padding: 5.5rem 4rem;
    background: var(--warm-wh);
    position: relative; overflow: hidden;
  }
  /* Subtle diagonal line decoration */
  .certifications::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(214,218,181,.6), transparent);
  }
  .certifications::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(214,218,181,.6), transparent);
  }

  .cert-wm {
    position: absolute; pointer-events: none; user-select: none;
    font-family: var(--serif); font-weight: 300;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: clamp(4rem, 9vw, 9rem); font-style: italic; line-height: 1;
    color: rgba(74,87,60,.04); white-space: nowrap; letter-spacing: .1em;
  }

  .cert-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 3.5rem;
    position: relative; z-index: 1;
  }
  .cert-header { text-align: center; }
  .section-eyebrow {
    font-family: var(--sans); font-size: .6rem; font-weight: 300;
    letter-spacing: .3em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: .8rem;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--sage); }
  .section-eyebrow.center { justify-content: center; }
  .section-eyebrow.center::before { display: none; }

  .cert-header h2 {
    font-family: var(--serif); font-size: clamp(2rem,3.2vw,3rem);
    font-weight: 300; color: var(--charcoal); line-height: 1.1;
  }
  .cert-header h2 em { font-style: italic; color: var(--terra); }
  .cert-header p {
    font-size: .8rem; color: var(--terra); margin-top: .9rem;
    line-height: 1.85; max-width: 420px; margin-inline: auto; letter-spacing: .03em;
  }

  /* Logos row */
  .cert-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap;
  }
  .cert-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: .9rem;
    opacity: 1; transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
  }


.cert-logo-item img{width:100%; height: auto;}
  .cert-logo-item.visible { opacity: 1; transform: translateY(0); }
  .cert-logo-item:nth-child(2) { transition-delay: .1s; }
  .cert-logo-item:nth-child(3) { transition-delay: .2s; }
  .cert-logo-item:nth-child(4) { transition-delay: .3s; }
  .cert-logo-item:nth-child(5) { transition-delay: .4s; }

  .cert-logo-box {
    width: 88px; height: 88px;
    border: 1px solid rgba(74,87,60,.18); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    transition: border-color .3s, transform .3s;
  }
  .cert-logo-item:hover .cert-logo-box {
    border-color: var(--sage); transform: translateY(-3px);
  }
  .cert-logo-box svg { width: 40px; height: 40px; }
  .cert-logo-name {
    font-family: var(--sans); font-size: .8rem; font-weight: 400;
    letter-spacing: .2em;
    color: var(--terra); text-align: center;
  }

  /* Divider line between cert logos */
  .cert-divider {
    width: 1px; height: 52px; background: rgba(74,87,60,.12);
    flex-shrink: 0;
  }

  /* ══════════════════════════════════════════
     SECTION 3 — CONTACT SPLIT
  ══════════════════════════════════════════ */
  .contact-section {
    background: var(--cream);
    position: relative; overflow: hidden;
  }

  /* Watermark */
  .contact-wm {
    position: absolute; pointer-events: none; user-select: none;
    font-family: var(--serif); font-weight: 300;
    bottom: -2rem; left: -2rem;
    font-size: clamp(6rem, 12vw, 13rem); font-style: italic; line-height: 1;
    color: rgba(74,87,60,.04); white-space: nowrap; letter-spacing: .06em;
  }

  /* Vertical decorative label */
  .contact-side-label {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: var(--sans); font-size: .52rem; font-weight: 300;
    letter-spacing: .3em; text-transform: uppercase;
    color: rgba(74,87,60,.18); z-index: 1;
    display: flex; align-items: center; gap: .6rem;
  }
  .contact-side-label::before { content: ''; display: block; width: 1px; height: 44px; background: rgba(74,87,60,.12); }

  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
  }

  /* LEFT — content */
  .contact-content {
    padding: 7rem 5rem 7rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid rgba(214,218,181,.45);
  }
  .contact-content h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300; line-height: 1.1; color: var(--charcoal); margin-bottom: 1.8rem;
  }
  .contact-content h2 em { font-style: italic; color: var(--terra); }
  .contact-content .lead {
    font-size: .85rem; line-height: 1.95; color: #5e574f;
    margin-bottom: 3rem; max-width: 400px;
  }

  /* Info blocks */
  .contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
  .contact-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
  .contact-info-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border: 1px solid rgba(74,87,60,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: .1rem;
  }
  .contact-info-icon svg { width: 16px; height: 16px; stroke: var(--terra); fill: none; stroke-width: 1.5; }
  .contact-info-text {}
  .contact-info-label {
    font-family: var(--sans); font-size: .7rem; font-weight: 300;
    letter-spacing: .24em; text-transform: uppercase;
    color: var(--sage); margin-bottom: .3rem;
  }
  .contact-info-value {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 300;
    color: var(--charcoal); line-height: 1.4;
  }
  .contact-info-value a { color: inherit; text-decoration: none; transition: color .3s; }
  .contact-info-value a:hover { color: var(--terra); }

  /* Social row */
  .contact-social { display: flex; gap: .7rem; margin-top: 2.8rem; }
  .soc-btn {
    width: 36px; height: 36px;
    border: 1px solid var(--terra);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans); font-size: .6rem; font-weight: 300;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    background: var(--terra);color: var(--warm-wh);
  }
  .soc-btn:hover { background: var(--olive); }

  /* RIGHT — form */
  .contact-form-wrap {
    padding: 2rem 1rem 2rem 1rem;
    background: var(--warm-wh);
    display: flex; flex-direction: column; justify-content: center;
  }
  .form-eyebrow {
    font-family: var(--sans); font-size: .58rem; font-weight: 300;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--sage); margin-bottom: 2.2rem;
    display: flex; align-items: center; gap: .7rem;
  }
  .form-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--sage); }

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

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

  .form-field {
    position: relative;
    border-bottom: 1px solid rgba(74,87,60,.18);
    padding: 1.5rem 0 .5rem;
    transition: border-color .3s;
  }
  .form-field:not(:last-child):not(.form-field--full) {
    border-right: 1px solid rgba(74,87,60,.1);
  }
  .form-field.form-field--full { grid-column: 1 / -1; }
  .form-field:focus-within { border-bottom-color: var(--terra); }

  .form-field label {
    position: absolute; top: 1.5rem; left: 0;
    font-family: var(--sans); font-size: .62rem; font-weight: 300;
    letter-spacing: .2em; text-transform: uppercase;
    color: rgba(73,39,47,.38);
    transition: all .25s ease; pointer-events: none;
  }
  .form-field input:focus + label,
  .form-field input:not(:placeholder-shown) + label,
  .form-field textarea:focus + label,
  .form-field textarea:not(:placeholder-shown) + label,
  .form-field select:focus + label,
  .form-field select:valid + label {
    top: 0; font-size: .5rem; color: var(--terra); letter-spacing: .26em;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%; background: transparent; border: none; outline: none;
    font-family: var(--serif); font-size: .95rem; font-weight: 300;
    color: var(--charcoal); padding: .4rem 0 .6rem;
    letter-spacing: .03em;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: transparent; }
  .form-field textarea { resize: none; height: 90px; }
  .form-field select { cursor: pointer; appearance: none; -webkit-appearance: none; }
  .form-field select option { background: var(--warm-wh); color: var(--charcoal); }

  /* Select arrow */
  .form-field--select::after {
    content: '›'; position: absolute; right: .2rem; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--serif); font-size: 1rem; color: rgba(74,87,60,.35);
    pointer-events: none;
  }

  /* Checkbox row */
  .form-check {
    display: flex; align-items: flex-start; gap: .8rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(74,87,60,.1);
  }
  .form-check input[type="checkbox"] { display: none; }
  .form-check-box {
    width: 16px; height: 16px; flex-shrink: 0;
    border: 1px solid rgba(74,87,60,.3);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; margin-top: 1px; transition: background .25s, border-color .25s;
  }
  .form-check input:checked ~ .form-check-box {
    background: var(--terra); border-color: var(--terra);
  }
  .form-check-box::after {
    content: '✓'; font-size: .6rem; color: var(--warm-wh); opacity: 0; transition: opacity .2s;
  }
  .form-check input:checked ~ .form-check-box::after { opacity: 1; }
  .form-check-label {
    font-family: var(--sans); font-size: .72rem; font-weight: 300;
    line-height: 1.7; color: #7a736c; cursor: pointer;
  }
  .form-check-label strong { font-weight: 400; color: var(--charcoal); }

  /* Submit */
  .form-submit {
    margin-top: 2rem; display: flex; align-items: center; gap: 2rem;
  }
  .btn-submit {
    font-family: var(--sans); font-size: .68rem; font-weight: 300;
    letter-spacing: .24em; text-transform: uppercase;
    background: var(--terra); color: var(--warm-wh); border: none;
    padding: 1rem 2.8rem; cursor: pointer; transition: all .3s;
    position: relative; overflow: hidden;
  }
  .btn-submit::before {
    content: ''; position: absolute; inset: 0;
    background: var(--charcoal); transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }
  .btn-submit:hover::before { transform: scaleX(1); }
  .btn-submit span { position: relative; z-index: 1; }
  .form-note {
    font-family: var(--sans); font-size: .62rem; font-weight: 300;
    letter-spacing: .08em; color: rgba(73,39,47,.38); line-height: 1.7;
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .22s; }
  .reveal-delay-3 { transition-delay: .34s; }
  .reveal-delay-4 { transition-delay: .46s; }

  /* ══════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════ */
  /* ── FOOTER ── */
  footer { background: var(--charcoal); color: var(--cream); padding: 3.5rem 4rem 2rem; border-top: 1px solid rgba(255,255,255,.07); }
  .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom:2rem; gap: 4rem; flex-wrap: wrap; }
  .footer-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--warm-wh); letter-spacing: .08em; display: block; margin-bottom: 1rem; }
  .footer-tagline { font-family: var(--serif); font-style: italic; font-size: .85rem; color: rgba(253,250,246,.4); max-width: 240px; line-height: 1.7; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: .6rem; }
  .footer-links a { font-size: .75rem; color: var(--cream); text-decoration: none; letter-spacing: .08em; transition: color .3s; }
  .footer-links a:hover { color: var(--terra-lt); font-style:italic;}
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.8rem; display: flex; justify-content: space-between; font-size: .68rem; color: var(--cream); letter-spacing: .1em; }
  .footer-bottom a{ font-size: .68rem; color: var(--cream); text-decoration: none; letter-spacing: .1em; transition: color .3s; }
  .footer-bottom a:hover { color: var(--terra-lt); }

  /* ══════════════════════════════════════════
     TABLET  ≤ 1024px
  ══════════════════════════════════════════ */
  @media (max-width: 1024px) {
    nav { padding: 0 2.5rem; }
    .nav-links { gap: 1.6rem; }
    .nav-links a { font-size: .62rem; }

    .page-hero-content { padding: 4rem 2.5rem; }
    .hero-side-label { display: none; }
    .hero-scroll { left: 2.5rem; }

    .certifications { padding: 4.5rem 2.5rem; }
    .cert-logos { gap: 2rem; }
    .cert-divider { display: none; }

    .contact-inner { grid-template-columns: 1fr; }
    .contact-content {
      padding: 4.5rem 3rem 3rem;
      border-right: none;
      border-bottom: 1px solid rgba(214,218,181,.4);
    }
    .contact-content .lead { max-width: 100%; }
    .contact-form-wrap { padding: 3rem 3rem 4.5rem; }
    .contact-side-label { display: none; }
    .contact-wm { font-size: 5rem; }

    footer { padding: 2.5rem 2.5rem 1.8rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; }
  }

  /* ══════════════════════════════════════════
     MOBILE  ≤ 767px
  ══════════════════════════════════════════ */
  @media (max-width: 767px) {
    :root { --nav-h: 64px; }

    /* Nav */
    nav { padding: 0 1.4rem; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-logo { font-size: 1rem; }
    .nav-logo-mark { width: 26px; height: 26px; }

    /* Hero */
    .page-hero { min-height: 58vh; }
    .page-hero-content { padding: 3rem 1.6rem 2.5rem; }
    .page-hero-content h1 { font-size: clamp(2.1rem, 7.5vw, 2.8rem); margin-bottom: 1.2rem; }
    .hero-lead { font-size: .8rem; max-width: 100%; }
    .hero-eyebrow { font-size: .56rem; }
    .hero-side-label { display: none; }
    .hero-scroll { left: 1.6rem; bottom: 1.8rem; }
    .hero-circle { display: none; }

    /* Band */
    .band-item { font-size: .78rem; padding: 0 1.6rem; }

    /* Certifications */
    .certifications { padding: 3.5rem 1.6rem; }
    .cert-logos { gap: 1.4rem; }
    .cert-logo-box { width: 72px; height: 72px; }
    .cert-logo-box svg { width: 32px; height: 32px; }
    .cert-divider { display: none; }

    /* Contact */
    .contact-content { padding: 3.5rem 1.6rem 2.5rem; }
    .contact-form-wrap { padding: 2.5rem 1.6rem 3.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-field:not(:last-child):not(.form-field--full) { border-right: none; }
    .form-submit { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .btn-submit { width: 100%; text-align: center; }
    .contact-social { gap: .5rem; }

    /* Footer */
    footer { padding: 2.5rem 1.6rem 1.6rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .footer-links { flex-wrap: wrap; gap: 1.2rem 1.8rem; }
    .footer-bottom { flex-direction: column; gap: .4rem; font-size: .56rem; }
  }

  @media (max-width: 390px) {
    .page-hero-content h1 { font-size: 1.95rem; }
    .cert-logos { gap: 1rem; }
    .cert-logo-box { width: 62px; height: 62px; }
  }