/* ── DESIGN TOKENS ── */
:root {
  --primary: #f97316;
  --primary-dark: #ea6200;
  --secondary: #7c2d12;
  --accent: #fb923c;
  --accent-dark: #f97316;
  --bg: #fff7ed;
  --text: #1c0a00;
  --text-muted: #92400e;
  --surface: #ffffff;
  --border: #fed7aa;
  --ring: #f97316;
  --hero-grad: linear-gradient(135deg, #431407 0%, #9a3412 40%, #f97316 80%, #fbbf24 100%);
  --radius: 1rem;
  --shadow: 0 4px 28px rgba(249,115,22,0.15);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--secondary); box-shadow: 0 2px 16px rgba(0,0,0,0.22); }
.nav-inner { max-width: 1200px; margin: auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: #ffffff; letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500; padding: 0.45rem 0.8rem; border-radius: 0.5rem; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-cta { background: var(--accent) !important; color: #fff !important; font-weight: 700 !important; border-radius: 0.5rem !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--secondary); flex-direction: column; padding: 1rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
}

/* ── HERO ── */
.hero-section { background: var(--hero-grad); min-height: 56vh; display: flex; align-items: center; gap: 2rem; padding: 4rem 1.5rem 3rem; max-width: 100%; overflow: hidden; position: relative; }
.hero-inner { flex: 1 1 520px; max-width: 660px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.13); color: #fed7aa; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 2rem; margin-bottom: 1.1rem; border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(4px); }
.hero-section h1 { font-size: clamp(2.5rem, 5.5vw, 3.8rem); font-weight: 800; color: #ffffff; margin-bottom: 0.4rem; letter-spacing: -0.03em; text-shadow: 0 2px 16px rgba(0,0,0,0.18); }
.hero-sub { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fbbf24; margin-bottom: 1.1rem; text-transform: uppercase; letter-spacing: 0.09em; }
.hero-body { color: rgba(255,255,255,0.88); font-size: 1.07rem; max-width: 530px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-graphic { flex: 0 0 340px; display: flex; align-items: center; justify-content: center; }
.pool-visual { width: 290px; height: 230px; border-radius: 60% 40% 55% 45% / 50% 50% 50% 50%; background: rgba(251,146,60,0.22); border: 3px solid rgba(251,146,60,0.55); position: relative; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.22); }
.pool-water { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251,146,60,0.45) 0%, rgba(154,52,18,0.75) 100%); animation: shimmer 4s ease-in-out infinite; }
.pool-lane { position: absolute; top: 50%; left: 10%; right: 10%; height: 2px; background: rgba(255,255,255,0.35); transform: translateY(-50%); border-radius: 1px; }
@keyframes shimmer { 0%,100%{opacity:0.7} 50%{opacity:1} }

@media (max-width: 900px) {
  .hero-section { flex-direction: column; text-align: center; padding-top: 2.75rem; min-height: auto; }
  .hero-body { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-graphic { display: none; }
}

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--accent); color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 0.8rem 1.9rem; border-radius: 0.6rem; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; border: none; cursor: pointer; box-shadow: 0 4px 14px rgba(249,115,22,0.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
.btn-secondary { display: inline-block; background: transparent; color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; padding: 0.8rem 1.9rem; border-radius: 0.6rem; border: 2px solid rgba(255,255,255,0.55); transition: background 0.2s, border-color 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── SECTION SHELL ── */
.section-shell { max-width: 1200px; margin: 0 auto; padding: 5.5rem 1.5rem; }
.section-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.55rem; }
.section-shell h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--secondary); margin-bottom: 0.8rem; }
.section-intro { color: var(--text-muted); max-width: 600px; margin-bottom: 2.75rem; font-size: 1.06rem; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.6rem; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow); transition: transform 0.22s, box-shadow 0.22s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity 0.22s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(249,115,22,0.18); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 1.9rem; margin-bottom: 0.85rem; color: var(--primary); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.55rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── ABOUT ── */
.about-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-section.section-shell { max-width: 100%; padding: 5.5rem 0; }
.about-split { max-width: 1200px; margin: auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; gap: 2.75rem; } }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.about-list { list-style: none; margin: 1.4rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.about-list li { color: var(--text); font-weight: 600; font-size: 0.95rem; padding: 0.55rem 0.9rem; background: var(--bg); border-left: 3px solid var(--primary); border-radius: 0 0.5rem 0.5rem 0; }
.about-card-stack { display: flex; flex-direction: column; gap: 1.35rem; }
.about-stat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 2rem; display: flex; flex-direction: column; gap: 0.3rem; box-shadow: var(--shadow); }
.about-stat.accent { background: linear-gradient(135deg, #7c2d12 0%, #b45309 100%); border-color: var(--secondary); }
.about-stat.accent .stat-num, .about-stat.accent .stat-label { color: #fff; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.1rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── PROOF ── */
.proof-section { background: linear-gradient(135deg, #431407 0%, #9a3412 60%, #c2410c 100%); }
.proof-section .section-label { color: #fbbf24; }
.proof-section h2 { color: #fff; }
.proof-section .section-intro { color: rgba(255,255,255,0.72); }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 1.35rem; margin-bottom: 2.75rem; }
.proof-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 2rem 1rem; text-align: center; transition: background 0.2s, transform 0.2s; }
.proof-stat:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.proof-num { font-family: 'Montserrat', sans-serif; font-size: 2.1rem; font-weight: 800; color: #fbbf24; margin-bottom: 0.45rem; }
.proof-desc { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.09em; }
.testimonial-placeholder { background: rgba(255,255,255,0.07); border: 1px dashed rgba(255,255,255,0.28); border-radius: var(--radius); padding: 2.25rem; text-align: center; color: rgba(255,255,255,0.72); font-size: 1.02rem; font-style: italic; }
.testimonial-placeholder .btn-primary { margin-top: 1rem; }

/* ── AREAS ── */
.areas-section { text-align: center; }
.areas-band { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin: 2rem 0; }
.areas-band span { background: var(--surface); border: 2px solid var(--primary); color: var(--secondary); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; padding: 0.45rem 1.1rem; border-radius: 2rem; letter-spacing: