:root {
  /* Color Palette - Modern Earth Tones */
  --color-forest-900: #102621;
  --color-forest-800: #17352d;
  --color-forest-700: #1d3f35;
  --color-forest-500: #2f5a4c;

  --color-olive-200: #c9d4c2;

  --color-sand-50: #f7f3ee;
  --color-sand-100: #efe7dc;
  --color-sand-200: #e2d6c6;

  --color-gold-400: #c6a15b;
  --color-gold-500: #b28b43;

  --color-cream: #fbf9f5;
  --color-white: #ffffff;

  /* Spacing Scale - Systematic 4/8pt Grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Shadows - Layered & Soft */
  --shadow-sm: 0 1px 2px rgba(16, 38, 33, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(16, 38, 33, 0.05), 0 2px 4px -1px rgba(16, 38, 33, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(16, 38, 33, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-xl: 0 20px 25px -5px rgba(16, 38, 33, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-soft: 0 18px 45px rgba(16, 38, 33, 0.12);

  /* Typography */
  --font-serif: "Cormorant Garamond", "Baskerville", serif;
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;

  --max-width: 1100px;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-forest-900);
  background: radial-gradient(circle at top left, var(--color-sand-50), var(--color-sand-100) 45%, #d7dfd3 100%);
  background-attachment: fixed;
  /* Parallax-like feel */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-forest-900);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-4);
}

a {
  color: var(--color-forest-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-forest-500);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold-400);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-forest-900);
}

.nav-links {
  display: flex;
  gap: var(--space-5);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--color-gold-400);
}

main {
  flex: 1;
  width: 100%;
}

/* Sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 0;
}

.section-heading p {
  font-size: 1.125rem;
  color: var(--color-forest-700);
}

/* Hero */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6) var(--space-10);
  display: grid;
  gap: var(--space-8);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-forest-500);
  margin-bottom: var(--space-3);
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 4.8rem);
  margin: 0 0 var(--space-4) 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--color-forest-800);
  max-width: 540px;
  margin-bottom: var(--space-6);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 40px;
  /* iPhone-ish radius */
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
  transform: rotate(-5deg);
  /* Slight jaunty angle */
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(-5deg);
  }

  100% {
    transform: translateY(0px) rotate(-5deg);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn.primary {
  background: var(--color-forest-800);
  color: var(--color-cream);
  box-shadow: var(--shadow-md);
}

.btn.primary:hover {
  background: var(--color-forest-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-forest-800);
  border-color: var(--color-olive-200);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-forest-500);
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-5);
}

.card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.8);
}

.card h3 {
  margin-top: 0;
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.feature-list li {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid rgba(16, 38, 33, 0.05);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Support Page Specifcs */
.support-hero {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin-bottom: var(--space-8);
  border: 1px solid rgba(16, 38, 33, 0.08);
}

.support-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0;
}

.support-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Checkmarks/Icons simplified */
.check-icon {
  color: var(--color-forest-500);
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--color-forest-900);
  color: var(--color-cream);
  padding: var(--space-8) var(--space-6);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.footer-links a {
  color: var(--color-sand-200);
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--color-white);
  opacity: 1;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.page-title {
  margin-bottom: var(--space-6);
  text-align: center;
}

.page-title h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0;
  margin-bottom: var(--space-3);
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-forest-900);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-gold-500);
  margin-left: var(--space-2);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: var(--space-3);
  margin-bottom: 0;
  color: var(--color-forest-800);
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-top: var(--space-9);
    padding-bottom: var(--space-10);
  }

  .cta-row {
    flex-direction: row;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
  }

  .section-heading {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: var(--space-3);
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
    /* Better mobile fit */
  }
}