:root {
  --ink: #17312f;
  --muted: #5e6d69;
  --paper: #fffdf8;
  --soft: #f3efe4;
  --line: #ddd6c8;
  --river: #246b7a;
  --leaf: #1f6b4f;
  --sun: #d6633a;
  --sun-dark: #a94327;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 49, 47, 0.14);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

p,
li {
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 3.25rem;
}

h2 {
  font-size: 2.05rem;
}

h3 {
  font-size: 1.18rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 49, 47, 0.12);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  font-weight: 700;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.main-nav a {
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: 68svh;
  align-items: center;
  padding: 6rem 0 5rem;
  background-image: linear-gradient(90deg, rgba(13, 35, 32, 0.82), rgba(13, 35, 32, 0.54) 46%, rgba(13, 35, 32, 0.2)), var(--hero-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-compact {
  min-height: 60svh;
}

.hero-content {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.hero-copy {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08f;
}

.hero-actions,
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.76rem 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--sun);
  color: var(--white);
}

.button-primary:hover {
  background: var(--sun-dark);
}

[data-whatsapp] {
  border-color: #1f7a42;
  background: #1f7a42;
  color: var(--white);
}

[data-whatsapp]:hover {
  border-color: #176134;
  background: #176134;
  color: var(--white);
}

.button-secondary {
  background: var(--river);
  color: var(--white);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 2rem 0;
}

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

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quick-facts .fact:nth-child(1):last-child,
.quick-facts .fact:nth-child(1):nth-last-child(3),
.quick-facts .fact:nth-child(2):nth-last-child(2),
.quick-facts .fact:nth-child(3):last-child {
  grid-column: auto;
}

.fact,
.card,
.locality-grid article,
.service-list article,
.timeline article,
.cta-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fact {
  padding: 1rem;
}

.fact span,
.timeline span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sun-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-size: 1.05rem;
}

.fact p,
.card p,
.locality-grid p,
.service-list span,
.timeline p,
.cta-panel p,
.faq-list p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.text-link {
  color: var(--river);
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-grid,
.locality-grid,
.service-list,
.image-grid,
.timeline {
  display: grid;
  gap: 1rem;
}

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

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem;
}

.card a,
.card-body a {
  color: var(--river);
  font-weight: 800;
}

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

.locality-grid article,
.service-list article,
.timeline article,
.cta-panel {
  padding: 1.2rem;
}

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

.service-list strong,
.service-list span {
  display: block;
}

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

.image-grid figure,
.real-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 49, 47, 0.1);
}

.image-grid img,
.real-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-grid figcaption,
.real-gallery figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.real-gallery figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.real-gallery figure:first-child img {
  height: calc(100% - 48px);
  aspect-ratio: auto;
}

.real-gallery img {
  aspect-ratio: 1;
}

.map-placeholder {
  display: grid;
  min-height: 320px;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 107, 122, 0.2), rgba(31, 107, 79, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.map-placeholder span,
.map-placeholder strong {
  display: block;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.map-placeholder strong {
  background: var(--leaf);
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
}

.cta-band {
  padding: 2.4rem 0;
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  max-width: 720px;
}

.cta-band .eyebrow {
  color: #ffd08f;
}

.cta-band-inner {
  justify-content: space-between;
}

.cta-panel {
  box-shadow: var(--shadow);
}

.link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.link-strip a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.8rem;
  background: var(--white);
  color: var(--river);
  font-weight: 800;
  text-decoration: none;
}

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

.site-footer {
  padding: 2.5rem 0 5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 0.4rem;
}

.site-footer a {
  color: var(--river);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: grid;
  width: 58px;
  height: 58px;
  min-height: 58px;
  place-items: center;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  padding: 0;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(23, 49, 47, 0.24);
}

.floating-whatsapp:hover {
  border-color: var(--white);
  background: #1ebe5d;
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

:focus-visible {
  outline: 3px solid rgba(214, 99, 58, 0.55);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.85rem 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .hero-compact {
    min-height: 58svh;
    padding: 4.25rem 0;
  }

  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts,
  .card-grid,
  .locality-grid,
  .service-list,
  .image-grid,
  .timeline,
  .real-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner,
  .container,
  .hero-content {
    width: min(100% - 1.2rem, var(--container));
  }

  .brand small {
    display: none;
  }

  .main-nav a {
    padding: 0.45rem 0.5rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero,
  .hero-compact {
    min-height: 54svh;
    padding: 3.5rem 0;
    background-image: linear-gradient(90deg, rgba(13, 35, 32, 0.86), rgba(13, 35, 32, 0.6)), var(--hero-image);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-tight {
    padding: 1.5rem 0;
  }

  .quick-facts,
  .card-grid,
  .locality-grid,
  .service-list,
  .image-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 0.6rem;
    bottom: 0.6rem;
    width: 58px;
  }

  .site-footer {
    padding-bottom: 5.8rem;
  }
}
