/* =====================================================================
   Kotroni Villas — main stylesheet
   Design tokens & components translated from the AI Studio (Tailwind v4)
   reference into hand-written CSS. No framework dependency.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --olive:        #5E6F58;
  --olive-dark:   #4d5c48;
  --sand:         #EAE3D6;
  --stone:        #CFC7B8;
  --blue:         #1F3A5F;
  --charcoal:     #3A3831;
  --charcoal-70:  rgba(58, 56, 49, 0.7);
  --charcoal-80:  rgba(58, 56, 49, 0.8);
  --white:        #FAFAFA;

  --font-sans:  'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', ui-serif, Georgia, "Times New Roman", serif;

  --container:  80rem;     /* max-w-7xl */
  --gutter:     1.5rem;    /* px-6 */
  --gutter-lg:  3rem;      /* md:px-12 */

  --nav-h:      88px;
  --nav-h-sm:   72px;

  --easing:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color 0.4s var(--easing); }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--olive); color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--charcoal);
}

p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }

.text-balance { text-wrap: balance; }
.italic        { font-style: italic; }
.center        { text-align: center; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--gutter-lg); }
}

/* ---------- Sections ---------- */
.section          { padding: 6rem 0; }
.section-lg       { padding: 8rem 0; }
@media (min-width: 768px) {
  .section    { padding: 8rem 0; }
  .section-lg { padding: 12rem 0; }
}
.section-tight    { padding: 4rem 0; }

.bg-white    { background-color: var(--white); }
.bg-sand     { background-color: var(--sand); }
.bg-stone    { background-color: var(--stone); }
.bg-olive    { background-color: var(--olive); color: #fff; }
.bg-olive h1, .bg-olive h2, .bg-olive h3 { color: #fff; }
.bg-blue     { background-color: var(--blue);  color: #fff; }
.bg-blue h1, .bg-blue h2, .bg-blue h3 { color: #fff; }
.bg-charcoal { background-color: var(--charcoal); color: #fff; }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: #fff; }

/* ---------- Top navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 1.5rem 0;
  transition: background-color 0.5s var(--easing), padding 0.4s var(--easing), box-shadow 0.4s var(--easing);
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(58, 56, 49, 0.06);
  padding: 0.9rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 0;
}
.nav__brand-img {
  display: block;
  height: 44px;
  width: auto;
  transition: opacity 0.4s var(--easing), height 0.4s var(--easing);
}
.nav.is-scrolled .nav__brand-img { height: 36px; }

/* Stack light + dark variants and fade between them so the swap is
   smooth as the navbar transitions from transparent to solid. */
.nav__brand-img--dark {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}
.nav.is-scrolled .nav__brand-img--light { opacity: 0; }
.nav.is-scrolled .nav__brand-img--dark  { opacity: 1; }

@media (max-width: 640px) {
  .nav__brand-img,
  .nav.is-scrolled .nav__brand-img { height: 32px; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: none;
  position: relative;
  padding: 0.25rem 0;
}
.nav__link:hover, .nav__link.is-active { color: var(--olive); }
.nav.is-scrolled .nav__link { color: rgba(58, 56, 49, 0.85); }
.nav.is-scrolled .nav__link:hover, .nav.is-scrolled .nav__link.is-active { color: var(--olive); }

/* Dropdown */
.nav__group { position: relative; }
.nav__menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 8px);
  background: #fff;
  min-width: 220px;
  padding: 0.75rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--easing), transform 0.3s var(--easing);
  pointer-events: none;
}
.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.nav__menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.nav__menu a:hover { color: var(--olive); background: var(--sand); }

/* Book Now button in nav */
.nav__cta {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s var(--easing);
}
.nav__cta:hover { background: #fff; color: var(--charcoal); }
.nav.is-scrolled .nav__cta { border-color: var(--olive); color: var(--olive); }
.nav.is-scrolled .nav__cta:hover { background: var(--olive); color: #fff; }

/* Lang switcher */
.nav__lang { display: flex; gap: 0.5rem; align-items: center; }
.nav__lang a {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
.nav__lang a.is-active { color: #fff; }
.nav.is-scrolled .nav__lang a { color: rgba(58, 56, 49, 0.5); }
.nav.is-scrolled .nav__lang a.is-active { color: var(--olive); }

/* Mobile toggle */
.nav__toggle {
  display: inline-flex;
  border: 0; background: transparent;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  color: #fff;
}
.nav.is-scrolled .nav__toggle { color: var(--charcoal); }
@media (min-width: 1024px) { .nav__toggle { display: none; } }

.nav__toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 65;
  transform: translateY(-100%);
  transition: transform 0.45s var(--easing);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
}
.nav__drawer.is-open { transform: translateY(0); }
.nav__drawer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 1.5rem;
  border-bottom: 0 !important;
  padding: 0 !important;
}
.nav__drawer-logo img {
  display: block;
  height: 44px;
  width: auto;
}
.nav__drawer a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  padding: 0.75rem 0;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(58, 56, 49, 0.08);
}
.nav__drawer .nav__cta {
  margin-top: 1.5rem;
  text-align: center;
  border-color: var(--olive);
  color: #fff;
  background: var(--olive);
  font-family: var(--font-sans);
}
.nav__drawer-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent; border: 0;
  color: var(--charcoal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero--md { min-height: 70vh; }
.hero--sm { min-height: 56vh; }

.hero__bg, .hero__bg::after {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  padding: 6rem var(--gutter) 4rem;
}
.hero__content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.04;
}
.hero__content p {
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }

.hero__scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  transition: background 0.5s var(--easing), color 0.5s var(--easing), border-color 0.5s var(--easing);
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn--olive      { background: var(--olive); color: #fff; }
.btn--olive:hover{ background: var(--olive-dark); }

.btn--charcoal   { background: var(--charcoal); color: #fff; }
.btn--charcoal:hover { background: var(--olive); }

.btn--outline-light { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn--outline-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

.btn--outline-dark { border-color: rgba(58,56,49,0.2); color: var(--charcoal); background: transparent; }
.btn--outline-dark:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.btn--link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.btn--link:hover { color: var(--olive); border-color: var(--olive); }

.btn--olive-light { color: var(--olive); }

/* ---------- Headings ---------- */
.heading-xl { font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.05; }
.heading-lg { font-size: clamp(1.9rem, 3.6vw, 3.5rem); line-height: 1.1; }
.heading-md { font-size: clamp(1.5rem, 2.4vw, 2.4rem); line-height: 1.15; }
.heading-sm { font-size: clamp(1.2rem, 1.6vw, 1.6rem); line-height: 1.25; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 300;
  color: var(--charcoal-80);
  line-height: 1.65;
}
.bg-olive .lede, .bg-blue .lede, .bg-charcoal .lede { color: rgba(255,255,255,0.9); }

.quote-large {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--olive);
}

.divider {
  width: 3rem; height: 1px;
  background: var(--olive);
  margin: 1.25rem auto;
  display: block;
}

/* ---------- Grids ---------- */
.grid       { display: grid; gap: 2rem; }
.grid-2     { grid-template-columns: 1fr; }
.grid-3     { grid-template-columns: 1fr; }
.grid-4     { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid   { gap: 3rem; }
}

.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .row              { flex-direction: row; gap: 5rem; }
  .row > *          { flex: 1; }
  .row--reverse     { flex-direction: row-reverse; }
}

/* ---------- Image cards ---------- */
.card        { display: block; }
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--stone);
  margin-bottom: 1.5rem;
}
.card__media--wide  { aspect-ratio: 4 / 3; }
.card__media--square{ aspect-ratio: 1 / 1; }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--easing);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__title { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.6rem; }
.card__desc  { font-weight: 300; color: var(--charcoal-70); }

.card-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  transition: color 0.5s var(--easing);
}
.card:hover .card-cta { color: var(--charcoal); }
.card-cta svg { width: 14px; height: 14px; }

/* Image card with overlay caption (Experiences-style) */
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--stone);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--easing); }
.tile:hover img { transform: scale(1.05); }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.65) 100%);
}
.tile__caption {
  position: absolute;
  z-index: 2;
  left: 1.75rem; right: 1.75rem; bottom: 1.75rem;
  color: #fff;
}
.tile__caption h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}
.tile__caption .dash {
  width: 2rem; height: 1px;
  background: var(--olive);
  display: block;
  transition: width 0.7s var(--easing);
}
.tile:hover .tile__caption .dash { width: 4rem; }

/* ---------- Lists (amenities etc.) ---------- */
.bullet-list { display: grid; gap: 0.75rem; }
.bullet-list li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  color: var(--charcoal-80);
  font-weight: 300;
}
.bullet-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--olive);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(1px);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.72);
  padding: 5rem 0 2.5rem;
  font-size: 0.9rem;
}
.site-footer .container { max-width: var(--container); }
.site-footer h3 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}
.footer__logo {
  display: inline-block;
  line-height: 0;
}
.footer__logo img {
  display: block;
  height: 60px;
  width: auto;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer ul li { margin-bottom: 0.75rem; }
.site-footer a:hover { color: #fff; }

.footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }

.footer__contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.footer__contact svg { width: 18px; height: 18px; color: var(--olive); flex-shrink: 0; margin-top: 3px; }

.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--easing);
}
.footer__social a:hover { background: var(--olive); border-color: var(--olive); }
.footer__social svg { width: 16px; height: 16px; }

.footer__espa { margin-top: 2rem; max-width: 280px; }
.footer__espa img { background: #fff; padding: 0.5rem; border-radius: 4px; width: 100%; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 55;
  transition: transform 0.3s var(--easing);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ---------- Forms ---------- */
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(58, 56, 49, 0.55);
}
.form-field input, .form-field select, .form-field textarea {
  border: 0;
  border-bottom: 1px solid rgba(58, 56, 49, 0.2);
  background: transparent;
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  outline: 0;
  transition: border-color 0.3s var(--easing);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--olive);
}
.form-field textarea { resize: vertical; min-height: 6rem; }
.form-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid rgba(58, 56, 49, 0.06);
}
@media (min-width: 768px) { .form-card { padding: 3rem; } }

/* ---------- Contact cards ---------- */
.contact-row {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 0.75rem 0;
}
.contact-row__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--easing);
}
.contact-row__icon--filled { background: var(--olive); color: #fff; }
.contact-row__icon--outline { border: 1px solid rgba(58, 56, 49, 0.2); color: var(--charcoal); }
.contact-row:hover .contact-row__icon--outline { border-color: var(--olive); color: var(--olive); }
.contact-row__icon svg { width: 22px; height: 22px; }
.contact-row__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(58, 56, 49, 0.5);
  margin-bottom: 0.2rem;
}
.contact-row__value { font-family: var(--font-serif); font-size: 1.2rem; }
.contact-row:hover .contact-row__value { color: var(--olive); }

/* ---------- Gallery / lightbox ---------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-grid .tile { aspect-ratio: 1 / 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(58, 56, 49, 0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: transparent; border: 0; color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.lightbox__close svg { width: 28px; height: 28px; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: rgba(255,255,255,0.75);
  cursor: pointer; padding: 1rem; transition: color .2s;
}
.lightbox__nav:hover { color: #fff; }
.lightbox__nav svg { width: 34px; height: 34px; }
.lightbox__nav--prev { left: 0.5rem; }
.lightbox__nav--next { right: 0.5rem; }
@media (min-width: 768px) {
  .lightbox__nav--prev { left: 1.5rem; }
  .lightbox__nav--next { right: 1.5rem; }
}

/* ---------- Cookie notice ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  display: none; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.75rem 1.5rem;
  max-width: 60rem; margin-inline: auto;
  background: var(--charcoal); color: rgba(255,255,255,0.92);
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; max-width: 44rem; line-height: 1.5; }
.cookie-banner__btn {
  background: var(--olive); color: #fff; border: 0; cursor: pointer;
  padding: 0.6rem 1.5rem; font: inherit; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.cookie-banner__btn:hover { opacity: 0.9; }

/* ---------- Iframes / video ---------- */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.map-wrap {
  position: relative;
  height: 0;
  padding-bottom: 50%;
  overflow: hidden;
  background: var(--stone);
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Misc helpers ---------- */
.spacer-sm  { height: 2rem; }
.spacer     { height: 4rem; }
.spacer-lg  { height: 6rem; }

.mb-md  { margin-bottom: 1.5rem; }
.mb-lg  { margin-bottom: 3rem; }
.mb-xl  { margin-bottom: 5rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 3rem; }
.mt-xl  { margin-top: 5rem; }

.flex-center {
  display: flex; align-items: center; justify-content: center;
}
.actions {
  display: flex; flex-direction: column;
  gap: 1rem;
  align-items: center; justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .actions { flex-direction: row; } }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { scrollbar-width: none; }

/* Story-card with side text */
.feature {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .feature--reverse > :first-child { order: 2; }
  .feature--reverse > :last-child  { order: 1; }
}
.feature__media { aspect-ratio: 4 / 5; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--easing); }
.feature__media:hover img { transform: scale(1.04); }

/* Two-col textcols on contact / location */
.cols-2 {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cols-2 { grid-template-columns: 1fr 1fr; gap: 6rem; } }

/* Decorative quote block */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.5;
  color: var(--charcoal-80);
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

/* ESPA badge fixed (small, bottom-left, hidden on mobile) */
.espa-badge {
  position: fixed;
  bottom: 1rem; left: 1rem;
  width: 220px;
  z-index: 55;
  background: #fff;
  padding: 0.5rem;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.espa-badge img { width: 100%; height: auto; }
@media (max-width: 900px) { .espa-badge { display: none; } }

/* Tourist-guide info card */
.guide-card {
  display: flex; flex-direction: column;
  height: 100%;
}
.guide-card__tip {
  border-left: 2px solid var(--olive);
  background: rgba(234, 227, 214, 0.45);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--charcoal-80);
  margin-top: 1rem;
}

/* Accommodations highlight pill row */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.5rem; }
.tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(94, 111, 88, 0.1);
  color: var(--olive);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

/* Spinner / under-construction message */
.notice {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(58, 56, 49, 0.2);
  background: rgba(234, 227, 214, 0.4);
  color: var(--charcoal-70);
}

/* Webcam image */
.webcam-frame {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(58, 56, 49, 0.12);
  padding: 0.5rem;
  background: #fff;
}
.webcam-frame img { width: 100%; height: auto; display: block; }
