    /* Visual captcha styles */
    .visual-captcha {
      display: flex;
      gap: 1.5rem;
      margin: 0.5rem 0 0.5rem 0;
    }
    .captcha-img-btn {
      border: 2px solid transparent;
      background: none;
      padding: 0.25rem;
      border-radius: 8px;
      cursor: pointer;
      transition: border 0.2s, box-shadow 0.2s;
    }
    .captcha-img-btn.selected,
    .captcha-img-btn:focus {
      border: 2px solid var(--accent, #D73334);
      box-shadow: 0 0 0 2px var(--accent-soft, #F6BAC6);
    }
    .captcha-img-btn img {
      display: block;
      width: 64px;
      height: 64px;
    }

    /* Modal overlay styles */
    .form-modal {
      position: fixed;
      z-index: 1000;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .form-modal[hidden] { display: none !important; }
    .form-modal__backdrop {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.35);
    }
    .form-modal__dialog {
      position: relative;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      padding: 2rem 2.5rem;
      z-index: 1;
      min-width: 280px;
      max-width: 90vw;
      text-align: center;
    }
    .form-modal__message {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    .form-modal__close {
      background: var(--accent, #D73334);
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 0.5rem 1.5rem;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s;
    }
    .form-modal__close:hover {
      background: var(--accent-soft, #F6BAC6);
      color: #000;
    }
    :root {
      --header-height: 86px;
      --header-height-mobile: 68px;
      --gutter: clamp(20px, 3vw, 56px);
      --content-gutter: calc(var(--gutter) * 2);
      --bg: #FFFBF8;
      --text: #000000;
      --accent: #D73334;
      --accent-soft: #F6BAC6;
      --highlight: #FFE699;
      --muted: rgba(0, 0, 0, 0.7);
      --card-bg: #E3DACD;
      --border: rgba(0, 0, 0, 0.12);
      --sans: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
      --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
      --who-anim-duration: 2.7s;
      --who-anim-ease: cubic-bezier(0.2, 0.6, 0.35, 1);
    }

    html, body {
      margin: 0;
      padding: 0;
      min-height: 100%;
      width: 100%;
      background: var(--bg);
      overflow-x: hidden;
      color: var(--text);
      font-family: var(--sans);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-height);
      overflow-y: auto;
    }

    body {
      overflow: visible;
      padding-top: 0;
    }

    body.is-mobile {
      padding-top: var(--header-height-mobile);
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      min-height: var(--header-height);
      background: linear-gradient(180deg, rgba(255, 251, 248, 0.95) 0%, rgba(255, 251, 248, 0.6) 45%, rgba(255, 251, 248, 0) 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--gutter);
      z-index: 10;
      letter-spacing: 0.04em;
      text-transform: none;
      border-bottom: none;
      box-shadow: none;
      backdrop-filter: blur(6px);
      box-sizing: border-box;
      gap: 1rem;
    }

    body.is-mobile header {
      min-height: var(--header-height-mobile);
      padding: 0 calc(var(--gutter) * 0.6);
    }

    header .logo {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      min-width: 220px;
      gap: 10px;
    }

    header .logo img {
      height: 54px;
      width: auto;
      display: block;
    }

    body.is-mobile header .logo img {
      height: 46px;
    }

    header nav {
      display: flex;
      gap: clamp(1.2rem, 1.3vw, 1.9rem);
      font-size: clamp(0.98rem, 0.9rem + 0.35vw, 1.25rem);
      font-weight: 600;
      letter-spacing: 0.03em;
      font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
      flex: 1 1 auto;
      justify-content: flex-end;
      min-width: 0;
    }

    header nav button,
    .mobile-menu button {
      background: none;
      border: none;
      color: rgba(0, 0, 0, 0.88);
      font: inherit;
      letter-spacing: 0.03em;
      cursor: pointer;
      padding: 8px 2px;
      white-space: nowrap;
      overflow: visible;
      transition: color 0.35s ease, transform 0.35s ease, text-shadow 0.45s ease;
      position: relative;
      text-transform: none;
    }

    header nav button::after,
    .mobile-menu button::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 1px;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      transform: scaleX(0.6);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    header nav button:hover,
    header nav button:focus,
    .mobile-menu button:hover,
    .mobile-menu button:focus {
      color: #111;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    header nav button:hover::after,
    header nav button:focus::after,
    .mobile-menu button:hover::after,
    .mobile-menu button:focus::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .hamburger {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.7);
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      position: relative;
      z-index: 11;
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: #111;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .hamburger.is-open span:nth-child(1) {
      transform: translateY(5px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
      transform: translateY(-5px) rotate(-45deg);
    }

    .mobile-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: var(--gutter);
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
      display: none;
      flex-direction: column;
      padding: 10px 12px;
      gap: 10px;
      z-index: 11;
      backdrop-filter: blur(6px);
    }

    .mobile-menu.is-open {
      display: flex;
    }

    @media (max-width: 860px) {
      .desktop-nav {
        display: none;
      }

      .hamburger {
        display: inline-flex;
      }
    }

#home {
  position: relative;
  max-width: none;
  margin: 0;
  isolation: isolate;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-height));
  padding-top: 0;
}

    #home::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 18%, rgba(0, 0, 0, 0) 42%);
      z-index: 1;
      pointer-events: none;
    }

#home video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
      object-fit: cover;
      object-position: center;
      background: black;
    }

body.is-mobile #home {
  margin-top: calc(-1 * var(--header-height-mobile));
  min-height: 100vh;
}

    main {
      background: var(--bg);
      line-height: 1.75;
    }

    section {
      margin: 0;
    }

    .section-card {
      background: var(--section-bg, var(--card-bg));
      border: none;
      border-radius: 0;
      box-shadow: none;
      color: var(--section-heading, var(--text));
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: clamp(48px, 8vw, 96px) var(--content-gutter);
    }

    body.is-mobile .section-inner {
      padding: 40px calc(var(--content-gutter) * 0.75);
    }

    section h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 2vw + 1.1rem, 2.4rem);
      margin-bottom: 1rem;
      letter-spacing: 0.08em;
      text-transform: none;
      color: var(--section-heading, var(--text));
    }

    section p {
      color: var(--section-body, var(--muted));
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }

    .section-eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--section-eyebrow-color, rgba(0, 0, 0, 0.5));
      margin-bottom: 1rem;
      display: inline-block;
    }

    .tagline {
      text-align: center;
      margin: 3rem auto;
      font-size: clamp(1.2rem, 1.8rem, 1.6rem);
      letter-spacing: 0.12em;
      text-transform: none;
      border: none;
      background: transparent;
    }

    .tagline p {
      margin: 0.6rem 0;
      font-family: var(--serif);
      color: var(--section-body, var(--text));
      opacity: 0;
      transform: translateY(25px);
      filter: blur(6px);
      transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
    }

    .tagline p span {
      display: inline-block;
      background: linear-gradient(90deg, var(--accent-soft), var(--accent));
      -webkit-background-clip: text;
      color: transparent;
    }

    .tagline p.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    .founder-profile {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--section-border, var(--border));
    }

    .founder-profile h3 {
      font-family: var(--serif);
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0.08em;
    }

    .founder-profile p {
      margin-bottom: 0.8rem;
    }

    .pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: clamp(14px, 2vw, 18px);
      margin: clamp(22px, 4vw, 36px) 0 clamp(12px, 3vw, 24px);
    }

    @media (max-width: 760px) {
      .pillars {
        grid-template-columns: 1fr;
      }
    }

    @media (min-width: 1150px) {
      .pillars {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .pillars {
        grid-template-columns: 1fr !important;
      }
    }

    .pillar {
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 1.45rem 1.2rem;
      background: rgba(255, 255, 255, 0.55);
      border-radius: 18px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 26px rgba(0, 0, 0, 0.06);
      color: var(--section-body, var(--muted));
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .pillar h3 {
      margin-top: 0;
      letter-spacing: 0.12em;
      font-size: 0.95rem;
      text-transform: uppercase;
      color: var(--section-heading, var(--accent));
    }

    .pillar:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
    }

    .contact-form {
      display: grid;
      gap: 1rem;
      max-width: 600px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      background: var(--section-input-bg, #F3EEE8);
      border: 1px solid var(--section-input-border, rgba(0, 0, 0, 0.2));
      padding: 0.85rem;
      color: var(--section-heading, var(--text));
      font: inherit;
    }

    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-form label {
      text-transform: uppercase;
      letter-spacing: 0.35em;
      font-size: 0.7rem;
      color: rgba(0, 0, 0, 0.6);
    }

    .contact-form button {
      padding: 0.9rem 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      border: none;
      background: var(--accent);
      color: #F3EEE8;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(215, 51, 52, 0.3);
    }

    /* Process + Brand headline alignment */
#process .section-inner,
#brand-showcase .brand-inner {
  max-width: 1100px;
  padding: clamp(60px, 8vw, 96px) var(--content-gutter);
}

    #process .section-eyebrow,
    #brand-showcase .section-eyebrow {
      letter-spacing: 0.32em;
      color: rgba(0, 0, 0, 0.5);
      margin-bottom: 0.75rem;
    }

    #process h2,
    #brand-showcase h2 {
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: clamp(2.1rem, 2vw + 1.2rem, 2.6rem);
      margin: 0 0 1.15rem;
    }

    #process p,
    #brand-showcase p {
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }

    /* Contact hero refresh */
#contact {
  position: relative;
  overflow: hidden;
  --section-bg: #fff7f1;
  --section-heading: #a3121f;
  --section-body: #1e1614;
  --section-input-bg: #fff;
  --section-input-border: rgba(163, 18, 31, 0.28);
    }

#contact .section-inner {
  text-align: center;
  padding: clamp(72px, 12vw, 124px) var(--content-gutter) clamp(68px, 18vw, 520px);
  position: relative;
  z-index: 1;
}

    #contact h2 {
      font-family: var(--serif);
      font-size: clamp(3rem, 4vw, 3.8rem);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--section-heading);
      margin-bottom: 1.25rem;
    }

    #contact p {
      font-size: clamp(1.08rem, 0.8rem + 0.6vw, 1.3rem);
      color: var(--section-body);
      line-height: 1.7;
    }

    #contact p strong {
      font-weight: 700;
      color: #000;
      display: inline-block;
      margin-top: 0.3rem;
    }

#contact .contact-form {
  margin: clamp(28px, 4vw, 40px) auto;
  width: min(720px, 100%);
}

#contact .form-status {
  margin: 1rem auto 0;
  padding: 0.95rem 1.1rem;
  border-radius: 10px;
  width: min(720px, 100%);
  font-weight: 700;
  letter-spacing: 0.01em;
}

#contact .form-status--success {
  background: rgba(47, 138, 80, 0.12);
  color: #1e5a36;
  border: 1px solid rgba(47, 138, 80, 0.25);
}

#contact .form-status--error {
  background: rgba(215, 51, 52, 0.1);
  color: #7d141b;
  border: 1px solid rgba(215, 51, 52, 0.2);
}

#contact .captcha-row {
  display: grid;
  gap: 10px;
  text-align: center;
  color: var(--section-body, #1e1614);
  font-size: 0.95rem;
}

#contact .visual-captcha {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  justify-items: stretch;
}

#contact .captcha-img-btn {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  width: 100%;
  min-height: 76px;
  text-align: center;
}

#contact .captcha-img-btn .captcha-icon {
  font-size: 1.8rem;
  line-height: 1;
}

#contact .captcha-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

#contact .captcha-img-btn.selected {
  border-color: #d73334;
  box-shadow: 0 8px 18px rgba(215, 51, 52, 0.25);
  transform: translateY(-2px);
}

#contact .captcha-img-btn:hover {
  border-color: rgba(215, 51, 52, 0.6);
}

@media (max-width: 640px) {
  #contact .visual-captcha {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  #contact .captcha-img-btn {
    min-height: 72px;
    padding: 10px;
  }
}

#contact .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

#contact .contact-email-note {
  margin: 0.6rem 0 0.2rem;
  font-size: 0.98rem;
  color: #3a2a23;
}

#contact .contact-email-note a {
  color: #a3121f;
  font-weight: 700;
}

#contact .contact-form label {
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  color: rgba(163, 18, 31, 0.95);
  text-align: left;
      display: block;
      margin-bottom: 0.35rem;
    }

    #contact .contact-form input,
    #contact .contact-form select,
    #contact .contact-form textarea {
      padding: 1rem 1.15rem;
      border-radius: 12px;
      border: 1px solid rgba(163, 18, 31, 0.35);
      background: var(--section-input-bg);
      font-size: 1rem;
    }

    #contact .contact-form select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, #a3121f 50%), linear-gradient(135deg, #a3121f 50%, transparent 50%);
      background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
      background-size: 8px 8px, 8px 8px;
      background-repeat: no-repeat;
    }

    #contact .contact-form button {
      background: #d8c8b7;
      color: #2a1a12;
      letter-spacing: 0.28em;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      box-shadow: 0 14px 34px rgba(163, 18, 31, 0.18);
    }

    #contact .contact-form button:hover {
      box-shadow: 0 16px 38px rgba(163, 18, 31, 0.24);
    }

.contact-phone {
  position: absolute;
  bottom: clamp(-40px, -2vw, 0px);
  left: 35%;
  width: min(1250px, 118vw);
  max-width: 1400px;
  opacity: 0;
  transform: translate(calc(-50% + 65%), 10px);
  transition: transform 1.8s cubic-bezier(0.2, 0.6, 0.35, 1), opacity 1.4s ease;
  pointer-events: none;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.18));
  z-index: 0;
  will-change: transform, opacity;
    }

    /* Process layout */
    #process {
      position: relative;
      overflow: hidden;
    }

    #process .section-inner {
      position: relative;
      z-index: 1;
    }

    #process .section-inner h2,
    #process .section-inner p {
      text-align: left;
    }

    .pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: clamp(14px, 2vw, 18px);
      margin: clamp(22px, 4vw, 36px) 0 clamp(12px, 3vw, 24px);
    }

    @media (min-width: 1150px) {
      .pillars {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }

    .pillar {
      border: 1px solid rgba(0, 0, 0, 0.12);
      padding: 1.45rem 1.2rem;
      background: rgba(255, 255, 255, 0.55);
      border-radius: 18px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 26px rgba(0, 0, 0, 0.06);
      color: var(--section-body, var(--muted));
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .pillar h3 {
      margin-top: 0;
      letter-spacing: 0.12em;
      font-size: 0.95rem;
      text-transform: uppercase;
      color: var(--section-heading, var(--accent));
    }

    .pillar:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
    }

    .process-result {
      max-width: 1100px;
      margin: clamp(10px, 4vw, 22px) auto clamp(34px, 6vw, 56px);
      padding: clamp(22px, 4vw, 36px) clamp(20px, 3vw, 32px);
      background: radial-gradient(circle at 30% 20%, rgba(215, 51, 52, 0.08), rgba(215, 51, 52, 0)),
                  radial-gradient(circle at 80% 40%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
      background-color: rgba(255, 255, 255, 0.55);
      border-radius: 16px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
    }

    .process-result strong {
      display: block;
      font-family: var(--serif);
      font-size: clamp(2.1rem, 2vw + 1.2rem, 2.8rem);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #2a1a12;
      margin-bottom: 12px;
    }

    .process-result span {
      display: inline-block;
      font-family: "Montserrat", var(--sans);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      font-size: clamp(1.45rem, 1rem + 1vw, 1.9rem);
      line-height: 1.4;
      color: #2c2c2c;
      margin: 0;
    }

    .process-result-strong {
      font-weight: 900;
    }

    /* Brand showcase section */
    .brand-section {
      background: #ffffff;
      position: relative;
      overflow: hidden;
      --brand-gap: clamp(26px, 3vw, 40px);
      --brand-pad: clamp(8px, 1vw, 14px);
    }

    /* Tape dividers */
    .tape-divider {
      position: relative;
      display: block;
      height: 0;
      margin: clamp(-12px, -1.5vw, -6px) 0 clamp(-12px, -1.5vw, -6px);
      pointer-events: none;
      z-index: 3;
      overflow: visible;
    }

    .tape-piece {
      position: absolute;
      top: clamp(-22px, -0vw, -12px);
      left: 45%;
      width: clamp(150px, 13vw, 190px);
      height: auto;
      display: block;
      opacity: 0;
      transform: translate(-50%, -10px) rotate(var(--rot, 90deg)) scale(0.9);
      transform-origin: center;
      filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
      animation: none;
      mix-blend-mode: multiply;
    }

    @media (max-width: 900px) {
      .tape-piece {
        left: 38%;
      }
    }

    .tape-piece.is-visible {
      animation: tapeSlap 1.8s var(--tape-delay, 0s) cubic-bezier(0.19, 0.7, 0.3, 1) forwards;
    }

    @keyframes tapeSlap {
      0% {
        opacity: 0;
        transform: rotate(var(--rot, 90deg)) translateY(-110px) scale(0.9);
      }
      60% {
        opacity: 1;
        transform: rotate(var(--rot, 90deg)) translateY(8px) scale(1.05);
      }
      100% {
        opacity: 1;
        transform: rotate(var(--rot, 90deg)) translateY(0) scale(1);
      }
    }

    .brand-section::before,
    .brand-section::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(40px);
      opacity: 0.4;
      pointer-events: none;
    }

    .brand-section::before {
      width: 360px;
      height: 360px;
      background: radial-gradient(circle at 30% 30%, #ffe6e6, rgba(255, 230, 230, 0));
      top: -120px;
      right: 10%;
    }

    .brand-section::after {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle at 70% 70%, #f6f1e9, rgba(246, 241, 233, 0));
      bottom: -180px;
      left: 8%;
    }

    .brand-inner {
      max-width: 1100px;
      position: relative;
      z-index: 1;
    }

    .brand-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(16px, 3vw, 28px);
      align-items: end;
      margin-bottom: clamp(26px, 4vw, 44px);
    }

    .brand-copy h2 {
      margin: 0 0 0.35rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: clamp(2rem, 1.3rem + 1.2vw, 2.6rem);
    }

    .brand-copy p {
      margin: 0;
      color: rgba(0, 0, 0, 0.75);
      font-size: clamp(1.02rem, 0.9rem + 0.35vw, 1.2rem);
    }

    .brand-meta {
      display: grid;
      gap: 8px;
      justify-items: start;
      color: rgba(0, 0, 0, 0.7);
      font-size: 0.98rem;
    }

    .brand-meta p {
      margin: 0;
    }

    .brand-count {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
      padding: 10px 14px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
    }

    .brand-count-number {
      font-family: var(--serif);
      font-size: 1.5rem;
      color: #111;
      letter-spacing: 0.06em;
    }

    .brand-count-label {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.7rem;
      color: rgba(0, 0, 0, 0.6);
    }

    .brand-grid {
      display: flex;
      flex-direction: column;
      gap: var(--brand-gap);
      align-items: stretch;
      justify-content: flex-start;
      width: 100%;
      padding-top: 10px;
    }

    .brand-row {
      display: flex;
      flex-direction: row;
      gap: var(--brand-gap);
      justify-content: flex-start;
      align-items: center;
      flex-wrap: nowrap;
      width: 100%;
    }

    .brand-tile {
      position: relative;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      padding: var(--brand-pad);
      background: transparent;
      border: none;
      box-shadow: none;
      box-sizing: border-box;
      opacity: 0;
      transform: translate3d(var(--tx, 0), var(--ty, 36px), 0) scale(0.8) rotate(var(--rot, 0deg));
      transition: transform 1.35s cubic-bezier(0.2, 0.6, 0.35, 1), opacity 1.1s ease, box-shadow 0.45s ease, border-color 0.45s ease;
      transition-delay: var(--delay, 0s);
      will-change: transform, opacity;
      flex: 0 0 auto;
      max-width: 100%;
    }

    .brand-tile.is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }

    .brand-tile.is-leaving {
      opacity: 0;
      transform: translate3d(var(--outx, 0), calc(var(--outy, 140px) * -1), 0) scale(0.82) rotate(var(--rot, 0deg));
    }

    .brand-tile img {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      filter: contrast(1.05);
    }

    @media (max-width: 820px) {
      .brand-row {
        flex-wrap: wrap;
        justify-content: flex-start;
      }
    }

    @media (max-width: 900px) {
      #contact h2 {
        font-size: clamp(2.3rem, 6vw, 2.8rem);
      }

  #contact p {
    font-size: clamp(1rem, 0.6rem + 0.7vw, 1.15rem);
  }

  .contact-phone {
    left: 50%;
    width: 90vw;
    max-width: 520px;
    bottom: clamp(-10px, -4vw, 16px);
    transform: translate(-50%, 0);
  }
}

    /* WHO WE ARE layout */
    .who-section {
      background: var(--bg);
      padding: clamp(36px, 6vw, 72px) 0;
    }

    .who-card {
      position: relative;
      background: var(--bg);
      border-radius: 0;
      box-shadow: none;
      padding: clamp(32px, 5vw, 64px) 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(18px, 2.5vw, 32px);
      align-items: start;
      overflow: visible;
    }

.who-content {
  display: grid;
  gap: clamp(12px, 1vw, 18px);
  align-content: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--content-gutter);
}

    .who-tagline {
      display: none;
    }

    .who-title {
      font-family: "League Gothic", "Montserrat", var(--sans);
      font-size: clamp(5rem, 9vw, 6.6rem);
      letter-spacing: 0.03em;
      margin: -6px 0 6px;
      line-height: 0.92;
      text-transform: uppercase;
      color: #191919;
    }

    .who-quote {
      font-family: "Montserrat", var(--sans);
      font-weight: 900;
      font-size: clamp(1.35rem, 1.15rem + 0.5vw, 1.8rem);
      margin: 10px 0 14px;
      line-height: 1.6;
      letter-spacing: 0.01em;
    }

    .who-body {
      font-size: clamp(1.05rem, 0.95rem + 0.25vw, 1.18rem);
      line-height: 1.8;
      color: #1f1b1a;
      margin: 0;
    }

    .who-body + .who-body {
      margin-top: 6px;
    }

    .who-bold {
      font-weight: 800;
      color: #151515;
    }

    .who-quote {
      font-family: "Montserrat", var(--sans);
      font-weight: 900;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      font-size: clamp(1.45rem, 1rem + 1vw, 1.8rem);
      line-height: 1.4;
    }

    .who-image {
      width: min(1100px, 100%);
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto clamp(18px, 2vw, 28px);
      opacity: 0;
      transform: translateX(90px);
      transition: transform calc(var(--who-anim-duration) * 1.15) var(--who-anim-ease), opacity calc(var(--who-anim-duration) * 1.15) ease;
    }

    .who-image.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .who-animate {
      opacity: 0;
      transform: translateX(80px);
      transition: transform calc(var(--who-anim-duration) * 1.15) var(--who-anim-ease), opacity calc(var(--who-anim-duration) * 1.15) ease;
      transition-delay: var(--delay, 0s);
    }

    .who-animate.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Story sections (Who / Founder) */
    .story-section {
      background: #faecb9;
      padding: clamp(36px, 6vw, 72px) 0;
      overflow: hidden;
    }

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 96px) var(--content-gutter);
  background: #faecb9;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

    .story-eyebrow {
      font-family: "Montserrat", var(--sans);
      text-transform: uppercase;
      letter-spacing: 0.32em;
      font-size: clamp(0.9rem, 0.75rem + 0.3vw, 1.05rem);
      color: rgba(0, 0, 0, 0.55);
      margin: 0 0 0.8rem;
    }

    .story-title {
      font-family: "Montserrat", var(--sans);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      font-size: clamp(1.45rem, 1rem + 1vw, 1.9rem);
      line-height: 1.35;
      color: #2c2c2c;
      margin: 0 0 1.2rem;
      width: 100%;
      max-width: none;
      text-align: left;
      white-space: normal;
      opacity: 0;
      transform: translateX(120px);
      transition: transform calc(var(--who-anim-duration) * 1.25) var(--who-anim-ease), opacity calc(var(--who-anim-duration) * 1.25) ease;
    }

    .story-title.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .story-body {
      font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.25rem);
      line-height: 1.8;
      color: #1d130c;
      margin: 0;
      max-width: 1100px;
      opacity: 0;
      transform: translateX(-120px);
      transition: transform calc(var(--who-anim-duration) * 1.25) var(--who-anim-ease), opacity calc(var(--who-anim-duration) * 1.25) ease;
    }

    .story-body.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .story-body strong {
      font-weight: 800;
      color: #0c0a08;
    }

    .story-signature {
      font-size: clamp(1.05rem, 0.9rem + 0.3vw, 1.2rem);
      color: #0c0a08;
      margin: 0;
      font-style: italic;
      letter-spacing: 0.02em;
    }

    @media (max-width: 900px) {
      .who-quote,
      .story-title,
      .story-copy .story-title {
        white-space: normal;
        text-align: left;
      }
    }

    .story-image {
      width: min(1100px, 100%);
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto clamp(18px, 2vw, 28px);
      opacity: 0;
      transform: translateX(60px);
      transition: transform var(--who-anim-duration) var(--who-anim-ease), opacity var(--who-anim-duration) ease;
    }

    .story-image.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .story-signature-img {
      width: min(360px, 55vw);
      height: auto;
      display: block;
      margin: clamp(8px, 1vw, 14px) 0 0;
      opacity: 0;
      transform: translateY(18px) scale(0.96);
      filter: blur(4px);
      transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 0.68, 0.42, 1.1), filter 0.9s ease;
    }

    .story-signature-img.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .story-copy {
      display: grid;
      gap: clamp(10px, 1.4vw, 18px);
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      justify-items: start;
      text-align: left;
    }

    .story-copy .story-eyebrow {
      display: block;
      color: rgba(0, 0, 0, 0.55);
      letter-spacing: 0.32em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .story-copy .story-title {
      font-family: "Montserrat", var(--sans);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      font-size: clamp(1.45rem, 1rem + 1vw, 1.9rem);
      color: #2c2c2c;
      line-height: 1.35;
      margin: 0 0 1.2rem;
      width: 100%;
      max-width: none;
      text-align: left;
      white-space: normal;
    }

    .story-copy .story-body {
      font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
      line-height: 1.8;
      color: #1d130c;
      margin: 0;
    }

    #who {
      background: #fffbf9;
    }

    #who .story-inner {
      background: #fffbf9;
    }

    /* Influence video section */
    .influence-section {
      position: relative;
      width: 100%;
      min-height: 50vh;
      background: #f3eee8;
      overflow: hidden;
    }

    .influence-section video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: #f3eee8;
    }

    .influence-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.25) 100%);
      pointer-events: none;
    }

    @media (max-width: 1024px) {
      .who-card {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 780px) {
      .influence-section {
        min-height: auto;
        background: var(--bg);
      }

      .influence-section video {
        height: auto;
        min-height: 0;
        object-fit: cover;
      }

      .influence-section::after {
        display: none;
      }

      .tape-piece {
        width: clamp(90px, 28vw, 120px);
      }
    }

    @media (max-width: 720px) {
      .who-card {
        grid-template-columns: minmax(0, 1fr);
        padding: clamp(26px, 8vw, 40px);
        gap: 12px;
      }
    }

    /* Legacy themed sections */
    .theme-rose {
      --section-bg: #F6BAC6;
      --section-border: rgba(215, 51, 52, 0.3);
      --section-heading: #D73334;
      --section-body: #D73334;
      --section-eyebrow-color: rgba(215, 51, 52, 0.8);
      --section-shadow: 0 25px 60px rgba(215, 51, 52, 0.18);
    }

    .theme-gold {
      --section-bg: #FFE699;
      --section-border: rgba(0, 0, 0, 0.12);
      --section-heading: #000000;
      --section-body: rgba(0, 0, 0, 0.85);
      --section-eyebrow-color: rgba(0, 0, 0, 0.6);
      --section-shadow: 0 25px 60px rgba(255, 230, 153, 0.5);
    }

    .theme-stone {
      --section-bg: #E3DACD;
      --section-border: rgba(0, 0, 0, 0.18);
      --section-heading: #000000;
      --section-body: rgba(0, 0, 0, 0.75);
      --section-eyebrow-color: rgba(0, 0, 0, 0.55);
      --section-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

    .theme-ivory {
      --section-bg: #F3EEE8;
      --section-border: rgba(0, 0, 0, 0.1);
      --section-heading: #000000;
      --section-body: rgba(0, 0, 0, 0.75);
      --section-eyebrow-color: rgba(0, 0, 0, 0.45);
      --section-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
      --section-input-bg: #FFFFFF;
      --section-input-border: rgba(0, 0, 0, 0.25);
    }

    .theme-cream {
      --section-bg: #E3DACD;
      --section-border: rgba(0, 0, 0, 0.12);
      --section-heading: #000000;
      --section-body: rgba(0, 0, 0, 0.75);
      --section-eyebrow-color: rgba(0, 0, 0, 0.55);
      --section-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
      --section-input-bg: #F3EEE8;
      --section-input-border: rgba(0, 0, 0, 0.25);
    }

    .fade-section {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .fade-section.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Language modal */
    [hidden] {
      display: none !important;
    }

    .lang-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .lang-modal.is-open {
      pointer-events: auto;
      opacity: 1;
    }

    .lang-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(6px);
    }

    .lang-modal__dialog {
      position: relative;
      background: #fffdfb;
      border-radius: 18px;
      padding: clamp(22px, 4vw, 32px);
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
      max-width: 480px;
      width: min(90vw, 480px);
      z-index: 1;
      text-align: center;
    }

    .lang-modal__dialog h3 {
      margin: 0 0 10px;
      font-family: var(--serif);
      font-size: clamp(1.5rem, 1rem + 1vw, 1.8rem);
      letter-spacing: 0.05em;
    }

    .lang-modal__dialog p {
      margin: 0 0 18px;
      color: rgba(0, 0, 0, 0.72);
    }

    .lang-modal__actions {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .lang-modal__actions button {
      padding: 10px 16px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: #ffffff;
      font-weight: 700;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .lang-modal__actions button:hover,
    .lang-modal__actions button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
      outline: none;
    }

    body.lang-modal-open {
      overflow: hidden;
    }
