:root {
  --green-950: #071812;
  --green-900: #10251d;
  --green-800: #18382b;
  --green-700: #23523e;
  --gold-600: #c89132;
  --gold-500: #d7a64d;
  --cream-100: #fffaf0;
  --cream-200: #f7eddc;
  --cream-300: #eadbc2;
  --ink: #211f1a;
  --muted: #6e665a;
  --white: #ffffff;
  --line: rgba(16, 37, 29, 0.14);
  --shadow: 0 18px 45px rgba(7, 24, 18, 0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1180px;
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container > *, .split > *, .cta-panel > *, .page-hero__inner {
  min-width: 0;
}

.narrow {
  max-width: 880px;
}

/* ─── Accessibility ───────────────────────────────────────── */
.skip-link, .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto; height: auto;
  clip: auto;
  padding: 12px 18px;
  margin: 10px;
  color: var(--green-950);
  background: var(--gold-500);
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 37, 29, 0.08);
}

.topbar {
  background: var(--green-950);
  color: var(--cream-200);
  font-size: 0.88rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 38px;
  flex-wrap: wrap;
}

.topbar__inner > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.topbar a {
  color: var(--gold-500);
  font-weight: 700;
  transition: opacity var(--transition);
}

.topbar a:hover {
  opacity: 0.8;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-500), #f3d78f);
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(200, 145, 50, 0.28);
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  color: var(--green-950);
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand--footer .brand__mark {
  width: 40px; height: 40px;
}

.brand--footer strong, .brand--footer small {
  color: var(--cream-100);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-link {
  color: var(--green-950);
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-600);
  transition: transform 180ms ease;
}

.nav-link:hover { color: var(--green-700); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--cream-100);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span:not(.sr-only) {
  width: 22px; height: 2px;
  background: var(--green-950);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(7, 24, 18, 0.18);
}

.btn--gold {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-500), #f4d88d);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
}

.btn--dark {
  color: var(--white);
  background: var(--green-900);
}

.btn--dark:hover {
  background: var(--green-800);
}

.btn--light {
  color: var(--green-950);
  background: var(--cream-100);
  border-color: var(--cream-300);
}

.btn--outline {
  color: var(--green-900);
  border-color: var(--green-700);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(35, 82, 62, 0.06);
}

.btn--outline-light {
  color: var(--cream-100);
  border-color: rgba(255, 250, 240, 0.45);
  background: transparent;
}

.btn--outline-light:hover {
  background: rgba(255, 250, 240, 0.1);
}

.btn--small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-consultation.jpg");
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 18, 0.95) 0%, rgba(7, 24, 18, 0.75) 44%, rgba(7, 24, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 24, 18, 0.38), rgba(7, 24, 18, 0.14));
}

.hero__content {
  position: relative;
  padding: 96px 0;
  max-width: 800px;
  margin-inline: max(calc((100% - var(--container)) / 2), 20px) auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.1;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  color: var(--white);
  font-size: 3.9rem;
  line-height: 1.07;
}

.hero__lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero__actions, .inline-actions, .cta-panel__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 42px;
  max-width: 780px;
}

.hero__trust span {
  padding: 14px 10px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.84rem;
  text-align: center;
}

.hero__trust strong {
  display: block;
  color: var(--gold-500);
  font-size: 1.3rem;
  line-height: 1.2;
}

/* ─── Sections ─────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section--cream {
  background: var(--cream-200);
}

.section--dark {
  background: var(--green-950);
  color: var(--cream-100);
}

.section--dark h2, .section--dark h3 {
  color: var(--cream-100);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2, .split__content h2, .cta-panel h2, .page-hero h1 {
  font-size: 2.9rem;
}

.section-heading p, .split__content p, .cta-panel p, .page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ─── Service Grid ─────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 18px rgba(7, 24, 18, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(7, 24, 18, 0.12);
  border-color: rgba(215, 166, 77, 0.35);
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 900;
  font-size: 0.8rem;
  align-self: flex-start;
}

.service-card h3 {
  margin-top: 16px;
  font-size: 1.18rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green-900);
}

.service-card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.testimonial-card, .blog-card, .booking-card, .value-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 18px rgba(7, 24, 18, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover, .blog-card:hover, .booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7, 24, 18, 0.1);
}

.booking-card {
  display: flex;
  flex-direction: column;
}

.booking-card .btn {
  margin-top: auto;
  padding-top: 16px;
}

.booking-card span, .value-item span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 900;
  font-size: 0.8rem;
  align-self: flex-start;
}

.booking-card h2, .value-item h3 {
  margin-top: 16px;
  font-size: 1.3rem;
}

.booking-card p, .value-item p {
  color: var(--muted);
  margin-top: 10px;
}

/* ─── Value Cards ─────────────────────────────────────────── */
.value-item {
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), rgba(215, 166, 77, 0));
}

/* ─── Split ─────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split--reverse .split__image {
  order: 2;
}

.split__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ─── Check List ─────────────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--green-950);
  font-weight: 600;
  font-size: 0.97rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(215, 166, 77, 0.2);
}

/* ─── Feature Band ─────────────────────────────────────────── */
.feature-band {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 68px 0;
}

.feature-band h2, .feature-band p {
  color: var(--cream-100);
}

.feature-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr auto;
  gap: 36px;
  align-items: center;
}

.feature-list {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--cream-200);
}

.feature-list li {
  padding-left: 18px;
  position: relative;
  font-size: 0.97rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-card strong {
  display: block;
  color: var(--green-950);
  margin-top: 18px;
  font-weight: 800;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── CTA Panel ─────────────────────────────────────────────── */
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--cream-200);
  border: 1px solid var(--line);
}

.cta-panel--dark {
  background: rgba(255, 250, 240, 0.07);
  border-color: rgba(255, 250, 240, 0.16);
}

.cta-panel--dark h2 {
  color: var(--cream-100);
}

.cta-panel--dark p {
  color: rgba(255, 250, 240, 0.76);
}

/* ─── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--cream-100);
  padding: 110px 0 92px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/consultation-table.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  pointer-events: none;
}

.page-hero--image::after {
  opacity: 0.24;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1, .page-hero p {
  color: var(--cream-100);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

/* ─── About Hero ─────────────────────────────────────────────── */
.about-hero {
  min-height: 460px;
  display: grid;
  align-items: center;
  padding: 92px 0;
}

.about-hero::after {
  background-image:
    linear-gradient(90deg, rgba(7, 24, 18, 0.94), rgba(7, 24, 18, 0.74), rgba(7, 24, 18, 0.38)),
    url("../images/consultation-table.jpg");
  opacity: 1;
}

.about-hero__inner {
  max-width: var(--container);
}

.about-hero__content {
  max-width: 790px;
}

.about-hero h1, .about-story h2 {
  overflow-wrap: break-word;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 32px;
}

.about-hero__stats span {
  padding: 18px 14px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.1);
  font-size: 0.95rem;
}

.about-hero__stats strong {
  display: block;
  color: var(--gold-500);
  font-size: 1.45rem;
  line-height: 1.1;
}

/* ─── About Story ─────────────────────────────────────────────── */
.about-story-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 166, 77, 0.1), transparent 34%),
    var(--cream-100);
}

.about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-story__media {
  position: relative;
}

.about-story__media img {
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  object-position: 62% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-story__badge {
  position: absolute;
  left: 22px; right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--cream-100);
  background: rgba(7, 24, 18, 0.88);
  border: 1px solid rgba(255, 250, 240, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-story__badge strong {
  display: block;
  color: var(--gold-500);
  font-size: 1.05rem;
}

.about-story__badge span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
}

.about-story__content {
  max-width: 660px;
}

.about-story__content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.9rem;
  line-height: 1.1;
  color: var(--green-950);
}

.about-story__content p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 14px;
}

.about-story__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ─── About Process ─────────────────────────────────────────── */
.about-process {
  background: linear-gradient(180deg, var(--cream-100), rgba(247, 237, 220, 0.5));
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-process-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 6px 22px rgba(7, 24, 18, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-process-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7, 24, 18, 0.1);
}

.about-process-grid span {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 900;
  font-size: 1rem;
}

.about-process-grid h3 {
  font-size: 1.15rem;
  color: var(--green-900);
}

.about-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── Service Detail ─────────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 18px rgba(7, 24, 18, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(7, 24, 18, 0.1);
  border-color: rgba(215, 166, 77, 0.3);
}

.service-detail span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 900;
  font-size: 0.78rem;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-detail h2 {
  font-size: 1.55rem;
  margin-top: 18px;
  color: var(--green-900);
}

.service-detail p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.97rem;
  line-height: 1.65;
}

.service-detail .check-list {
  margin-top: 16px;
  flex: 1;
}

.service-detail .btn {
  margin-top: 22px;
  align-self: flex-start;
}

/* ─── Compact Grid ─────────────────────────────────────────── */
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.compact-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--green-900);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.compact-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 166, 77, 0.35);
  box-shadow: 0 8px 22px rgba(7, 24, 18, 0.08);
}

/* ─── Center Action ─────────────────────────────────────────── */
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ─── Consultation Page ─────────────────────────────────────── */
.message-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.message-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(7, 24, 18, 0.05);
}

.message-list article h3 {
  font-size: 1.15rem;
  color: var(--green-900);
}

.message-list p, .faq p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 14px;
  transition: border-color var(--transition);
}

.faq details:hover {
  border-color: rgba(215, 166, 77, 0.4);
}

.faq details[open] {
  border-color: var(--gold-500);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green-950);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold-600);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

/* ─── Blog ─────────────────────────────────────────────────── */
.blog-card span {
  color: var(--gold-600);
  font-weight: 900;
  font-size: 0.88rem;
}

.blog-card h2 {
  margin-top: 12px;
  font-size: 1.28rem;
  color: var(--green-900);
}

.blog-card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.blog-card a, .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color var(--transition);
}

.blog-card a:hover, .text-link:hover {
  color: var(--gold-600);
}

/* ─── Contact ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-panel, .contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 36px;
  box-shadow: 0 6px 24px rgba(7, 24, 18, 0.07);
}

.contact-panel {
  position: sticky;
  top: 110px;
}

.contact-panel h2 {
  font-size: 1.7rem;
  margin-top: 8px;
}

.contact-panel p {
  color: var(--muted);
  margin-top: 10px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a, .contact-methods > span {
  display: grid;
  gap: 3px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--cream-200);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.contact-methods a:hover {
  border-color: var(--gold-500);
  background: rgba(215, 166, 77, 0.08);
}

.contact-methods strong {
  color: var(--green-950);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-methods span span, .contact-methods a span {
  color: var(--muted);
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.contact-form h2 {
  font-size: 2rem;
}

.contact-form p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.97rem;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.form-row label, .checkbox-row {
  color: var(--green-950);
  font-weight: 700;
  font-size: 0.94rem;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1.5px solid rgba(16, 37, 29, 0.18);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 12px 14px;
  background: var(--cream-100);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(215, 166, 77, 0.22);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
}

.checkbox-row input {
  margin-top: 3px;
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 18px 0;
  font-weight: 700;
  font-size: 0.97rem;
}

.form-alert--success {
  color: #0d3a25;
  background: #dff4e7;
  border: 1px solid #9fd8b5;
}

.form-alert--error {
  color: #6d1717;
  background: #fbe3e3;
  border: 1px solid #e7a7a7;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── Legal Pages ─────────────────────────────────────────── */
.legal-page {
  min-height: 100vh;
  padding: 90px 0;
  background: var(--cream-200);
}

.legal-page h1 {
  margin-top: 30px;
  font-size: 2.8rem;
}

.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  color: var(--cream-200);
  background: var(--green-950);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 36px;
}

.site-footer h3 {
  color: var(--gold-500);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.site-footer p, .site-footer > .container > div > p {
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.94rem;
  line-height: 1.65;
}

.site-footer a {
  color: rgba(255, 250, 240, 0.76);
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--gold-500);
}

.site-footer .btn {
  color: var(--green-950);
  margin-top: 10px;
}

.site-footer .btn--outline-light {
  color: var(--cream-100);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  margin-top: 60px;
  padding: 20px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom__inner div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p, .footer-bottom a {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 250, 240, 0.58);
}

.footer-bottom a:hover {
  color: var(--gold-500);
}

/* ─── Floating WhatsApp ─────────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-500);
  box-shadow: 0 8px 28px rgba(7, 24, 18, 0.28);
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(7, 24, 18, 0.32);
}

/* ─── 1080px Tablet ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--cream-100);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link, .nav-links .btn {
    padding: 13px 12px;
  }

  .nav-link::after {
    display: none;
  }

  .service-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__trust,
  .testimonial-grid,
  .blog-grid,
  .booking-grid,
  .value-grid,
  .about-process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band__inner,
  .contact-layout,
  .about-story {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading h2, .split__content h2, .cta-panel h2, .page-hero h1 {
    font-size: 2.6rem;
  }
}

/* ─── 780px Mobile ─────────────────────────────────────────── */
@media (max-width: 780px) {
  :root {
    --radius-lg: 10px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 7px 0;
    font-size: 0.82rem;
  }

  .navbar__inner {
    min-height: 68px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.67rem;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    min-height: 600px;
  }

  .hero__media {
    background-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(160deg, rgba(7, 24, 18, 0.97), rgba(7, 24, 18, 0.72));
  }

  .hero__content {
    padding: 80px 0 70px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero__trust span {
    font-size: 0.78rem;
    padding: 12px 8px;
  }

  .hero__trust strong {
    font-size: 1.15rem;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .split__content h2,
  .cta-panel h2,
  .page-hero h1,
  .legal-page h1 {
    font-size: 2.1rem;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  /* Grids */
  .hero__trust,
  .service-grid,
  .service-grid--4,
  .testimonial-grid,
  .blog-grid,
  .booking-grid,
  .value-grid,
  .service-detail-grid,
  .message-list,
  .footer-grid,
  .about-hero__stats,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  /* About hero */
  .about-hero {
    min-height: auto;
    padding: 72px 0;
  }

  .about-hero h1,
  .about-story__content h2 {
    font-size: 2.05rem;
  }

  .about-story {
    gap: 26px;
  }

  .about-story__media img {
    aspect-ratio: 16 / 9;
    object-position: 66% center;
  }

  .about-story__badge {
    position: static;
    margin-top: 10px;
  }

  .about-story__actions {
    flex-direction: column;
  }

  /* Split */
  .split, .split--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split--reverse .split__image {
    order: 0;
  }

  /* CTA */
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
    gap: 24px;
  }

  .cta-panel__actions,
  .hero__actions,
  .inline-actions {
    flex-direction: column;
  }

  .cta-panel__actions .btn,
  .hero__actions .btn,
  .inline-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Compact grid */
  .compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .compact-grid span {
    min-height: 64px;
    padding: 14px;
    font-size: 0.88rem;
  }

  /* Feature band */
  .feature-band__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel, .contact-form {
    padding: 24px;
  }

  /* Page hero */
  .page-hero {
    padding: 80px 0 68px;
  }

  /* Service detail */
  .service-detail {
    padding: 24px;
  }

  /* Floating button */
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    font-size: 0.84rem;
    height: 46px;
    min-width: 62px;
    padding: 0 16px;
  }

  /* Blog grid 2-col on mid-mobile */
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── 500px Small Mobile ─────────────────────────────────────── */
@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero__trust {
    grid-template-columns: 1fr 1fr;
  }

  .compact-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: center;
  }
}
