/* ===================================================================
   LEGACII Background and Notary — stylesheet
   =================================================================== */

:root {
  /* Brand palette, from the LEGACII fingerprint logo */
  --green-900: #002855; /* Navy */
  --green-800: #087F3D; /* Deep Green */
  --green-700: #00A651; /* Emerald Green */
  --green-600: #00A99D; /* Teal */
  --green-500: #00B9D8; /* Turquoise Blue */
  --green-400: #00BFA6; /* Fingerprint gradient midpoint */
  --green-100: #e3f7f1;
  --green-50:  #f1fbf8;

  --ink:       #002855;
  --ink-soft:  #33404a;
  --gray-600:  #5b6663;
  --gray-300:  #d9e2de;
  --gray-100:  #f4f6f5;
  --white:     #ffffff;

  --shadow-sm: 0 1px 2px rgba(0, 40, 85, 0.06), 0 1px 1px rgba(0, 40, 85, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 40, 85, 0.10);
  --shadow-lg: 0 20px 48px rgba(0, 40, 85, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1180px;
  --header-h: 92px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

section[id] {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green-500);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--gray-600); font-size: 1.05rem; margin: 0; }

section { padding: 96px 0; }
@media (max-width: 640px) {
  section { padding: 64px 0; }
}

.bg-white { background: var(--white); }
.bg-tint  { background: var(--green-50); }
.bg-light { background: var(--gray-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn-outline:hover { background: var(--green-600); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--green-700);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-block { width: 100%; }

/* ===================================================================
   Header
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-300);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 76px;
  width: auto;
}
.brand-word {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-word span { color: var(--green-600); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-700); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.book-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.book-btn-hours {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-700);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .book-btn-hours { display: none; }
}
.header-phone {
  display: none;
  font-weight: 600;
  color: var(--green-700);
  font-size: 0.92rem;
  white-space: nowrap;
}
.header-phone svg { vertical-align: -3px; margin-right: 5px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg) translate(5px, 5px); background: var(--ink); }
.nav-toggle.is-open span::after { transform: rotate(-45deg) translate(5px, -5px); background: var(--ink); }

@media (max-width: 900px) {
  .header-phone { display: none !important; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--green-700); }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 420px) {
  .brand img { height: 40px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-primary { padding: 12px 16px; font-size: 0.88rem; }
}

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  padding: 72px 0 0;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-trust svg { color: var(--green-500); flex-shrink: 0; }

.hero-visual {
  position: relative;
}
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 6 / 5;
  background: var(--green-900);
}
.hero-visual-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}
.hero-badge .icon-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-600);
}
.hero-badge strong { display: block; font-size: 0.92rem; color: var(--ink); }
.hero-badge span { font-size: 0.8rem; color: var(--gray-600); }

.tagline-strip {
  background: var(--green-800);
  color: var(--green-100);
  padding: 16px 0;
}
.tagline-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.tagline-strip .sep { color: var(--green-500); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
}

/* ===================================================================
   About
   =================================================================== */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-visual img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-visual .tall { aspect-ratio: 3/4; }
.about-visual .col { display: flex; flex-direction: column; gap: 16px; }
.about-visual .col:first-child { margin-top: 36px; }
.about-visual-single {
  grid-template-columns: 1fr;
}
.about-visual-single img {
  aspect-ratio: 4/3;
}
.about-copy p { color: var(--gray-600); }
.standard-row {
  display: flex;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  flex-wrap: wrap;
  margin-top: 24px;
}
.standard-row .sep { color: var(--green-400); }

@media (max-width: 860px) {
  .about .container { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ===================================================================
   Services
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-100), var(--white));
  border: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Who We Serve
   =================================================================== */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.serve-chip {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.serve-chip svg { color: var(--green-500); }
.serve-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-600);
}
@media (max-width: 900px) {
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================================
   Standard (dark green feature band)
   =================================================================== */
.standard-section {
  position: relative;
  color: var(--white);
  background: var(--green-900);
  overflow: hidden;
}
.standard-section .bg-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.standard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,47,28,0.96) 10%, rgba(20,83,45,0.85) 55%, rgba(11,47,28,0.97) 100%);
}
.standard-section .container { position: relative; z-index: 1; }
.standard-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.standard-head .eyebrow { color: var(--green-400); }
.standard-head .eyebrow::before { background: var(--green-400); }
.standard-head h2 { color: var(--white); }
.standard-head p { color: rgba(255,255,255,0.78); }

.standard-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.standard-cols-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.standard-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
}
.standard-col .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--green-400);
  margin-bottom: 14px;
}
.standard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.standard-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.standard-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.standard-col p {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 900px) {
  .standard-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .standard-cols { grid-template-columns: 1fr; }
}

/* ===================================================================
   Pricing
   =================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card .label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}
.price-card.featured .label { color: var(--green-300, #a7e3bd); }
.price-card .amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-card.featured .amount { color: var(--white); }
.price-card .amount small { font-size: 1rem; font-weight: 600; }
.price-card .desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0;
}
.pay-now-btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 0.9rem;
}
.price-card.featured .desc { color: rgba(255,255,255,0.72); }

.pricing-note {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pricing-note p { margin: 0; color: var(--ink-soft); }
.pricing-note strong { color: var(--green-700); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-more {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-more[hidden] {
  display: none;
}
.faq-toggle {
  align-self: center;
  margin-top: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p {
  color: var(--gray-600);
  padding-bottom: 20px;
  margin: 0;
  font-size: 0.96rem;
}

/* ===================================================================
   Reviews
   =================================================================== */
.review-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px 40px;
  text-align: center;
}
.review-card .google-g {
  margin: 0 auto 18px;
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.review-card h2 { font-size: 1.6rem; margin-bottom: 12px; }
.review-card p { color: var(--gray-600); max-width: 420px; margin: 0 auto 28px; }
.review-card-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .review-card { padding: 36px 24px; }
}

/* ===================================================================
   Contact / Booking
   =================================================================== */
.contact-section {
  position: relative;
  background: var(--green-800);
  color: var(--white);
  overflow: hidden;
}
.contact-section .bg-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,47,28,0.95), rgba(20,83,45,0.9));
}
.contact-section .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-head .eyebrow { color: var(--green-400); }
.contact-head .eyebrow::before { background: var(--green-400); }
.contact-head h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.contact-head p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 480px; }

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-card .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card strong { display: block; color: var(--white); font-size: 0.98rem; margin-bottom: 2px; }
.contact-card span, .contact-card a { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.contact-card a:hover { color: var(--white); text-decoration: underline; }

.contact-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 16px;
  display: block;
}
.contact-map-cta {
  padding: 20px 12px 8px;
  text-align: center;
}
.contact-map-cta p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; }
.hours-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 14px 0 0 !important;
  font-weight: 600;
  color: var(--green-700) !important;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer {
  background: var(--white);
  color: var(--gray-600);
  padding: 64px 0 0;
  border-top: 1px solid var(--gray-300);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-300);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand img {
  height: 96px;
}
.footer-brand-word { color: var(--ink); font-family: 'Poppins', sans-serif; font-weight: 700; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--gray-600); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--green-700); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.footer-bottom .fine {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--green-700);
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===================================================================
   Legal pages (terms.html / privacy.html)
   =================================================================== */
.legal-hero {
  background: var(--green-50);
  padding: 56px 0 40px;
  text-align: center;
}
.legal-hero .eyebrow { justify-content: center; }
.legal-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.legal-hero .updated { color: var(--gray-600); font-size: 0.92rem; }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-body h2 {
  font-size: 1.15rem;
  margin-top: 2.2em;
  color: var(--green-700);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { color: var(--ink-soft); }
.legal-body .tagline-final {
  margin-top: 48px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green-600);
}
.legal-body a { color: var(--green-600); text-decoration: underline; }

/* ===================================================================
   Book appointment form (in-page section)
   =================================================================== */
.book-form-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}
.book-form-card select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
}
.book-form-card select:focus {
  outline: none;
  border-color: var(--green-500);
}
.location-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 2px;
}
.location-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.location-choice input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-600);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .book-form-card { padding: 28px 22px; }
}

/* ===================================================================
   Payment form modal
   =================================================================== */
.pay-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 47, 28, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pay-modal-overlay[hidden] {
  display: none;
}
.pay-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
}
.pay-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
}
.pay-modal-close:hover { background: var(--gray-300); }
.pay-modal h3 { font-size: 1.4rem; margin-bottom: 14px; }
.pay-modal-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 0 0 22px;
  font-weight: 600;
  color: var(--ink);
}
.pay-modal-price {
  font-family: 'Poppins', sans-serif;
  color: var(--green-700);
  font-size: 1.1rem;
}
.pay-modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pay-modal-field[hidden] {
  display: none;
}
.pay-modal-field input {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
}
.pay-modal-field input:focus {
  outline: none;
  border-color: var(--green-500);
}
.field-hint {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: -2px;
}
.pay-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pay-modal-submit { margin-top: 6px; }
.pay-modal-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--gray-600);
  text-align: center;
}
.pay-modal-note a { color: var(--green-600); font-weight: 600; text-decoration: underline; }

@media (max-width: 480px) {
  .pay-modal { padding: 28px 22px; }
  .pay-modal-row { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--green-700);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus {
  left: 0; top: 0;
}
