:root {
  --sand: #F5EDE0;
  --cream: #EDE0CE;
  --cream-light: #FAF5EC;
  --turquoise: #3D8B8B;
  --turquoise-dark: #2F7A7A;
  --burgundy: #6B2D2D;
  --burgundy-light: #8B3A3A;
  --brown: #5C4033;
  --brown-light: #7A5C42;
  --deep-red: #9C3D3D;
  --text-dark: #3A2D24;
  --text-mid: #6B5D4F;
  --text-light: #9A8B7C;
  --white: #FFFFFF;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--sand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--burgundy);
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container.narrow {
  max-width: 760px;
}

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

/* ===== NAV ===== */
nav#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 237, 224, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 64, 51, 0.12);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.wordmark:hover {
  color: var(--turquoise);
}

.wordmark.small {
  font-size: 1.4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--turquoise);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(170deg, var(--cream-light) 0%, var(--sand) 50%, var(--cream) 100%);
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(61, 139, 139, 0.03) 60px, rgba(61, 139, 139, 0.03) 62px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 60px, rgba(107, 45, 45, 0.03) 60px, rgba(107, 45, 45, 0.03) 62px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-shield {
  color: var(--turquoise);
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-shield svg {
  display: inline-block;
}

.hero h1 {
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.6rem;
  background: var(--white);
  border: 1px solid rgba(61, 139, 139, 0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--turquoise-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.coming-soon-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== DIVIDER ===== */
.divider {
  background: var(--cream);
  padding: 0;
  line-height: 0;
}

.divider svg {
  display: block;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

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

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 1rem;
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--turquoise);
  border-radius: 50%;
  color: var(--turquoise);
}

.step h3 {
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== WHO IT IS FOR ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(92, 64, 51, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92, 64, 51, 0.1);
}

.card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  opacity: 0.6;
  pointer-events: none;
}

.card h3 {
  position: relative;
  z-index: 1;
  color: var(--burgundy);
}

.card p {
  position: relative;
  z-index: 1;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-text p:first-child {
  font-size: 1.15rem;
  color: var(--brown);
  font-weight: 500;
}

.about-pattern {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

/* ===== COMING SOON ===== */
.coming-soon {
  background: var(--brown);
  padding: 5rem 0 4rem;
  color: var(--cream);
}

.coming-soon h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.coming-soon-text {
  color: rgba(237, 224, 206, 0.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

.coming-soon-text strong {
  color: var(--turquoise);
  font-weight: 500;
}

.coming-soon-pattern {
  margin-bottom: 2rem;
  opacity: 0.4;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand .wordmark {
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--turquoise);
}

.footer-pattern {
  margin: 1.5rem 0;
  opacity: 0.3;
}

.copyright {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--sand);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(92, 64, 51, 0.12);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    text-align: center;
    padding: 0.75rem 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-pattern {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 90vh;
    padding: 5rem 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-inner {
    padding: 1rem 1.5rem;
  }

  .hero-shield svg {
    width: 60px;
    height: 70px;
  }
}
