/* ═══════════════════════════════════════════════════════════════
   Co·Awaken — Pixel-Perfect Replica
   Sacred Partnership as a Path of Awakening
   ═══════════════════════════════════════════════════════════════ */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors - extracted from original */
  --cream: #faf8f1;
  --cream-warm: #faf9f5;
  --white: #fefdfb;
  --black: #000;
  --text-dark: #0a0a0a;
  --text-muted: #999;
  --tan: #8b6f47;
  --tan-dark: #8b5a3c;
  --footer-bg: #30302e;
  --footer-text: #9a9a94;
  --teal: #4a9a9a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Text', Georgia, serif;
  --font-accent: 'Cormorant Infant', Georgia, serif;
  --font-ui: 'Inter', -apple-system, sans-serif;
  --font-logo: 'Optima', 'Segoe UI', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --content-width: 520px;
  --gutter: 40px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.4;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════════════════════ */

.header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--black);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-family: var(--font-logo);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-dark);
}

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

.nav .heart {
  font-size: 15px;
  vertical-align: middle;
}

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

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   Hero
   ═══════════════════════════════════════════════════════════════ */

.hero {
  text-align: center;
  padding: 50px var(--gutter) 0;
}

.hero-text {
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.6px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--tan);
}

.hero-image {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════
   Sections
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: 80px var(--gutter);
}

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

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

.section--white {
  background: var(--white);
}

.section--no-padding-top {
  padding-top: 0;
}

.section-content {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-content--center {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   Typography
   ═══════════════════════════════════════════════════════════════ */

.heading-bold {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 24px;
}

.heading-accent {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--tan);
  margin-bottom: 28px;
}

.text-display {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 20px;
}

.text-display--muted {
  color: var(--text-muted);
}

.text-body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.text-body:last-of-type {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 14px 26px;
  border-radius: 4px;
  margin-top: 28px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn--filled {
  background: var(--tan-dark);
  color: #fff;
  border: 1px solid var(--tan-dark);
}

.btn--filled:hover {
  background: #7a4f35;
  border-color: #7a4f35;
}

.btn--outline {
  background: transparent;
  color: var(--tan);
  border: 1px solid var(--tan);
}

.btn--outline:hover {
  background: var(--tan);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   Testimonials
   ═══════════════════════════════════════════════════════════════ */

.testimonial {
  text-align: center;
  margin-bottom: 70px;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial-icon {
  color: rgba(139, 111, 71, 0.35);
  margin-bottom: 20px;
}

.testimonial-icon svg {
  width: 36px;
  height: 28px;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.5px;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════════════
   Tea Image
   ═══════════════════════════════════════════════════════════════ */

.tea-image {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.tea-image img {
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--footer-bg);
  padding: 60px var(--gutter) 35px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--footer-text);
  margin-bottom: 24px;
}

.footer-location {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--footer-text);
  margin-bottom: 4px;
}

.footer-email {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--teal);
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--tan);
  margin-bottom: 6px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--footer-text);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--footer-text);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
  }

  .header-inner {
    padding: 18px var(--gutter);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 36px var(--gutter) 0;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .section {
    padding: 60px var(--gutter);
  }

  .heading-bold {
    font-size: 24px;
  }

  .heading-accent {
    font-size: 28px;
  }

  .text-display {
    font-size: 20px;
  }

  .text-body {
    font-size: 18px;
  }

  .testimonial-quote {
    font-size: 19px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .heading-bold {
    font-size: 22px;
  }

  .heading-accent {
    font-size: 26px;
  }
}
