:root {
  --navy: #061624;
  --cream: #f2eadc;
  --cream-2: #fff8ec;
  --gold: #c99951;
  --ink: #17202a;
  --line: rgba(201,153,81,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
  background: linear-gradient(to bottom, rgba(6,22,36,.92), rgba(6,22,36,.30), transparent);
  backdrop-filter: blur(3px);
}
.brand-mark img { width: 74px; height: 74px; object-fit: contain; }
nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font: 600 .78rem/1 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
nav a { opacity: .92; }
nav a:hover { color: var(--gold); }

.hero {
  min-height: 92vh;
  padding: 120px 24px 70px;
  background:
    radial-gradient(circle at 72% 32%, rgba(201,153,81,.15), transparent 26%),
    linear-gradient(rgba(6,22,36,.74), rgba(6,22,36,.92)),
    url("assets/navy-texture.jpg") center/cover;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.32));
}
.hero-inner { max-width: 980px; margin: auto; }
.tower {
  width: min(245px, 52vw);
  margin: 0 auto 14px;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.38));
}

h1, h2, h3, .section-kicker, .launch, button {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .15em;
}
h1 {
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 8rem);
  line-height: .86;
  color: var(--cream-2);
  text-shadow: 0 3px 18px rgba(0,0,0,.5);
}
h1 span {
  display: inline-block;
  margin-top: .18em;
  font-size: .48em;
  letter-spacing: .32em;
}
.eyebrow {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
}
.hero-copy {
  max-width: 660px;
  margin: 34px auto 16px;
  color: var(--gold);
  font: italic 1.35rem/1.45 "Cormorant Garamond", Georgia, serif;
}
.launch {
  margin: 0 0 26px;
  font-size: 1.15rem;
  color: var(--cream-2);
}
.signup {
  width: min(640px, 100%);
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.16);
}
.signup input {
  flex: 1;
  min-width: 0;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--cream-2);
  font: italic 1.05rem "Cormorant Garamond", Georgia, serif;
}
.signup input::placeholder { color: rgba(255,248,236,.62); }
.signup button {
  padding: 0 32px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
}
.signup button:hover { background: rgba(201,153,81,.12); }

section { padding: clamp(56px, 8vw, 96px) clamp(22px, 7vw, 96px); }
.cream {
  background: radial-gradient(circle at 25% 0%, rgba(201,153,81,.11), transparent 32%), var(--cream);
  color: var(--ink);
}
.navy {
  background: linear-gradient(rgba(6,22,36,.94), rgba(6,22,36,.97)), url("assets/navy-texture.jpg") center/cover;
  color: var(--cream);
}
.split, .photo-note {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}
.section-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: .92rem;
}
.centered { text-align: center; }
h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: .16em;
  line-height: 1;
}
h2:after, .section-kicker.centered:after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 18px 0 0;
  background: var(--gold);
}
.centered:after { margin-left: auto !important; margin-right: auto !important; }
.about-copy p { margin-top: 0; max-width: 720px; }
.italic {
  color: #8a6937;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
}
.cards {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}
.three { grid-template-columns: repeat(3, 1fr); }
.five { grid-template-columns: repeat(5, 1fr); }
.card, .promise article {
  text-align: center;
  padding: 8px 28px;
  border-left: 1px solid var(--line);
}
.card:first-child, .promise article:first-child { border-left: 0; }
.icon {
  color: var(--gold);
  font-size: 2.3rem;
  margin-bottom: 12px;
}
h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  letter-spacing: .13em;
  line-height: 1.2;
}
.card p, .promise p { margin: 0; font-size: .95rem; }
.photo-note p:last-child { margin: 0; max-width: 760px; font-size: 1.05rem; }
.promise { text-align: center; }
.closing-line {
  margin: 34px 0 0;
  color: var(--gold);
  font: italic 1.3rem "Cormorant Garamond", Georgia, serif;
}
.follow {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 34px;
  align-items: center;
}
.socials {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}
.socials a { border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.dark-button { border-color: rgba(6,22,36,.34); background: rgba(255,255,255,.25); }
.dark-button input { color: var(--ink); }
.dark-button input::placeholder { color: rgba(23,32,42,.55); }
.dark-button button { background: var(--navy); color: var(--gold); }

.site-footer {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(22px, 7vw, 96px);
  background: var(--navy);
  border-top: 1px solid rgba(201,153,81,.22);
  color: var(--cream);
}
.site-footer img { width: 68px; }
.site-footer strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 1.2rem;
}
.site-footer p { margin: 0; color: rgba(242,234,220,.78); }
.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: 900px) {
  .site-header { position: absolute; height: auto; align-items: flex-start; }
  nav { display: none; }
  .brand-mark img { width: 62px; height: 62px; }
  .hero { padding-top: 105px; min-height: 86vh; }
  .split, .photo-note, .follow { grid-template-columns: 1fr; }
  .three, .five { grid-template-columns: 1fr; }
  .card, .promise article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }
  .card:first-child, .promise article:first-child { border-top: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 560px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.5rem); letter-spacing: .11em; }
  h1 span { letter-spacing: .22em; }
  .eyebrow { letter-spacing: .18em; }
  .signup { flex-direction: column; }
  .signup button {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px;
  }
  section { padding-left: 22px; padding-right: 22px; }
}
