/* รถตู้เช่าร้อยเอ็ด By ทองอินทร์ — white + green */

@font-face {
  font-family: "Anuphan";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/anuphan-thai.woff2") format("woff2");
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

@font-face {
  font-family: "Anuphan";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/anuphan-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/material-symbols-subset.woff2") format("woff2");
}

:root {
  --green-900: #0f3d2e;
  --green-800: #145a40;
  --green-700: #1b6b4a;
  --green-600: #228055;
  --green-100: #e8f5ee;
  --green-50: #f3faf6;
  --white: #ffffff;
  --ink: #14201b;
  --ink-soft: #3d4f46;
  --muted: #5c6f66;
  --line: #d5e5dc;
  --shadow: 0 12px 40px rgba(15, 61, 46, 0.12);
  --radius: 4px;
  --radius-media: 14px;
  --font-ui: "Anuphan", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Anuphan", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --sticky-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  line-break: auto;
  word-break: normal;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(34, 128, 85, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(20, 90, 64, 0.06), transparent 50%),
    linear-gradient(180deg, var(--green-50) 0%, var(--white) 28%, var(--white) 100%);
  min-height: 100vh;
}

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

main img {
  border-radius: var(--radius-media);
}

a {
  font-family: var(--font-ui);
  color: var(--green-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-900);
}

h1,
h2,
h3,
h4,
strong,
th,
.brand,
.site-nav,
.footer-brand,
.to-top,
.why-eyebrow,
.area-eyebrow,
.section-eyebrow {
  font-family: var(--font-ui);
}

h1,
h2,
h3,
h4 {
  line-height: 1.35;
  color: var(--green-900);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: normal;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}

ul,
ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

li + li {
  margin-top: 0.35rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15, 61, 46, 0.06);
}

.header-scroll-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(213, 229, 220, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.site-header.is-scrolled .header-scroll-line {
  opacity: 1;
}

.header-scroll-line > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green-700);
  transform-origin: left center;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--green-900);
  line-height: 1.15;
}

.brand:hover {
  color: var(--green-700);
  text-decoration: none;
}

.brand-name {
  font-weight: 700;
  font-size: 1.02rem;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-ui);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-900);
  font-family: var(--font-ui);
  cursor: pointer;
  position: relative;
  z-index: 60;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  background: var(--green-100);
  border-color: rgba(27, 107, 74, 0.35);
  color: var(--green-900);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 61, 46, 0.2);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.nav-toggle .material-symbols-outlined {
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(90deg);
}

/* Always hidden + out of flow; only shown when mobile menu opens */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 57;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 61, 46, 0.28);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
}

.site-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.site-nav li,
.site-nav li + li {
  margin: 0;
  height: 100%;
  display: flex;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 0.72rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--green-700);
}

.site-nav a[aria-current="page"] {
  color: var(--green-700);
  font-weight: 700;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-700);
  transform: translateX(-50%);
}

.header-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  margin-left: auto;
}

.header-cta .btn-sm {
  min-height: 2.35rem;
}

.mobile-nav-actions {
  display: none;
}

/* Buttons */
/* Google Material Symbols */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  user-select: none;
  flex-shrink: 0;
}

.icon-sm {
  font-size: 1.1rem;
}

.icon-md {
  font-size: 1.35rem;
}

.icon-lg {
  font-size: 1.75rem;
}

/* Official LINE mark (mask → inherits button/text color) */
.icon-line {
  display: inline-block;
  width: 1.2em;
  height: 1.15em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("/assets/images/icons/line.svg") center / contain no-repeat;
  mask: url("/assets/images/icons/line.svg") center / contain no-repeat;
  vertical-align: middle;
}

.btn-sm .icon-line {
  width: 1.05em;
  height: 1em;
}

.fact-icon .icon-line {
  width: 1.25rem;
  height: 1.2rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
}

.feature-icon .material-symbols-outlined {
  font-size: 1.4rem;
}


.contact-facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 0.9rem;
  align-items: start;
}

.contact-facts .fact-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  align-self: center;
}

.contact-facts .fact-icon .material-symbols-outlined {
  font-size: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--green-700);
}

.btn-secondary:hover {
  background: var(--green-50);
  color: var(--green-900);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-on-dark {
  background: #fff;
  color: #145a40;
  border-color: #fff;
}

.btn-on-dark:hover {
  background: var(--green-50);
  color: var(--green-900);
  border-color: var(--green-50);
}

.btn-sm {
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
}

/* Hero — text left, image right */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 10%, rgba(34, 128, 85, 0.12), transparent 55%),
    radial-gradient(700px 380px at 100% 90%, rgba(20, 90, 64, 0.08), transparent 50%),
    linear-gradient(180deg, var(--green-50) 0%, var(--white) 70%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 2.75rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
    padding: 3rem 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.hero .brand-signal {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--green-700);
  letter-spacing: normal;
}

.hero h1 {
  color: var(--green-900);
  margin-bottom: 0.85rem;
}

.hero .lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.hero .btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.hero .btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--green-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 1.2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-proof li,
.hero-proof li + li {
  min-width: 0;
  margin: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--green-900);
  font-size: 1.02rem;
  line-height: 1.35;
}

.hero-proof span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-media {
  min-width: 0;
  border-radius: var(--radius-media);
  overflow: hidden;
  background: var(--green-50);
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2.75rem 0 2.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(213, 229, 220, 0.9), transparent 55%),
    linear-gradient(160deg, var(--green-50) 0%, var(--white) 55%, #f7faf8 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .brand-signal {
  color: var(--green-700);
  font-weight: 400;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.55rem;
}

.page-hero .lede {
  max-width: 40rem;
  font-size: 1.1rem;
}

.page-hero .hero-actions {
  margin-top: 1.35rem;
}

.section-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--green-700);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: normal;
}

.section-head .section-eyebrow {
  margin-bottom: 0.5rem;
}

.section-follow {
  margin-top: 1.35rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--line);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--green-700);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--green-50);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head p {
  margin-bottom: 0;
}

.answer-block {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.answer-block p:first-child {
  font-size: 1.08rem;
  color: var(--ink);
}

/* Feature strips / lists — not card-heavy */
.feature-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  margin: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--green-700);
}

.feature-list h3 {
  margin-bottom: 0.4rem;
}

.feature-list p {
  margin: 0;
  font-size: 0.98rem;
}

.feature-list--compact {
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}

.feature-list--compact li {
  padding-top: 0.75rem;
}

.feature-list--compact h3 {
  font-size: 1rem;
}

.feature-list--compact p {
  font-size: 0.92rem;
}

/* Price factors — themed editorial block */
.price-factors-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(82, 176, 128, 0.2), transparent 65%),
    linear-gradient(145deg, var(--green-900) 0%, #145a40 100%);
}

.price-factors-section::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: -8rem;
  bottom: -12rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025), 0 0 0 6rem rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.price-factors-section .container {
  position: relative;
  z-index: 1;
}

.price-factors-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 860px) {
  .price-factors-head {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: end;
  }
}

.price-factors-kicker {
  margin: 0 0 0.55rem;
  color: #a9dfc3;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: normal;
}

.price-factors-head h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--white);
}

.price-factors-lede {
  max-width: 44rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.03rem;
}

.price-factors-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 720px) {
  .price-factors-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-factors-list li,
.price-factors-list li + li {
  position: relative;
  min-height: 13rem;
  margin: 0;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.price-factors-list li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.price-factor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.price-factor-number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-factor-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  color: var(--green-900);
  background: #a9dfc3;
}

.price-factor-icon .material-symbols-outlined {
  font-size: 1.4rem;
}

.price-factors-list h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 1.12rem;
}

.price-factors-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.price-factors-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.price-factors-footer p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.price-factors-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.price-factors-links a {
  color: var(--white);
  font-weight: 600;
  text-underline-offset: 0.22em;
}

@media (max-width: 560px) {
  .price-factors-footer,
  .price-factors-links {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Why Thongin — trust reasons */
.section-why {
  background:
    linear-gradient(180deg, rgba(243, 250, 246, 0.65) 0%, var(--white) 100%);
}

.why-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .why-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;
  }
}

.why-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--green-700);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: normal;
}

.why-intro h2 {
  max-width: 18ch;
}

.why-lede {
  max-width: 36rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.why-link {
  font-weight: 600;
}

.why-reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

@media (min-width: 560px) {
  .why-reasons {
    grid-template-columns: 1fr 1fr;
  }
}

.why-reasons li {
  --i: 0;
  position: relative;
  margin: 0;
  padding: 1.35rem 1.15rem 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 560px) {
  .why-reasons li:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--line);
  }

  .why-reasons li:nth-child(even) {
    padding-left: 1.5rem;
  }
}

.why-index {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 0.85rem;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  transition: background 0.28s ease, color 0.28s ease;
}

.why-icon .material-symbols-outlined {
  font-size: 1.4rem;
}

.why-reasons li:hover .why-icon {
  background: var(--green-700);
  color: var(--white);
}

.why-reasons h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
}

.why-reasons p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 28ch;
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .why-reasons .reveal {
    transition-delay: calc(var(--i, 0) * 70ms);
  }
}

/* Service cards — 4 in a row, simple */
.service-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .service-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
}

a.service-card:hover {
  border-color: rgba(27, 107, 74, 0.35);
  color: var(--ink);
}

article.service-card {
  cursor: default;
}

.service-card:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.service-card .service-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
}

.service-card .service-icon .material-symbols-outlined {
  font-size: 1.3rem;
}

.service-card strong {
  color: var(--green-900);
  font-size: 1.05rem;
  line-height: 1.35;
}

.service-card:not(.service-card--visual) > span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Image-led service choices on the home page */
.service-card--visual {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

a.service-card--visual:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 107, 74, 0.42);
  box-shadow: 0 16px 34px rgba(15, 61, 46, 0.12);
}

.service-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--green-100);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

a.service-card--visual:hover .service-card-media img {
  transform: scale(1.035);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.1rem;
}

.service-card-heading {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.service-card--visual .service-icon {
  width: 2.35rem;
  height: 2.35rem;
}

.service-card-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 600;
}

.service-card-link > span {
  font-size: 1rem;
}

.inline-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Facebook is a secondary trust channel; booking CTAs remain phone + LINE. */
.icon-facebook {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #1877f2;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.section-follow--social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.facebook-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
}

.facebook-follow:focus-visible,
.facebook-callout:focus-visible {
  outline: 2px solid #1877f2;
  outline-offset: 3px;
}

.facebook-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(24, 119, 242, 0.25);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), var(--white));
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.facebook-callout:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 119, 242, 0.45);
  box-shadow: 0 12px 28px rgba(15, 61, 46, 0.09);
  color: var(--ink);
}

.facebook-callout-icon .icon-facebook {
  width: 2.65rem;
  height: 2.65rem;
  font-size: 1.85rem;
}

.facebook-callout-copy,
.facebook-callout-copy strong,
.facebook-callout-copy span {
  display: block;
}

.facebook-callout-copy strong {
  margin-bottom: 0.15rem;
  color: var(--green-900);
  line-height: 1.4;
}

.facebook-callout-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.facebook-callout-arrow {
  color: #1877f2;
  font-size: 1.35rem;
}

@media (max-width: 520px) {
  .facebook-callout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .facebook-callout-arrow {
    display: none;
  }
}

/* Districts */
.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.district-list li,
.district-list li + li,
.feature-list li,
.feature-list li + li {
  margin: 0;
}

.district-list li {
  padding: 0.35rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Service area — districts & provinces in boxes */
.section-area {
  background: var(--green-50);
}

.area-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

@media (min-width: 900px) {
  .area-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.75rem;
  }
}

.area-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--green-700);
  font-weight: 400;
  font-size: 0.95rem;
}

.area-intro h2 {
  max-width: 18ch;
}

.area-lede {
  max-width: 38rem;
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.area-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.area-groups {
  display: grid;
  gap: 1.5rem;
}

.area-group h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.area-group--spaced {
  margin-bottom: 1.5rem;
}

.section-area .area-chips li {
  background: var(--white);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-chips li,
.area-chips li + li {
  margin: 0;
}

.area-chips li {
  padding: 0.5rem 0.85rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.3;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.area-chips li:hover {
  border-color: rgba(27, 107, 74, 0.35);
  background: var(--white);
  color: var(--green-900);
}

.area-chips--province li {
  background: var(--white);
  border-color: rgba(27, 107, 74, 0.28);
  color: var(--green-900);
  font-weight: 600;
  padding: 0.6rem 1rem;
}

/* Package cards */
.section-packages .section-head {
  margin-bottom: 1.75rem;
}

.package-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.15rem;
}

.package-showcase {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .package-showcase {
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: 2rem;
  }
}

.package-media {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: var(--green-50);
}

.package-media img {
  width: 100%;
  flex: 1;
  min-height: 250px;
  border-radius: 0;
  object-fit: cover;
}

.package-media figcaption {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.package-media figcaption .material-symbols-outlined {
  margin-top: 0.15rem;
  color: var(--green-700);
  font-size: 1.15rem;
}

.package-panel {
  min-width: 0;
}

@media (min-width: 760px) {
  .package-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card--featured {
  border-color: rgba(27, 107, 74, 0.35);
  background: var(--green-50);
}

.package-label {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-700);
  letter-spacing: normal;
}

.package-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.package-price {
  margin: 0 0 0.75rem;
  color: var(--green-900);
  font-weight: 700;
  font-size: 1.05rem;
}

.package-price span {
  font-family: var(--font-ui);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: normal;
}

.package-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.package-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--line);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--green-800);
  color: var(--white);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

/* Steps (simple list — used on inner pages) */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  margin: 0;
  padding-left: 3.25rem;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-ui);
}

.steps h3 {
  margin-bottom: 0.35rem;
}

.steps p {
  margin: 0;
}

/* Steps flow — boxes with arrows */
.steps-flow {
  --steps-gap: 0px;
  --steps-arrow: 1.65rem;
  --steps-num: 2.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--steps-gap);
}

.steps-flow li {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: var(--steps-num) minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: start;
  padding: 0 0 1.65rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.steps-flow li:last-child {
  padding-bottom: 0;
}

.steps-flow-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: var(--steps-num);
  height: var(--steps-num);
  margin: 0;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.steps-flow h3,
.steps-flow p {
  grid-column: 2;
}

/* Vertical connector line under the number */
.steps-flow li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(var(--steps-num) / 2);
  top: var(--steps-num);
  bottom: calc(var(--steps-arrow) + 0.35rem);
  z-index: 0;
  width: 2px;
  background: rgba(27, 107, 74, 0.28);
  transform: translateX(-50%);
}

/* Arrow circle on the same vertical axis as the number */
.steps-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(var(--steps-num) / 2);
  bottom: 0.15rem;
  z-index: 1;
  width: var(--steps-arrow);
  height: var(--steps-arrow);
  border-radius: 50%;
  background-color: var(--green-700);
  box-shadow: 0 0 0 3px var(--green-50);
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.85rem;
}

@media (min-width: 860px) {
  .steps-flow:not(.steps-flow--stack) {
    --steps-gap: 2.75rem;
    --steps-arrow: 1.75rem;
    --steps-num: 2.4rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-flow:not(.steps-flow--stack) li {
    display: block;
    padding: 1.25rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .steps-flow:not(.steps-flow--stack) .steps-flow-num {
    display: grid;
    margin-bottom: 0.75rem;
  }

  .steps-flow:not(.steps-flow--stack) li:not(:last-child)::before {
    display: none;
  }

  .steps-flow:not(.steps-flow--stack) li:not(:last-child)::after {
    left: 100%;
    top: 50%;
    bottom: auto;
    margin-left: calc((var(--steps-gap) - var(--steps-arrow)) / 2);
    box-shadow: 0 0 0 3px var(--white);
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
  }
}

.steps-flow h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.steps-flow p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Media split */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .split-reverse .split-media {
    order: -1;
  }
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--green-100);
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--green-100);
}

.gallery figcaption {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Reviews */
.reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.section-reviews {
  background: var(--green-900);
}

.section-reviews .section-head h2 {
  color: var(--white);
}

.section-reviews .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.reviews-more {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.reviews-more a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.reviews-more a:hover {
  color: var(--green-50);
}

.review {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.review-stars {
  color: #e2c15a;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review blockquote {
  margin: 0;
  flex: 1;
}

.review blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #d8f3e4;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-ui);
}

.review cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.review-service {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

/* FAQ */
.section-faq .section-head {
  max-width: 46rem;
  margin-bottom: 1.6rem;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: none;
}

.faq-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

@media (min-width: 760px) {
  .faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(27, 107, 74, 0.32);
  background: var(--white);
}

.faq-item[data-open="true"] {
  border-color: rgba(27, 107, 74, 0.42);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 61, 46, 0.09);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  min-height: 4.25rem;
  padding: 0.95rem 1rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(34, 128, 85, 0.28);
  outline-offset: -3px;
}

.faq-item button .faq-chevron {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  transition: transform 0.2s ease;
}

.faq-item[data-open="true"] button .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-item[data-open="true"] .faq-panel {
  display: block;
}

.faq-panel p:last-child {
  margin-bottom: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  padding: 3rem 0;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

.cta-band .hero-actions {
  margin-top: 1.25rem;
}

/* Contact facts */
.contact-facts {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 1.5rem 0;
}

.contact-facts dt {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-facts dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-900);
}

.contact-facts a {
  text-decoration: none;
}

/* Footer — formal */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
.site-footer li,
.site-footer dd,
.site-footer dt {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a {
  color: #d4f0e0;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
    gap: 3rem;
    align-items: start;
  }
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.65rem;
}

.footer-desc {
  margin: 0 0 1.25rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.footer-facts {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-facts > div {
  display: grid;
  gap: 0.15rem;
}

.footer-facts dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
}

.footer-facts dd {
  margin: 0;
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer .footer-cols a {
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 0.2em;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-credit a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
}

/* HTML sitemap page */
.sitemap-page {
  display: grid;
  gap: 2.25rem;
  max-width: 48rem;
}

.sitemap-group h2 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-list li:last-child {
  border-bottom: none;
}

.sitemap-list a {
  font-weight: 600;
  text-decoration: none;
}

.sitemap-list a:hover {
  text-decoration: underline;
}

.sitemap-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-800);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 61, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--green-50);
  border-color: rgba(27, 107, 74, 0.35);
  color: var(--green-900);
}

.to-top:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.to-top .material-symbols-outlined {
  font-size: 1.35rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -6px 24px rgba(15, 61, 46, 0.1);
}

.sticky-cta .btn {
  flex: 1;
}

/* Cookie consent — compact bar so mobile CTAs stay visible */
.cookie-banner {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 50;
  max-width: 28rem;
  margin-inline: auto;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h2 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.cookie-banner p {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.cookie-banner p a {
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cookie-actions .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .cookie-banner {
    bottom: calc(var(--sticky-h) + 0.55rem + env(safe-area-inset-bottom));
    max-width: none;
  }
}

.legal-content .answer-block {
  margin-bottom: 2rem;
  max-width: 44rem;
}

.legal-content h2 {
  font-size: 1.25rem;
}

/* Reveal motion — desktop only (opacity:0 on mobile tanks Speed Index) */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }

  .to-top {
    transition: none;
  }
}

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

  .header-cta {
    display: none;
  }

  .site-header {
    z-index: 60;
  }

  /* Full-height mobile menu under the sticky header */
  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 58;
    flex: none;
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 1rem max(1rem, env(safe-area-inset-left)) calc(1rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(600px 320px at 100% 100%, rgba(34, 128, 85, 0.12), transparent 65%),
      linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
    border-top: 1px solid var(--line);
    box-shadow: none;
    transform: none;
  }

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

  .site-nav ul {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
    max-width: 42rem;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background: transparent;
  }

  .site-nav li,
  .site-nav li + li {
    height: auto;
    width: 100%;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 3.35rem;
    padding: 0.8rem 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-soft);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .site-nav a:hover {
    background: var(--white);
    border-color: rgba(27, 107, 74, 0.25);
    color: var(--green-800);
    transform: translateX(3px);
  }

  .site-nav a[aria-current="page"] {
    background: var(--green-700);
    border-color: var(--green-700);
    box-shadow: 0 8px 20px rgba(15, 61, 46, 0.14);
    color: var(--white);
    padding-left: 1rem;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    border-bottom-color: var(--line);
  }

  body > .site-nav.is-open {
    display: flex;
  }

  .site-nav .mobile-nav-actions {
    display: block;
    width: 100%;
    max-width: 42rem;
    margin: auto auto 0;
    padding-top: 1.25rem;
  }

  .mobile-nav-actions p {
    margin: 0 0 0.65rem;
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
  }

  .mobile-nav-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .site-nav .mobile-nav-actions a {
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 0.8rem;
    background: var(--white);
    border-color: rgba(27, 107, 74, 0.28);
    color: var(--green-800);
    font-size: 0.95rem;
  }

  .site-nav .mobile-nav-actions a:last-child {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
  }

  .site-nav .mobile-nav-actions a:hover {
    transform: translateY(-1px);
  }

  body.nav-open .sticky-cta,
  body.nav-open .to-top {
    display: none;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: calc(var(--sticky-h) + 0.5rem);
  }

  .to-top {
    bottom: calc(var(--sticky-h) + 1rem + env(safe-area-inset-bottom));
  }

  .hero-grid {
    min-height: auto;
    padding: 2rem 0 2.25rem;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .header-inner {
    gap: 1rem;
  }

  .site-nav a {
    padding: 0 0.5rem;
    font-size: 0.84rem;
  }

  .header-cta .btn-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .hero-actions .btn {
    width: 100%;
  }
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 128, 85, 0.12), transparent 40%),
    linear-gradient(180deg, var(--green-50), var(--white));
}

.not-found-code {
  font-family: var(--font-ui);
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green-700);
  letter-spacing: -0.04em;
}

.not-found h1 {
  margin: 0.75rem 0 0.5rem;
}

.not-found .lead {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}
