/* ============================================================
   Get2Pro — Mo-Teevated by Golf
   "Fresh Fairway" design · implemented from Get2Pro.dc.html
   ============================================================ */

:root {
  --green: #15a04c;
  --green-soft: #e7f1e9;
  --green-bright: #6fdb9b;
  --green-pale: #7fe2a4;
  --ink: #16201a;
  --ink-soft: #404a43;
  --muted: #5b655d;
  --faint: #9aa79d;
  --dark: #0f2a1c;
  --darker: #0a1f16;
  --bg: #f6f7f3;
  --bg-alt: #eef1ec;
  --line: #ebeee8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  background: var(--bg);
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; }
h1, h2, h3 { font-family: 'Sora', sans-serif; }

h2 {
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 48px);
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
  line-height: 1.04;
}

.kicker {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker-light { color: var(--green-bright); }

/* ---------- animations ---------- */
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16); } }
@keyframes floatHint { 0%,100% { transform: translateY(0); opacity: 0.9; } 50% { transform: translateY(9px); opacity: 0.5; } }
@keyframes trailA {
  0% { stroke-dashoffset: 100; opacity: 0; }
  6% { opacity: 0.95; }
  68% { stroke-dashoffset: 0; opacity: 0.95; }
  82% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 100; opacity: 0; }
}
@keyframes riseIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes waPulse {
  0%,100% { box-shadow: 0 12px 30px -8px rgba(21,160,76,0.7), 0 0 0 0 rgba(21,160,76,0.5); }
  50% { box-shadow: 0 12px 30px -8px rgba(21,160,76,0.7), 0 0 0 14px rgba(21,160,76,0); }
}

/* reveal-on-scroll (initial state set by JS so no-JS users see everything) */
.reveal-init {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- buttons ---------- */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(21,160,76,0.85);
}
.btn-wa-lg { font-size: 16px; padding: 16px 28px; box-shadow: 0 16px 34px -12px rgba(21,160,76,0.9); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  color: #fff;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}
.nav-brand img {
  height: 42px;
  width: auto; /* the width="570" attribute otherwise wins and squashes the logo */
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: filter .35s ease;
}
.nav-brand span {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 14.5px;
}
.nav-links > .nav-cta {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  box-shadow: 0 10px 22px -10px rgba(21,160,76,0.9);
}

nav.scrolled {
  background: rgba(246,247,243,0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 12px 30px -22px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav.scrolled .nav-brand img { filter: none; }

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: none;
  background: rgba(255,255,255,0.12);
  border-radius: 11px;
  cursor: pointer;
  color: inherit;
  flex-direction: column;
  gap: 4px;
}
.burger span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: rgba(246,247,243,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e6eae2;
  transition: max-height .35s ease, opacity .3s ease;
}
.mobile-menu.open { max-height: 460px; opacity: 1; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 22px 20px;
  gap: 2px;
}
.mobile-menu-inner > a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid #e6eae2;
}
.mobile-menu-inner > .mobile-menu-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  border-bottom: none;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
}
@media not all and (max-width: 880px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #bfe0cd;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/course.jpg');
  background-size: cover;
  background-position: center 42%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-shade-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,24,16,0.32) 0%, rgba(10,28,18,0.05) 32%, rgba(9,24,16,0.62) 100%);
}
.hero-shade-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(8,22,14,0.5) 0%, rgba(8,22,14,0.0) 55%);
}
.hero-flight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.hero-flight path { animation: trailA 5.4s ease-in-out infinite; opacity: 0; }
.hero-flight circle { filter: drop-shadow(0 0 9px rgba(255,255,255,0.85)); opacity: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px clamp(56px, 9vw, 104px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  animation: riseIn .8s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3fd17e;
  display: inline-block;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(44px, 8.2vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 18px 0 18px;
  max-width: 13ch;
  text-shadow: 0 8px 36px rgba(0,0,0,0.4);
  animation: riseIn .9s ease .08s both;
}
.hero-content > p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: #eef3ee;
  max-width: 540px;
  margin: 0 0 30px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  animation: riseIn 1s ease .16s both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  animation: riseIn 1.1s ease .24s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatHint 2.2s ease-in-out infinite;
}
.hero-scroll-hint span {
  width: 1px;
  height: 28px;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0));
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px) 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 48px);
  color: var(--green);
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: 14px; margin-top: 7px; font-weight: 600; }

/* ============================================================
   TAGLINE BAND
   ============================================================ */
.tagline-band {
  background: var(--dark);
  color: #eaf3ec;
  padding: clamp(48px, 8vw, 88px) 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tagline-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,209,126,0.18), transparent 70%);
}
.tagline-inner { position: relative; max-width: 920px; margin: 0 auto; }
.tagline-inner .kicker { margin-bottom: 22px; letter-spacing: 0.2em; }
.tagline-big {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.8vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.tagline-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #a9c3b3;
  max-width: 640px;
  margin: 22px auto 0;
}

/* ============================================================
   COACH
   ============================================================ */
.coach { padding: clamp(60px, 9vw, 110px) 22px; background: var(--bg); }
.coach-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.coach-photos { position: relative; }
.coach-photo-main {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -34px rgba(13,42,28,0.6);
}
.coach-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.coach-photo-inset {
  position: absolute;
  bottom: -26px; right: -10px;
  width: 46%;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.5);
}
.coach-photo-inset img { width: 100%; height: 100%; object-fit: cover; }
.coach-pga-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  color: #0f7a39;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.4);
}
.coach h2 { font-size: clamp(30px, 4.4vw, 46px); margin: 14px 0 20px; line-height: 1.05; }
.coach-bio { font-size: 16.5px; line-height: 1.68; color: var(--ink-soft); margin: 0 0 18px; }
.coach-bio-last { margin-bottom: 26px; }
.coach-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.coach-tags span {
  background: #eef4ee;
  color: #176b3a;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 15px;
  border-radius: 10px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(60px, 9vw, 108px) 22px; background: #fff; }
.services-inner { max-width: 1140px; margin: 0 auto; }
.services-head { max-width: 680px; }
.services-head p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }
.services-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
}
.service-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { font-weight: 700; font-size: 21px; margin: 20px 0 9px; }
.service-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.service-card-dark { background: var(--dark); border-color: var(--dark); color: #eaf3ec; }
.service-card-dark h3 { color: #fff; }
.service-card-dark p { color: #a9c3b3; }
.service-icon-dark { background: rgba(63,209,126,0.16); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(60px, 9vw, 108px) 22px; background: var(--bg-alt); }
.pricing-inner { max-width: 1040px; margin: 0 auto; }
.pricing-head { text-align: center; max-width: 660px; margin: 0 auto; }
.pricing-head p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0; }

.price-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 34px auto 30px;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  width: fit-content;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 14px 30px -22px rgba(0,0,0,0.3);
  flex-wrap: wrap;
}
.price-tab {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: 999px;
  transition: all .25s ease;
  background: transparent;
  color: var(--muted);
}
.price-tab.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(21,160,76,0.85);
}

.price-panel { display: none; }
.price-panel.active { display: block; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  align-items: start;
}
.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 24px 50px -36px rgba(0,0,0,0.4);
}
.price-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.price-card-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card-head h3 { font-weight: 700; font-size: 19px; margin: 0; }
.price-rows { margin-top: 14px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 11px;
  border-bottom: 1px solid #eef1ec;
}
.price-row.popular { background: #eaf4ec; }
.price-row-info { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.price-label { font-weight: 700; color: #1c241e; font-size: 15.5px; }
.price-meta { color: #929b93; font-weight: 500; font-size: 13px; }
.badge-popular {
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: 17px;
  white-space: nowrap;
}

.price-card.dark {
  background: var(--dark);
  color: #eaf3ec;
  box-shadow: 0 24px 50px -34px rgba(13,42,28,0.7);
}
.price-card.dark .price-card-head h3 { color: #fff; }
.price-card.dark .price-card-icon { background: rgba(63,209,126,0.16); }
.price-card.dark .price-row {
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-card.dark .price-row-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.price-card.dark .price-label { color: #fff; }
.price-card.dark .price-meta { color: #9bb6a6; }
.price-card.dark .price-amount { color: var(--green-pale); font-size: 18px; }
.price-note { margin: 18px 0 0; font-size: 13px; color: #9bb6a6; line-height: 1.5; }
.price-card-cta {
  display: block;
  text-align: center;
  margin-top: 22px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
}
.pricing-foot {
  text-align: center;
  color: #7c857d;
  font-size: 14px;
  margin: 28px auto 0;
  max-width: 560px;
}

/* ============================================================
   SIMULATOR
   ============================================================ */
.simulator { padding: clamp(50px, 8vw, 96px) 22px; background: #fff; }
.simulator-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.simulator h2 { font-size: clamp(28px, 4.2vw, 44px); margin: 14px 0 16px; line-height: 1.06; }
.simulator-copy { font-size: 16.5px; line-height: 1.66; color: var(--ink-soft); margin: 0 0 20px; }
.simulator-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.simulator-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15.5px;
  color: #2c3630;
  font-weight: 600;
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.simulator-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #eef1ec 0 22px, #e6eae3 22px 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #e2e6dd;
}
.simulator-placeholder-tag {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #8a948b;
  text-transform: uppercase;
  background: #fff;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid #e2e6dd;
}
.simulator-placeholder-note { font-size: 12.5px; color: var(--faint); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(60px, 9vw, 108px) 22px; background: var(--bg); }
.gallery-inner { max-width: 1180px; margin: 0 auto; }
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}
.gallery-head > div { max-width: 620px; }
.gallery-head h2 { margin-bottom: 0; }
.gallery-head > p { font-size: 15.5px; color: var(--muted); max-width: 340px; margin: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-tile {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.span2x2 { grid-column: span 2; grid-row: span 2; min-height: 200px; }
.span1x2 { grid-row: span 2; }
.span2x1 { grid-column: span 2; }
/* Two 220px columns + 14px gap + 2×22px section padding need ≥498px of
   viewport; below ~540px the grid is single-column, so wide spans must
   collapse or they'd force an implicit overflowing column. */
@media (max-width: 540px) {
  .span2x2, .span2x1 { grid-column: span 1; }
}
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(8,22,14,0.78));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(60px, 9vw, 104px) 22px;
  background: var(--dark);
  color: #eaf3ec;
}
.testimonials-inner { max-width: 1140px; margin: 0 auto; }
.testimonials-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.testimonials-head h2 {
  font-size: clamp(30px, 4.6vw, 46px);
  margin-bottom: 0;
  line-height: 1.05;
  color: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 28px;
}
.stars { color: var(--green-pale); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { margin: 0 0 22px; font-size: 16px; line-height: 1.65; color: #dce8e0; }
.testimonial-name { font-weight: 700; color: #fff; font-size: 15px; }
.testimonial-role { font-size: 13px; color: #9bb6a6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(60px, 9vw, 108px) 22px; background: var(--bg); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-head h2 { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e7ebe4;
  border-radius: 16px;
  padding: 20px 24px;
}
.faq-q {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  font: inherit;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-q > span:first-child {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--ink);
}
.faq-sign {
  font-size: 26px;
  color: var(--green);
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}
.faq-sign::before { content: '+'; }
.faq-item.open .faq-sign::before { content: '–'; }
.faq-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height .4s ease, opacity .35s ease, margin-top .35s ease;
}
.faq-item.open .faq-body { max-height: 360px; opacity: 1; margin-top: 14px; }
.faq-body p { margin: 0; color: #54605a; font-size: 15.5px; line-height: 1.65; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(60px, 9vw, 108px) 22px; background: #fff; }
.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.contact h2 { margin: 14px 0 18px; line-height: 1.03; }
.contact-copy {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 30px;
  max-width: 440px;
}
.contact-wa { margin-bottom: 30px; font-size: 16.5px; padding: 17px 30px; gap: 10px; }
.contact-rows { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #eef4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-label { display: block; font-size: 12.5px; color: #8a938c; font-weight: 600; }
.contact-row-value { font-weight: 700; font-size: 15.5px; }
.contact-row-placeholder { color: var(--faint); }
.contact-row-placeholder em { font-weight: 500; font-style: normal; font-size: 12px; }

.contact-map {
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #e7ebe4;
  position: relative;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 360px;
  filter: grayscale(0.1);
}
.contact-directions {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 17px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--darker);
  color: #cfddd4;
  padding: clamp(46px, 7vw, 72px) 22px 34px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-logo span {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer-brand p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #9bb6a6; }
.footer-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.footer-links a { text-decoration: none; color: #cfddd4; }
.footer-wa { color: var(--green-pale) !important; font-weight: 700; }
.footer-ig { display: inline-flex; align-items: center; gap: 7px; }
.footer-muted { color: #9bb6a6; }
.footer-bottom {
  max-width: 1140px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: #7f998a;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 70;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: waPulse 2.6s ease-in-out infinite;
}
