:root {
  --ink: #0e0e0e;
  --night: #0a0a0a;
  --cream: #f6f7ec;
  --cream-70: rgba(246, 247, 236, 0.7);
  --cream-50: rgba(246, 247, 236, 0.5);
  --cream-30: rgba(246, 247, 236, 0.3);
  --cream-12: rgba(246, 247, 236, 0.12);
  --focus: #b8d7ff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--night);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.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;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 6vw;
  border-bottom: 1px solid var(--cream-12);
  color: var(--cream);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--cream-50);
  font-size: 15px;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--cream);
}

.site-nav .muted {
  color: var(--cream-30);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero,
.waitlist-page {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  align-content: center;
  padding: 56px 24px 96px;
  text-align: center;
}

.hero-copy {
  width: min(980px, 100%);
}

.hero h1,
.waitlist-page h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.85rem);
  font-weight: 300;
  line-height: 1.15;
}

.hero-copy p,
.waitlist-page .lead {
  max-width: 920px;
  margin: 28px auto 0;
  color: var(--cream-50);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
}

.signup-form {
  width: min(510px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 10px;
  margin-top: 54px;
}

.signup-form label {
  min-width: 0;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--cream-12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--cream);
  padding: 0 16px;
  outline: none;
}

.signup-form input::placeholder {
  color: var(--cream-30);
}

.signup-form input:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(184, 215, 255, 0.16);
}

.signup-form button {
  min-height: 48px;
  border: 1px solid var(--cream-50);
  border-radius: 10px;
  background: transparent;
  color: var(--cream-70);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.signup-form button:hover,
.signup-form button:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 2px 0 0;
  color: var(--cream-70);
  font-size: 13px;
  text-align: left;
}

.light-header {
  background: var(--cream);
  border-color: rgba(14, 14, 14, 0.12);
  color: var(--ink);
}

.light-header .site-nav {
  color: rgba(14, 14, 14, 0.48);
}

.light-header .site-nav a:hover,
.light-header .site-nav a:focus-visible,
.light-header .site-nav a[aria-current="page"] {
  color: var(--ink);
}

.light-header .site-nav .muted {
  color: rgba(14, 14, 14, 0.36);
}

body[data-page="about"] {
  background: var(--cream);
  color: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(420px, 46vw) minmax(360px, 1fr);
  min-height: calc(100vh - 80px);
}

.about-image {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  width: min(720px, 100%);
  justify-self: center;
  padding: 76px 54px 96px;
  text-align: center;
}

.about-story h1 {
  margin: 0 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.about-story p {
  margin: 32px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.22;
}

.closing-line {
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
}

.mobile-image-grid {
  display: none;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.waitlist-page {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 24px;
  color: rgba(246, 247, 236, 0.45);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.waitlist-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.18;
}

.waitlist-page .lead {
  max-width: 900px;
  line-height: 1.1;
}

.signup-form.large {
  margin-top: 48px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    display: none;
    width: min(260px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid var(--cream-12);
    border-radius: 8px;
    background: #111;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    text-align: right;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 16px;
  }

  .light-header .site-nav {
    background: var(--cream);
    border-color: rgba(14, 14, 14, 0.14);
  }

  .hero,
  .waitlist-page {
    min-height: calc(100vh - 72px);
    padding: 42px 24px 72px;
  }

  .hero-copy p,
  .waitlist-page .lead {
    margin-top: 24px;
  }

  .signup-form {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .form-status {
    text-align: center;
  }

  .about-layout {
    display: block;
  }

  .about-image {
    display: none;
  }

  .about-story {
    padding: 44px 24px 76px;
  }

  .mobile-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
    overflow: visible;
    border-radius: 0;
  }

  .mobile-image-grid img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border-radius: 8px;
    background: rgba(14, 14, 14, 0.08);
  }

  .mobile-image-grid .crop-top {
    object-position: center 6%;
  }

  .mobile-image-grid .crop-mid {
    object-position: center 48%;
  }

  .mobile-image-grid .crop-low {
    object-position: center 92%;
  }

  .about-story p {
    margin-top: 24px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1.85rem;
  }

  .mobile-image-grid {
    gap: 10px;
    margin: 24px 0;
  }
}
