:root {
  --ink: #1c1a17;
  --paper: #fdf6ec;
  --paper-dim: #f4ead9;
  --orange: #ef7d1f;
  --orange-dark: #d9650a;
  --yellow: #ffcf4d;
  --line: rgba(28, 26, 23, 0.12);
  --shadow: rgba(28, 26, 23, 0.18);
  --radius: 18px;
  --font: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f5efe3;
    --paper: #1a1712;
    --paper-dim: #211d17;
    --line: rgba(245, 239, 227, 0.14);
    --shadow: rgba(0, 0, 0, 0.5);
  }
}

:root[data-theme="dark"] {
  --ink: #f5efe3;
  --paper: #1a1712;
  --paper-dim: #211d17;
  --line: rgba(245, 239, 227, 0.14);
  --shadow: rgba(0, 0, 0, 0.5);
}

:root[data-theme="light"] {
  --ink: #1c1a17;
  --paper: #fdf6ec;
  --paper-dim: #f4ead9;
  --line: rgba(28, 26, 23, 0.12);
  --shadow: rgba(28, 26, 23, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
}

body {
  position: relative;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  font-size: 1.5rem;
  transform: rotate(-8deg);
}

.logo-text em {
  font-style: normal;
  color: var(--orange);
}

.pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Hero */
.hero {
  padding: 72px 0 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-dark);
  margin: 0 0 14px;
}

.eyebrow.center { text-align: center; }

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.highlight {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  max-width: 46ch;
  margin: 0 0 32px;
}

.lede.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--orange);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.coming-soon-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.photo-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 45px var(--shadow);
  border: 6px solid var(--paper);
  background: var(--paper-dim);
  width: 62%;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.tilt-left {
  transform: rotate(-7deg) translate(-38%, -8%);
  z-index: 1;
}

.tilt-right {
  transform: rotate(6deg) translate(30%, 14%);
  z-index: 2;
  width: 58%;
}

/* Meet section */
.meet {
  padding: 96px 0;
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.center { text-align: center; }

.meet h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

/* CTA */
.cta {
  padding: 96px 0;
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  max-width: 20ch;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.footer-sep { opacity: 0.5; }

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    min-height: 320px;
    margin-bottom: 12px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .lede { max-width: none; }
}

@media (max-width: 480px) {
  .photo-card { width: 72%; }
  .tilt-right { width: 66%; }
  .notify-form { flex-direction: column; }
  .notify-form button { width: 100%; }
}
