:root {
  --cream: #fbf4e8;
  --paper: #fffaf2;
  --olive: #2c4437;
  --olive-2: #3f604b;
  --terracotta: #a64f3f;
  --terracotta-2: #8f4639;
  --charcoal: #1f211c;
  --muted: #6f6a5c;
  --line: rgba(44, 68, 55, 0.18);
  --gold: #c49a59;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(31, 33, 28, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  color: var(--charcoal);
  background: rgba(255, 250, 242, 0.96);
  border-color: var(--line);
  box-shadow: 0 16px 45px rgba(31, 33, 28, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 62px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a,
.language-switch a {
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.language-switch a:hover,
.language-switch a.is-active {
  opacity: 1;
  color: var(--gold);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.language-switch a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin-right: 10px;
  vertical-align: -2px;
  background: currentColor;
  opacity: 0.32;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.06) brightness(0.96);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 20, 16, 0.58) 0%, rgba(20, 20, 16, 0.18) 52%, rgba(20, 20, 16, 0.3) 100%),
    linear-gradient(0deg, rgba(20, 20, 16, 0.42) 0%, rgba(20, 20, 16, 0.04) 48%, rgba(20, 20, 16, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.mid-cta h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(60px, 7.8vw, 112px);
}

.hero-subtitle {
  max-width: 640px;
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.04;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-booking-button {
  margin-top: 30px;
}

.hero-facts span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 250, 242, 0.94);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.details-panel h2,
.reviews-heading h2 {
  color: var(--olive);
  font-size: clamp(34px, 4.4vw, 54px);
}

.section-copy p,
.section-heading p,
.details-panel dd,
.faq p,
.final-cta p {
  color: var(--muted);
}

.lead {
  color: var(--charcoal) !important;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.memory-line {
  margin-top: 22px;
  padding-left: 20px;
  border-left: 3px solid var(--terracotta);
  color: var(--olive) !important;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.editorial-image {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 96px 0;
  box-shadow: var(--shadow);
}

.editorial-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 250, 242, 0.56);
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.experience-flow,
.reviews {
  background: var(--olive);
  color: var(--paper);
}

.experience-flow .section-heading h2,
.reviews .reviews-heading h2 {
  color: var(--paper);
}

.experience-flow .section-heading p {
  color: rgba(255, 250, 242, 0.76);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 34px;
}

.centered {
  text-align: center;
}

.flow-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-grid article {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.06);
}

.flow-grid article:nth-child(5),
.flow-grid article:nth-child(6) {
  grid-column: span 2;
  min-height: 360px;
}

.flow-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 33, 28, 0.06) 0%, rgba(31, 33, 28, 0.78) 100%);
}

.flow-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.flow-grid article:hover img {
  transform: scale(1.04);
}

.flow-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.flow-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
}

.flow-grid h3,
.reason-list h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: 0;
}

.flow-grid p {
  margin: 0;
  color: rgba(255, 250, 242, 0.9);
  font-weight: 600;
  line-height: 1.42;
}

.mid-cta {
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(31, 33, 28, 0.56), rgba(31, 33, 28, 0.56)),
    url("assets/fotos/1.jpg") center / cover;
}

.mid-cta-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 68px);
  color: var(--paper);
  background: rgba(44, 68, 55, 0.9);
  border: 1px solid rgba(255, 250, 242, 0.22);
  box-shadow: var(--shadow);
  text-align: center;
}

.mid-cta h2,
.final-cta h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.mid-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(32px, 3.8vw, 44px);
}

.mid-cta p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 250, 242, 0.82);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--terracotta);
}

.button-primary:hover {
  background: var(--terracotta-2);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 242, 0.42);
  background: transparent;
}

.button-secondary:hover {
  color: var(--olive);
  background: var(--paper);
}

.reasons {
  background: var(--paper);
}

.reason-list {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reason-list article {
  min-height: 188px;
  padding: 26px;
  background: var(--paper);
}

.reason-list h3 {
  color: var(--olive);
}

.reason-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  background: var(--cream);
}

.details-media {
  min-height: 620px;
  overflow: hidden;
}

.details-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-panel {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.details-panel dl {
  margin: 32px 0 0;
}

.details-panel div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.details-panel dt {
  color: var(--olive);
  font-weight: 800;
}

.details-panel dd {
  margin: 0;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8ddcc;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 250, 242, 0.38);
  pointer-events: none;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

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

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.reviews {
  padding-top: clamp(82px, 10vw, 140px);
}

.reviews-heading {
  width: min(1120px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.elfsight-review-shell {
  width: min(1120px, 100%);
  min-height: 360px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.06);
}

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

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--olive);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--terracotta);
  font-size: 24px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 0 26px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(44, 68, 55, 0.96), rgba(44, 68, 55, 0.84)),
    url("assets/fotos/5.jpg") center / cover;
}

.final-cta > div:first-child {
  width: min(790px, 100%);
}

.final-cta p {
  color: rgba(255, 250, 242, 0.8);
  font-size: 18px;
}

.final-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.final-actions .button {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 32px;
  align-items: start;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--paper);
  background: #191b17;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 28px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
  font-style: normal;
}

.site-footer address,
.legal-links {
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: center;
  }

  .main-nav {
    position: fixed;
    inset: 75px 16px auto;
    display: none;
    padding: 22px;
    color: var(--charcoal);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .language-switch {
    justify-self: end;
  }

  .brand span {
    display: none;
  }

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

  .flow-grid article:nth-child(5),
  .flow-grid article:nth-child(6) {
    grid-column: span 1;
  }

  .details,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .brand img {
    width: 54px;
    height: 36px;
  }

  .language-switch {
    gap: 8px;
    font-size: 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-media img {
    object-position: 45% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 120px 0 46px;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 70px);
  }

  .hero-subtitle {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-facts span {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 58px 18px;
  }

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

  .section-copy h2,
  .section-heading h2,
  .details-panel h2,
    .reviews-heading h2,
    .mid-cta h2,
    .final-cta h2 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .editorial-image {
    min-height: 390px;
    border-radius: 0 0 52px 0;
  }

  .editorial-image img {
    min-height: 390px;
  }

  .flow-grid,
  .reason-list,
  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .flow-grid article {
    min-height: 300px;
  }

  .flow-grid span {
    margin-bottom: 12px;
  }

  .details {
    padding-left: 18px;
    padding-right: 18px;
  }

  .details-media {
    min-height: 360px;
  }

  .details-panel {
    padding: 28px 22px;
  }

  .details-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }

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

  .gallery-tall {
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .mid-cta-card {
    padding: 30px 20px;
  }

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

  .site-footer {
    padding: 30px 18px;
  }
}

@media (max-width: 430px) {
  .language-switch a {
    max-width: 58px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .gallery-grid {
    grid-auto-rows: 154px;
  }
}
