/* =========================================
   Verve — Active Wellness & Lifestyle
   Static build for public_html
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --radius: 0.75rem;

  --cream: #f9f6f0;
  --cream-soft: #ede8de;
  --forest: #2d6a4f;
  --forest-deep: #1b4332;
  --sage: #74a57f;
  --sage-soft: #b7c9a9;
  --glow: #e9c46a;
  --glow-deep: #d4a373;
  --earth: #3d3d3d;

  --background: var(--cream);
  --foreground: var(--earth);

  --card: #fdfcfa;
  --card-foreground: var(--earth);

  --primary: var(--forest);
  --primary-foreground: #fdfcfa;
  --secondary: var(--cream-soft);
  --secondary-foreground: var(--earth);
  --muted: var(--cream-soft);
  --muted-foreground: #6b6b6b;
  --accent: var(--forest-deep);
  --accent-foreground: #fdfcfa;

  --border: rgba(61,61,61,0.12);
  --input: rgba(61,61,61,0.20);
  --ring: var(--forest);

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero-gradient {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary-foreground);
  color: var(--primary);
}
.btn-primary:hover { opacity: 0.92; }
.btn-outline {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); }
.btn-solid {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-solid:hover { opacity: 0.92; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: rgba(45,106,79,0.30); }

/* =========================================
   Header
   ========================================= */
.top-strip {
  background: rgba(61,61,61,0.05);
  text-align: center;
  padding: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249,246,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.logo-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 1rem; height: 1rem; color: var(--primary-foreground); }

.nav { display: none; }
.nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav a:hover { color: var(--foreground); }

.mobile-menu-btn {
  display: flex;
  background: none; border: none; cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .nav { display: flex; align-items: center; gap: 2rem; }
  .mobile-menu-btn { display: none; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.hero .overlay-1 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(233,196,106,0.25), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 7rem 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 0.375rem 1rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  line-height: 1.05;
  margin-top: 1.5rem;
}
.hero h1 em {
  color: var(--glow);
  font-style: italic;
}
@media (min-width: 640px) {
  .hero h1 { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 36rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.avatar-group {
  display: flex;
}
.avatar-group .avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid var(--background);
  background: linear-gradient(135deg, var(--sage), var(--glow));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600;
  color: var(--earth);
  margin-left: -0.5rem;
}
.avatar-group .avatar:first-child { margin-left: 0; }

.hero-rating svg {
  width: 1rem; height: 1rem;
  fill: var(--glow);
  color: var(--glow);
}
.hero-rating-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  margin-top: 0.25rem;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.40);
  width: 100%;
}
.hero-quote {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  color: var(--foreground);
  border-radius: 1rem;
  padding: 1.25rem;
  max-width: 18rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}
.hero-quote p { color: var(--foreground); margin: 0; }
.hero-quote .cite {
  margin-top: 0.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .hero-quote { display: block; }
}

/* =========================================
   Stats
   ========================================= */
.stats {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-grid .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
}
@media (min-width: 768px) {
  .stats-grid .num { font-size: 3.75rem; }
}
.stats-grid .label {
  margin-top: 0.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

/* =========================================
   Sections
   ========================================= */
.section { padding: 5rem 0; }
@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}
.section-heading {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading h2 {
  font-size: 3rem;
  color: var(--foreground);
}
.section-heading h2 em { font-style: italic; }
@media (min-width: 768px) {
  .section-heading h2 { font-size: 3.75rem; }
}
.section-heading p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.bg-secondary { background: var(--secondary); }

/* =========================================
   Pillars
   ========================================= */
.pillars-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}
.pillar-icon {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: rgba(45,106,79,0.10);
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.pillar h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: var(--foreground);
}
.pillar p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* =========================================
   Stories
   ========================================= */
.stories-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stories-grid { grid-template-columns: repeat(4, 1fr); }
}
.story {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.story:hover {
  box-shadow: 0 20px 25px -5px rgba(45,106,79,0.15);
}
.story-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--secondary);
}
.story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.story:hover .story-img img { transform: scale(1.05); }
.story-body { padding: 1.5rem; }
.story-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.story h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: var(--foreground);
}
.story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.story-footer span { font-size: 0.75rem; color: var(--muted-foreground); }
.story-footer a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.story-footer a:hover { color: var(--accent); }

/* =========================================
   Subscribe
   ========================================= */
.subscribe-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .subscribe-grid { grid-template-columns: 2fr 3fr; }
}
.subscribe-img {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  min-height: 18rem;
}
.subscribe-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.subscribe-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .subscribe-box { padding: 3.5rem; }
}
.subscribe-box .overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(233,196,106,0.25), transparent 60%);
  pointer-events: none;
}
.subscribe-box .content { position: relative; }
.subscribe-box h2 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .subscribe-box h2 { font-size: 3rem; }
}
.subscribe-box h2 em { font-style: italic; }
.subscribe-box > .content > p {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.85);
  max-width: 36rem;
  line-height: 1.7;
}

.subscribe-form {
  margin-top: 2rem;
  max-width: 28rem;
}
.subscribe-form .row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .subscribe-form .row { flex-direction: row; }
}
.subscribe-form input[type="email"] {
  flex: 1;
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.875rem 1.25rem;
  color: #fff;
  font-size: 0.9375rem;
  outline: none;
}
.subscribe-form input[type="email"]::placeholder { color: rgba(255,255,255,0.60); }
.subscribe-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px var(--glow);
}
.subscribe-form button {
  border-radius: 9999px;
  background: #fff;
  color: var(--primary);
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.subscribe-form button:hover { opacity: 0.92; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  cursor: pointer;
}
.consent-label input {
  margin-top: 0.125rem;
  accent-color: var(--primary);
}
.consent-label a { text-decoration: underline; }
.consent-label a:hover { color: #fff; }

.subscribe-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: #fff;
  font-weight: 500;
}
.subscribe-success svg {
  width: 1.5rem; height: 1.5rem;
  color: var(--glow);
  flex-shrink: 0;
}

.subscribe-meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.70);
}

/* =========================================
   Voices
   ========================================= */
.voices-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .voices-grid { grid-template-columns: repeat(3, 1fr); }
}
.voice {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}
.voice-stars {
  display: flex;
  gap: 0.25rem;
}
.voice-stars svg {
  width: 1rem; height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}
.voice blockquote {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.5;
}
.voice figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.voice-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.voice-name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.voice-sub { font-size: 0.75rem; color: var(--muted-foreground); }

/* =========================================
   Contact
   ========================================= */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item .icon-wrap {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: rgba(45,106,79,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .icon-wrap svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-item h3 { font-size: 1.25rem; color: var(--foreground); }
.contact-item p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.map-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  height: 24rem;
}
@media (min-width: 1024px) {
  .map-wrap { height: auto; }
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  min-height: 24rem;
}

/* =========================================
   Disclaimer
   ========================================= */
.disclaimer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.disclaimer p {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer h3 {
  font-size: 1.25rem;
  color: var(--primary-foreground);
}
.footer p, .footer a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin-top: 1rem; }
.footer li { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer li svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.70);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =========================================
   Cookie Banner
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.10);
  padding: 1.25rem 0;
  display: none;
}
.cookie-banner.open { display: block; }
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-inner p { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.cookie-inner .desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  max-width: 40rem;
}
.cookie-inner .desc a { color: var(--primary); text-decoration: underline; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-actions button {
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.btn-cookie-essential {
  background: transparent;
  border: 1px solid var(--border) !important;
  color: var(--foreground);
}
.btn-cookie-essential:hover { background: var(--secondary); }
.btn-cookie-all {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-cookie-all:hover { opacity: 0.92; }
.btn-cookie-close {
  background: transparent;
  color: var(--muted-foreground);
  padding: 0.5rem !important;
}
.btn-cookie-close:hover { color: var(--foreground); }

/* =========================================
   Legal pages
   ========================================= */
.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249,246,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.legal-header .header-inner { height: 4rem; }

.legal-main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .legal-main { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.legal-main h1 {
  font-size: 2.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .legal-main h1 { font-size: 3rem; }
}
.legal-main .updated {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}
.legal-section {
  margin-bottom: 2rem;
}
.legal-section h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.legal-section p, .legal-section ul {
  color: var(--muted-foreground);
  line-height: 1.7;
}
.legal-section ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.legal-section li { margin-bottom: 0.5rem; }
.legal-section a { color: var(--primary); text-decoration: underline; }
