:root {
  --brand-green: #7CC242;
  --brand-green-dark: #5fa130;
  --brand-grey: #6E6E70;
  --brand-grey-dark: #3d3d3f;
  --bg: #ffffff;
  --bg-alt: #fafaf9;
  --bg-soft: #f4f4f3;
  --ink: #1f1f21;
  --ink-soft: #4a4a4d;
  --ink-mute: #8a8a8d;
  --line: #e6e6e4;
  --radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: 'Cormorant', serif;
  font-weight: 500; letter-spacing: -0.015em;
  line-height: 1.15; color: var(--brand-grey-dark);
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.125rem, 4.5vw, 3.5rem); margin-bottom: 1.5rem; }
h2 em { font-style: italic; color: var(--brand-green-dark); font-weight: 400; }
h3 { font-size: clamp(1.375rem, 2.2vw, 1.875rem); font-weight: 600; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand-green-dark);
  font-weight: 600; display: inline-flex; align-items: center;
  margin-bottom: 1.5rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--brand-green); margin-right: 14px; }
.eyebrow .brand-cased { text-transform: none; letter-spacing: 0.18em; margin-left: 0.35em; }
p.lead { font-size: clamp(1.0625rem, 1.4vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }
p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 70ch; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; position: relative; }

/* REAL NAV - matches homepage */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 160;
  padding: 1.1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled, .nav.always-solid {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem 2rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; transition: transform 0.4s var(--ease); }
.nav-logo:hover { transform: scale(1.02); }
.nav-logo img {
  height: 64px; width: auto;
  transition: filter 0.4s var(--ease), height 0.4s var(--ease);
  filter: brightness(1.5) contrast(1.05) drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
.nav.scrolled .nav-logo img, .nav.always-solid .nav-logo img { height: 52px; filter: none; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  color: #fff; text-decoration: none; font-size: 0.875rem;
  letter-spacing: 0.02em; font-weight: 500;
  transition: opacity 0.3s var(--ease), color 0.4s var(--ease);
}
.nav.scrolled .nav-links a, .nav.always-solid .nav-links a { color: var(--brand-grey-dark); }
.nav-links a:hover { color: var(--brand-green); opacity: 1; }
.nav-cta {
  padding: 0.65rem 1.35rem; border-radius: 100px; font-size: 0.85rem;
  background: var(--brand-green); color: #fff !important; font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 14px rgba(124, 194, 66, 0.35);
}
.nav-cta:hover { background: var(--brand-green-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(124, 194, 66, 0.5); }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 200;
}
.hamburger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: #fff; transition: all 0.35s var(--ease);
}
.nav.scrolled .hamburger span, .nav.always-solid .hamburger span { background: var(--brand-grey-dark); }
.nav.menu-open .hamburger span { background: var(--brand-grey-dark); }
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 150;
  background: #fff;
  display: flex; flex-direction: column;
  pointer-events: none; max-height: 0; overflow: hidden;
  border-radius: 0 0 16px 16px;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.mobile-menu.open { pointer-events: auto; max-height: 700px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.mobile-menu-links { display: flex; flex-direction: column; padding: 0.5rem 0; }
.mobile-menu-links a {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 500;
  color: var(--brand-grey-dark); text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a:hover { color: var(--brand-green-dark); background: rgba(124,194,66,0.05); }
.mobile-menu-footer { display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem 1.25rem 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); }
.mobile-menu-cta {
  display: block; text-align: center;
  background: var(--brand-green); color: #fff !important;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.5rem; border-radius: 100px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(124,194,66,0.35);
}
.mobile-menu-cta:hover { background: var(--brand-green-dark); }
.mobile-menu-call {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--brand-grey-dark) !important; text-decoration: none;
  padding: 0.65rem; border: 1.5px solid var(--line); border-radius: 100px;
}
@media (max-width: 900px) {
  .nav { padding: 0.75rem 1.25rem; }
  .nav.scrolled, .nav.always-solid { padding: 0.6rem 1.25rem; }
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav-cta { display: none; }
}

/* HERO */
.hero-city {
  position: relative;
  color: #fff;
  padding: 10rem 0 7rem;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero-city::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-city::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,28,0.85) 0%, rgba(42,42,46,0.7) 100%);
  z-index: 1;
}
.hero-city .container { position: relative; z-index: 2; }
.hero-city h1 { color: #fff; font-weight: 500; }
.hero-city .eyebrow { color: var(--brand-green); }
.hero-city .eyebrow::before { background: var(--brand-green); }
.hero-city p { color: rgba(255,255,255,0.85); font-size: clamp(1.0625rem, 1.4vw, 1.25rem); max-width: 60ch; }
.hero-city .cta-row { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--brand-green); color: #fff; }
.btn-primary:hover { background: var(--brand-green-dark); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-outline:hover { border-color: var(--brand-green); color: var(--brand-green); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* INTRO SECTION */
.intro-section { background: var(--bg-soft); }
.local-knowledge { background: #fff; border-left: 3px solid var(--brand-green); padding: 2rem; margin: 2rem 0; max-width: 70ch; border-radius: 0 var(--radius) var(--radius) 0; }
.local-knowledge h3 { margin-bottom: 0.75rem; font-size: 1.4rem; color: var(--brand-grey-dark); font-weight: 600; }
.neighborhoods { background: #fff; padding: 2rem; border-radius: var(--radius); margin-top: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.neighborhoods h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--brand-grey-dark); font-weight: 600; }

/* SERVICES SECTION (matches homepage) */
.services-section-page { background: var(--bg-alt); }
.services-header { max-width: 640px; margin-bottom: 3.5rem; }
.services-header .lead { margin-top: 1.25rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--brand-grey-dark); text-decoration: none; color: inherit; display: block; transition: transform 0.5s var(--ease); }
.service-card:hover { transform: translateY(-4px); }
.service-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.service-card:hover .service-card-img { transform: scale(1.08); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(31,31,33,0.92) 100%); pointer-events: none; z-index: 1; }
.service-info { position: absolute; bottom: 1.75rem; left: 1.75rem; right: 1.75rem; z-index: 2; color: #fff; }
.service-info-tag { display: inline-block; padding: 0.35rem 0.7rem; background: var(--brand-green); color: #fff; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; border-radius: 100px; margin-bottom: 1rem; }
.service-info h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.4rem; font-weight: 400; font-family: 'Cormorant', serif; }
.service-info-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-top: 0.5rem; transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.service-card:hover .service-info-arrow { gap: 0.85rem; color: var(--brand-green); }

/* COMMUNITY GRID (county hubs only) */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.community-grid ul { list-style: none; }
.community-grid li { margin-bottom: 0.75rem; }
.community-grid a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.02rem;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.community-grid a:hover {
  color: var(--brand-green-dark);
  border-bottom-color: var(--brand-green);
}

/* CTA / FORM */
.cta { background: var(--brand-grey-dark); color: #fff; padding: 8rem 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: url('/images/stock/photo-1600596542815-ffad4c1539a9.webp') center/cover; opacity: 0.18; filter: grayscale(0.5); }
.cta-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }
.cta-content h2 { color: #fff; font-weight: 300; }
.cta-content h2 em { font-style: italic; color: var(--brand-green); font-weight: 400; }
.cta-content > p { color: rgba(255,255,255,0.75); margin-top: 1.5rem; font-size: 1.125rem; max-width: 42ch; }
.cta-content .eyebrow { color: var(--brand-green); }
.cta-content .eyebrow::before { background: var(--brand-green); }
.cta-direct { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cta-direct .label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; font-weight: 600; }
.cta-phone { font-family: 'Cormorant', serif; font-size: clamp(1.875rem, 3.5vw, 2.875rem); font-weight: 500; color: #fff; text-decoration: none; letter-spacing: -0.015em; display: inline-block; transition: color 0.3s var(--ease); }
.cta-phone:hover { color: var(--brand-green); }
.form { background: #fff; padding: 2.75rem; border-radius: var(--radius); color: var(--ink); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); }
.form h3 { margin-bottom: 0.4rem; font-size: 1.5rem; color: var(--brand-grey-dark); font-family: 'Cormorant', serif; font-weight: 500; }
.form-sub { color: var(--ink-mute); font-size: 0.95rem; margin-bottom: 2rem; }

.form-flip { perspective: 1600px; position: relative; }
.form-flip-inner { position: relative; width: 100%; transition: transform 1.1s cubic-bezier(0.7, 0, 0.3, 1); transform-style: preserve-3d; }
.form-flip.flipped .form-flip-inner { transform: rotateY(180deg); }
.form-flip-front, .form-flip-back { -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: var(--radius); }
.form-flip-front { position: relative; z-index: 2; }
.form-flip.flipped .form-flip-front { pointer-events: none; }
.form-flip-back { position: absolute; top: 0; left: 0; right: 0; bottom: 0; transform: rotateY(180deg); background: #fff; padding: 3rem 2.75rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.form-flip-back-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--brand-green); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; box-shadow: 0 10px 28px rgba(124, 194, 66, 0.45); opacity: 0; transform: scale(0.4); }
.form-flip.flipped .form-flip-back-icon { animation: thankyouPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s forwards; }
@keyframes thankyouPop { 0% { opacity: 0; transform: scale(0.4); } 100% { opacity: 1; transform: scale(1); } }
.form-flip-back-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.form-flip-back h3 { font-family: 'Cormorant', serif; font-size: clamp(1.5rem, 2.5vw, 1.875rem); color: var(--brand-grey-dark); font-weight: 400; margin-bottom: 1rem; max-width: 22ch; line-height: 1.2; opacity: 0; transform: translateY(14px); }
.form-flip.flipped .form-flip-back h3 { animation: thankyouFade 0.7s var(--ease) 0.7s forwards; }
.form-flip-back h3 em { font-style: italic; color: var(--brand-green-dark); font-weight: 400; }
.form-flip-back p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.6; max-width: 36ch; margin: 0 auto 0.5rem; opacity: 0; transform: translateY(14px); }
.form-flip.flipped .form-flip-back p { animation: thankyouFade 0.7s var(--ease) 0.85s forwards; }
.form-flip-back .small-note { font-size: 0.85rem; color: var(--ink-mute); margin-top: 1.5rem; opacity: 0; transform: translateY(14px); }
.form-flip.flipped .form-flip-back .small-note { animation: thankyouFade 0.7s var(--ease) 1s forwards; }
@keyframes thankyouFade { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.5rem; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: 0.85rem 0; background: transparent; border: none; border-bottom: 1.5px solid var(--line); font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--brand-grey-dark); transition: border-color 0.3s var(--ease); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brand-green); }
.field textarea { resize: vertical; min-height: 80px; padding: 0.75rem 0; }
.recaptcha-wrap { margin: 1.5rem 0 0.5rem; min-height: 78px; }
.field input:-webkit-autofill, .field input:-webkit-autofill:hover, .field input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0 1000px white inset !important; -webkit-text-fill-color: var(--brand-grey-dark) !important; }
.form .btn { width: 100%; justify-content: center; margin-top: 1rem; background: var(--brand-green); color: #fff; border: none; }
.form .btn:hover { background: var(--brand-green-dark); transform: translateY(-2px); }

/* FOOTER */
footer { background: #1a1a1c; color: rgba(255,255,255,0.65); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-grid h4 { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 0.65rem; font-size: 0.95rem; }
.footer-list a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-list a:hover { color: var(--brand-green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.85rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 4.5rem 0; }
  .hero-city { padding: 7rem 0 4rem; min-height: 60vh; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 5/4; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .cta { padding: 5rem 0; }
  .form { padding: 2rem; }
  .container { padding: 0 1.25rem; }
}


.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin: 3rem 0; }
.tier-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem 2rem; transition: all 0.3s; display: flex; flex-direction: column; }
.tier-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: var(--brand-green); }
.tier-card.featured { background: linear-gradient(180deg, #fff 0%, #f7faf3 100%); border-color: var(--brand-green); position: relative; }
.tier-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand-green); color: #fff; padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.tier-name { font-family: 'Cormorant', serif; font-size: 1.6rem; font-weight: 600; color: var(--brand-grey-dark); margin-bottom: 0.5rem; }
.tier-price { font-size: 1.5rem; font-weight: 700; color: var(--brand-green-dark); margin-bottom: 1rem; font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
.tier-desc { font-size: 0.97rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.tier-includes { list-style: none; padding: 0; margin: 0; }
.tier-includes li { position: relative; padding-left: 1.5rem; margin-bottom: 0.65rem; font-size: 0.95rem; color: var(--ink); line-height: 1.5; }
.tier-includes li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--brand-green); font-weight: 700; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }

.driver-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.driver-card { background: var(--bg-soft); padding: 1.75rem 1.5rem; border-radius: var(--radius); border-left: 3px solid var(--brand-green); }
.driver-card h3 { font-family: 'Cormorant', serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--brand-grey-dark); font-weight: 600; }
.driver-card p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }
@media (max-width: 700px) { .driver-grid { grid-template-columns: 1fr; } }

.faq-section { padding: 6rem 0; background: var(--bg-soft); }
.faq-list { margin-top: 2.5rem; }
.faq-item { background: #fff; border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; transition: box-shadow 0.3s var(--ease); }
.faq-item[open] { box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.faq-item summary { padding: 1.5rem 1.75rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-family: 'Cormorant', serif; font-size: 1.3rem; font-weight: 600; color: var(--brand-grey-dark); margin: 0; flex: 1; line-height: 1.3; }
.faq-toggle { font-size: 1.5rem; color: var(--brand-green-dark); font-weight: 400; transition: transform 0.3s var(--ease); width: 28px; text-align: center; flex-shrink: 0; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-item p { padding: 0 1.75rem 1.5rem; margin: 0; line-height: 1.7; color: var(--ink-soft); }

.related-resources-section { padding: 6rem 0; background: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.related-card { background: var(--bg-soft); border-radius: var(--radius); padding: 1.75rem 1.5rem; text-decoration: none; color: inherit; display: block; transition: all 0.3s var(--ease); border: 1px solid transparent; }
.related-card:hover { background: #fff; border-color: var(--brand-green); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.related-card h3 { font-family: 'Cormorant', serif; font-size: 1.35rem; margin-bottom: 0.4rem; color: var(--brand-grey-dark); font-weight: 600; }
.related-card .price { font-size: 1rem; font-weight: 700; color: var(--brand-green-dark); margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; }
.related-card p { font-size: 0.92rem; line-height: 1.5; color: var(--ink-soft); margin-bottom: 0.85rem; }
.related-card .related-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--brand-green-dark); font-weight: 600; }
.related-card:hover .related-arrow { gap: 0.65rem; }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }

.container-narrow { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.intro-detail { padding: 5rem 0 3rem; }
.intro-detail .lead { font-size: 1.15rem; line-height: 1.7; max-width: 75ch; }
.tiers-section { padding: 3rem 0 6rem; }
.drivers-section { padding: 6rem 0; background: var(--bg-soft); }

.breakdown-section { padding: 6rem 0; background: #fff; }
.breakdown-table-wrap { margin-top: 3rem; overflow-x: auto; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.breakdown-table { width: 100%; border-collapse: collapse; background: #fff; }
.breakdown-table thead { background: var(--bg-soft); }
.breakdown-table th { text-align: left; padding: 1.15rem 1.5rem; font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--brand-grey-dark); letter-spacing: 0.02em; text-transform: uppercase; border-bottom: 2px solid var(--line); }
.breakdown-table td { padding: 1.15rem 1.5rem; font-size: 0.97rem; color: var(--ink); border-bottom: 1px solid var(--line); line-height: 1.4; }
.breakdown-table tbody tr:last-child td { border-bottom: none; }
.breakdown-table tbody tr:hover { background: rgba(124, 194, 66, 0.04); }
.breakdown-table td:nth-child(2) { font-weight: 600; color: var(--brand-green-dark); white-space: nowrap; font-family: 'Inter', sans-serif; }
.breakdown-table td:nth-child(3) { color: var(--ink-soft); font-weight: 500; white-space: nowrap; }
.breakdown-note { margin-top: 1.5rem; font-size: 0.92rem; color: var(--ink-soft); font-style: italic; max-width: 75ch; }
@media (max-width: 700px) {
  .breakdown-table th, .breakdown-table td { padding: 0.85rem 1rem; font-size: 0.9rem; }
}


.contact-hero { padding: 9rem 0 4rem; position: relative; color: #fff; min-height: 50vh; display: flex; align-items: center; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background-image: url('/images/stock/photo-1600585154340-be6161a56a0c.webp'); background-size: cover; background-position: center; }
.contact-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,22,0.65) 0%, rgba(20,20,22,0.8) 100%); }
.contact-hero > .container { position: relative; z-index: 2; text-align: center; }
.contact-hero h1 { color: #fff; margin: 0 auto 1rem; }
.contact-hero p { color: rgba(255,255,255,0.92); max-width: 60ch; margin: 0 auto; font-size: 1.15rem; }

.contact-main-section { padding: 5rem 0; background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.contact-info-side { background: var(--brand-green); color: #fff; padding: 3rem 2.5rem; }
.contact-info-side h2 { color: #fff; font-family: 'Cormorant', serif; font-size: 1.8rem; margin-bottom: 0.5rem; border-left: 3px solid #fff; padding-left: 0.85rem; }
.contact-info-side p { color: rgba(255,255,255,0.9); font-size: 0.97rem; line-height: 1.5; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: #fff; }
.contact-info-item a, .contact-info-item .text { color: #fff; text-decoration: none; font-size: 1.05rem; line-height: 1.4; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-info-item .label { display: block; font-size: 0.85rem; opacity: 0.85; margin-bottom: 0.15rem; }
.contact-info-item strong { display: block; font-size: 1.02rem; }
.contact-info-item .text { font-size: 0.95rem; }
.contact-form-side { padding: 3rem 2.5rem; }
.contact-form-side h2 { font-family: 'Cormorant', serif; font-size: 1.6rem; margin-bottom: 0.4rem; color: var(--brand-grey-dark); }
.contact-form-side p { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: 0.95rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-map-section { padding: 5rem 0; background: #fff; text-align: center; }
.contact-map-section h2 { font-family: 'Cormorant', serif; }
.map-iframe-wrap { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.map-iframe-wrap iframe { width: 100%; height: 450px; border: 0; display: block; }

.contact-faq-section { padding: 6rem 0; background: var(--bg-soft); }
