/* =========================================================================
   Soro Hotel — main.css  (v2.1 — "Fann Mountains at Dusk" redesign)
   Luxury dark editorial. Deep pine greens, stone-mist text, brass accent.
   Display: Fraunces (serif, italic accents) · Body: Manrope.
   Class names preserved from v2.0 — templates and logic untouched.
   ========================================================================= */

:root {
  /* Mountain-dusk palette */
  --ink-950:        #0B1310;   /* night sky — page background */
  --pine-900:       #101B15;   /* alternate section tone */
  --pine-850:       #14231B;   /* elevated surface base */
  --pine-800:       #182A20;   /* cards */
  --pine-700:       #21372A;   /* hover surface / borders on light els */
  --moss-500:       #4F7A5D;
  --sage-400:       #8FAF98;   /* muted text */
  --sage-300:       #A9C2B1;
  --mist-100:       #E7EDE7;   /* primary text on dark */
  --stone-200:      #CBD6CC;
  --brass:          #C89B5A;   /* the one warm accent — ridgeline sunlight */
  --brass-bright:   #DDB579;
  --brass-deep:     #A67C3E;
  --hairline:       rgba(231,237,231,0.12);
  --hairline-soft:  rgba(231,237,231,0.07);
  --white:          #FEFEFE;
  --shadow:         rgba(0,0,0,0.35);
  --shadow-lg:      rgba(0,0,0,0.55);
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1DA851;

  /* Legacy token aliases — templates/inline styles may reference these */
  --green-dark:     var(--ink-950);
  --green-primary:  var(--pine-800);
  --green-medium:   var(--moss-500);
  --green-light:    var(--sage-300);
  --green-mist:     var(--pine-850);
  --beige-light:    var(--ink-950);
  --beige-medium:   var(--pine-850);
  --beige-dark:     var(--pine-700);
  --beige-border:   var(--hairline);
  --gold:           var(--brass);
  --gold-dark:      var(--brass-deep);
  --gold-light:     var(--brass-bright);
  --text-dark:      var(--mist-100);
  --text-medium:    var(--stone-200);
  --text-muted:     var(--sage-400);
  --text-light:     #6E8577;

  --font-heading:   'Fraunces', Georgia, serif;
  --font-body:      'Manrope', -apple-system, sans-serif;
  --section-py:     6rem;
  --container-max:  1200px;
  --ease:           cubic-bezier(0.4,0,0.2,1);
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      22px;
  --radius-full:    100px;

  /* Ridgeline signature — mountain silhouette divider (inline SVG) */
  --ridge: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0,90 L0,62 L120,38 L240,58 L360,20 L470,52 L600,10 L730,48 L860,26 L990,56 L1110,34 L1230,60 L1330,44 L1440,64 L1440,90 Z' fill='%230B1310'/%3E%3Cpath d='M0,64 L120,40 L240,60 L360,22 L470,54 L600,12 L730,50 L860,28 L990,58 L1110,36 L1230,62 L1330,46 L1440,66' fill='none' stroke='%23C89B5A' stroke-opacity='0.5' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--stone-200);
  background: var(--ink-950);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-bright); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brass); }
ul { padding: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
::selection { background: var(--brass); color: var(--ink-950); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--mist-100);
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 400; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
h1 em, h2 em { font-style: italic; color: var(--brass-bright); }
p  { margin: 0 0 1rem; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 800px; }
.section { padding: var(--section-py) 0; background: var(--ink-950); }
.section-alt { background: var(--pine-900); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }

/* Editorial eyebrow: brass caps + leading hairline */
.section-label {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 1rem;
}
.section-label::before { content: ""; width: 34px; height: 1px; background: var(--brass); opacity: 0.7; flex-shrink: 0; }
.section-label--light { color: var(--brass-bright); }
.section-more { text-align: center; margin-top: 3rem; }

/* ---- Buttons (class names locked) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-gold { background: var(--brass); color: var(--ink-950); }
.btn-gold:hover { background: var(--brass-bright); color: var(--ink-950); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,155,90,0.25); }

.btn-whatsapp { background: var(--whatsapp); color: #062814; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.28); }

.btn-outline-white { background: transparent; color: var(--mist-100); border-color: rgba(231,237,231,0.45); }
.btn-outline-white:hover { background: var(--mist-100); color: var(--ink-950); border-color: var(--mist-100); }

.btn-outline { background: transparent; color: var(--brass-bright); border-color: rgba(200,155,90,0.55); }
.btn-outline:hover { background: var(--brass); color: var(--ink-950); border-color: var(--brass); }
.btn-outline--gold { color: var(--brass-bright); border-color: rgba(200,155,90,0.55); }
.btn-outline--gold:hover { background: var(--brass); color: var(--ink-950); }

.btn-lg { padding: 1.15rem 2.4rem; font-size: 0.82rem; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(11,19,16,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.site-header.is-scrolled,
body:not(.has-hero) .site-header {
  background: rgba(11,19,16,0.92);
  border-bottom-color: var(--hairline);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 80px; }

.site-logo img { max-height: 56px; width: auto; }
.logo-text { font-family: var(--font-heading); font-weight: 500; font-size: 1.5rem; letter-spacing: 0.02em; color: var(--mist-100); }
.logo-text em { font-style: italic; color: var(--brass-bright); font-weight: 400; }

.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-200);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-menu a:hover, .nav-menu .current-menu-item a { color: var(--brass-bright); border-bottom-color: var(--brass); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.nav-book-mobile { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
  z-index: 1102;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--mist-100);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-open .nav-toggle span { background: var(--mist-100) !important; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero (homepage) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(140% 90% at 70% 10%, var(--pine-700) 0%, var(--pine-900) 45%, var(--ink-950) 100%);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,19,16,0.72), rgba(11,19,16,0.35) 45%, rgba(11,19,16,0.88)),
    linear-gradient(to right, rgba(11,19,16,0.55), rgba(11,19,16,0) 60%);
}
/* Signature: ridgeline silhouette closing the hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: var(--ridge) center bottom / 100% 100% no-repeat;
  z-index: 2;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; color: var(--mist-100); max-width: 780px; margin: 0; padding-top: 110px; padding-bottom: 130px; }
.hero h1 { color: var(--mist-100); margin-bottom: 1.3rem; }
.hero-subtitle { font-size: 1.1rem; font-weight: 300; color: var(--sage-300); max-width: 540px; letter-spacing: 0.01em; }
.hero-stats { display: flex; flex-wrap: wrap; margin-top: 3.2rem; border-top: 1px solid var(--hairline); }
.hero-stat { padding: 1.3rem 2.4rem 0 0; margin-right: 2.4rem; }
.hero-stat + .hero-stat { border-left: 1px solid var(--hairline); padding-left: 2.4rem; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-style: italic; font-size: 2rem; font-weight: 400; color: var(--brass-bright); }
.hero-stat span { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-400); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 3.6rem;
  background: radial-gradient(120% 100% at 30% 0%, var(--pine-700) 0%, var(--pine-900) 55%, var(--ink-950) 100%);
  background-size: cover;
  background-position: center;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,19,16,0.55), rgba(11,19,16,0.85)); }
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: var(--ridge) center bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; color: var(--mist-100); padding-bottom: 1.5rem; }
.page-hero h1 { color: var(--mist-100); margin-bottom: 0.5rem; }
.page-hero p { color: var(--sage-300); font-weight: 300; max-width: 640px; margin: 0; }
.room-hero-price { font-family: var(--font-heading); font-style: italic; font-size: 1.25rem; color: var(--brass-bright) !important; }

/* ---- Cards — one visual family ---- */
.icon-card, .room-card, .review-card, .blog-card, .tour-card, .booking-box,
.prefer-whatsapp, .custom-inquiry, .confirmation-card, .contact-form-wrap {
  background: linear-gradient(180deg, var(--pine-800), var(--pine-850));
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 24px var(--shadow);
  transition: var(--transition);
}
.icon-card:hover, .room-card:hover, .review-card:hover, .blog-card:hover, .tour-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,155,90,0.35);
  box-shadow: 0 20px 50px var(--shadow-lg);
}

.cards-grid { display: grid; gap: 1.6rem; margin-top: 2.4rem; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Icon cards — fixed 56×56 icon, flex-shrink 0 (rule retained) */
.icon-card { padding: 2rem 1.6rem; text-align: center; }
.icon-card--link { color: inherit; display: block; }
.icon-card--link h3 { transition: var(--transition); }
.icon-card--link:hover h3 { color: var(--brass-bright); }
.icon-box {
  width: 56px; height: 56px;
  flex-shrink: 0;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: rgba(200,155,90,0.10);
  border: 1px solid rgba(200,155,90,0.30);
  border-radius: 50%;
}
.icon-card p { font-size: 0.92rem; color: var(--sage-400); margin: 0; }

/* Image placeholder — obviously a placeholder, dark variant */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--pine-850), var(--pine-850) 14px, var(--pine-900) 14px, var(--pine-900) 28px);
  border: 1px dashed rgba(200,155,90,0.4);
  color: var(--sage-400);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

/* ---- Room cards ---- */
.room-card { overflow: hidden; display: flex; flex-direction: column; }
.room-card-media { display: block; position: relative; }
.room-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,19,16,0.35), transparent 45%); pointer-events: none; }
.room-card-media img, .blog-card-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease); filter: saturate(0.92); }
.room-card:hover .room-card-media img { transform: scale(1.05); }
.room-card-body { padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.room-card-title { font-size: 1.4rem; }
.room-card-title a { color: var(--mist-100); }
.room-card-title a:hover { color: var(--brass-bright); }
.room-card-price { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.room-card-price .price { font-family: var(--font-heading); font-style: italic; font-size: 1.7rem; font-weight: 400; color: var(--brass-bright); }
.price-unit { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-400); }
.price-pp {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brass);
  border: 1px solid rgba(200,155,90,0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.room-card-specs { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; font-size: 0.85rem; color: var(--sage-400); }
.room-card-excerpt { font-size: 0.93rem; color: var(--sage-400); margin: 0; }
.room-card-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: auto; padding-top: 0.8rem; }

/* Horizontal variant (rooms listing) */
.room-card--horizontal { flex-direction: row; margin-bottom: 2rem; }
.room-card--horizontal .room-card-media { flex: 0 0 42%; }
.room-card--horizontal .room-card-media img, .room-card--horizontal .img-placeholder { height: 100%; aspect-ratio: auto; min-height: 300px; object-fit: cover; }
.room-card--horizontal .room-card-body { flex: 1; }

/* ---- Welcome ---- */
.welcome-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3.5rem; align-items: center; }
.welcome-text p { font-weight: 300; font-size: 1.02rem; }
.amenity-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.amenity-pills span {
  color: var(--sage-300);
  border: 1px solid var(--hairline);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-full);
}
.rating-badge {
  background: linear-gradient(160deg, var(--pine-800), var(--pine-850));
  border: 1px solid rgba(200,155,90,0.35);
  color: var(--mist-100);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2rem;
  text-align: center;
  box-shadow: 0 20px 50px var(--shadow-lg);
}
.rating-badge strong { font-family: var(--font-heading); font-style: italic; font-size: 3.6rem; font-weight: 400; color: var(--brass-bright); }
.rating-badge strong span { font-size: 1.5rem; color: var(--sage-400); }
.rating-badge p { margin: 0.5rem 0 0; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-400); }

/* ---- Reviews ---- */
.review-card { padding: 1.9rem 1.7rem; position: relative; }
.review-score {
  position: absolute; top: 1.4rem; right: 1.4rem;
  color: var(--brass-bright);
  border: 1px solid rgba(200,155,90,0.4);
  font-family: var(--font-heading); font-style: italic; font-size: 0.95rem;
  padding: 0.25rem 0.7rem; border-radius: var(--radius-sm);
}
.review-text { font-family: var(--font-heading); font-weight: 300; font-size: 1.05rem; line-height: 1.6; color: var(--stone-200); padding-right: 3rem; }
.review-meta { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--sage-400); margin: 0; }
.review-meta strong { color: var(--mist-100); }
.review-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.6rem; justify-content: center; }
.score-badge {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.6rem 1.3rem; color: var(--sage-300);
}
.review-all-link { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  background: radial-gradient(120% 140% at 50% 0%, var(--pine-700) 0%, var(--pine-900) 60%, var(--ink-950) 100%);
  border-top: 1px solid var(--hairline-soft);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--mist-100); }
.cta-banner h2::after { content: ""; display: block; width: 46px; height: 1px; background: var(--brass); margin: 1.1rem auto 0; }
.cta-banner p { color: var(--sage-300); font-weight: 300; max-width: 560px; margin: 1.1rem auto 0; }
.cta-banner .btn-row { justify-content: center; }

/* ---- Blog ---- */
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-card-body { padding: 1.5rem 1.6rem 1.7rem; }
.blog-card-date { font-size: 0.68rem; color: var(--brass); text-transform: uppercase; letter-spacing: 0.22em; font-weight: 700; margin-bottom: 0.5rem; }
.blog-card h3 a, .blog-card-title a { color: var(--mist-100); }
.blog-card h3 a:hover, .blog-card-title a:hover { color: var(--brass-bright); }
.blog-card p { font-size: 0.92rem; color: var(--sage-400); margin: 0; }
.blog-card-title { font-size: 1.25rem; }

.post-content .entry { font-size: 1.05rem; font-weight: 300; }
.post-content .entry img { border-radius: var(--radius-md); }
.post-content .entry h2, .post-content .entry h3 { margin-top: 2.4rem; }
.post-meta { font-size: 0.75rem !important; letter-spacing: 0.2em; text-transform: uppercase; }
.post-cta {
  margin-top: 3.5rem;
  background: linear-gradient(180deg, var(--pine-800), var(--pine-850));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.post-cta .btn-row { justify-content: center; }

.pagination { text-align: center; margin-top: 3rem; }
.pagination .nav-links { display: flex; gap: 0.5rem; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex; min-width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  color: var(--stone-200);
  font-weight: 700; font-size: 0.85rem;
  padding: 0 0.6rem;
}
.pagination .page-numbers.current { background: var(--brass); color: var(--ink-950); border-color: var(--brass); }

/* ---- Room detail ---- */
.room-detail-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 2.8rem; align-items: start; }
.room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.2rem; }
.room-gallery-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--hairline-soft); }
.room-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.room-description { font-weight: 300; font-size: 1.02rem; }
.room-includes { margin-top: 2.4rem; }
.check-list { list-style: none; display: grid; gap: 0.6rem; }
.check-list li { padding-left: 1.8rem; position: relative; color: var(--stone-200); }
.check-list li::before { content: "—"; position: absolute; left: 0; color: var(--brass); font-weight: 400; }
.check-list--compact { font-size: 0.88rem; gap: 0.4rem; }

.room-detail-side { position: sticky; top: 104px; }
.booking-box { padding: 2rem 1.8rem; display: grid; gap: 1rem; }
.booking-box-price { margin: 0; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-400); }
.booking-box-price strong { font-family: var(--font-heading); font-style: italic; font-size: 2.3rem; font-weight: 400; color: var(--brass-bright); display: block; letter-spacing: 0; text-transform: none; }
.booking-box-pp { margin: 0; font-weight: 700; color: var(--brass); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.booking-box-note { margin: 0; font-size: 0.82rem; color: var(--sage-400); }

/* ---- Booking flow ---- */
.prefer-whatsapp {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2rem 2.2rem;
  margin-bottom: 2.8rem;
  border-left: 3px solid var(--whatsapp);
}
.prefer-whatsapp h2 { margin-bottom: 0.3rem; font-size: 1.5rem; }
.prefer-whatsapp p { margin: 0; color: var(--sage-400); }
.booking-note { text-align: center; color: var(--sage-400); font-size: 0.9rem; margin-top: 2.2rem; }
.cash-notice {
  background: rgba(200,155,90,0.07);
  border: 1px solid rgba(200,155,90,0.3);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.2rem;
  font-size: 0.95rem;
  color: var(--stone-200);
}
.cash-notice strong { color: var(--brass-bright); margin-right: 0.3rem; }

.confirmation-card { padding: 3.4rem 2.6rem; text-align: center; }
.confirmation-icon {
  width: 72px; height: 72px; flex-shrink: 0;
  margin: 0 auto 1.6rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,155,90,0.45);
  color: var(--brass-bright);
  font-size: 1.9rem;
  border-radius: 50%;
}
.confirmation-card .btn-row { justify-content: center; }
.confirmation-crosssell { margin-top: 1.8rem; font-size: 0.9rem; color: var(--sage-400); }

/* ---- Experiences ---- */
.tour-card { overflow: hidden; display: flex; flex-direction: column; }
.tour-card-body { padding: 1.8rem 1.7rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.tour-card h3 { font-size: 1.5rem; }
.tour-distance { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--brass); font-weight: 700; margin: 0; }
.tour-desc { font-size: 0.94rem; font-weight: 300; color: var(--sage-300); }
.tour-highlights-label { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0.5rem 0 0.35rem; color: var(--mist-100); }
.tour-card-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: auto; padding-top: 1.1rem; }
.tour-card-actions .btn { font-size: 0.7rem; padding: 0.8rem 1.3rem; }

.custom-inquiry { margin-top: 2.8rem; padding: 2.8rem 2.2rem; text-align: center; border-color: rgba(200,155,90,0.3); }
.custom-inquiry p { color: var(--sage-400); max-width: 560px; margin: 0 auto 1.5rem; }

.transfer-card .transfer-price { font-family: var(--font-heading); font-style: italic; font-size: 2.1rem; font-weight: 400; color: var(--brass-bright); margin: 0.5rem 0 1.1rem; }
.airport-note {
  margin-top: 2.8rem; text-align: center;
  background: rgba(200,155,90,0.06);
  border: 1px solid rgba(200,155,90,0.25);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}
.airport-note p { margin-bottom: 1.1rem; }
.airport-note strong { color: var(--brass-bright); }

.faq-list { display: grid; gap: 0; margin-top: 2.4rem; border-top: 1px solid var(--hairline); }
.faq-item { background: transparent; border: 0; border-bottom: 1px solid var(--hairline); border-radius: 0; padding: 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  padding: 1.3rem 2.2rem 1.3rem 0;
  position: relative;
  color: var(--mist-100);
  transition: var(--transition);
}
.faq-item summary:hover { color: var(--brass-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem; color: var(--brass);
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--sage-400); font-weight: 300; padding: 0 0 1.4rem; margin: 0; max-width: 92%; }

/* ---- About ---- */
.about-story .fade-up p { font-weight: 300; font-size: 1.05rem; }
.about-why { margin-top: 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
.gallery-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--hairline-soft); }
.gallery-item img, .gallery-item .img-placeholder { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.2rem; align-items: start; }
.contact-list { list-style: none; display: grid; gap: 0.9rem; margin-bottom: 1.8rem; }
.contact-map { margin-top: 2.2rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--hairline); filter: grayscale(0.2) brightness(0.92); }
.contact-form-wrap { padding: 2.4rem 2.2rem; }
.form-row { margin: 0 0 1.2rem; }
.form-row label { display: block; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.45rem; color: var(--sage-300); }
.form-row input, .form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mist-100);
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--ink-950);
  transition: var(--transition);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-light); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--brass); outline: none; background: var(--pine-900); }
.form-honeypot { position: absolute; left: -9999px; }
.form-status { display: block; margin-top: 1rem; font-size: 0.9rem; font-weight: 700; }
.form-status.is-success { color: var(--whatsapp); }
.form-status.is-error { color: #E07A5F; }

/* ---- Error page ---- */
.error-code { font-family: var(--font-heading); font-style: italic; font-size: 6rem; font-weight: 300; color: var(--pine-700); margin: 0; line-height: 1; }

/* ---- Footer ---- */
.site-footer { background: #081009; color: var(--sage-400); border-top: 1px solid var(--hairline-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding: 4.2rem 1.5rem 2.8rem; }
.site-footer h4 { color: var(--mist-100); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.7rem; margin-bottom: 1.2rem; }
.logo-text--footer { color: var(--mist-100); font-size: 1.6rem; display: inline-block; margin-bottom: 0.9rem; }
.logo-text--footer em { color: var(--brass-bright); }
.site-footer p { font-size: 0.9rem; font-weight: 300; }
.site-footer a { color: var(--sage-300); }
.site-footer a:hover { color: var(--brass-bright); }
.footer-contact, .footer-links { list-style: none; display: grid; gap: 0.65rem; font-size: 0.9rem; }
.footer-social { display: flex; gap: 1.2rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.footer-ota { display: grid; gap: 0.5rem; margin-top: 1.3rem; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid var(--hairline-soft); padding: 1.4rem 0; font-size: 0.78rem; letter-spacing: 0.06em; }
.footer-bottom p { margin: 0; }

/* ---- WhatsApp floating button ---- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 999;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: var(--whatsapp);
  color: #062814;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { background: var(--whatsapp-dark); color: var(--white); transform: scale(1.08); }

/* ---- Motion: fade-up on scroll ---- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* ---- MotoPress widget skin — dark variant ---- */
.booking-engine { color: var(--stone-200); }
.booking-engine .mphb-booking-form,
.booking-engine .mphb_sc_search-form {
  background: linear-gradient(180deg, var(--pine-800), var(--pine-850));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 4px 24px var(--shadow);
}
.booking-engine label { color: var(--sage-300); }
.booking-engine input[type="text"],
.booking-engine input[type="email"],
.booking-engine input[type="tel"],
.booking-engine input[type="number"],
.booking-engine select,
.booking-engine textarea {
  background: var(--ink-950);
  color: var(--mist-100);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
}
.booking-engine a { color: var(--brass-bright); }
.booking-engine .mphb-price, .booking-engine .price { color: var(--brass-bright); }
.booking-engine .button,
.booking-engine button[type="submit"],
.booking-engine input[type="submit"] {
  background: var(--brass);
  color: var(--ink-950);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.booking-engine .button:hover,
.booking-engine button[type="submit"]:hover,
.booking-engine input[type="submit"]:hover { background: var(--brass-bright); }

/* =========================================================================
   Responsive — verify at 320 / 375 / 414 / 768 / 1024 / 1440
   ========================================================================= */

@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .room-detail-grid { grid-template-columns: 1fr; }
  .room-detail-side { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; }

  .nav-toggle { display: flex; }
  .nav-book { display: none; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--ink-950);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 1100;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .nav-menu { flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav-menu a { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.04em; text-transform: none; color: var(--mist-100) !important; }
  .nav-menu a:hover { color: var(--brass-bright) !important; }
  .nav-book-mobile { display: inline-flex; }
  .nav-open { overflow: hidden; }

  .welcome-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid-2, .tour-grid { grid-template-columns: 1fr; }
  .room-card--horizontal { flex-direction: column; }
  .room-card--horizontal .room-card-media { flex: none; }
  .room-card--horizontal .room-card-media img, .room-card--horizontal .img-placeholder { min-height: 0; aspect-ratio: 4/3; }
  .prefer-whatsapp { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .room-gallery { grid-template-columns: 1fr; }
  .hero-stat { padding-right: 1.4rem; margin-right: 1.4rem; }
  .hero-stat + .hero-stat { padding-left: 1.4rem; }
  .hero::after, .page-hero::after { height: 48px; }
}

@media (max-width: 480px) {
  .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .btn-row .btn { width: 100%; }
  .hero-inner { padding-top: 120px; padding-bottom: 100px; }
  .hero-stats { border-top: 0; }
  .hero-stat { border-left: 0 !important; padding: 0.6rem 0 0 !important; margin: 0 0 0.6rem !important; width: 100%; border-top: 1px solid var(--hairline); }
  .confirmation-card { padding: 2.4rem 1.5rem; }
  .contact-form-wrap { padding: 1.8rem 1.4rem; }
  .prefer-whatsapp { padding: 1.6rem 1.4rem; }
  .whatsapp-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}

@media (max-width: 340px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  .btn { padding: 0.85rem 1.2rem; font-size: 0.72rem; white-space: normal; }
  .hero-stat strong { font-size: 1.5rem; }
}
