:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #60706d;
  --line: #dce5e2;
  --paper: #f7faf8;
  --white: #ffffff;
  --pine: #173f36;
  --teal: #0f766e;
  --river: #d8edf0;
  --amber: #d99a32;
  --steel: #334155;
  --shadow: 0 20px 60px rgba(13, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

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

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

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: #eef5f3;
}

.site-nav .nav-cta {
  color: #15201e;
  background: var(--amber);
  padding-inline: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  border-color: var(--line);
}

.language-switch a {
  min-width: 34px;
  padding: 7px 8px;
  text-align: center;
  font-size: 0.78rem;
}

.language-switch a[aria-current="page"] {
  color: #171308;
  background: var(--amber);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--pine);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 31, 28, 0.9), rgba(11, 31, 28, 0.56) 43%, rgba(11, 31, 28, 0.08) 76%),
    linear-gradient(0deg, rgba(11, 31, 28, 0.38), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 58px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.button.primary {
  color: #191407;
  background: var(--amber);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.button.dark {
  background: #132320;
  color: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin: 58px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 18px;
}

.hero-facts dt {
  font-weight: 900;
  font-size: 1.35rem;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-band span {
  padding: 18px clamp(16px, 3vw, 34px);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.15rem;
}

.section-heading p:last-child,
.location-content p,
.cta-strip p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: stretch;
}

.location-content {
  padding: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.location-content p {
  margin-top: 20px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.area-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f8f7;
  font-weight: 750;
}

.location-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  box-shadow: var(--shadow);
}

.location-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.location-panel a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--amber);
  font-weight: 850;
}

.map-pin {
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 52px;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(135deg, var(--amber), #f0c46f);
  transform: rotate(-45deg);
  position: relative;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  background: var(--pine);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.steps li {
  padding: 28px;
  border-left: 4px solid var(--amber);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 8px;
  background: var(--river);
}

.faq {
  padding-top: 42px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 44px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #101b19;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  font-weight: 800;
}

.subpage-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 158px 0 58px;
}

.subpage-hero h1 {
  color: var(--ink);
}

.subpage-hero p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.directory-hero p:last-child {
  max-width: 820px;
}

.directory-section {
  padding-top: 52px;
  padding-bottom: 28px;
}

.crossing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.crossing-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.crossing-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.guide-search-panel {
  padding-top: 24px;
  padding-bottom: 16px;
}

.guide-search-panel label {
  display: block;
  margin-bottom: 10px;
  font-weight: 850;
}

.guide-search-panel input {
  width: min(720px, 100%);
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.guide-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.guide-category {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.guide-category h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.guide-category p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.guide-category ul,
.tip-body ul {
  padding-left: 20px;
}

.guide-category li,
.tip-body li {
  margin: 8px 0;
}

.guide-category a,
.tip-body a:not(.button) {
  color: var(--teal);
  font-weight: 750;
}

.tip-article h1 {
  max-width: 980px;
}

.tip-body {
  padding-top: 28px;
}

.updated-note {
  font-size: 0.9rem;
}

.legal-section {
  padding: 76px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-section-alt {
  background: #f1f6f4;
}

.legal-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.legal-grid article,
.legal-copy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-grid h2,
.legal-copy h2 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.legal-grid p,
.legal-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-copy {
  margin-top: 30px;
  max-width: 920px;
}

.legal-copy h2 {
  margin-top: 26px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 154px;
  height: 58px;
  padding: 0 20px 0 17px;
  border-radius: 999px;
  color: #061108;
  background: #39ff14;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(57, 255, 20, 0.35), 0 8px 22px rgba(15, 23, 42, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.65 12.65 0 0 0 5.34 22.6L3.7 28.8l6.34-1.62A12.64 12.64 0 1 0 16.02 3.2Zm0 2.3a10.34 10.34 0 1 1-5.25 19.25l-.38-.23-3.76.96.98-3.66-.25-.4A10.34 10.34 0 0 1 16.02 5.5Zm-4.5 4.95c-.24 0-.63.09-.95.44-.33.36-1.25 1.22-1.25 2.98 0 1.75 1.28 3.45 1.46 3.69.18.24 2.47 3.95 6.1 5.38 3.01 1.18 3.63.95 4.28.89.65-.06 2.1-.86 2.39-1.69.3-.83.3-1.54.21-1.69-.09-.15-.33-.24-.68-.42-.36-.18-2.1-1.04-2.43-1.16-.33-.12-.56-.18-.8.18-.24.36-.92 1.16-1.13 1.4-.21.24-.42.27-.77.09-.36-.18-1.5-.55-2.86-1.76-1.06-.94-1.77-2.1-1.98-2.45-.21-.36-.02-.55.16-.73.16-.16.36-.42.53-.62.18-.21.24-.36.36-.59.12-.24.06-.45-.03-.62-.09-.18-.8-1.93-1.1-2.65-.29-.69-.58-.6-.8-.61h-.69Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 52px rgba(57, 255, 20, 0.44), 0 10px 26px rgba(15, 23, 42, 0.2);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 31, 28, 0.92), rgba(11, 31, 28, 0.54)),
      linear-gradient(0deg, rgba(11, 31, 28, 0.5), transparent 52%);
  }

  .hero-facts,
  .trust-band,
  .section-heading,
  .service-grid,
  .location,
  .steps,
  .legal-grid,
  .crossing-grid,
  .guide-directory {
    grid-template-columns: 1fr;
  }

  .location-content {
    padding: 28px;
  }

  .cta-strip,
  .site-footer {
    display: grid;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand strong {
    max-width: 190px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .hero-actions .button,
  .cta-strip .button {
    width: 100%;
  }

  .hero-facts div,
  .service-card,
  .steps li,
  .cta-strip {
    padding: 20px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 64px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-width: 142px;
    height: 54px;
    padding-inline: 15px 18px;
    font-size: 0.95rem;
  }
}
