  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: #ffffff;
    color: #1a1a2e;
    font-family: 'Work Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  ::selection { background: #e8dcc6; color: #1a1a2e; }
  a { color: inherit; }

  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(24px, 5vw, 72px);
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid #e0dccf;
  }
  .logo {
    text-decoration: none;
    color: #1a1a2e;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo img {
    display: block;
    height: 48px;
    width: auto;
  }
  .logo img.logo-mobile { display: none; }
  nav.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 46px);
  }
  nav.primary-nav a {
    text-decoration: none;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  nav.primary-nav a[aria-current="page"] { color: #b08d57; }

  .nav-toggle {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
  }
  .nav-toggle span {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: #1a1a2e;
    transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
  }
  .nav-toggle span:nth-child(1) { top: 0; }
  .nav-toggle span:nth-child(2) { top: 10px; }
  .nav-toggle span:nth-child(3) { top: 20px; }
  .nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #b08d57;
    font-weight: 400;
  }

  .hero {
    padding: clamp(150px, 22vh, 260px) clamp(24px, 5vw, 72px) clamp(70px, 10vh, 120px);
    max-width: 1180px;
    margin: 0 auto;
  }
  .hero .eyebrow { letter-spacing: 0.28em; }
  .hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(44px, 6.6vw, 96px);
    line-height: 1.04;
    letter-spacing: -0.01em;
    margin-top: 34px;
    max-width: 14ch;
  }
  .hero p {
    margin-top: 38px;
    max-width: 62ch;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.8;
    font-weight: 300;
    color: #4a4a5a;
  }

  .hoods-section {
    padding: clamp(90px, 14vh, 180px) clamp(24px, 5vw, 72px);
    max-width: 1180px;
    margin: 0 auto;
  }
  .hoods-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    margin-top: 22px;
    max-width: 20ch;
  }
  .hoods-list { margin-top: 72px; border-top: 1px solid #e0dccf; }
  .hood {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(24px, 6vw, 90px);
    align-items: start;
    padding: 46px 0;
    border-bottom: 1px solid #e0dccf;
  }
  .hood .label {
    display: flex;
    align-items: baseline;
    gap: 18px;
  }
  .hood .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 0;
    color: #b08d57;
    font-weight: 400;
  }
  .hood h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.01em;
    line-height: 1.05;
  }
  .hood p {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.9;
    font-weight: 300;
    color: #4a4a5a;
    max-width: 56ch;
  }

  .cta-dark {
    background: #1a1a2e;
    color: #ffffff;
    padding: clamp(100px, 16vh, 200px) clamp(24px, 5vw, 72px);
    text-align: center;
  }
  .cta-dark .eyebrow { color: #c6a878; }
  .cta-dark h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 4.6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-top: 24px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-dark p {
    margin: 28px auto 0;
    max-width: 44ch;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.85;
    font-weight: 300;
    color: #b6b4b0;
  }
  .cta-dark .cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 46px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 17px 38px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.4s ease, color 0.4s ease;
  }
  .cta-dark .cta:hover { background: #ffffff; color: #1a1a2e; }
  .cta-dark .cta span { color: #c6a878; }

  footer {
    border-top: 1px solid #e0dccf;
    padding: 60px clamp(24px, 5vw, 72px) 48px;
  }
  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }
  .footer-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.03em;
    display: block;
  }
  .footer-brand small {
    font-size: 12.5px;
    font-weight: 300;
    color: #6a6a78;
    letter-spacing: 0.04em;
  }
  .footer-brand img {
    display: block;
    height: 40px;
    width: auto;
  }
  .footer-brand img.logo-mobile { display: none; }
  footer nav { display: flex; gap: 30px; flex-wrap: wrap; }
  footer nav a {
    text-decoration: none;
    color: #6a6a78;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .footer-copy { font-size: 12px; font-weight: 300; color: #a8a8b0; }

  [data-reveal] { opacity: 0; transform: translateY(44px); }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 1.5s cubic-bezier(0.16,1,0.3,1), transform 1.5s cubic-bezier(0.16,1,0.3,1); }
  @media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; }
  }

  @media (max-width: 860px) {
    .logo img.logo-desktop, .footer-brand img.logo-desktop { display: none; }
    .logo img.logo-mobile, .footer-brand img.logo-mobile { display: block; }

    nav.primary-nav {
      position: fixed;
      inset: 0;
      flex-direction: column;
      justify-content: center;
      gap: 36px;
      background: #ffffff;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }
    nav.primary-nav a { font-size: 15px; }
    .nav-open nav.primary-nav { transform: translateX(0); }
    .nav-toggle { display: block; }
    body.nav-open { overflow: hidden; }

    .hood { grid-template-columns: 1fr; gap: 14px; }
  }
