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

  :root {
    --black: #0a0a0a;
    --near-black: #111111;
    --dark: #1a1a1a;
    --mid: #3a3a3a;
    --grey: #6b6b6b;
    --light-grey: #c0c0c0;
    --off-white: #f5f4f1;
    --white: #ffffff;
    --rule: rgba(255,255,255,0.12);
    --rule-dark: rgba(0,0,0,0.1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--off-white);
    color: var(--dark);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--black);
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo img {
    height: 36px;
    display: block;
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
  }

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

  .nav-links a {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 20px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }

  .btn-outline-white {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    background: transparent;
  }

  .btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
  }

  .btn-white {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
  }

  .btn-white:hover {
    background: transparent;
    color: var(--white);
  }

  .btn-dark {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
  }

  .btn-dark:hover {
    background: transparent;
    color: var(--black);
  }

  .btn-outline-dark {
    border: 1px solid rgba(0,0,0,0.3);
    color: var(--dark);
    background: transparent;
  }

  .btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../csm_fermentation_40cb593839.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5,5,5,0.55) 0%,
      rgba(5,5,5,0.45) 40%,
      rgba(5,5,5,0.75) 75%,
      rgba(5,5,5,0.92) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 88px 48px 0;
  }

  .eyebrow {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-grey);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--light-grey);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .hero h1 em {
    font-style: italic;
    font-weight: 300;
  }

  .hero-sub {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .credibility-strip {
    margin-bottom: 44px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .credibility-strip p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 2;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* SECTION COMMON */
  section {
    padding: 100px 48px;
  }

  .section-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--grey);
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  /* SERVICES */
  .services {
    background: var(--white);
  }

  .services-header {
    max-width: 1200px;
    margin: 0 auto 64px;
  }

  .services-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    color: var(--near-black);
  }

  .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--rule-dark);
  }

  .service-card {
    padding: 40px 36px;
    border-right: 1px solid var(--rule-dark);
    border-bottom: 1px solid var(--rule-dark);
    transition: background 0.2s;
  }

  .service-card:hover {
    background: var(--off-white);
  }

  .service-card:nth-child(4n) {
    border-right: none;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-card:nth-child(n+6):nth-last-child(-n+4) {
    border-bottom: none;
  }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--light-grey);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--near-black);
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: 0;
  }

  .service-card p {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.65;
  }

  /* EXPERTISE */
  .expertise {
    background: var(--off-white);
    border-top: 1px solid var(--rule-dark);
  }

  .expertise-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
  }

  .expertise-left h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--near-black);
    margin-top: 4px;
  }

  .expertise-right {
    padding-top: 8px;
  }

  .modality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }

  .tag {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--dark);
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.18);
    background: var(--white);
    transition: all 0.2s;
  }

  .tag:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
  }

  /* JAPAN */
  .japan {
    background: var(--near-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .japan::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='0' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='60' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='30' cy='0' r='28' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Ccircle cx='30' cy='60' r='28' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }

  .japan-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .japan .section-label { color: rgba(255,255,255,0.4); }
  .japan .section-label::before { background: rgba(255,255,255,0.4); }

  .japan h2 {
    font-size: clamp(34px, 3.5vw, 52px);
    color: var(--white);
    margin-bottom: 24px;
    margin-top: 4px;
  }

  .japan p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .japan-kanji {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.2em;
    margin-top: 8px;
  }

  .japan-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .japan-detail {
    padding: 28px 32px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .japan-detail h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
  }

  .japan-detail p {
    font-size: 15px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
  }

  /* RESOURCES */
  .resources {
    background: var(--off-white);
    border-top: 1px solid var(--rule-dark);
  }

  .resources-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }

  .resources h2 {
    font-size: clamp(34px, 3.5vw, 52px);
    color: var(--near-black);
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .resources > .resources-inner > div > p {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .resource-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--rule-dark);
    margin-bottom: 36px;
  }

  .resource-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--rule-dark);
    font-size: 14px;
    color: var(--dark);
    font-weight: 400;
  }

  .resource-item:last-child { border-bottom: none; }

  .resource-item::before {
    content: '→';
    font-size: 13px;
    color: var(--grey);
    flex-shrink: 0;
  }

  /* ABOUT */
  .about {
    background: var(--white);
    border-top: 1px solid var(--rule-dark);
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 100px;
    align-items: start;
  }

  .about-left h2 {
    font-size: clamp(36px, 4vw, 58px);
    color: var(--near-black);
    margin-top: 4px;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .about-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  .about-right p {
    font-size: 15.5px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-highlights {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--rule-dark);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .highlight-item {
    padding: 24px 20px;
    border-right: 1px solid var(--rule-dark);
    border-bottom: 1px solid var(--rule-dark);
  }

  .highlight-item:nth-child(4n) {
    border-right: none;
  }

  .highlight-item:nth-last-child(-n+4) {
    border-bottom: none;
  }

  .highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--near-black);
    line-height: 1;
    margin-bottom: 8px;
  }

  .highlight-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 0.03em;
    line-height: 1.55;
  }


  .about-headshot {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(15%);
    margin-bottom: 24px;
  }

  .about-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--grey);
    margin-bottom: 6px;
  }

  .about-location::before {
    content: '◎';
    font-size: 10px;
    color: var(--light-grey);
  }

  .about-lang {
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }

  .enjipro-banner {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--near-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid rgba(255,255,255,0.15);
  }

  .enjipro-banner-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .enjipro-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
  }

  .enjipro-banner-sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
  }

  .btn-enjipro {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 11px;
    padding: 10px 20px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
  }

  .btn-enjipro:hover {
    background: var(--white);
    color: var(--black);
  }

  /* FINAL CTA */
  .final-cta {
    background: var(--black);
    text-align: center;
    padding: 120px 48px;
  }

  .final-cta .section-label {
    justify-content: center;
    color: rgba(255,255,255,0.35);
  }

  .final-cta .section-label::before {
    background: rgba(255,255,255,0.35);
  }

  .final-cta h2 {
    font-size: clamp(38px, 5vw, 68px);
    color: var(--white);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* FOOTER */
  footer {
    background: var(--near-black);
    padding: 56px 48px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-logo {
    text-decoration: none;
  }

  .footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
    text-decoration: none;
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-info a,
  .footer-info p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    margin: 0;
  }

  .footer-info a:hover { color: var(--white); }

  .footer-divider {
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 8px 0;
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(4n) {
      border-right: 1px solid var(--rule-dark);
    }

    .service-card:nth-child(2n) {
      border-right: none;
    }

    .service-card:nth-last-child(-n+4) {
      border-bottom: 1px solid var(--rule-dark);
    }

    .service-card:nth-last-child(-n+2) {
      border-bottom: none;
    }

    .expertise-inner,
    .japan-inner,
    .resources-inner,
    .about-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .expertise-inner { gap: 32px; }
  }

  @media (max-width: 768px) {
    nav {
      padding: 0 24px;
      height: 60px;
    }

    .nav-links { display: none; }

    section { padding: 72px 24px; }

    .hero-content { padding: 0 24px; }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .service-card {
      border-right: none !important;
    }

    .service-card:nth-last-child(-n+2) {
      border-bottom: 1px solid var(--rule-dark);
    }

    .service-card:last-child {
      border-bottom: none !important;
    }

    .about-highlights {
      grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item:nth-child(4n) {
      border-right: 1px solid var(--rule-dark);
    }

    .highlight-item:nth-child(2n) {
      border-right: none;
      padding-right: 0;
    }

    .highlight-item:nth-last-child(-n+4) {
      border-bottom: 1px solid var(--rule-dark);
    }

    .highlight-item:nth-last-child(-n+2) {
      border-bottom: none;
    }

    footer {
      padding: 32px 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .final-cta { padding: 80px 24px; }
  }

  /* PAGE HEADER */
  .page-header {
    background: var(--black);
    padding: 140px 48px 80px;
  }
  .page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
  }
  .page-header p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    line-height: 1.7;
  }
  .nav-links a.active { color: var(--white); }

  /* PARTNERS */
  .partners {
    background: var(--white);
    border-top: 1px solid var(--rule-dark);
  }
  .partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .partners-inner h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    color: var(--near-black);
    margin-top: 4px;
    margin-bottom: 16px;
  }
  .partners-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--grey);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  .partners-logos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 72px;
    flex-wrap: wrap;
  }
  .partner-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 520px;
    transition: opacity 0.2s;
  }
  .partner-item:hover { opacity: 0.65; }
  .partner-logo-img {
    height: 120px;
    display: block;
    object-fit: contain;
  }
  .partner-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--near-black);
  }
  .partner-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.7;
    text-align: center;
  }
  .partner-location {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-grey);
    letter-spacing: 0.06em;
  }

  /* CONTACT FORM */
  .contact-section {
    background: var(--off-white);
    border-top: 1px solid var(--rule-dark);
  }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .contact-info h2 {
    font-size: clamp(34px, 3.5vw, 48px);
    color: var(--near-black);
    margin-top: 4px;
    margin-bottom: 20px;
  }
  .contact-info p {
    font-size: 15px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 12px;
  }
  .contact-info a {
    color: var(--near-black);
    text-decoration: none;
    font-weight: 400;
  }
  .contact-info a:hover { text-decoration: underline; }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-group label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--near-black);
    background: var(--white);
    border: 1px solid var(--rule-dark);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--near-black);
  }
  .form-group textarea {
    min-height: 140px;
    resize: vertical;
  }
  .form-submit {
    align-self: flex-start;
  }
  .form-success {
    padding: 20px 24px;
    background: var(--near-black);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .form-error {
    padding: 20px 24px;
    background: #8B0000;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  @media (max-width: 1100px) {
    .contact-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  @media (max-width: 768px) {
    .page-header { padding: 100px 24px 56px; }
    .form-row { grid-template-columns: 1fr; }
    .partners-logos { gap: 40px; }
  }

  /* MOBILE HAMBURGER MENU */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
      display: none;
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      background: var(--black);
      flex-direction: column;
      padding: 24px;
      gap: 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 15px;
    }
    .nav-ctas { gap: 8px; }
    .nav-ctas .btn-outline-white { display: none; }
  }
