:root {
  --ink: #18201b;
  --muted: #657064;
  --paper: #f6f2ea;
  --soft: #ece5d7;
  --leaf: #335b3e;
  --leaf-dark: #203a29;
  --wine: #873f3f;
  --wine-dark: #623030;
  --terracotta: #bd7b57;
  --clay: var(--terracotta);
  --mist: #d9e0dd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 32, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .floating-whatsapp,
body.cookies-open .floating-whatsapp {
  display: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header.is-scrolled {
  background: rgba(246, 242, 234, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(24, 32, 27, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.nav-open {
  color: var(--white);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: var(--wine);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(135, 63, 63, 0.28);
  background: var(--wine);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

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

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

.hero-media {
  z-index: 0;
  background-image: url("assets/casa-capelinha-capa.avif");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.2) 49%, transparent 57%),
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.22), transparent 22%);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: droneLight 7s ease-in-out infinite;
}

.drone-preview {
  position: absolute;
  top: 50%;
  right: clamp(22px, 8vw, 120px);
  z-index: 1;
  display: grid;
  width: min(32vw, 360px);
  min-width: 240px;
  aspect-ratio: 16 / 10;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  transform: translateY(-42%);
  backdrop-filter: blur(2px);
}

.drone-preview:hover .play-button {
  transform: scale(1.06);
}

.drone-preview:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 4px;
}

.drone-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(24, 32, 27, 0.1), rgba(24, 32, 27, 0.46));
  transform: scale(1.08);
  animation: droneFrame 11s ease-in-out infinite alternate;
  z-index: 1;
}

.portrait-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.drone-tag,
.drone-caption,
.play-button {
  position: relative;
  z-index: 2;
}

.drone-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(24, 32, 27, 0.62);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.drone-caption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.play-button {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  content: "";
}

.hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 30, 22, 0.78), rgba(18, 30, 22, 0.42) 48%, rgba(18, 30, 22, 0.18)),
    linear-gradient(0deg, rgba(18, 30, 22, 0.62), rgba(18, 30, 22, 0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 18, 0.86);
  backdrop-filter: blur(12px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(92vw, 520px);
  max-height: 92vh;
  place-items: center;
}

.expanded-video {
  display: block;
  width: min(92vw, 430px);
  max-height: 88vh;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.video-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.video-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c5a8;
}

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

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 96px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 62px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.button-whatsapp {
  background: #1f7a4d;
  color: var(--white);
}

.button-whatsapp:hover {
  background: #17623d;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  border: 1px solid rgba(246, 213, 110, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(246, 213, 110, 0.06)),
    rgba(24, 32, 27, 0.6);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.guest-card {
  width: min(820px, calc(100vw - 40px));
  grid-template-columns: minmax(310px, 1.15fr) minmax(230px, 0.7fr);
  gap: 0;
  color: var(--white);
  overflow: hidden;
}

.guest-favorite {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  justify-items: center;
  padding: 26px 72px;
  text-align: center;
}

.guest-favorite strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(20px, 2.7vw, 30px);
  line-height: 1.12;
}

.guest-favorite span,
.rating-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.laurel {
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 96px;
  transform: translateY(-50%);
}

.laurel::before,
.laurel::after {
  position: absolute;
  inset: 0;
  content: "";
}

.laurel::before {
  border-left: 3px solid rgba(246, 213, 110, 0.82);
  border-radius: 50%;
  transform: rotate(12deg);
}

.laurel::after {
  background:
    radial-gradient(ellipse at 18% 13%, #ffe188 0 8%, transparent 9%),
    radial-gradient(ellipse at 29% 28%, #f2c861 0 8%, transparent 9%),
    radial-gradient(ellipse at 28% 44%, #ffe188 0 8%, transparent 9%),
    radial-gradient(ellipse at 36% 60%, #e5b94e 0 8%, transparent 9%),
    radial-gradient(ellipse at 42% 76%, #ffd66d 0 8%, transparent 9%);
}

.laurel-left {
  left: 28px;
}

.laurel-right {
  right: 28px;
  transform: translateY(-50%) scaleX(-1);
}

.rating-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.rating-strip div {
  display: grid;
  min-height: 138px;
  place-items: center;
  align-content: center;
  padding: 18px;
  text-align: center;
}

.rating-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.rating-strip strong {
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
}

.stars {
  margin-top: 8px;
  color: #f6d56e;
  letter-spacing: 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #ded5c5;
  background: var(--white);
}

.quick-facts article {
  display: grid;
  min-height: 160px;
  justify-items: center;
  align-content: center;
  padding: 24px 14px;
  border-right: 1px solid #ded5c5;
  text-align: center;
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--leaf);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.08;
  text-align: center;
}

.quick-facts span {
  color: var(--muted);
  font-weight: 700;
}

.quick-facts .nowrap {
  color: inherit;
  white-space: nowrap;
}

.pet-fact svg {
  width: 52px;
  height: 52px;
  fill: var(--leaf);
}

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

.section-heading {
  max-width: 860px;
}

.intro {
  padding-bottom: 40px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 82px);
  max-width: 1120px;
  margin-top: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, 0.8fr));
  grid-template-rows: repeat(2, minmax(220px, 320px));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 72px) 40px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(24, 32, 27, 0.68);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

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

.interiors {
  background: var(--soft);
}

.interiors .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  max-width: none;
}

.interiors .section-heading .eyebrow,
.interiors .section-heading h2 {
  grid-column: 1;
}

.interiors .section-heading p:not(.eyebrow) {
  grid-column: 2;
  max-width: 560px;
  margin: 38px 0 0;
}

.interiors-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(230px, 290px);
  gap: 12px;
  margin-top: 34px;
}

.interiors-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.interiors-grid .interior-large {
  grid-row: 1 / span 2;
}

.interiors-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(98, 48, 48, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.rooms-preview {
  background: var(--white);
}

.rooms-preview .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  max-width: none;
}

.rooms-preview .section-heading .eyebrow,
.rooms-preview .section-heading h2 {
  grid-column: 1;
}

.rooms-preview .section-heading p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 26px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.rooms-grid figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.rooms-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(98, 48, 48, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.room-button {
  margin-top: 28px;
  border-color: rgba(135, 63, 63, 0.24);
  background: var(--paper);
  color: var(--wine);
}

.room-button:hover {
  background: var(--wine);
  color: var(--white);
}

.region-explore {
  background: var(--paper);
}

.region-explore .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  max-width: none;
}

.region-explore .section-heading .eyebrow,
.region-explore .section-heading h2 {
  grid-column: 1;
}

.region-explore .section-heading p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 26px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.region-card {
  display: grid;
  grid-template-rows: 280px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ded5c5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(24, 32, 27, 0.07);
}

.region-card-featured {
  grid-column: span 2;
}

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

.region-card div {
  position: static;
  display: grid;
  align-content: start;
  padding: 18px 20px 22px;
  background: var(--white);
}

.region-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(135, 63, 63, 0.1);
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.region-card h3 {
  margin-bottom: 0;
  color: var(--leaf-dark);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.12;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--wine-dark);
  color: var(--white);
}

.cta-strip p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.cta-strip-light {
  background: var(--white);
  color: var(--ink);
}

.cta-strip-light p {
  color: var(--leaf-dark);
}

.experience {
  background: var(--leaf-dark);
}

.experience h2,
.experience h3 {
  color: var(--white);
}

.experience p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.14);
}

.feature-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--leaf-dark);
}

.feature-icon {
  display: inline-block;
  margin-bottom: 54px;
  color: #f4c5a8;
  font-weight: 800;
}

.reviews {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  margin-top: clamp(36px, 6vw, 88px);
  overflow: hidden;
  background: var(--white);
}

.review-score {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  border: 1px solid #ded5c5;
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
}

.review-score strong {
  color: var(--wine);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 82px;
}

.review-score span {
  max-width: 180px;
  color: var(--muted);
  font-weight: 800;
}

.reviews-content {
  min-width: 0;
  width: 100%;
  max-width: 860px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.testimonial-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  align-content: start;
  border: 1px solid #ded5c5;
  border-radius: 8px;
  padding: 20px;
  background: #fbf8f1;
}

.testimonial-grid .stars {
  margin: 0;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.testimonial-grid cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.faq-list article {
  border: 1px solid rgba(24, 32, 27, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.faq-list h3 {
  color: var(--leaf-dark);
}

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

@keyframes droneLight {
  0%,
  100% {
    transform: translateX(-22%);
    opacity: 0.18;
  }

  45% {
    opacity: 0.42;
  }

  70% {
    transform: translateX(24%);
    opacity: 0.28;
  }
}

@keyframes droneFrame {
  from {
    transform: scale(1.08) translateX(-2%);
  }

  to {
    transform: scale(1.16) translateX(2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media::after,
  .drone-preview::after {
    animation: none;
  }
}

.booking {
  padding: 120px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(24, 32, 27, 0.72), rgba(24, 32, 27, 0.72)),
    url("assets/vista-serra.jpeg") center/cover;
}

.booking-panel {
  max-width: 720px;
}

.booking h2 {
  color: var(--white);
}

.booking p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--wine-dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-social {
  opacity: 0.72;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #1f7a4d;
  color: var(--white);
  box-shadow: 0 18px 48px rgba(24, 32, 27, 0.24);
  font-size: 14px;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 72;
  display: none;
  width: min(520px, calc(100vw - 36px));
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(24, 32, 27, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(24, 32, 27, 0.18);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--wine);
  font-weight: 800;
}

.cookie-banner .button {
  min-height: 42px;
  flex: 0 0 auto;
}

.seo-page {
  background: var(--paper);
}

.seo-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 132px 20px 80px;
}

.seo-breadcrumb {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
}

.seo-lead {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.55;
}

.seo-article img {
  height: auto;
  max-height: 520px;
  margin: 30px 0;
  border-radius: 8px;
}

.seo-article p,
.seo-article li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.seo-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 42px;
}

.seo-facts article,
.seo-highlight,
.seo-link-grid a {
  border: 1px solid #ded5c5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.seo-facts article {
  padding: 20px;
}

.seo-facts span,
.seo-link-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-facts strong {
  color: var(--leaf);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 26px;
  line-height: 1.2;
}

.seo-section {
  margin-top: 44px;
}

.seo-section h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 44px);
}

.seo-highlight {
  margin: 42px 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--leaf-dark);
}

.seo-highlight h2,
.seo-highlight p,
.seo-highlight li {
  color: var(--white);
}

.seo-highlight p,
.seo-highlight li {
  color: rgba(255, 255, 255, 0.78);
}

.seo-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  padding-left: 18px;
  border-left: 3px solid var(--terracotta);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.seo-link-grid a {
  display: grid;
  min-height: 120px;
  align-content: end;
  padding: 18px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.seo-link-grid a:hover {
  border-color: rgba(135, 63, 63, 0.42);
  transform: translateY(-2px);
}

.seo-link-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.seo-actions .button-whatsapp {
  background: #1f7a4d;
}

.seo-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header {
    width: 100vw;
    max-width: 100vw;
  }

  .nav-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 22;
    display: grid;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    place-content: center;
    justify-items: center;
    gap: 26px;
    padding: 96px 24px 36px;
    background: var(--leaf-dark);
    color: var(--white);
    font-size: 26px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.nav-open {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.nav-open .brand,
  .site-header.nav-open .nav-toggle {
    position: relative;
    z-index: 25;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    flex-basis: 42px;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 112px 20px 36px;
  }

  .hero-content,
  .hero-copy,
  .hero-card,
  .drone-preview,
  .guest-card,
  .rating-strip,
  .rating-strip div {
    min-width: 0;
    max-width: 100%;
  }

  .hero-content {
    order: 1;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    overflow-wrap: break-word;
  }

  .hero-card {
    position: relative;
    order: 2;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 22px;
  }

  .drone-preview {
    position: relative;
    order: 3;
    top: auto;
    right: auto;
    width: min(100%, 420px);
    min-width: 0;
    margin-top: 24px;
    transform: none;
  }

  .guest-card {
    grid-template-columns: 1fr;
    width: auto;
  }

  .guest-favorite {
    padding: 24px 76px;
  }

  .rating-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .quick-facts,
  .feature-grid,
  .interiors .section-heading,
  .interiors-grid,
  .rooms-preview .section-heading,
  .rooms-grid,
  .region-explore .section-heading,
  .region-grid,
  .reviews,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

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

  .quick-facts article {
    min-height: 118px;
    border-right: 1px solid #ded5c5;
    border-bottom: 1px solid #ded5c5;
  }

  .quick-facts article:nth-child(2n) {
    border-right: 0;
  }

  .quick-facts article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .gallery,
  .interiors-grid,
  .rooms-grid,
  .region-grid,
  .testimonial-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery::-webkit-scrollbar,
  .interiors-grid::-webkit-scrollbar,
  .rooms-grid::-webkit-scrollbar,
  .region-grid::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery figure,
  .interiors-grid figure,
  .rooms-grid figure,
  .region-card,
  .testimonial-grid article {
    flex: 0 0 min(82vw, 360px);
    min-height: 260px;
    scroll-snap-align: start;
  }

  .gallery-large {
    flex-basis: min(82vw, 360px);
    grid-row: auto;
  }

  .interiors .section-heading .eyebrow,
  .interiors .section-heading h2,
  .interiors .section-heading p:not(.eyebrow) {
    grid-column: auto;
  }

  .interiors-grid figure,
  .interiors-grid .interior-large {
    min-height: 280px;
    grid-row: auto;
  }

  .rooms-preview .section-heading .eyebrow,
  .rooms-preview .section-heading h2,
  .rooms-preview .section-heading p:not(.eyebrow) {
    grid-column: auto;
  }

  .rooms-grid figure {
    min-height: 280px;
  }

  .region-explore .section-heading .eyebrow,
  .region-explore .section-heading h2,
  .region-explore .section-heading p:not(.eyebrow) {
    grid-column: auto;
  }

  .region-card,
  .region-card-featured {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-height: 42vh;
    overflow: auto;
  }

  .seo-article {
    padding: 104px 18px 64px;
  }

  .seo-facts,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand span:last-child {
    max-width: 140px;
  }

  .hero {
    padding: 94px 18px 30px;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(40px, 13vw, 48px);
    line-height: 0.98;
  }

  .hero-card {
    margin-top: 18px;
  }

  .drone-preview {
    width: 100%;
    min-width: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .guest-favorite {
    padding: 18px 42px;
  }

  .guest-favorite strong {
    font-size: 22px;
  }

  .guest-favorite span,
  .rating-strip span {
    font-size: 12px;
  }

  .laurel {
    width: 34px;
    height: 68px;
  }

  .laurel-left {
    left: 14px;
  }

  .laurel-right {
    right: 14px;
  }

  .rating-strip div {
    min-height: 96px;
    padding: 14px 10px;
  }

  .rating-strip strong {
    font-size: 38px;
  }

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

  .button {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.55;
  }

  .cookie-banner {
    padding: 12px;
    gap: 10px;
  }

  .cookie-banner p {
    font-size: 12px;
  }

  .cookie-banner .button {
    min-height: 40px;
  }

  .quick-facts strong {
    font-size: 42px;
  }

  .quick-facts span {
    font-size: 14px;
  }

  .section,
  .booking {
    padding: 72px 18px;
  }

  .gallery {
    padding: 0 18px 24px;
  }

  .feature-grid article {
    min-height: 220px;
  }
}
