:root {
  --ink: #13233a;
  --muted: #627084;
  --line: #dfe5eb;
  --navy: #123456;
  --blue: #1d6fa5;
  --green: #29735c;
  --gold: #c99735;
  --cream: #f7f4ed;
  --paper: #ffffff;
  --soft: #eef5f7;
  --shadow: 0 24px 70px rgba(19, 35, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fbfcfd;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 229, 235, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: #253c5b;
  text-decoration: none;
}

.nav-phone {
  padding: 10px 14px;
  color: #fff !important;
  background: var(--green);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section,
.section-band {
  padding: clamp(62px, 8vw, 110px) clamp(20px, 5vw, 76px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(120deg, rgba(238, 245, 247, 0.96), rgba(255, 255, 255, 0.82) 54%, rgba(247, 244, 237, 0.94)),
    radial-gradient(circle at 88% 10%, rgba(201, 151, 53, 0.13), transparent 30%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 720px;
  color: #29415f;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
}

.hero-support,
.intro-copy,
.section-heading p,
.split-section p,
.review-copy p {
  color: var(--muted);
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.24);
}

.button.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 12px;
  color: #284057;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 229, 235, 0.95);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rating-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  background: #fff;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(19, 35, 58, 0.18);
}

.rating-card strong,
.rating-card span {
  display: block;
}

.rating-card span {
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip article {
  min-height: 126px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.intro-grid,
.split-section,
.review-section,
.seo-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.compact {
  max-width: 640px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-grid article,
.steps article,
.review-card,
.content-columns article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(19, 35, 58, 0.07);
}

.benefit-grid article {
  padding: 25px;
}

.benefit-grid p,
.steps p,
.review-card blockquote,
.faq-list p,
.content-columns li {
  color: var(--muted);
}

.check {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.steps-section {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps article {
  padding: 28px;
  border-top: 5px solid var(--gold);
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-weight: 800;
}

.steps a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.services {
  background: linear-gradient(180deg, var(--cream), #fff);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-grid a {
  min-height: 78px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(19, 35, 58, 0.06);
}

.fee-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.fee-row:last-child {
  border-bottom: 0;
}

.fee-row span {
  color: var(--muted);
  font-weight: 700;
}

.fee-row strong {
  text-align: right;
}

.review-section {
  align-items: center;
}

.review-card {
  padding: 34px;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 0;
}

blockquote {
  margin: 18px 0;
  font-size: 21px;
  line-height: 1.45;
}

cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  padding: 0 22px 20px;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.content-columns article {
  padding: 28px;
}

.content-columns ul {
  margin: 0;
  padding-left: 20px;
}

.content-columns li + li {
  margin-top: 10px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 76px);
  color: #fff;
  background: linear-gradient(120deg, var(--navy), #1e5f73);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: #fff;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 76px);
  color: #dce7ef;
  background: #0f2034;
}



/* ============================================================
   EXTENDED SITE STYLES
   Components for interior pages (about, services, contact,
   booking, FAQ, testimonials, fees) that build on the design
   tokens and base components above.
============================================================ */

/* ── Navigation extras: active state + CTA button ─────────── */
.site-nav a.is-current {
  color: var(--green);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 6px;
}

/* ── Interior page hero banner ───────────────────────────── */
.page-hero {
  padding: clamp(54px, 8vw, 90px) clamp(20px, 5vw, 76px) clamp(40px, 6vw, 64px);
  background:
    linear-gradient(120deg, rgba(238, 245, 247, 0.96), rgba(255, 255, 255, 0.85) 60%),
    radial-gradient(circle at 90% 0%, rgba(201, 151, 53, 0.12), transparent 32%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.page-hero p.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumbs span[aria-hidden] {
  color: var(--line);
}

/* ── Generic content section helpers ─────────────────────── */
.section-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.prose p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 42px;
}

.prose ul {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--muted);
}

.prose li {
  margin-bottom: 8px;
  font-size: 17px;
}

/* ── Value / feature grid (about page, service page) ─────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-grid article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(19, 35, 58, 0.07);
}

/* ── Team / stats strip reused on about page ─────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.about-stats article {
  padding: 24px;
  text-align: center;
  background: var(--soft);
  border-radius: 8px;
}

.about-stats strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
}

.about-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* ── Services overview grid (cards, richer than homepage links) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-cards article {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(19, 35, 58, 0.07);
}

.service-cards .service-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--green);
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
}

.service-cards p {
  flex: 1;
  color: var(--muted);
  font-size: 15px;
}

.service-cards a.service-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

/* ── Single service page layout ──────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  padding: 26px;
  background: var(--soft);
  border-radius: 8px;
}

.service-sidebar h3 {
  margin-bottom: 12px;
}

.service-sidebar .button {
  width: 100%;
  margin-top: 14px;
}

.related-services {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-services a {
  display: block;
  padding: 8px 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.point-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.point-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--muted);
  font-size: 16px;
}

.point-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

/* ── Forms (contact + booking) ───────────────────────────── */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.form-card {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.form-group .hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.form-actions {
  margin-top: 8px;
}

.form-actions .button {
  width: 100%;
  cursor: pointer;
  border: none;
  font: inherit;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.form-alert.success {
  color: #155c3f;
  background: #e5f6ee;
  border: 1px solid #bfe6d3;
}

.form-alert.error {
  color: #8a2317;
  background: #fdecea;
  border: 1px solid #f6c8c1;
}

.contact-info-card {
  padding: 26px;
  background: var(--soft);
  border-radius: 10px;
}

.contact-info-card h3 {
  margin-bottom: 14px;
}

.contact-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-card li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.contact-info-card li:last-child {
  border-bottom: 0;
}

.contact-info-card li strong {
  display: block;
  color: var(--ink);
}

.contact-info-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

/* ── Booking / process steps recap ───────────────────────── */
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.booking-steps span {
  padding: 10px 16px;
  color: var(--navy);
  background: var(--soft);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

/* ── Testimonials page ───────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid .review-card {
  padding: 26px;
}

.testimonial-grid blockquote {
  font-size: 16px;
}

/* ── FAQ full page: grouped categories ───────────────────── */
.faq-category {
  margin-bottom: 36px;
}

.faq-category h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

/* ── 404 page ─────────────────────────────────────────────── */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) 20px;
  text-align: center;
}

.error-page .error-code {
  color: var(--blue);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 800;
  line-height: 1;
}

/* ── Full site footer ─────────────────────────────────────── */
.site-footer-full {
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 76px) 0;
  color: #dce7ef;
  background: #0f2034;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  margin-top: 14px;
  color: #b7c6d6;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer-full .brand-mark {
  background: var(--gold);
}

.site-footer-full .brand small {
  color: #9fb2c6;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: #b7c6d6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact li {
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 0;
  color: #8ea1b7;
  font-size: 13px;
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
