﻿:root {
  color-scheme: light;
  --ink: #1a1d1d;
  --muted: #5b5f5e;
  --paper: #f7f1e3;
  --paper-2: #f1eee8;
  --teal: #2b6a6d;
  --sienna: #b6523b;
  --amber: #cb8b2b;
  --white: #ffffff;
  --shadow: 0 30px 70px rgba(26, 29, 29, 0.18);
  --shadow-soft: 0 18px 40px rgba(26, 29, 29, 0.12);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #fff7ea 0%, transparent 55%),
    radial-gradient(circle at 100% 30%, #e7f1ed 0%, transparent 60%),
    linear-gradient(135deg, #f7f1e3 0%, #efe4d2 55%, #f1eee8 100%);
  min-height: 100vh;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(247, 241, 227, 0.8);
  border-bottom: 1px solid rgba(26, 29, 29, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(43, 106, 109, 0.12);
  color: var(--ink);
}

.cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 10px 25px rgba(26, 29, 29, 0.2);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
}

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 48px;
}

.hero-copy h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.secondary-button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(26, 29, 29, 0.2);
  font-weight: 600;
  color: var(--ink);
}

.hero-media {
  position: relative;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -18px;
  background: var(--white);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 22px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 520px;
}

.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.feature {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

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

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
}

.gallery img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.phone-shot {
  border-radius: var(--radius-xl);
}

.phone-shot img {
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(26, 29, 29, 0.2);
}

.showcase {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  margin-top: 50px;
}

.showcase img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(43, 106, 109, 0.14);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-band .cta {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  border-top: 1px solid rgba(26, 29, 29, 0.08);
  padding: 32px 24px 50px;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.form-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.waitlist-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.86);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.waitlist-card .section-subtitle {
  margin-bottom: 22px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-card h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 16px;
}

.form-card p {
  color: var(--muted);
  margin-bottom: 28px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(26, 29, 29, 0.16);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.privacy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.86);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.privacy-card h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  margin-bottom: 20px;
}

.privacy-card h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.privacy-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

  .cta-band {
    padding: 40px 28px;
  }

  .form-card {
    padding: 28px;
  }

  .waitlist-card {
    padding: 28px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }
}
