@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --forest:      #0b2d1e;
  --forest-mid:  #113d28;
  --forest-deep: #071a12;
  --sage:        #2e7d52;
  --sage-light:  #3d9966;
  --mint:        #68c491;
  --mint-pale:   #a8dbbe;
  --cream:       #f7f2ea;
  --cream-dark:  #ede6d8;
  --warm-white:  #fdfaf5;
  --text:        #18291f;
  --text-muted:  #4a6356;
  --white:       #ffffff;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --radius:      6px;
  --radius-lg:   14px;
  --radius-xl:   20px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─── HEADER ─────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.logo-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(140deg, var(--sage) 0%, var(--mint) 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(104,196,145,0.35);
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 18px; height: 12px;
  border: 2.5px solid var(--forest);
  border-radius: 3px;
  top: 10px; left: 11px;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 8px; height: 4px;
  border-bottom: 2.5px solid var(--forest);
  border-left: 2.5px solid var(--forest);
  border-right: 2.5px solid var(--forest);
  bottom: 8px; left: 16px;
  border-radius: 0 0 2px 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.logo-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  white-space: nowrap;
  line-height: 1;
}

.logo-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  color: var(--mint);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  margin-left: 10px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--mint) !important;
  color: var(--forest) !important;
}

/* ─── HAMBURGER ───────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--forest-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0 16px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); }

.mobile-menu .nav-cta {
  display: inline-block !important;
  margin: 8px 24px 0;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  background: var(--sage) !important;
  color: var(--white) !important;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: var(--forest);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* Photo-quality hero using a layered SVG scene + gradient overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Surrey hills SVG scene */
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,45,30,0.97) 0%,
    rgba(11,45,30,0.88) 40%,
    rgba(11,45,30,0.55) 70%,
    rgba(11,45,30,0.30) 100%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 90px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(104,196,145,0.14);
  border: 1px solid rgba(104,196,145,0.3);
  color: var(--mint);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--mint);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.04;
}

.hero h1 em {
  font-style: italic;
  color: var(--mint);
}

.hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(46,125,82,0.4);
}

.btn-primary:hover {
  background: var(--mint);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(104,196,145,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ─── HERO CONTACT CARD ───────────────────────────── */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 34px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.hero-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}

.contact-list .ci {
  width: 38px; height: 38px;
  background: rgba(104,196,145,0.13);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-list strong { display: block; font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 2px; }
.contact-list a { color: var(--white); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--mint); }

.hours-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.hours-note strong { color: rgba(255,255,255,0.7); }

/* ─── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--forest-mid);
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.trust-item svg { color: var(--mint); flex-shrink: 0; }

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: 96px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  font-weight: 400;
  line-height: 1.75;
}

/* ─── SERVICE CARDS ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  text-decoration: none;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(11,45,30,0.12);
  border-color: rgba(46,125,82,0.18);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: background 0.3s ease;
  border: 1.5px solid rgba(0,0,0,0.05);
}

.service-card:hover .service-icon { background: rgba(46,125,82,0.1); border-color: rgba(46,125,82,0.15); }

.service-card h3 { font-size: 21px; font-weight: 700; color: var(--forest); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.68; margin-bottom: 22px; }

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-link::after { content: '→'; transition: transform 0.2s ease; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ─── WHY US ──────────────────────────────────────── */
.section-alt { background: var(--forest); }
.section-alt .section-title { color: var(--white); }
.section-alt .section-desc { color: rgba(255,255,255,0.6); }
.section-alt .section-label { color: var(--mint); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-item {
  background: rgba(255,255,255,0.04);
  padding: 42px;
  transition: background 0.2s ease;
}

.why-item:hover { background: rgba(255,255,255,0.07); }

.why-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(104,196,145,0.2);
  line-height: 1;
  margin-bottom: 14px;
}

.why-item h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.72; }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.price-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  border: 1.5px solid rgba(0,0,0,0.07);
  position: relative;
}

.price-card.featured {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(11,45,30,0.35);
}

.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

.price-card.featured h3 { color: var(--mint); }

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}

.price-card.featured .price-amount { color: var(--white); }

.price-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 400;
}

.price-card.featured .price-unit { color: rgba(255,255,255,0.5); }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.price-card.featured .price-features li { color: rgba(255,255,255,0.68); }

.price-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card.featured .price-features li::before { color: var(--mint); }

.btn-outline {
  display: block;
  text-align: center;
  border: 2px solid var(--sage);
  color: var(--sage);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-outline:hover { background: var(--sage); color: var(--white); }

.btn-primary-sm {
  display: block;
  text-align: center;
  background: var(--mint);
  color: var(--forest);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-primary-sm:hover { background: var(--white); color: var(--forest); }

/* ─── COVERAGE ────────────────────────────────────── */
.coverage-section { background: var(--cream-dark); }

.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.coverage-tag {
  background: var(--warm-white);
  border: 1.5px solid rgba(0,0,0,0.09);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

a.coverage-tag:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* ─── REVIEWS ─────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1.5px solid rgba(0,0,0,0.06);
  position: relative;
}

.review-card::before {
  content: '"';
  font-family: 'Fraunces', serif;
  font-size: 72px;
  color: rgba(46,125,82,0.1);
  position: absolute;
  top: 12px; right: 22px;
  line-height: 1;
}

.review-stars { color: #e8a020; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--text-muted); line-height: 1.72; margin-bottom: 20px; }
.review-author { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--forest); }
.review-location { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 3px; border-radius: var(--radius-lg); overflow: hidden; }

.faq-item { background: var(--warm-white); border: 1.5px solid rgba(0,0,0,0.07); }
.faq-item + .faq-item { border-top: none; }

.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 600;
  color: var(--forest);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--cream); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s ease; color: var(--sage); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 22px; }

/* ─── CTA ─────────────────────────────────────────── */
.cta-section {
  background: var(--forest);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(104,196,145,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 800; color: var(--white); margin-bottom: 18px; position: relative; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 40px; position: relative; }
.cta-section .hero-actions { justify-content: center; position: relative; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--forest-deep);
  padding: 60px 32px 36px;
  color: rgba(255,255,255,0.48);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-brand .logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; line-height: 1; margin-bottom: 18px;
}

.footer-brand > p { font-size: 14px; line-height: 1.75; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--mint); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 8px; }

/* ─── WHATSAPP FLOAT ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 22px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.2s ease;
}

.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: var(--forest);
  padding: 72px 32px 62px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(104,196,145,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.page-hero .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 14px; font-weight: 500;
  margin-bottom: 24px; transition: color 0.2s;
}

.page-hero .back-link:hover { color: var(--mint); }
.page-hero h1 { font-size: clamp(36px, 4vw, 54px); font-weight: 800; color: var(--white); margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.62); max-width: 560px; line-height: 1.72; }

/* ─── DETAIL LAYOUT ───────────────────────────────── */
.detail-section { padding: 84px 32px; }

.detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px; align-items: start;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.feature-list li {
  display: flex; gap: 18px; padding: 22px;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-list li:hover { border-color: rgba(46,125,82,0.2); box-shadow: 0 4px 20px rgba(11,45,30,0.07); }

.feature-list .fi {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}

.feature-list h4 { font-size: 15px; font-weight: 700; color: var(--forest); margin-bottom: 5px; }
.feature-list p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Kit badge used on networking page */
.kit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,125,82,0.1);
  border: 1px solid rgba(46,125,82,0.25);
  color: var(--sage);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 8px;
  display: inline-block;
}

/* ─── SIDEBAR CARD ────────────────────────────────── */
.sidebar-card {
  background: var(--forest);
  border-radius: var(--radius-xl);
  padding: 34px;
  position: sticky;
  top: 90px;
  box-shadow: 0 8px 40px rgba(11,45,30,0.2);
}

.sidebar-card h3 { font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 22px; }
.sidebar-contact { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.sidebar-contact li { display: flex; flex-direction: column; gap: 4px; }
.sidebar-contact .sc-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.sidebar-contact .sc-val { color: rgba(255,255,255,0.88); font-size: 16px; }
.sidebar-contact a { color: var(--mint); text-decoration: none; font-weight: 500; }
.sidebar-contact a:hover { color: var(--white); }

.sidebar-btn {
  display: block; text-align: center;
  background: var(--mint);
  color: var(--forest);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 28px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.sidebar-btn:hover { background: var(--white); }

/* ─── CONTACT PAGE ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 0; }
.contact-method { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.contact-method-item {
  display: flex; align-items: flex-start; gap: 18px; padding: 22px;
  background: var(--warm-white); border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.06);
}

.cm-icon { width: 46px; height: 46px; background: var(--cream); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }
.cm-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; color: var(--text-muted); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.cm-val { font-size: 17px; font-weight: 600; color: var(--forest); font-family: 'Fraunces', serif; }
.cm-val a { color: var(--forest); text-decoration: none; }
.cm-val a:hover { color: var(--sage); }

.business-hours { margin-top: 32px; padding: 26px; background: var(--forest); border-radius: 14px; }
.business-hours h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--mint); margin-bottom: 18px; }

.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.5); font-weight: 400; }
.hours-row .time { color: rgba(255,255,255,0.88); font-weight: 600; }

.contact-right h3 { font-size: 24px; color: var(--forest); margin-bottom: 10px; }
.contact-right > p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.75; }

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; font-family: 'Plus Jakarta Sans', sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 9px;
  background: var(--warm-white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--sage);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 14px 28px; border: none; border-radius: 9px;
  cursor: pointer; width: 100%;
  transition: all 0.2s ease; margin-top: 8px;
}
.form-submit:hover { background: var(--forest); }

/* ─── LOCATION TAGS ───────────────────────────────── */
.location-tag {
  background: rgba(46,125,82,0.1);
  color: var(--sage);
  border: 1px solid rgba(46,125,82,0.22);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  display: inline-block;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .detail-inner { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 60px 20px 60px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .detail-section { padding: 60px 20px; }
  .page-hero { padding: 52px 20px 44px; }
  .hero-scene-wrapper { display: none; }
}
