/* ============================================================
   Visit Orosei — destination landing page
   Editorial travel design language:
   white canvas · #222/#717171 text · sea-teal #0d7d88 accent ·
   turquoise Mediterranean palette · rounded imagery · quiet footer
   (design system inherited & retooled from SardiniaGem 2026a)
   ============================================================ */

:root {
  --text: #1c2b2d;
  --gray: #647071;
  --border: #dcdedd;
  --border-light: #ebeeed;
  --bg: #ffffff;
  --bg-gray: #f4f7f6;
  --sand: #f5efe6;         /* warm neutral band */
  --rausch: #0d7d88;       /* sea-teal accent (was Airbnb rausch) */
  --rausch-deep: #0b6b74;
  --rausch-grad: linear-gradient(120deg, #0e8a94 0%, #0d7d88 55%, #0b6b74 100%);
  --wa: #0d7d88;           /* primary action colour (reuses accent) */
  --wa-hover: #0b6b74;
  --star: #e0a53b;         /* warm gold for stars/ratings */
  --shadow-card: 0 6px 20px rgba(13, 40, 43, 0.12);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --content-max: 1080px;   /* max-width for all content sections (hero stays full-bleed) */
  --font: 'Figtree', -apple-system, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

[x-cloak] { display: none !important; }

.container {
  width: min(var(--content-max), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 500px) {
  .container { width: calc(100% - 64px); }
}

section { padding-block: 32px; }

.section-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.section-sub {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 24px;
}

/* ---------- buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--r-sm);
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.1s ease, background 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--rausch-grad); color: #fff; }
.btn-primary:hover { box-shadow: var(--shadow-card); }

.btn-dark { background: #4a4f56; color: #fff; }
.btn-dark:hover { background: #383c42; }

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

.btn-outline {
  background: #fff;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--text);
}
.btn-outline:hover { background: var(--bg-gray); }

.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { box-shadow: var(--shadow-card); }

.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 22px; }

.text-link {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link:hover { color: #000; }

/* ---------- header ---------- */

/* Sticky header: transparent over the hero, solid white once scrolled */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: #fff;
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.header-nav {
  display: flex;
  gap: 4px;
  list-style: none;
}

.header-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease;
}

.header-nav a:hover { background: rgba(255, 255, 255, 0.14); }

.header-actions { display: flex; align-items: center; gap: 8px; }

/* language switcher */
.lang { position: relative; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  border-radius: 22px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-btn:hover { background: rgba(255, 255, 255, 0.14); }

/* scrolled state — dark text on the solid white bar */
.header.scrolled .logo { color: var(--rausch); text-shadow: none; }
.header.scrolled .header-nav a,
.header.scrolled .lang-btn { color: var(--text); text-shadow: none; }
.header.scrolled .header-nav a:hover,
.header.scrolled .lang-btn:hover { background: var(--bg-gray); }

.lang-btn svg { width: 16px; height: 16px; }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: var(--r-md);
  padding: 8px 0;
  min-width: 160px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.lang-menu button:hover { background: var(--bg-gray); }

@media (max-width: 760px) {
  .header-nav { display: none; }
}

@media (max-width: 500px) {
  .lang-btn > span { display: none; }
  .logo { font-size: 20px; }
}

/* ---------- hero (full-bleed) ---------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* the still image sits above the video and dissolves out once the video is ready */
.hero-photo {
  opacity: 1;
  transition: opacity 1.8s ease;
}

.hero.show-video .hero-photo { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-photo { transition: none; }
}

/* darker blend so the light menu + white type stay legible */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.05) 22%, rgba(0, 0, 0, 0) 45%),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0) 70%);
}

.hero-inner {
  width: min(var(--content-max), calc(100% - 48px));
  padding-block: 80px 96px;
}

@media (max-width: 500px) {
  .hero-inner { width: calc(100% - 64px); }
}

.hero-content {
  color: #fff;
  max-width: 820px;
  display: grid;
  gap: 22px;
  justify-items: start;
}

/* hero typography mirrors version-2026c (Fraunces / Cutive Mono, warm palette) */
.hero-eyebrow {
  font-family: 'Cutive Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c6a6a0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 380;
  font-optical-sizing: auto;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #f2f0ed;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 380;
  color: #e7cec9;
}

.hero-content p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  max-width: 42ch;
  color: rgba(242, 240, 237, 0.9);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero-link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(242, 240, 237, 0.6);
  color: #f2f0ed;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  transition: gap 0.25s ease, border-color 0.25s ease;
}

.hero-link span { font-size: 1.3em; line-height: 0; }

.hero-link:hover { gap: 0.95rem; border-bottom-color: #fff; }

.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Cutive Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 240, 237, 0.8);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll svg { animation: none; }
}

@media (max-width: 600px) {
  .hero { min-height: 100svh; }
  /* extra bottom room so the fixed WhatsApp button (bottom:24px) never covers the CTA */
  .hero-inner { padding-block: 88px 108px; }
  .hero-scroll { display: none; }
  /* mobile: show the still image, hide the video */
  .hero-video { display: none; }
  .hero-photo { display: block; }
  /* keep the title on a single line */
  .hero-content h1 { white-space: nowrap; font-size: 8.5vw; }
}

/* trust strip */
.trust-section { padding-block: 24px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.trust-strip .item { display: inline-flex; align-items: center; gap: 8px; }

.trust-strip svg { width: 18px; height: 18px; color: var(--rausch); }

/* ---------- rating block (credibility) ---------- */

.intro-score { display: flex; align-items: center; gap: 12px; }

.score-num { font-size: 46px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }

.score-stars { display: inline-flex; gap: 2px; color: var(--star); }

.score-stars svg { width: 15px; height: 15px; }

.score-meta { font-size: 13.5px; color: var(--gray); font-weight: 600; }

/* ---------- book direct banner (with rating) ---------- */

.direct-banner {
  background: var(--bg-gray);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.direct-rating {
  display: grid;
  gap: 6px;
  justify-items: start;
  white-space: nowrap;
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

.direct-copy { flex: 1; min-width: 260px; }

.direct-banner h2 { font-size: 22px; font-weight: 600; margin-bottom: 4px; }

.direct-banner p { color: var(--gray); font-size: 15px; max-width: 56ch; }

@media (max-width: 760px) {
  .direct-banner { gap: 24px; }
  .direct-rating { border-right: 0; padding-right: 0; }
}

/* ---------- listing cards ---------- */

.listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 32px;
}

@media (max-width: 680px) { .listings-grid { grid-template-columns: 1fr; gap: 36px; } }

.listing-card { display: grid; gap: 12px; }

.listing-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-gray);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.carousel-slide { flex: 0 0 100%; min-width: 0; height: 100%; }

.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.listing-media:hover .carousel-btn { opacity: 1; }

@media (hover: none) { .carousel-btn { opacity: 1; } }

.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }

.carousel-btn svg { width: 12px; height: 12px; }

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.carousel-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel-dots i.active { background: #fff; transform: scale(1.15); }

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--text);
  border-radius: 22px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.listing-badge.premium {
  background: var(--text);
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.listing-body { display: grid; gap: 2px; padding-inline: 2px; }

.listing-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.listing-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

.listing-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  flex-shrink: 0;
}

.listing-rating svg { width: 12px; height: 12px; color: var(--star); }

.listing-sub { color: var(--gray); font-size: 14.5px; }

.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.listing-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-gray);
  border-radius: 20px;
  padding: 4px 10px;
}

.listing-tag svg { width: 12px; height: 12px; color: var(--rausch); flex-shrink: 0; }

.listing-links { display: flex; gap: 16px; margin-top: 8px; }

.listing-links .text-link.wa { color: var(--wa); }
.listing-links .text-link.wa:hover { color: var(--wa-hover); }

/* ---------- amenities ---------- */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
}

@media (max-width: 900px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenities-grid { grid-template-columns: 1fr; } }

.amenity { display: flex; gap: 16px; align-items: flex-start; }

.amenity svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--text);
  stroke-width: 1.6;
  margin-top: 2px;
}

.amenity h3 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }

.amenity p { font-size: 14px; color: var(--gray); }

/* ---------- experiences ---------- */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .exp-grid { gap: 16px; } }

.exp-card { display: grid; gap: 10px; text-decoration: none; }

.exp-media {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.exp-card:hover .exp-media img { transform: scale(1.04); }

.exp-card h3 { font-size: 16px; font-weight: 600; }

.exp-card p { font-size: 14px; color: var(--gray); margin-top: -8px; }

/* ---------- host card ---------- */

.host-section { background: var(--bg-gray); padding-block: 48px; }

.host-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  max-width: 740px;
  margin-inline: auto;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px 40px;
  align-items: center;
}

@media (max-width: 700px) {
  .host-card { grid-template-columns: minmax(0, 1fr); text-align: center; justify-items: center; }
}

.host-id { display: grid; justify-items: center; gap: 6px; }

.host-id img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
}

.host-id .host-name { font-size: 26px; font-weight: 700; margin-top: 8px; }

.host-id .host-flag {
  font-size: 14px;
  font-weight: 600;
}

.host-id .host-stars {
  display: inline-flex;
  gap: 3px;
  margin-top: 2px;
  color: var(--rausch);
}

.host-id .host-stars svg { width: 15px; height: 15px; }

.host-info { display: grid; gap: 16px; justify-items: start; min-width: 0; }

@media (max-width: 700px) { .host-info { justify-items: center; width: 100%; } }

.host-stats {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 420px;
}

.host-stat {
  flex: 1;
  padding-inline: 16px;
  border-left: 1px solid var(--border-light);
}

.host-stat:first-child { border-left: 0; padding-left: 0; }

@media (max-width: 700px) { .host-stat:first-child { padding-left: 16px; } }

.host-stat b { display: block; font-size: 20px; font-weight: 700; }

.host-stat span { font-size: 12px; color: var(--gray); }

.host-info > p { color: var(--gray); font-size: 15px; }

/* contact buttons sit inline: two equal-width boxes, side by side, label over detail */
.host-contact-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.host-contact-row .btn {
  flex: 1 1 0;             /* equal width so both boxes line up */
  min-width: 0;
  flex-direction: column;  /* label on top, detail underneath */
  gap: 3px;
  width: auto;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

.host-contact-row .btn strong { font-weight: 700; }

.host-contact-row .btn .btn-detail { font-weight: 400; opacity: 0.85; }

@media (max-width: 700px) {
  /* shrink the type slightly so the email never wraps mid-word on small screens */
  .host-contact-row .btn { padding: 12px 8px; font-size: 14px; line-height: 1.25; }
  .host-contact-row .btn .btn-detail { font-size: 10px; letter-spacing: -0.1px; }
}

.host-meta { font-size: 14px; color: var(--gray); }

.host-meta a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- reviews ---------- */

.reviews-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.reviews-stars { display: inline-flex; gap: 3px; color: var(--star); }

.reviews-head svg { width: 20px; height: 20px; color: var(--star); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* mobile: horizontal swipe carousel with scroll-snap */
@media (max-width: 900px) {
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    /* let the last card snap flush and the row breathe at the end */
    scroll-padding-left: 0;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: start;
  }
}

.review { display: grid; gap: 12px; align-content: start; }

.review-stars { display: inline-flex; gap: 2px; }

.review-stars svg { width: 12px; height: 12px; color: var(--star); }

.review p { font-size: 15px; line-height: 1.55; }

.review-author { display: flex; align-items: center; gap: 12px; }

.review-author b { display: block; font-size: 15px; }

.review-author span { font-size: 13px; color: var(--gray); }

/* ---------- footer ---------- */

footer {
  background: var(--bg-gray);
  border-top: 1px solid var(--border-light);
  margin-top: 32px;
  font-size: 14px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-block: 40px;
}

@media (max-width: 800px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-cols { grid-template-columns: 1fr; } }

.footer-cols h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

.footer-cols .col { display: grid; gap: 10px; align-content: start; justify-items: start; }

.footer-cols a { color: var(--gray); text-decoration: none; }

.footer-cols a:hover { color: var(--text); text-decoration: underline; }

.footer-cols p { color: var(--gray); max-width: 34ch; }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray);
}

.footer-bottom .left { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }

/* ---------- floating whatsapp ---------- */

.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  border-radius: 28px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-wa:hover { transform: scale(1.04); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }

.float-wa svg { width: 20px; height: 20px; }

/* ============================================================
   VISIT OROSEI — destination-specific components
   ============================================================ */

/* generous vertical rhythm for editorial sections */
section { padding-block: 56px; }
@media (max-width: 600px) { section { padding-block: 40px; } }

.eyebrow {
  font-family: 'Cutive Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rausch);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-title em { font-style: italic; color: var(--rausch); }

.section-sub { color: var(--gray); font-size: 17px; margin-top: 10px; max-width: 60ch; margin-bottom: 32px; }

.section-head { margin-bottom: 36px; }

/* ---------- quick facts strip (under hero) ---------- */
.facts-section { background: var(--text); color: #fff; padding-block: 0; }
.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 26px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.fact:first-child { border-left: 0; }
.fact svg { width: 24px; height: 24px; flex-shrink: 0; color: #7fd4dd; stroke-width: 1.7; margin-top: 2px; }
.fact-label { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8fa2a3; }
.fact-value { font-size: 15.5px; font-weight: 600; margin-top: 3px; line-height: 1.3; }
@media (max-width: 820px) {
  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact { border-top: 1px solid rgba(255,255,255,0.12); }
  .fact:nth-child(1), .fact:nth-child(2) { border-top: 0; }
}
@media (max-width: 460px) {
  .facts-strip { grid-template-columns: 1fr; }
  .fact { border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .fact:first-child { border-top: 0; }
}

/* ---------- editorial split (image + prose) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: var(--shadow-card);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body p { color: #3d4a4b; font-size: 16.5px; line-height: 1.65; margin-top: 16px; }
.split-body p:first-of-type { margin-top: 20px; }

.stat-row { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.stat b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--rausch);
  line-height: 1;
}
.stat span { font-size: 13.5px; color: var(--gray); margin-top: 6px; display: block; }

/* ---------- beaches feature ---------- */
.beaches-section { background: var(--bg-gray); }
.beach-list { display: grid; gap: 4px; }
.beach-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: baseline;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: padding-left 0.18s ease;
}
.beach-item:hover { padding-left: 10px; }
.beach-item:last-child { border-bottom: 0; }
.beach-name { font-size: 17px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.beach-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--rausch); background: rgba(13, 125, 136, 0.09);
  padding: 3px 9px; border-radius: 20px; white-space: nowrap;
}
.beach-desc { grid-column: 1 / -1; color: var(--gray); font-size: 14.5px; margin-top: -2px; }
.beach-arrow { color: var(--rausch); font-size: 15px; font-weight: 600; white-space: nowrap; }

.boat-note {
  margin-top: 22px; padding: 18px 22px; background: #fff;
  border: 1px solid var(--border-light); border-radius: var(--r-md);
  font-size: 14.5px; color: var(--gray);
}
.boat-note strong { color: var(--text); }

/* ---------- highlight / experience cards ---------- */
.hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .hl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hl-grid { grid-template-columns: 1fr; gap: 22px; } }

.hl-card { display: grid; gap: 0; text-decoration: none; border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hl-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13, 40, 43, 0.16); }
.hl-media { aspect-ratio: 3 / 2; overflow: hidden; }
.hl-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.hl-card:hover .hl-media img { transform: scale(1.05); }
.hl-body { padding: 18px 20px 22px; }
.hl-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.hl-body p { font-size: 14.5px; color: var(--gray); margin-top: 6px; line-height: 1.55; }
.hl-more { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--rausch); letter-spacing: 0.02em; }

/* ---------- plan-your-trip cards ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 26px 26px 28px; }
.plan-card svg { width: 30px; height: 30px; color: var(--rausch); stroke-width: 1.6; }
.plan-card h3 { font-size: 18px; font-weight: 700; margin-top: 14px; }
.plan-card p { font-size: 14.5px; color: var(--gray); line-height: 1.6; margin-top: 8px; }
.plan-card p strong { color: var(--text); font-weight: 600; }

/* ---------- big closing CTA band ---------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--r-xl); padding: 64px 40px; text-align: center; color: #fff; }
.cta-band img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(11,60,66,0.82), rgba(13,125,136,0.62)); }
.cta-band .eyebrow { color: #a9e6ee; }
.cta-band h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; max-width: 18ch; margin: 6px auto 10px; }
.cta-band p { max-width: 52ch; margin: 0 auto 26px; font-size: 17px; color: rgba(255,255,255,0.92); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* buttons: primary uses the sea-teal gradient */
.btn-primary { background: var(--rausch-grad); color: #fff; }
.btn-primary:hover { box-shadow: var(--shadow-card); }
.btn-wa { background: var(--rausch-grad); color: #fff; }
.btn-wa:hover { filter: brightness(1.06); box-shadow: var(--shadow-card); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

/* section eyebrow + title share the container gutter */

/* ---------- mobile nav (hamburger + dropdown) ---------- */
.menu-btn {
  display: none;
  background: none; border: 0; cursor: pointer;
  color: #fff; padding: 8px; border-radius: 10px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.menu-btn svg { width: 26px; height: 26px; filter: drop-shadow(0 1px 8px rgba(0,0,0,.35)); }
.header.scrolled .menu-btn { color: var(--text); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.mobile-menu a {
  padding: 15px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { background: var(--bg-gray); }
@media (max-width: 760px) {
  .menu-btn { display: inline-flex; }
  .mobile-menu { display: flex; }
  /* hide the header "Start planning" pill on small screens to save room */
  .header-actions .btn { display: none; }
}

/* ============================================================
   WHAT TO SEE — public sights (icon cards, no photos)
   ============================================================ */
.sight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .sight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sight-grid { grid-template-columns: 1fr; } }

.sight-card {
  display: grid; align-content: start; gap: 6px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 24px 24px 22px;
  text-decoration: none; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.sight-card:hover { border-color: var(--rausch); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.sight-ico { font-size: 26px; line-height: 1; margin-bottom: 6px; }
.sight-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.sight-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }
.sight-card .hl-more { margin-top: 8px; }

/* ============================================================
   WHEN TO VISIT — monthly climate strip
   ============================================================ */
.climate-section { background: var(--bg-gray); }
.climate-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.climate-cell {
  position: relative;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  background: #fff;
  padding: 12px 6px 12px;
  text-align: center;
  display: grid;
  gap: 5px;
  justify-items: center;
}
.climate-cell.ideal {
  border-color: var(--rausch);
  box-shadow: 0 0 0 1px var(--rausch) inset;
  background: #fff;
}
.cc-month { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text); }
.cc-air { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; font-weight: 500; color: var(--text); line-height: 1; }
.cc-bar { width: 10px; height: 34px; border-radius: 6px; background: linear-gradient(to top, #bfe3e7, var(--sea-c, #0d7d88)); }
.cc-sea { font-size: 12px; font-weight: 700; color: var(--rausch); display: inline-flex; align-items: center; gap: 3px; }
.cc-sea svg { width: 11px; height: 11px; }
.cc-tag { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--rausch); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 2px 7px; border-radius: 20px; white-space: nowrap; }

.climate-legend {
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
  margin-top: 20px; font-size: 13.5px; color: var(--gray);
}
.climate-legend .key { display: inline-flex; align-items: center; gap: 7px; }
.climate-legend .swatch { width: 13px; height: 13px; border-radius: 4px; }
.climate-legend .swatch.air { background: var(--text); }
.climate-legend .swatch.sea { background: var(--rausch); }
.climate-legend .swatch.ideal { background: #fff; box-shadow: 0 0 0 1.5px var(--rausch) inset; }

.climate-note {
  margin-top: 22px; padding: 18px 22px; background: #fff;
  border: 1px solid var(--border-light); border-left: 3px solid var(--rausch);
  border-radius: var(--r-md); font-size: 15px; color: #3d4a4b; line-height: 1.6;
}
.climate-note strong { color: var(--text); }

/* tablet: 6 columns × 2 rows */
@media (max-width: 780px) {
  .climate-grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }
}
/* phone: wrap the 12 months into a grid — no horizontal scrolling */
@media (max-width: 480px) {
  .climate-grid { grid-template-columns: repeat(4, 1fr); gap: 7px; }
}
@media (max-width: 340px) {
  .climate-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   WHERE TO STAY — soft, editorial (not a hard sell)
   ============================================================ */
.stay-section { background: var(--text); color: #fff; }
.stay-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .stay-split { grid-template-columns: 1fr; gap: 28px; } }
.stay-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.stay-media img { width: 100%; height: 100%; object-fit: cover; }
.stay-body .eyebrow { color: #7fd4dd; }
.stay-body h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: clamp(1.6rem,3vw,2.3rem); line-height: 1.12; letter-spacing: -0.01em; }
.stay-body h2 em { font-style: italic; color: #9fe0e8; }
.stay-body p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.65; margin-top: 16px; }
.stay-link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 22px;
  padding-bottom: .3rem; border-bottom: 1px solid rgba(255,255,255,.4);
  color: #fff; font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: gap .2s ease, border-color .2s ease;
}
.stay-link span { font-size: 1.3em; line-height: 0; }
.stay-link:hover { gap: .9rem; border-bottom-color: #fff; }
.stay-fine { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   FESTE & FESTIVALS
   ============================================================ */
.fest-section { background: var(--sand); }
.fest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .fest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fest-grid { grid-template-columns: 1fr; } }
.fest-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--r-lg);
  padding: 22px 22px 24px; display: grid; gap: 9px; align-content: start;
}
.fest-date {
  justify-self: start;
  font-family: 'Cutive Mono', 'Courier New', monospace;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--rausch-grad); padding: 5px 11px; border-radius: 20px;
}
.fest-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.fest-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }
.fest-note { margin-top: 22px; font-size: 13.5px; color: var(--gray); }
.fest-note a { color: var(--rausch); font-weight: 600; text-decoration: none; }
.fest-note a:hover { text-decoration: underline; }

/* ---------- Where to stay: home cards (data-driven, extensible) ---------- */
.stay-intro { max-width: 720px; }
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}
@media (max-width: 900px) { .home-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .home-grid { grid-template-columns: 1fr; gap: 16px; } }
.home-card {
  display: block; text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.home-card:hover { transform: translateY(-4px); border-color: rgba(159,224,232,.6); background: rgba(255,255,255,0.08); }
.home-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.home-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.home-card:hover .home-media img { transform: scale(1.05); }
.home-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--rausch-grad); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 4px 9px; border-radius: 20px;
}
.home-body { padding: 14px 16px 16px; display: grid; gap: 3px; }
.home-name { color: #fff; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.home-sub { color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.4; }
.home-cap { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 2px; }
.home-more { color: #9fe0e8; font-size: 13px; font-weight: 700; margin-top: 8px; }
