@font-face {
  font-family: "Mind Lora";
  src: url("/fonts/Lora-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

@font-face {
  font-family: "Mind Lora";
  src: url("/fonts/Lora-Italic.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 400 700;
}

:root {
  --canvas: #fef9f8;
  --paper: #fff8f8;
  --paper-light: #fffdfc;
  --ink: #4e3e44;
  --berry: #4f0a1f;
  --muted: #746269;
  --rose: #ad4267;
  --rose-dark: #8f2c4e;
  --rose-pale: #f2c7d1;
  --rose-wash: #f9e4e8;
  --line: rgba(173, 66, 103, 0.23);
  --shadow: 0 22px 42px rgba(94, 49, 62, 0.12);
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --serif: "Mind Lora", Georgia, serif;
}

* { box-sizing: border-box; }

html { background: var(--canvas); }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 199, 209, 0.36), transparent 24rem),
    var(--canvas);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input { font: inherit; }

a { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--paper-light);
  background: var(--berry);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 76px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid rgba(78, 62, 68, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--berry);
  text-decoration: none;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.coming-soon,
.eyebrow {
  margin: 0;
  color: var(--rose);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  min-height: calc(100vh - 86px);
  padding: clamp(42px, 5vw, 72px) 0;
}

.hero-copy { max-width: 560px; }

.hero h1 {
  max-width: 10.5ch;
  margin: 16px 0 24px;
  color: var(--berry);
  font-family: var(--serif);
  font-size: clamp(3.72rem, 6.15vw, 5.18rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.045;
}

.hero-intro {
  max-width: 34rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.42vw, 1.22rem);
  letter-spacing: -0.013em;
  line-height: 1.55;
}

.waitlist { margin-top: clamp(32px, 4vw, 46px); }

.waitlist h2 {
  margin: 0 0 13px;
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.form-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.form-fields[hidden] { display: none; }

input[type="email"] {
  min-width: 0;
  min-height: 57px;
  padding: 0 18px;
  border: 1px solid rgba(78, 62, 68, 0.18);
  border-radius: 15px;
  outline: none;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 5px 14px rgba(94, 49, 62, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input[type="email"]::placeholder { color: #9a858c; }

input[type="email"]:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(173, 66, 103, 0.14);
}

button {
  min-height: 57px;
  padding: 0 22px;
  border: 1px solid var(--rose);
  border-radius: 15px;
  color: var(--paper-light);
  background: var(--rose);
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

button:hover { border-color: var(--rose-dark); background: var(--rose-dark); }
button:active { transform: translateY(1px) scale(0.99); }
button:focus-visible { outline: 3px solid rgba(173, 66, 103, 0.36); outline-offset: 3px; }
button:disabled { cursor: wait; opacity: 0.7; }

.disclosure,
.form-message {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.48;
}

.form-message:empty { display: none; }
.form-message.error { color: #922b4c; }
.form-message.success { margin-top: 3px; color: var(--berry); font-size: 0.98rem; font-weight: 600; }

.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.hero-visual {
  position: relative;
  min-width: 0;
  max-width: 650px;
  justify-self: end;
  padding: 4px 26px 33px 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -26px;
  right: -28px;
  width: 72%;
  height: 72%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

figure { margin: 0; }

.main-photo {
  position: relative;
  overflow: hidden;
  height: clamp(480px, 43vw, 570px);
  border: 1px solid rgba(255, 253, 252, 0.82);
  border-radius: 26px;
  background: var(--rose-wash);
  box-shadow: var(--shadow);
}

.main-photo img,
.detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-photo img { object-position: 52% top; }

.detail-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(39%, 240px);
  aspect-ratio: 0.92;
  overflow: hidden;
  border: 7px solid var(--paper);
  border-radius: 19px;
  background: var(--rose-wash);
  box-shadow: 0 17px 32px rgba(94, 49, 62, 0.16);
}

.detail-photo img { object-position: 56% 55%; }

.promise-strip {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-strip p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0;
  color: var(--berry);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0 31px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p { margin: 0; }
.site-footer a { text-underline-offset: 3px; }

@media (max-width: 970px) {
  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
    gap: 35px;
  }

  .hero h1 { font-size: clamp(3.3rem, 7vw, 4.6rem); }
  .hero-visual { padding-right: 18px; }
}

@media (max-width: 760px) {
  body { background: var(--canvas); }
  .page-shell { padding: 0 20px; }
  .site-header { min-height: 67px; }
  .brand span { font-size: 1.1rem; }
  .coming-soon { font-size: 0.59rem; letter-spacing: 0.14em; }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    min-height: auto;
    padding: 20px 0 54px;
  }

  .hero-visual {
    order: -1;
    max-width: none;
    padding: 0 13px 12px 0;
  }

  .hero-visual::before {
    top: 10px;
    right: -15px;
    width: 66%;
    height: 82%;
  }

  .main-photo { height: auto; aspect-ratio: 1.97; border-radius: 19px; }
  .main-photo img { object-position: 50% 43%; }
  .detail-photo { width: 30%; right: 0; bottom: 0; border-width: 4px; border-radius: 13px; }
  .detail-photo img { object-position: 53% 48%; }

  .hero h1 {
    max-width: 11.1ch;
    margin: 12px 0 17px;
    font-size: clamp(2.7rem, 12vw, 3.25rem);
    letter-spacing: -0.07em;
  }

  .hero-intro { font-size: 1.02rem; line-height: 1.5; }
  .waitlist { margin-top: 27px; }
  .waitlist h2 { margin-bottom: 11px; font-size: 1.25rem; }
  .form-fields { grid-template-columns: 1fr; gap: 10px; }
  input[type="email"], button { min-height: 54px; border-radius: 14px; }
  button { width: 100%; }
  .disclosure { max-width: none; }
  .promise-strip { padding: 19px 0; }
  .promise-strip p { gap: 6px 11px; font-size: 0.61rem; letter-spacing: 0.105em; }
  .site-footer { padding: 22px 0 26px; }
}

@media (max-width: 370px) {
  .page-shell { padding: 0 16px; }
  .hero { gap: 25px; }
  .hero h1 { font-size: 2.54rem; }
  .promise-strip p { gap: 4px 9px; font-size: 0.58rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise 380ms ease-out both; }
  .hero-visual { animation: rise 460ms 70ms ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
