:root {
  --bg-main: #f6f1ea;
  --bg-muted: #f0e6dc;
  --bg-hero: #f7f0e8;
  --text-main: #2b2520;
  --text-soft: #6f6258;
  --accent: #c2725b;
  --accent-soft: #e3b8a7;
  --accent-dark: #8c4d3a;
  --border-subtle: rgba(43, 37, 32, 0.08);
  --shadow-soft: 0 18px 45px rgba(22, 16, 10, 0.18);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-full: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #fdf8f3, #f3e7dd);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, 100% - 2.4rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-heading {
  max-width: 520px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 1.5rem + 0.8vw, 2.2rem);
  margin: 0 0 0.5rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.text-stack p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .two-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: linear-gradient(
      to bottom,
      rgba(246, 241, 234, 0.9),
      rgba(246, 241, 234, 0.6)
    )
    border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.4rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 40% 60% 45% 55%;
  background: radial-gradient(circle at 20% 0%, #ffe7d9, #c2725b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff7f0;
  font-weight: 600;
  font-size: 0.9rem;
}

.logo-text {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.nav-link {
  position: relative;
  color: var(--text-soft);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, border-color 0.12s ease-out,
    color 0.12s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff8f3;
  box-shadow: 0 14px 30px rgba(117, 60, 42, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(117, 60, 42, 0.45);
}

.btn-ghost {
  border-color: rgba(140, 77, 58, 0.3);
  color: var(--accent-dark);
  background: rgba(255, 248, 240, 0.9);
}

.btn-ghost:hover {
  background: #fff8f2;
}

.btn.text-only {
  padding-inline: 0;
  border-radius: 0;
  border: none;
  color: var(--accent-dark);
  background: transparent;
  box-shadow: none;
}

.btn.text-only::after {
  content: "↴";
  font-size: 0.9em;
}

.btn.text-only:hover {
  transform: none;
}

.btn.small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.hero {
  padding: 4.8rem 0 4rem;
}

.hero-simple {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero-inner-simple {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 2rem + 2vw, 3.2rem);
  line-height: 1.03;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  max-width: 440px;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-dark);
  margin-bottom: 0.7rem;
}

.hero-cta {
  margin-top: 1.2rem;
}

.hero-contact {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.logo-centered {
  justify-content: center;
  margin-bottom: 0.9rem;
}

.feature-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 30px rgba(59, 38, 26, 0.08);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem 1.4rem;
  border: 1px solid var(--border-subtle);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .waitlist {
    grid-template-columns: minmax(0, 1fr);
  }
}

.waitlist-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 35px rgba(71, 51, 39, 0.18);
}

.waitlist-form input[type="email"] {
  width: 100%;
  border-radius: var(--radius-full);
  border: 1px solid rgba(113, 88, 71, 0.35);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 0.9rem;
  background: #fffaf5;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(194, 114, 91, 0.4);
}

.waitlist-form .btn {
  width: 100%;
}

.form-note {
  margin-top: 0.7rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(140, 110, 90, 0.2);
  background: rgba(246, 241, 234, 0.96);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.4rem;
  }

  .hero-simple {
    min-height: calc(100vh - 3.4rem);
  }
}

