@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #3C6E47;
  --green-d: #2C5236;
  --coral:   #E8804D;
  --white:   #FFFFFF;
  --text:    #20261F;
  --pale:    #F6F3EC;
  font-size: 16px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4 { font-family: 'Poppins', Arial, sans-serif; line-height: 1.1; }
p { font-size: 0.9375rem; color: rgba(32,38,31,0.7); }
img { max-width: 100%; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(32,38,31,0.08);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 4.25rem;
  transition: box-shadow 0.2s;
}
.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; padding: 0.6rem 0; }
.nav-logo svg { color: var(--green); flex-shrink: 0; }
.nav-logo-sub { font-family: 'Poppins', Arial, sans-serif; font-weight: 800; line-height: 1.05; color: var(--text); }
.nav-logo-sub .l1 { display: block; font-size: 1.05rem; letter-spacing: -0.01em; }
.nav-logo-sub .l2 { display: block; font-size: 0.65rem; letter-spacing: 0.16em; color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(32,38,31,0.75); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-contact {
  background: var(--coral); color: var(--white);
  padding: 0.5rem 1.375rem; border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: filter 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-contact:hover { filter: brightness(0.94); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* ── HERO ── */
.hero { padding: 8.5rem 5% 5rem; background: var(--pale); width: 100%; overflow: visible; position: relative; }
.hero-inner {
  max-width: 70rem; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border-radius: 100px;
  padding: 0.3125rem 0.875rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--green); margin-bottom: 1.5rem; letter-spacing: 0.01em;
  border: 1.5px solid rgba(60,110,71,0.18);
}
.hero-headline {
  font-size: clamp(2.125rem, 4.3vw, 3.375rem);
  font-weight: 800; color: var(--text);
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 1.125rem;
}
.hero-sub {
  font-size: 1.0625rem; color: rgba(32,38,31,0.7);
  line-height: 1.7; margin-bottom: 2rem; font-weight: 400; max-width: 32rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }
.btn-primary {
  background: var(--coral); color: var(--white);
  padding: 0.875rem 2rem; border-radius: 100px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; transition: filter 0.2s, transform 0.15s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { filter: brightness(0.94); transform: translateY(-2px); }
.btn-ghost {
  color: var(--text); font-size: 0.9375rem; font-weight: 500;
  text-decoration: none; display: flex; align-items: center; gap: 0.375rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--green); }
.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem;
  padding-top: 2rem; border-top: 1.5px solid rgba(32,38,31,0.08);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: rgba(32,38,31,0.7);
}

.hero-card {
  background: var(--white); border: 2px solid rgba(32,38,31,0.08);
  border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
  box-shadow: 0 1.5rem 3.5rem rgba(32,38,31,0.06);
}
.hero-card-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(32,38,31,0.5); margin-bottom: 0.75rem;
}
.hero-price {
  font-size: clamp(3rem, 6vw, 4rem); font-weight: 900; color: var(--text);
  line-height: 0.95; letter-spacing: -0.04em; display: block; margin-bottom: 0.25rem;
}
.hero-price-unit {
  font-size: 1rem; font-weight: 600; color: var(--coral);
  letter-spacing: 0.02em; display: block; margin-bottom: 1.75rem;
}
.hero-card-divider { width: 2.5rem; height: 2px; background: rgba(32,38,31,0.12); margin: 0 auto 1.75rem; }
.hero-plans { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 0.375rem; }
.hero-plan-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--pale); border: 1.5px solid rgba(32,38,31,0.08);
  border-radius: 10px; padding: 0.75rem 1rem;
}
.hero-plan-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.hero-plan-row svg { flex-shrink: 0; }
.hero-plan-note { font-size: 0.8125rem; color: rgba(32,38,31,0.55); font-weight: 500; margin-top: 1rem; margin-bottom: 0.375rem; }
.hero-card-cta {
  display: block; width: 100%; margin-top: 1.75rem;
  background: var(--green); color: var(--white); padding: 0.875rem; border-radius: 100px;
  font-family: 'Poppins', Arial, sans-serif; font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; text-align: center; transition: filter 0.2s, transform 0.15s;
}
.hero-card-cta:hover { filter: brightness(0.94); transform: translateY(-2px); }

/* ── SECTION SHARED ── */
.section { padding: 5.5rem 5%; width: 100%; }
.section-inner { max-width: 70rem; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.625rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-eyebrow::before { content: ''; width: 1.5rem; height: 2px; background: var(--coral); flex-shrink: 0; }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem;
}
.section-intro { font-size: 1.0625rem; color: rgba(32,38,31,0.7); line-height: 1.72; max-width: 38rem; }

/* ── FACILITIES / SERVICES ── */
.services { background: var(--white); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; align-items: end;
}
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offer-card {
  background: var(--pale); border-radius: 16px;
  border: 1.5px solid rgba(32,38,31,0.08); padding: 2rem 1.625rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.offer-card:hover {
  border-color: var(--coral); box-shadow: 0 8px 30px rgba(232,128,77,0.14); transform: translateY(-3px);
}
.offer-icon {
  width: 3rem; height: 3rem; border-radius: 12px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.offer-title { font-size: 1.1875rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 0.625rem; }
.offer-desc { font-size: 0.9375rem; color: rgba(32,38,31,0.7); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.offer-list { list-style: none; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(32,38,31,0.7); padding: 0.25rem 0; font-weight: 500;
}
.offer-list li svg { flex-shrink: 0; margin-top: 0.2rem; }

/* ── ABOUT ── */
.about { background: var(--pale); }
.about-grid-photo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2.5rem;
}
.about-photo-frame {
  border-radius: 16px; overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(32,38,31,0.08);
  box-shadow: 0 1.5rem 3.5rem rgba(32,38,31,0.1);
}
.about-photo-frame img { width: 100%; height: auto; display: block; }
.about-quote {
  font-size: 1.1875rem; font-weight: 700; color: var(--text);
  line-height: 1.5; letter-spacing: -0.02em;
  margin-bottom: 1.5rem; padding-left: 1.25rem;
  border-left: 4px solid var(--coral);
}
.about-body { font-size: 1rem; color: rgba(32,38,31,0.75); line-height: 1.8; margin-bottom: 1rem; }
.about-body strong { color: var(--text); font-weight: 600; }
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1.5px solid rgba(32,38,31,0.1); flex-wrap: wrap;
}
.stat-val { font-size: 1.375rem; font-weight: 800; color: var(--coral); letter-spacing: -0.02em; line-height: 1.2; }
.stat-lab { font-size: 0.8125rem; color: rgba(32,38,31,0.55); font-weight: 500; margin-top: 4px; }

/* ── WHY ── */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why-card {
  background: var(--pale); border-radius: 14px; border: 1.5px solid rgba(32,38,31,0.08);
  padding: 1.625rem; transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--coral); }
.why-card-num {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.875rem;
}
.why-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.why-card-desc { font-size: 0.9375rem; color: rgba(32,38,31,0.7); line-height: 1.7; }

/* ── GALLERY PREVIEW ── */
.gallery-preview { background: var(--pale); }
.gp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.gp-grid a { display: block; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.14); position: relative; }
.gp-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block; transition: transform 0.3s; }
.gp-grid a:hover img { transform: scale(1.05); }
.gp-more { text-align: center; margin-top: 2rem; }

/* ── PRICES ── */
.prices-section { background: var(--white); }
.price-table-wrap { max-width: 34rem; margin: 2.5rem auto 0; background: var(--pale); border-radius: 16px; padding: 0.5rem 2rem; border: 1.5px solid rgba(32,38,31,0.08); }
table.prices { width: 100%; border-collapse: collapse; }
table.prices tr { border-bottom: 1px solid rgba(32,38,31,0.1); }
table.prices tr:last-child { border-bottom: none; }
table.prices td { padding: 1rem 0; font-size: 1rem; }
table.prices td:first-child { font-weight: 600; color: var(--text); }
table.prices td:last-child { text-align: right; font-weight: 800; color: var(--coral); font-size: 1.125rem; }
.price-notes { max-width: 34rem; margin: 1.75rem auto 0; }
.price-notes ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.price-notes li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: rgba(32,38,31,0.75); }
.price-notes li svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--green); }

/* ── FIND US ── */
.findus { background: var(--pale); }
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2.5rem; }
.findus-detail-row { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.25rem; }
.findus-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 10px; background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.findus-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(32,38,31,0.5); margin-bottom: 2px; }
.findus-value { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.findus-value a { color: var(--text); text-decoration: none; }
.findus-value a:hover { color: var(--coral); }
.findus-note { font-size: 0.875rem; color: rgba(32,38,31,0.6); margin-top: 0.5rem; line-height: 1.6; }
.findus-map {
  border-radius: 16px; overflow: hidden; border: 1.5px solid rgba(32,38,31,0.08);
  box-shadow: 0 1.5rem 3.5rem rgba(32,38,31,0.08); aspect-ratio: 4 / 3; background: var(--white);
}
.findus-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-locked {
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  padding: 2rem 1rem; background: var(--white); text-align: center; cursor: pointer; border: none; width: 100%; height: 100%;
  font-family: 'Poppins', Arial, sans-serif; font-size: 0.875rem; color: rgba(32,38,31,0.7);
}
.map-locked strong { color: var(--text); font-size: 1rem; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.faq-intro-title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.faq-intro-body { font-size: 0.9375rem; color: rgba(32,38,31,0.7); line-height: 1.75; margin-bottom: 1.5rem; }
.faq-contact-nudge { background: var(--pale); border-radius: 12px; padding: 1.25rem; border: 1.5px solid rgba(32,38,31,0.08); }
.faq-contact-nudge p { font-size: 0.9375rem; color: rgba(32,38,31,0.7); margin-bottom: 0.75rem; }
.faq-contact-nudge a {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--coral); font-weight: 600; font-size: 0.9375rem; text-decoration: none; transition: color 0.2s;
}
.faq-contact-nudge a:hover { color: var(--text); }
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item {
  border: 1.5px solid rgba(32,38,31,0.1); border-radius: 12px; overflow: hidden;
  background: var(--white); transition: border-color 0.2s;
}
.faq-item.is-open { border-color: var(--coral); }
.faq-question {
  width: 100%; background: var(--white); border: none;
  padding: 1.125rem 1.25rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: 'Poppins', Arial, sans-serif; font-size: 0.9375rem; font-weight: 600;
  color: var(--text); gap: 0.75rem; transition: background 0.15s;
}
.faq-question:hover { background: var(--pale); }
.faq-item.is-open .faq-question { background: var(--pale); color: var(--text); }
.faq-chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform 0.25s; color: var(--coral); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0 1.25rem; font-size: 0.9375rem; color: rgba(32,38,31,0.7); line-height: 1.75;
}
.faq-item.is-open .faq-answer { max-height: 16rem; padding: 0.25rem 1.25rem 1.25rem; }

/* ── CONTACT ── */
.book-section {
  background: var(--text); padding: 5.5rem 5%; width: 100%;
  position: relative; overflow: hidden;
}
.book-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(255,255,255,0.02) 59px,rgba(255,255,255,0.02) 60px),
    repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(255,255,255,0.02) 59px,rgba(255,255,255,0.02) 60px);
  pointer-events: none;
}
.book-inner {
  max-width: 70rem; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.book-left .section-eyebrow { color: var(--coral); }
.book-left .section-eyebrow::before { background: var(--coral); }
.book-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem;
}
.book-sub { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.book-contact-methods { display: flex; flex-direction: column; gap: 0.875rem; }
.book-contact-item { display: flex; align-items: center; gap: 0.875rem; text-decoration: none; transition: opacity 0.2s; }
.book-contact-item:hover { opacity: 0.8; }
.book-contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.book-contact-icon svg { width: 1.125rem; height: 1.125rem; }
.book-contact-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1px; }
.book-contact-value { font-size: 0.9375rem; font-weight: 600; color: var(--white); }
.book-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.25rem 0; }
.book-cat-accent { margin-top: 1.75rem; opacity: 0.9; }

.form-card {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 2rem; align-self: start;
}
.form-card-title { font-family: 'Poppins', Arial, sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--white); margin-bottom: 0.375rem; }
.form-card-sub { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }

.cf-field { margin-bottom: 1rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.cf-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.65); margin-bottom: 0.375rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.cf-input, .cf-select, .cf-textarea {
  width: 100%; border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px; padding: 0.6875rem 0.875rem;
  font-family: 'Poppins', Arial, sans-serif; font-size: 0.9375rem;
  color: var(--white); background: rgba(255,255,255,0.06);
  outline: none; transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,255,255,0.35); }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--coral); background: rgba(255,255,255,0.1); }
.cf-textarea { resize: vertical; min-height: 5.5rem; font-family: 'Poppins', Arial, sans-serif; }
.cf-select option { color: #111; }

.cf-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  width: 100%; background: var(--coral); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 100px; border: none; cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif; font-size: 1rem; font-weight: 700;
  transition: filter 0.2s, transform 0.15s; letter-spacing: -0.01em;
}
.cf-submit:hover { filter: brightness(0.94); transform: translateY(-2px); }
.cf-submit svg { flex-shrink: 0; }
.cf-note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); text-align: center; margin-top: 0.875rem; }
.cf-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── FOOTER ── */
.site-footer { background: var(--text); padding: 1.75rem 5%; border-top: 1px solid rgba(255,255,255,0.08); width: 100%; }
.footer-inner {
  max-width: 70rem; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-copy a:hover { color: var(--coral); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--coral); }

/* ── INNER PAGE (Gallery / Terms) ── */
.page-header { background: var(--text); padding: 8.5rem 5% 3.5rem; width: 100%; }
.page-header-inner { max-width: 42rem; margin: 0 auto; }
.page-header-eyebrow { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.75rem; }
.page-header-title { font-size: clamp(2rem,4.2vw,3rem); font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.page-header-meta { font-size: 0.9375rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.gallery-full { max-width: 70rem; margin: 0 auto; padding: 4rem 5%; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-full-grid figure { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(32,38,31,0.1); background: var(--pale); }
.gallery-full-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block; }
.gallery-full-grid figcaption { padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600; }

.doc-content { max-width: 42rem; margin: 0 auto; padding: 4rem 5%; }
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin: 0 0 2rem; }
.doc-list a {
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--text);
  background: var(--pale); border: 1.5px solid rgba(32,38,31,0.08); border-radius: 12px; padding: 1.125rem 1.375rem; font-weight: 700;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.doc-list a:hover { border-color: var(--coral); background: var(--white); transform: translateY(-2px); }
.doc-list svg { flex-shrink: 0; color: var(--coral); }
.doc-note { font-size: 0.9375rem; color: rgba(32,38,31,0.7); line-height: 1.7; }

.legal-content { max-width: 42rem; margin: 0 auto; padding: 3rem 5% 4rem; }
.legal-content section { margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.375rem; font-weight: 800; color: var(--text); margin-bottom: 0.875rem; letter-spacing: -0.02em; }
.legal-content p { font-size: 0.9375rem; color: rgba(32,38,31,0.72); line-height: 1.8; margin-bottom: 0.875rem; }
.legal-content p strong { color: var(--text); font-weight: 600; }
.legal-content a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--text); }
.legal-note { background: var(--pale); border-left: 4px solid var(--coral); border-radius: 8px; padding: 1rem 1.25rem; margin: 1.25rem 0; font-size: 0.9375rem; color: var(--text); line-height: 1.7; }
.legal-note strong { color: var(--coral); }

.legal-cta { background: var(--text); padding: 3rem 5%; text-align: center; width: 100%; }
.legal-cta-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.legal-cta-sub { font-size: 0.9375rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-weight: 500; }
.btn-white { font-size: 0.9375rem; font-weight: 700; background: var(--coral); color: var(--white); border: none; padding: 0.875rem 2rem; border-radius: 100px; text-decoration: none; display: inline-block; transition: filter 0.2s; }
.btn-white:hover { filter: brightness(0.94); }

.nav-back { color: rgba(32,38,31,0.7); text-decoration: none; font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; gap: 0.375rem; }
.nav-back:hover { color: var(--coral); }

/* ── UTILITY PAGES ── */
.utility-main { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 8rem 5% 4rem; background: var(--pale); width: 100%; }
.utility-card { background: var(--white); border-radius: 20px; border: 1.5px solid rgba(32,38,31,0.08); padding: 3rem 2.5rem; max-width: 34rem; width: 100%; text-align: center; box-shadow: 0 1.5rem 3.5rem rgba(32,38,31,0.08); }
.utility-code { font-size: clamp(3rem,7vw,4rem); font-weight: 900; color: var(--coral); line-height: 1; margin-bottom: 0.75rem; }
.utility-title { font-size: clamp(1.5rem,3.2vw,2rem); font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin-bottom: 0.875rem; }
.utility-body { font-size: 1rem; color: rgba(32,38,31,0.7); line-height: 1.75; margin-bottom: 1.75rem; }
.utility-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1.5rem 0; }
.utility-links a { font-size: 0.875rem; font-weight: 600; color: var(--text); text-decoration: none; background: var(--pale); padding: 0.5rem 1.125rem; border-radius: 100px; transition: background 0.15s; }
.utility-links a:hover { background: rgba(232,128,77,0.15); color: var(--coral); }

/* ── FACILITY DETAIL PAGE ── */
.facility-detail { background: var(--white); }
.facility-intro { max-width: 42rem; margin: 0 auto 4rem; text-align: center; }
.facility-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.facility-row + .facility-row { margin-top: 5rem; padding-top: 5rem; border-top: 1.5px solid rgba(32,38,31,0.08); }
.facility-row.reverse .facility-photos { order: 2; }
.facility-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.facility-photos img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  border-radius: 16px; border: 1.5px solid rgba(32,38,31,0.08);
  box-shadow: 0 1.5rem 3.5rem rgba(32,38,31,0.1);
}
.facility-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 12px; background: var(--pale);
  margin-bottom: 1.25rem;
}
.facility-heading { font-size: 1.625rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin-bottom: 0.875rem; }
.facility-text { font-size: 1rem; color: rgba(32,38,31,0.75); line-height: 1.8; margin-bottom: 1.25rem; }
.facility-list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.facility-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: rgba(32,38,31,0.75); font-weight: 500; }
.facility-list li svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--coral); }

/* ── TEASER CTA (homepage sections linking out to dedicated pages) ── */
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── PRICING PAGE EXTRAS ── */
.price-explain { max-width: 42rem; margin: 0 auto; padding: 1rem 5% 0; }
.price-explain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 2rem 0; }
.price-explain-card { background: var(--pale); border-radius: 14px; border: 1.5px solid rgba(32,38,31,0.08); padding: 1.5rem; }
.price-explain-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.price-explain-card p { font-size: 0.9375rem; color: rgba(32,38,31,0.7); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .services-header, .about-grid-photo, .faq-layout, .book-inner, .findus-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .findus-map { order: -1; }
  .facility-row { grid-template-columns: 1fr; }
  .facility-row.reverse .facility-photos { order: 0; }
  .price-explain-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── SCROLL ANIMATION ── */
.anim-ready { opacity: 1; }
