:root {
  --ivory: #fbfaf7;
  --ivory-deep: #f4f0e9;
  --navy: #07172d;
  --navy-soft: #10223b;
  --gold: #ae7e2f;
  --gold-light: #c89a4b;
  --ink: #122033;
  --muted: #636a74;
  --line: rgba(174, 126, 47, .55);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #e8e5df;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { cursor: pointer; }

.page-shell {
  width: min(100%, 1720px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--ivory);
  box-shadow: 0 0 50px rgba(0,0,0,.12);
  overflow: hidden;
}

.construction-bar {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto auto minmax(30px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 0 4.2vw;
  color: var(--gold);
  font-size: clamp(.72rem, 1vw, 1rem);
  text-transform: uppercase;
  letter-spacing: .23em;
  white-space: nowrap;
}
.construction-line { height: 1px; background: var(--line); }
.diamond-mini { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero {
  display: grid;
  grid-template-columns: minmax(590px, .96fr) minmax(560px, 1.04fr);
  min-height: calc(100vh - 160px);
  border-top: 1px solid rgba(174,126,47,.18);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 72px) clamp(42px, 5.4vw, 92px) clamp(32px, 4vw, 64px);
  background:
    radial-gradient(circle at 90% 42%, rgba(255,255,255,.94) 0 8%, rgba(251,250,247,.98) 45%, var(--ivory) 75%),
    var(--ivory);
}
.brand-lockup {
  display: block;
  width: clamp(360px, 38vw, 760px);
  max-width: 100%;
  margin: 0 0 clamp(22px, 2.6vw, 40px) clamp(8px, 2.4vw, 34px);
  text-align: center;
}
.brand-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.brand-signature {
  width: 100%;
  margin: 12px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.22vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: .01em;
  text-align: center;
}
.headline-group { max-width: 720px; }
h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 3.35vw, 4.45rem);
  line-height: .99;
  letter-spacing: -.025em;
}
.subheadline {
  margin: clamp(22px, 2vw, 32px) 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.58vw, 2rem);
  line-height: 1.25;
}
.intro {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: clamp(.98rem, 1.05vw, 1.2rem);
  line-height: 1.55;
  color: #1a2635;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: clamp(24px, 2.4vw, 38px) 0 0;
  max-width: 720px;
}
.benefit {
  min-height: 94px;
  padding: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-right: 1px solid rgba(18,32,51,.14);
  color: var(--navy);
  font-size: clamp(.68rem, .72vw, .84rem);
  line-height: 1.22;
}
.benefit:first-child { padding-left: 0; }
.benefit:last-child { border-right: 0; padding-right: 0; }
.benefit svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notify-block {
  margin-top: clamp(22px, 2.4vw, 38px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: clamp(.78rem, .9vw, 1rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.status-copy {
  margin: 10px 0 16px;
  color: var(--ink);
  font-size: clamp(.92rem, 1vw, 1.08rem);
  line-height: 1.45;
}
.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 52px;
  border: 1px solid rgba(18,32,51,.18);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}
.notify-form input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--navy);
  background: #fff;
  outline: none;
  font-size: 1rem;
}
.notify-form input:focus { box-shadow: inset 0 0 0 2px rgba(174,126,47,.35); }
.notify-form button {
  min-width: 214px;
  border: 0;
  padding: 0 24px;
  background: var(--navy);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .84rem;
  transition: background .2s ease, transform .2s ease;
}
.notify-form button:hover { background: #122847; }
.notify-form button:active { transform: translateY(1px); }
.notify-form button:disabled { opacity: .65; cursor: wait; }
.consent {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
}
.text-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-message {
  min-height: 1.1em;
  margin: 8px 0 0;
  color: #3d6b4c;
  font-size: .82rem;
}
.form-message.error { color: #8f2f2f; }
.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #bcae9a;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 20%;
  background: linear-gradient(90deg, var(--ivory), rgba(251,250,247,.86) 20%, rgba(251,250,247,0));
  pointer-events: none;
}
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; display: block; }
.hero-visual img { object-fit: cover; object-position: center; }

.footer-bar {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 20px 5.5vw 32px;
  background: linear-gradient(90deg, #07172d, #0b1d35 58%, #07172d);
  color: var(--gold-light);
}
.footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: clamp(.72rem, .88vw, .98rem);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}
.footer-item svg {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-divider { width: 1px; height: 42px; background: rgba(200,154,75,.65); }
.copyright {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  white-space: nowrap;
}

.privacy-dialog {
  width: min(620px, calc(100vw - 36px));
  border: 1px solid rgba(174,126,47,.45);
  border-radius: 6px;
  padding: 32px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0,0,0,.35);
}
.privacy-dialog::backdrop { background: rgba(7,23,45,.72); backdrop-filter: blur(4px); }
.privacy-dialog h2 { margin: 0 0 20px; color: var(--navy); font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.privacy-dialog p { line-height: 1.55; }
.privacy-dialog a { color: var(--gold); }
.dialog-close { position: absolute; top: 9px; right: 14px; border: 0; background: transparent; color: var(--navy); font-size: 1.8rem; }
.privacy-note { padding-top: 16px; border-top: 1px solid rgba(18,32,51,.12); color: var(--muted); font-size: .82rem; }
.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; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(520px, 1.03fr) minmax(430px, .97fr); }
  .hero-copy { padding-left: 42px; padding-right: 38px; }
  .brand-lockup { margin-left: 0; }
  .benefits { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(3), .benefit:nth-child(4) { padding-top: 4px; }
}

@media (max-width: 900px) {
  body { background: var(--ivory); }
  .page-shell { box-shadow: none; }
  .construction-bar { min-height: 54px; gap: 12px; letter-spacing: .17em; }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { order: 2; padding: 34px 24px 40px; }
  .hero-visual { order: 1; min-height: 56vw; max-height: 540px; }
  .hero-visual::before { inset: auto 0 0; width: 100%; height: 25%; background: linear-gradient(0deg, var(--ivory), rgba(251,250,247,0)); }
  .brand-lockup { width: min(88vw, 620px); margin: 0 auto 30px; }
  .brand-logo { width: 100%; }
  .brand-signature { margin-top: 8px; }
  h1 { font-size: clamp(2.4rem, 7.3vw, 4rem); }
  .headline-group, .benefits, .notify-block { max-width: 100%; }
  .footer-bar { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px 42px; }
  .footer-divider { display: none; }
  .footer-item { justify-content: flex-start; max-width: 440px; margin: 0 auto; width: 100%; text-align: left; }
}

@media (max-width: 590px) {
  .construction-bar { grid-template-columns: 20px auto minmax(20px, 1fr); padding: 0 18px; font-size: .64rem; gap: 10px; }
  .construction-bar .construction-line:first-child { display: none; }
  .diamond-mini { width: 22px; height: 22px; }
  .hero-visual { min-height: 74vw; }
  .hero-copy { padding: 24px 18px 34px; }
  .brand-lockup { width: min(92vw, 520px); margin-bottom: 24px; }
  .brand-logo { width: 100%; }
  .brand-signature { font-size: .98rem; }
  h1 br { display: none; }
  .subheadline br { display: none; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit { min-height: 96px; font-size: .7rem; }
  .notify-form { grid-template-columns: 1fr; gap: 0; }
  .notify-form input { min-height: 52px; }
  .notify-form button { min-height: 52px; min-width: 0; }
  .eyebrow { line-height: 1.45; }
  .privacy-dialog { padding: 28px 22px; }
}
