:root {
  --bg: #f5f1e9;
  --surface: #fffdf9;
  --surface-alt: #ece6dc;
  --text: #20231f;
  --muted: #6e716c;
  --navy: #233248;
  --navy-dark: #172231;
  --tobacco: #9b7655;
  --line: rgba(35, 50, 72, .16);
  --shadow: 0 28px 70px rgba(32, 35, 31, .12);
  --radius: 26px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 233, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35, 50, 72, .08);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; flex-direction: column; width: fit-content; line-height: 1.05; }
.brand-name { font-family: "PT Serif", Georgia, serif; font-style: italic; font-weight: 700; font-size: 21px; color: var(--navy-dark); }
.brand-role { margin-top: 5px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; color: #4d514c; }
.site-nav a { position: relative; padding: 12px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 7px; width: 0; height: 1px; background: var(--tobacco); transition: width .25s ease; }
.site-nav a:hover::after { width: 100%; }
.header-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 44px; padding: 0 22px; font-size: 12px; background: var(--navy); color: #fff; }
.button-primary { min-height: 58px; padding: 0 28px; font-size: 14px; background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(35, 50, 72, .18); }
.button-primary:hover, .button-small:hover { background: var(--navy-dark); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--navy); border-bottom: 1px solid rgba(35,50,72,.3); padding-bottom: 4px; }

.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 1.5px; margin: 5px 0; background: var(--navy-dark); }

.hero { min-height: calc(100svh - 82px); display: flex; align-items: center; padding: 54px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(46px, 7vw, 94px); }
.hero-copy { padding: 32px 0; }
.eyebrow { margin: 0 0 20px; color: var(--tobacco); letter-spacing: .18em; font-size: 11px; font-weight: 700; }
h1 { margin: 0; max-width: 760px; color: var(--navy-dark); font-size: clamp(48px, 5.5vw, 78px); line-height: .98; letter-spacing: -.045em; font-weight: 600; }
h1 em { display: block; margin-top: 10px; font-family: "PT Serif", Georgia, serif; font-style: italic; font-weight: 400; color: var(--tobacco); letter-spacing: -.03em; }
.hero-text { max-width: 680px; margin: 30px 0 0; font-size: 17px; line-height: 1.7; color: #5f635d; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.trial-note { margin-top: 28px; padding: 17px 20px; border-left: 2px solid var(--tobacco); display: flex; flex-direction: column; gap: 5px; max-width: 610px; background: rgba(255,255,255,.28); }
.trial-note strong { font-size: 14px; color: var(--navy-dark); }
.trial-note span { font-size: 12px; line-height: 1.55; color: var(--muted); }
.hero-facts { list-style: none; padding: 0; margin: 38px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 650px; border-top: 1px solid var(--line); }
.hero-facts li { padding: 18px 18px 0 0; display: flex; flex-direction: column; gap: 4px; }
.hero-facts strong { color: var(--navy-dark); font-size: 19px; }
.hero-facts span { font-size: 11px; line-height: 1.4; color: var(--muted); }

.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; width: 66%; aspect-ratio: 1; right: -18%; top: -10%; border-radius: 50%; background: rgba(155, 118, 85, .12); filter: blur(1px); }
.image-frame { position: relative; z-index: 1; border-radius: 34px 34px 110px 34px; overflow: hidden; box-shadow: var(--shadow); background: #d8d1c6; aspect-ratio: .78; }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(15,24,35,.72) 100%); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(.82) contrast(.97) sepia(.04); }
.image-caption { position: absolute; z-index: 2; left: 28px; bottom: 26px; color: #fff; display: flex; flex-direction: column; gap: 5px; }
.image-caption span { font-family: "PT Serif", Georgia, serif; font-size: 24px; font-style: italic; }
.image-caption small { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; opacity: .78; }

.placeholder-section { scroll-margin-top: 78px; padding: 120px 0; background: var(--surface); border-top: 1px solid var(--line); }
.placeholder-section.alt { background: var(--surface-alt); }
.placeholder-inner { display: grid; grid-template-columns: 110px minmax(0, 760px); gap: 46px; }
.section-number { font-family: "PT Serif", Georgia, serif; font-style: italic; color: var(--tobacco); font-size: 38px; }
.placeholder-section h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; color: var(--navy-dark); }
.placeholder-section p:not(.eyebrow) { max-width: 690px; margin: 18px 0 0; font-size: 16px; line-height: 1.7; color: var(--muted); }
.contact-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 900px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header-inner { min-height: 70px; grid-template-columns: 1fr auto; gap: 12px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px;
    border-radius: 20px;
    background: rgba(255,253,249,.98);
    box-shadow: 0 16px 50px rgba(32,35,31,.14);
    border: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid rgba(35,50,72,.08); }
  .site-nav a:last-child { border-bottom: 0; }

  .hero { min-height: auto; padding: 34px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { padding: 10px 0 0; }
  h1 { font-size: clamp(44px, 12vw, 66px); }
  .hero-text { font-size: 16px; margin-top: 24px; }
  .hero-actions { align-items: stretch; gap: 18px; margin-top: 28px; }
  .button-primary { width: 100%; min-height: 58px; padding-inline: 20px; text-align: center; }
  .text-link { width: fit-content; }
  .hero-facts { margin-top: 30px; }
  .hero-facts li { padding-right: 10px; }
  .hero-facts strong { font-size: 17px; }
  .hero-media { order: 2; }
  .image-frame { border-radius: 24px 24px 74px 24px; aspect-ratio: .86; }
  .image-frame img { object-position: 50% 25%; }
  .image-caption { left: 20px; bottom: 19px; }
  .image-caption span { font-size: 21px; }

  .placeholder-section { padding: 82px 0; }
  .placeholder-inner { grid-template-columns: 1fr; gap: 16px; }
  .section-number { font-size: 28px; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 19px; }
  .brand-role { font-size: 9px; }
  .hero { padding-top: 26px; }
  .eyebrow { margin-bottom: 16px; font-size: 10px; }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  h1 em { margin-top: 8px; }
  .hero-text { line-height: 1.6; }
  .trial-note { padding: 15px 16px; }
  .hero-facts { grid-template-columns: 1fr; border-top: 0; gap: 0; }
  .hero-facts li { border-top: 1px solid var(--line); padding: 13px 0; display: grid; grid-template-columns: 100px 1fr; align-items: baseline; }
  .image-frame { aspect-ratio: .82; }
  .placeholder-section { padding: 68px 0; }
  .placeholder-section h2 { font-size: 34px; }
}
