/* ================================================================
   Connemara Clucking Coops — stylesheet
   Matches the original base44 React design
   ================================================================ */

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream:       #F8F4EE;
  --cream-dark:  #E5DDD0;
  --green:       #4A7C59;
  --green-dark:  #2E5A3D;
  --charcoal:    #1F2320;
  --brown:       #7A4F2D;
  --sage:        #A0B090;
  --muted:       rgba(31,35,32,0.60);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(248,244,238,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--cream-dark);
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  color: #fff;
  transition: color 0.4s;
}
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo em { font-style: italic; font-weight: 400; }
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.7; }
.navbar.scrolled .nav-links a { color: var(--charcoal); }

.nav-wa-btn {
  display: none;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-wa-btn:hover { background: #1da851; }
.nav-wa-btn svg { width: 15px; height: 15px; }

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  transition: color 0.4s;
}
.navbar.scrolled .nav-hamburger { color: var(--charcoal); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--charcoal);
}
.nav-drawer a:hover { color: var(--green); }
.nav-drawer .drawer-wa {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: #25D366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: none;
}
.nav-drawer .drawer-wa:hover { background: #1da851; color: #fff; }

.nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.nav-overlay.show { display: block; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-wa-btn { display: flex; }
  .nav-hamburger { display: none; }
  .navbar { padding: 18px 40px; }
}
@media (min-width: 1280px) {
  .navbar { padding: 18px 60px; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.58) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-location {
  display: inline-block;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
@media (min-width: 480px) {
  .hero-btns { flex-direction: row; justify-content: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-white {
  background: #fff;
  color: var(--charcoal);
  border: 2px solid #fff;
}
.btn-white:hover { background: var(--cream); }
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-white-outline:hover { background: #fff; color: var(--charcoal); }
.btn-green {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-wa {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn-wa:hover { background: #1da851; border-color: #1da851; }
.btn-wa svg { width: 18px; height: 18px; }
.btn-full { width: 100%; }

/* ── Our Story ────────────────────────────────────────────────── */
.story {
  padding: 80px 24px 96px;
  background: #fff;
  text-align: center;
}
.story-header { margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.section-body {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.pillar { text-align: center; }
.pillar-icon {
  width: 40px; height: 40px;
  color: var(--charcoal);
  margin: 0 auto 20px;
  opacity: 0.8;
}
.pillar h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pillar p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ── Why Choose Us ────────────────────────────────────────────── */
.why-us {
  padding: 40px 24px 48px;
  background: var(--cream-dark);
  text-align: center;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 28px auto 0;
  text-align: left;
}
@media (min-width: 600px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-us-item {
  background: var(--cream);
  border: 1px solid rgba(74,124,89,0.15);
  border-radius: 12px;
  padding: 16px 18px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-us-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.why-us-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.why-us-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.why-us-more {
  margin-top: 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
.why-us-more a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.why-us-more a:hover { text-decoration-color: var(--green); }

/* ── Breed Preview ────────────────────────────────────────────── */
.breed-preview {
  padding: 80px 24px 96px;
}
.breed-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 48px auto 40px;
}
@media (min-width: 600px) {
  .breed-preview-grid { grid-template-columns: repeat(3, 1fr); }
}
.breed-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.breed-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.breed-thumb:hover img { transform: scale(1.08); }
.breed-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
}
.breed-thumb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.breed-thumb-tag {
  display: inline-block;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.breed-thumb-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.view-all-link {
  text-align: center;
}
.view-all-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  transition: color 0.2s;
}
.view-all-link a:hover { color: var(--green-dark); }
.view-all-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.view-all-link a:hover svg { transform: translateX(3px); }

/* ── Customer Reviews ─────────────────────────────────────────── */
.reviews {
  padding: 80px 24px 96px;
  background: var(--cream);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 56px auto 0;
}
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  padding: 16px 18px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.4s, transform 0.3s;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateX(4px);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #E6A817;
}
.review-stars svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  border-top: 1px solid var(--cream-dark);
}
.review-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}
.review-location {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.05em;
}

/* ── CTA section ──────────────────────────────────────────────── */
.cta-section {
  padding: 80px 24px;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -100px; left: -80px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -150px; right: -80px;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-heading em { font-style: italic; font-weight: 400; color: var(--sage); }
.cta-body {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── Breed Library page ───────────────────────────────────────── */
.page-hero {
  padding: 130px 24px 60px;
  text-align: center;
}
.breeds-grid {
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .breeds-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .breeds-grid { grid-template-columns: repeat(3, 1fr); }
}

.breed-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.4s, transform 0.3s;
}
.breed-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.breed-card-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.breed-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.breed-card:hover .breed-card-photo img { transform: scale(1.05); }
.egg-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.breed-card-body { padding: 20px 24px 24px; }
.breed-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.breed-card-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.breed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.breed-stat {
  text-align: center;
}
.breed-stat svg {
  width: 16px; height: 16px;
  color: var(--green);
  margin: 0 auto 5px;
  display: block;
}
.breed-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

/* ── Coop Shop page ───────────────────────────────────────────── */
.coops-grid {
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .coops-grid { grid-template-columns: repeat(3, 1fr); }
}

.coop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s, transform 0.3s;
}
.coop-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.coop-card-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.coop-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.coop-card:hover .coop-card-photo img { transform: scale(1.05); }
.coop-size-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--green);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.popular-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--brown);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}
.coop-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.coop-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.coop-card-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.coop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.coop-stat {
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.coop-stat svg {
  width: 16px; height: 16px;
  color: var(--green);
  margin: 0 auto 5px;
  display: block;
}
.coop-stat span {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
}
.coop-features {
  flex: 1;
  margin-bottom: 18px;
}
.coop-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  padding: 5px 0;
}
.coop-features svg {
  width: 15px; height: 15px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.coop-card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.coop-price-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
  margin-bottom: 2px;
}
.coop-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}

.custom-cta-box {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  max-width: 680px;
  margin: 48px auto 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.custom-cta-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.custom-cta-box p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 420px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 64px 24px 36px;
  color: rgba(255,255,255,0.65);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media (min-width: 700px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.footer-logo-text em { font-style: italic; font-weight: 400; color: var(--sage); }
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.84rem; line-height: 1.65; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer-wa-link { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-wa-link:hover { color: #25D366; }
.footer-wa-link svg { color: #25D366; }
.footer-email-link { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-email-link:hover { color: #fff; }
.footer-email-link svg { color: var(--sage); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin: 0 auto;
  max-width: 1100px;
}
.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
}

/* ── Founder ──────────────────────────────────────────────────── */
.founder {
  padding: 80px 24px 96px;
  background: var(--cream);
  text-align: center;
}
.founder-inner {
  max-width: 680px;
  margin: 0 auto;
}
.founder-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.founder-bio {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ── Scroll-reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Getting Started page ─────────────────────────────────────── */

/* Step-by-step list */
.gs-steps {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gs-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.gs-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-step-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.gs-step-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.gs-step-content a { color: var(--green); text-decoration: underline; }
.gs-step-content a:hover { color: var(--green-dark); }

/* What you need grid */
.gs-needs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 24px;
}
@media (min-width: 600px) {
  .gs-needs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gs-needs-grid { grid-template-columns: repeat(3, 1fr); }
}
.gs-need-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 28px 24px;
}
.gs-need-icon {
  width: 36px;
  height: 36px;
  color: var(--green);
  margin-bottom: 14px;
}
.gs-need-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.gs-need-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Daily routine */
.gs-routine {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gs-routine-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.gs-routine-item:last-child { border-bottom: none; }
.gs-routine-time {
  flex-shrink: 0;
  min-width: 100px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.gs-routine-tasks p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.gs-routine-tasks strong { color: var(--charcoal); }

/* Tips / dos & don'ts grid */
.gs-tips-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 24px;
}
@media (min-width: 600px) {
  .gs-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gs-tips-grid { grid-template-columns: repeat(3, 1fr); }
}
.gs-tip {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 24px;
}
.gs-tip-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}
.gs-tip-icon--good { color: var(--green); }
.gs-tip-icon--warn { color: var(--brown); }
.gs-tip h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.gs-tip p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* FAQ accordion */
.gs-faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gs-faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.gs-faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.gs-faq-item summary::-webkit-details-marker { display: none; }
.gs-faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A7C59' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s;
}
.gs-faq-item[open] summary::after {
  transform: rotate(180deg);
}
.gs-faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.gs-faq-item p a { color: var(--green); text-decoration: underline; }
.gs-faq-item p a:hover { color: var(--green-dark); }
