:root {
  --sand-50: #f7f2e8;
  --sand-100: #f3ecdf;
  --sand-200: #e6dac5;
  --sand-400: #baa887;
  --ink-700: #3d4747;
  --ink-900: #162326;
  --sea-300: #8dc8cd;
  --sea-500: #417f89;
  --sea-700: #275861;
  --sun-300: #e6b977;
  --white: #ffffff;
  --shadow-soft: 0 22px 60px rgba(22, 35, 38, 0.12);
  --shadow-card: 0 16px 34px rgba(22, 35, 38, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(141, 200, 205, 0.24), transparent 28%),
    linear-gradient(180deg, #f9f5ed 0%, #f4ecdf 38%, #fbfaf6 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

iframe {
  display: block;
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(249, 245, 237, 0.8);
  border-bottom: 1px solid rgba(39, 88, 97, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(39, 88, 97, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-900);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(39, 88, 97, 0.1);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sea-700);
}

.lang-link.is-active {
  background: var(--ink-900);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5.5rem 0 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 85% 15%, rgba(230, 185, 119, 0.4), transparent 23%),
    linear-gradient(135deg, rgba(141, 200, 205, 0.65), rgba(39, 88, 97, 0.15));
  opacity: 0.9;
}

.hero-grid,
.narrative-grid,
.why-grid,
.location-grid,
.contact-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.hero-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sea-700);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.7rem;
}

.hero-subheadline {
  margin: 1.4rem 0 1rem;
  max-width: 42rem;
  font-size: 1.18rem;
  color: var(--ink-700);
}

.hero-intro,
.section-intro,
.prose p,
.highlight-card p,
.faq-item p,
.location-details dd,
.location-details dt,
.panel-label,
.snapshot-list dd,
.snapshot-list dt,
.contact-lines a,
.form-note,
.footer-note,
.site-nav a {
  font-size: 1rem;
}

.hero-intro {
  max-width: 41rem;
  margin: 0;
  color: var(--ink-700);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-900);
  border-color: rgba(22, 35, 38, 0.12);
}

.button-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: rgba(22, 35, 38, 0.16);
}

.hero-panel,
.highlight-card,
.why-panel,
.gallery-card,
.map-wrap,
.faq-item,
.contact-form,
.contact-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.hero-panel {
  margin-top: 0;
  max-width: 18rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.hero-media {
  position: relative;
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.section-media {
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.section-media-spaced {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.why {
  padding-bottom: 2.5rem;
}

.why + .gallery {
  padding-top: 2.5rem;
}

.hero-image {
  width: 100%;
  height: clamp(14rem, 28vw, 20rem);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(22, 35, 38, 0.12);
}

.section-image {
  width: 100%;
  height: clamp(14rem, 28vw, 20rem);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.section-image-tall {
  height: clamp(18rem, 38vw, 28rem);
  object-fit: cover;
  object-position: center 72%;
}

.panel-label {
  margin: 0 0 0.55rem;
  color: var(--sea-700);
  font-weight: 700;
  font-size: 0.88rem;
}

.snapshot-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.snapshot-list div {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(39, 88, 97, 0.12);
}

.snapshot-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.snapshot-list dt,
.location-details dt {
  color: var(--ink-700);
  margin-bottom: 0.15rem;
}

.snapshot-list dd,
.location-details dd {
  margin: 0;
  font-weight: 700;
}

.snapshot-list dt {
  font-size: 0.8rem;
}

.snapshot-list dd {
  font-size: 0.9rem;
}

.snapshot-link {
  color: var(--sea-700);
  text-decoration: none;
}

.snapshot-link:hover,
.snapshot-link:focus-visible {
  text-decoration: underline;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 + .section-intro {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--ink-700);
}

.highlights-grid,
.gallery-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.highlight-card {
  padding: 1.4rem;
}

.highlight-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.highlight-card p {
  margin: 0;
  color: var(--ink-700);
}

.highlight-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--sea-700);
  font-weight: 700;
  text-decoration: none;
}

.highlight-link:hover,
.highlight-link:focus-visible {
  text-decoration: underline;
}

.narrative-grid,
.why-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.prose p {
  margin: 0 0 1.2rem;
  color: var(--ink-700);
}

.prose p:last-child {
  margin-bottom: 0;
}

.why-panel {
  padding: 2rem;
  background:
    linear-gradient(160deg, rgba(39, 88, 97, 0.98), rgba(65, 127, 137, 0.92)),
    var(--sea-700);
  color: var(--white);
}

.why-panel .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.why-panel h2 {
  max-width: 11ch;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.gallery-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 35rem;
}

.gallery-card:not(.gallery-card-large) {
  grid-column: span 2;
  min-height: 14rem;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.gallery-placeholder {
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: end start;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, transparent, rgba(22, 35, 38, 0.58)),
    linear-gradient(145deg, rgba(141, 200, 205, 0.95), rgba(244, 236, 223, 0.95) 55%, rgba(230, 185, 119, 0.75));
}

.gallery-placeholder span {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.location-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(39, 88, 97, 0.14);
}

.map-wrap {
  overflow: hidden;
  min-height: 100%;
}

.map-shell {
  min-height: 21rem;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, rgba(141, 200, 205, 0.3), rgba(255, 255, 255, 0.85)),
    radial-gradient(circle at top right, rgba(230, 185, 119, 0.28), transparent 28%);
}

.map-fallback {
  max-width: 34rem;
  text-align: left;
}

.map-fallback h3 {
  margin-bottom: 0.75rem;
}

.map-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.map-actions .map-load {
  min-width: 15rem;
}

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

.faq-item {
  padding: 1.25rem 1.35rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 1.5rem;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--sea-700);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--ink-700);
}

.contact-form,
.contact-card {
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(39, 88, 97, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-900);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(65, 127, 137, 0.22);
  border-color: var(--sea-500);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--ink-700);
}

.contact-card {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 236, 223, 0.92));
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.05;
}

.contact-lines {
  display: grid;
  gap: 0.8rem;
}

.contact-image-wrap {
  margin: 1.5rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.contact-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}

.contact-lines a {
  text-decoration: none;
  font-weight: 700;
  color: var(--sea-700);
}

.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(39, 88, 97, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.9rem;
  padding: 0.85rem 1.15rem;
  overflow: hidden;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
}

.whatsapp-float span {
  display: inline-block;
  white-space: nowrap;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(37, 211, 102, 0.34);
}

.site-footer p {
  margin: 0;
  color: var(--ink-700);
}

@media (max-width: 980px) {
  .hero-heading-row {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .narrative-grid,
  .why-grid,
  .location-grid,
  .contact-grid,
  .highlights-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 18rem;
  }

  .gallery-card:not(.gallery-card-large) {
    grid-column: auto;
    min-height: 18rem;
  }

  .hero-image {
    height: 18rem;
  }

  .section-image {
    height: 18rem;
  }

  .section-image-tall {
    height: 24rem;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    position: relative;
    padding: 0.75rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(39, 88, 97, 0.12);
    border-radius: 22px;
    background: rgba(249, 245, 237, 0.97);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
  }

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

  .site-nav a {
    display: block;
    padding: 0.2rem 0;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-image {
    height: 15rem;
  }

  .section-image {
    height: 15rem;
  }

  .section-image-tall {
    height: 20rem;
  }

  .contact-image {
    height: 13rem;
  }

  .section {
    padding: 4rem 0;
  }

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

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

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 0.35rem 0 0.75rem;
}

