:root {
  --ink: #102421;
  --muted: #65736f;
  --paper: #fbfaf6;
  --cream: #f2ece1;
  --sage: #d9e4d6;
  --green: #12312d;
  --green-2: #1f5c4e;
  --coral: #c96b4d;
  --gold: #d5a84f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 36, 33, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 12px 36px rgba(16, 36, 33, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 16px;
}

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

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(16, 36, 33, 0.18);
  background: var(--green);
  color: var(--white);
}

.header-cta svg,
.btn svg,
.hero-meta svg,
.services svg,
.mobile-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 78px) 72px;
  color: var(--white);
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 27, 24, 0.86) 0%, rgba(9, 27, 24, 0.54) 42%, rgba(9, 27, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 27, 24, 0.58), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c978;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(54px, 9vw, 132px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 68px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions,
.direct-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(18, 49, 45, 0.25);
}

.btn-whatsapp {
  color: #06281c;
  background: #8ee0a2;
  box-shadow: 0 16px 32px rgba(9, 122, 55, 0.22);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: 42px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto;
  gap: 4px;
  width: 236px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong + span {
  margin-top: 12px;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 78px);
}

.intro-grid,
.section-heading,
.location-panel,
.direct {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.intro-text {
  color: var(--muted);
  font-size: 18px;
}

.intro-text p {
  margin-bottom: 20px;
}

.gallery {
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading.compact {
  align-items: start;
}

.text-link {
  border-bottom: 2px solid var(--coral);
  color: var(--green-2);
  font-weight: 900;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  cursor: zoom-in;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.services-grid {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.services-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(18, 49, 45, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 36, 33, 0.06);
}

.services-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--coral);
}

.services-grid p {
  color: var(--muted);
}

.location {
  background: #e7eee8;
}

.location-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.location-copy {
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.location-copy .section-kicker {
  color: var(--gold);
}

.location-copy p {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.distance-list {
  display: grid;
  gap: 10px;
}

.distance-list span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.distance-list strong {
  color: var(--gold);
}

.location iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.88) contrast(1.02);
}

.direct {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.direct.section {
  margin-top: clamp(72px, 9vw, 126px);
  margin-bottom: clamp(72px, 9vw, 126px);
}

.direct h2 {
  max-width: 760px;
}

.direct p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.faq {
  padding-top: 0;
}

.faq-list {
  width: min(900px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(18, 49, 45, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  color: var(--coral);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 78px) 112px;
  background: var(--ink);
  color: var(--white);
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-actions {
  align-content: flex-start;
}

.footer-actions a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(18, 49, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 12px 34px rgba(16, 36, 33, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: calc(var(--radius) - 2px);
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.mobile-cta a:last-child {
  color: #06281c;
  background: #8ee0a2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(7, 17, 15, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .intro-grid,
  .location-panel,
  .direct {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    margin-top: 36px;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 18px 34px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(9, 27, 24, 0.9), rgba(9, 27, 24, 0.42) 72%, rgba(9, 27, 24, 0.18)),
      linear-gradient(90deg, rgba(9, 27, 24, 0.48), transparent);
  }

  h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy,
  .intro-text,
  .direct p {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta span {
    width: 100%;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 248px;
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .services-grid article {
    min-height: auto;
  }

  .distance-list span {
    display: grid;
    gap: 2px;
  }

  .location iframe {
    min-height: 360px;
  }

  .direct.section {
    margin: 64px 18px;
    width: auto;
    padding: 28px 20px;
  }

  .direct-actions .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: 98px;
  }

  .mobile-cta {
    display: grid;
  }
}
