/* ══════════════════════════════════════════════════
   FenuaTravel — Base Stylesheet v2.0
   Design system unified with homepage palette
   ══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  /* Brand palette */
  --midnight:    #060D1A;
  --deep:        #0A2540;
  --lagoon:      #00C0C8;
  --lagoon-dim:  rgba(0,192,200,0.15);
  --coral:       #E8654A;
  --coral-dark:  #C44D34;
  --coral-dim:   rgba(232,101,74,0.12);
  --sand:        #F5EDD6;
  --cream:       #FDFAF4;
  --navy:        #1B4F72;
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;

  /* Content page aliases (teal → lagoon) */
  --teal:        #00C0C8;
  --teal-lt:     #4DD9E0;
  --dark:        #060D1A;
  --dark2:       #0A2540;
  --ocean:       #006994;
  --gray:        #52525B;
  --gray-lt:     #F3F4F6;

  /* Gray scale */
  --gray-100:    #F4F4F5;
  --gray-200:    #E4E4E7;
  --gray-400:    #A1A1AA;
  --gray-600:    #52525B;
  --gray-800:    #27272A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 4px 28px rgba(6,13,26,.10);
  --shadow-lg:   0 12px 50px rgba(6,13,26,.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--midnight);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── HEADER / NAV (content pages) ── */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s ease;
}
#header.solid {
  background: rgba(6,13,26,.95);
  backdrop-filter: blur(16px);
  padding: .85rem 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; letter-spacing: .02em;
  color: #fff; text-decoration: none; z-index: 1001;
}
.logo-text em { color: var(--lagoon); font-style: italic; }

.header-nav {
  display: flex; align-items: center; gap: 2rem;
}
.header-nav a {
  color: rgba(255,255,255,.7); font-size: .875rem; font-weight: 500;
  letter-spacing: .03em; transition: color .2s;
}
.header-nav a:hover { color: var(--lagoon); }

/* Lang pill (content pages) */
.lang-pill {
  display: flex; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); border-radius: 30px; padding: .18rem;
}
.lpb {
  padding: .22rem .7rem; border-radius: 20px;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5);
  cursor: pointer; border: none; background: transparent;
  font-family: var(--font-body); transition: all .2s; letter-spacing: .04em;
}
.lpb.on { background: var(--lagoon); color: var(--midnight); }

/* Lang switch link (expat/guide pages) */
.lang-switch {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.2);
  padding: .25rem .75rem; border-radius: 4px; transition: all .2s;
}
.lang-switch:hover { color: #fff; border-color: var(--lagoon); }

/* Hamburger (mobile) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.75); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  #header      { padding: .9rem 1.5rem; }
  #header.solid{ padding: .75rem 1.5rem; }
  .hamburger   { display: flex; }
  .header-nav {
    display: none;
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; background: rgba(6,13,26,.97); backdrop-filter: blur(20px);
    z-index: 1000;
  }
  .header-nav.open { display: flex; }
  .header-nav a    { font-size: 1.1rem; color: rgba(255,255,255,.85); }
  .lang-pill       { transform: scale(1.1); }
}

/* ── HERO (destination pages) ── */
.hero { position: relative; }

.hero-dest {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 3rem 5rem;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,192,200,.15); border: 1px solid rgba(0,192,200,.35);
  color: var(--lagoon); padding: .3rem .9rem; border-radius: 20px;
  font-size: .72rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: .75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-content .hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  font-weight: 300; max-width: 500px; margin-bottom: 2rem; line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 30px;
  padding: .4rem 1.2rem; font-size: .78rem; color: rgba(255,255,255,.75);
  white-space: nowrap; z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb a:hover { color: var(--lagoon); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--midnight);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.stat-item {
  padding: 1.5rem 3rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  flex: 1; min-width: 130px;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; color: var(--lagoon);
}
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 300; margin-top: .15rem; }

/* ── LAYOUT ── */
.page-body {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
}
@media (max-width: 1024px) {
  .page-body { grid-template-columns: 1fr; }
  .side-col  { display: none; }
}

/* ── TYPOGRAPHY ── */
.content-section { margin-bottom: 3.5rem; }
.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--lagoon); margin-bottom: .4rem;
}
h2.sh {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--midnight); line-height: 1.15; margin-bottom: 1rem;
}
h3.sh3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; color: var(--midnight); margin-bottom: .75rem;
}
.prose { font-size: .975rem; color: #374151; line-height: 1.8; font-weight: 300; }
.prose p + p { margin-top: 1rem; }
.prose strong { font-weight: 600; color: var(--midnight); }

/* ── ACTIVITY CARDS ── */
.act-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.act-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid #F0F0F0; text-decoration: none; color: var(--midnight);
  transition: all .25s;
}
.act-card:hover { border-color: var(--lagoon); box-shadow: var(--shadow); transform: translateY(-2px); }
.act-img { height: 140px; background-size: cover; background-position: center; }
.act-body  { padding: .85rem 1rem; }
.act-title { font-size: .9rem; font-weight: 600; margin-bottom: .25rem; }
.act-desc  { font-size: .78rem; color: var(--gray-600); font-weight: 300; line-height: 1.5; }
.act-price { font-size: .78rem; color: var(--lagoon); font-weight: 600; margin-top: .4rem; }

/* ── HOTEL CARDS ── */
.hotel-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.hotel-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid #F0F0F0; display: flex; text-decoration: none;
  color: var(--midnight); transition: all .25s;
}
.hotel-card:hover { border-color: var(--lagoon); box-shadow: var(--shadow); }
.hotel-img  { width: 180px; flex-shrink: 0; background-size: cover; background-position: center; }
.hotel-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.hotel-top  { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; margin-bottom: .3rem; }
.hotel-name { font-size: 1.05rem; font-weight: 600; }
.hotel-stars{ color: #F4A261; font-size: .85rem; }
.hotel-type { font-size: .75rem; color: var(--gray-400); margin-bottom: .5rem; }
.hotel-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .85rem; }
.hotel-tag  { background: var(--gray-100); color: var(--gray-600); font-size: .7rem; padding: .15rem .55rem; border-radius: 4px; }
.hotel-bottom { display: flex; align-items: center; justify-content: space-between; }
.hotel-price  { font-size: 1.1rem; font-weight: 700; }
.hotel-price span { font-size: .78rem; font-weight: 400; color: var(--gray-400); }
.hotel-rating { font-size: .82rem; font-weight: 600; display: flex; align-items: center; gap: .25rem; }
.hotel-rating .score { background: var(--lagoon); color: var(--midnight); padding: .15rem .45rem; border-radius: 5px; font-size: .78rem; font-weight: 700; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--coral); color: #fff;
  padding: .85rem 1.75rem; border-radius: 10px;
  font-size: .95rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-body); transition: all .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,101,74,.4); }
.btn-outline {
  background: transparent; color: #fff; padding: .85rem 1.75rem; border-radius: 10px;
  font-size: .95rem; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.4); cursor: pointer;
  font-family: var(--font-body); transition: all .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { border-color: var(--lagoon); color: var(--lagoon); }
.btn-book {
  background: var(--coral); color: #fff; padding: .5rem 1.1rem;
  border-radius: 8px; font-size: .8rem; font-weight: 600;
  text-decoration: none; border: none; font-family: var(--font-body); transition: background .2s;
}
.btn-book:hover { background: var(--coral-dark); }

/* ── BUDGET TABLE ── */
.budget-table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; font-size: .875rem; }
.budget-table th {
  background: var(--midnight); color: #fff; padding: .65rem 1rem;
  text-align: left; font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .5px;
}
.budget-table th:last-child, .budget-table td:last-child { text-align: right; }
.budget-table td { padding: .65rem 1rem; border-bottom: 1px solid #F0F0F0; color: var(--gray-600); }
.budget-table tr:last-child td { border-bottom: none; font-weight: 600; color: var(--midnight); background: var(--cream); }
.budget-table .eco { color: var(--lagoon); font-weight: 600; }
.budget-table .lux { color: var(--coral); font-weight: 600; }

/* ── INFO GRID ── */
.infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.info-card { background: #fff; border-radius: var(--radius); padding: 1.25rem 1.4rem; border: 1.5px solid #F0F0F0; }
.info-icon  { font-size: 1.5rem; margin-bottom: .5rem; }
.info-title { font-size: .82rem; font-weight: 600; color: var(--midnight); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .5px; }
.info-val   { font-size: .875rem; color: var(--gray-600); font-weight: 300; line-height: 1.6; }
.info-val strong { color: var(--midnight); font-weight: 600; }

/* ── WEATHER GRID ── */
.meteo-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: .5rem; margin-top: 1.25rem; }
.meteo-month { background: #fff; border-radius: 10px; padding: .75rem .5rem; text-align: center; border: 1.5px solid #F0F0F0; font-size: .75rem; }
.meteo-month.best { border-color: var(--lagoon); background: rgba(0,192,200,.06); }
.meteo-month.bad  { opacity: .6; }
.m-name { font-weight: 600; color: var(--midnight); margin-bottom: .25rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; }
.m-icon { font-size: 1.1rem; margin-bottom: .25rem; }
.m-temp { color: var(--gray-600); font-size: .72rem; }
.m-best { font-size: .62rem; color: var(--lagoon); font-weight: 600; margin-top: .2rem; }

/* ── FAQ ── */
.faq-list  { margin-top: 1.5rem; }
.faq-item  { border-bottom: 1px solid #E5E7EB; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; cursor: pointer; font-size: .975rem; font-weight: 500;
  color: var(--midnight); gap: 1rem; user-select: none;
}
.faq-q .faq-arrow { color: var(--lagoon); font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1rem; font-size: .9rem; color: var(--gray-600); font-weight: 300; line-height: 1.75; }
.faq-a.show { display: block; }

/* ── SIDEBAR ── */
.side-sticky { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.5rem; }
.side-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid #F0F0F0; }
.side-card-header { background: var(--midnight); padding: 1.25rem 1.5rem; }
.side-card-header h3 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.side-card-header p { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .2rem; font-weight: 300; }
.side-card-body { padding: 1.25rem 1.5rem; }
.side-input { width: 100%; border: 1.5px solid #E5E7EB; border-radius: 8px; padding: .65rem .9rem; font-family: var(--font-body); font-size: .875rem; color: var(--midnight); outline: none; margin-bottom: .75rem; transition: border-color .2s; }
.side-input:focus { border-color: var(--lagoon); }
.side-btn { display: block; width: 100%; background: var(--coral); color: #fff; border: none; border-radius: 8px; padding: .75rem; font-size: .9rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: background .2s; text-align: center; text-decoration: none; }
.side-btn:hover { background: var(--coral-dark); }
.side-list { list-style: none; }
.side-list li { border-bottom: 1px solid #F0F0F0; }
.side-list li:last-child { border-bottom: none; }
.side-list a { display: flex; align-items: center; gap: .75rem; padding: .85rem 0; text-decoration: none; color: var(--midnight); font-size: .875rem; transition: color .2s; }
.side-list a:hover { color: var(--lagoon); }

/* ── VOL CARD ── */
.vol-card { background: linear-gradient(135deg, var(--midnight) 0%, var(--deep) 100%); border-radius: var(--radius-lg); padding: 2rem; color: #fff; margin-top: 1.5rem; position: relative; overflow: hidden; }
.vol-card::before { content: '✈️'; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 5rem; opacity: .1; }
.vol-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.25rem; color: #fff; }
.vol-route  { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.vol-step   { display: flex; align-items: center; gap: 1rem; }
.vol-step-num { background: var(--lagoon); color: var(--midnight); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; flex-shrink: 0; }
.vol-step-text { font-size: .875rem; color: rgba(255,255,255,.8); font-weight: 300; }
.vol-step-text strong { color: #fff; font-weight: 600; }
.vol-prices { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.vol-price-item { text-align: center; }
.vol-price-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--lagoon); }
.vol-price-lbl { font-size: .72rem; color: rgba(255,255,255,.5); }
.vol-cta { display: inline-flex; align-items: center; gap: .5rem; background: var(--coral); color: #fff; padding: .8rem 1.5rem; border-radius: 10px; font-size: .9rem; font-weight: 600; text-decoration: none; border: none; font-family: var(--font-body); transition: all .2s; }
.vol-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* ── RELATED GUIDES ── */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.rel-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1.5px solid #F0F0F0; text-decoration: none; color: var(--midnight); transition: all .25s; }
.rel-card:hover { border-color: var(--lagoon); box-shadow: var(--shadow); transform: translateY(-2px); }
.rel-img  { height: 130px; background-size: cover; background-position: center; }
.rel-body { padding: .85rem 1rem; }
.rel-tag  { font-size: .68rem; font-weight: 600; color: var(--lagoon); text-transform: uppercase; letter-spacing: 1px; }
.rel-title{ font-size: .9rem; font-weight: 600; margin-top: .2rem; line-height: 1.3; }

/* ── LOC MINI GRID ── */
.loc-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.loc-mini { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1.5px solid #F0F0F0; text-decoration: none; color: var(--midnight); transition: all .25s; }
.loc-mini:hover { border-color: var(--coral); box-shadow: var(--shadow); transform: translateY(-2px); }
.loc-mini-img  { height: 160px; background-size: cover; background-position: center; }
.loc-mini-body { padding: .85rem 1rem 1rem; }
.loc-mini-name { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.loc-mini-info { font-size: .75rem; color: var(--gray-400); font-weight: 300; }
.loc-mini-row  { display: flex; justify-content: space-between; align-items: center; margin-top: .6rem; }
.loc-mini-price{ font-size: .95rem; font-weight: 700; }
.loc-mini-price span { font-size: .72rem; font-weight: 400; color: var(--gray-400); }
.loc-mini-rating { font-size: .78rem; font-weight: 600; color: var(--midnight); }
.loc-mini-rating .star { color: var(--coral); }

/* ── SCROLL TO TOP ── */
#stb { position: fixed; bottom: 2rem; right: 2rem; background: var(--coral); color: #fff; border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(232,101,74,.4); opacity: 0; pointer-events: none; transition: all .3s; }
#stb.show { opacity: 1; pointer-events: all; }
#stb:hover { transform: translateY(-3px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--midnight);
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 3rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: #fff; display: block; margin-bottom: 1rem; text-decoration: none;
}
.footer-logo em { font-style: italic; color: var(--lagoon); }
.footer-about { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h4 { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-col a.vl { color: rgba(245,162,133,.6); }
.footer-col a.vl:hover { color: #F5A285; }
.footer-col a.el { color: rgba(77,217,224,.5); }
.footer-col a.el:hover { color: var(--lagoon); }
.footer-col a.pl { color: rgba(163,196,232,.45); }
.footer-col a.pl:hover { color: #A3C4E8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: .75rem; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); font-size: .75rem; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.55); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-inner { padding: 0 1.5rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; padding: 3rem 0 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* ── RESPONSIVE SHARED ── */
@media (max-width: 768px) {
  .act-grid      { grid-template-columns: 1fr 1fr; }
  .related-grid  { grid-template-columns: 1fr 1fr; }
  .hotel-img     { width: 120px; }
  .infos-grid    { grid-template-columns: 1fr; }
  .meteo-grid    { grid-template-columns: repeat(4,1fr); }
  .loc-mini-grid { grid-template-columns: 1fr; }
  .hero-content  { padding: 0 1.5rem 4rem; }
}
@media (max-width: 480px) {
  .act-grid      { grid-template-columns: 1fr; }
  .meteo-grid    { grid-template-columns: repeat(3,1fr); }
  .related-grid  { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   FenuaTravel — Guide pages enhancement v3
   ══════════════════════════════════════════════════ */

/* ── Global upgrades ── */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Better prose on guide pages */
.prose { font-size: .975rem; color: #374151; line-height: 1.85; font-weight: 300; }
.prose p + p { margin-top: 1.1rem; }
.prose strong { font-weight: 600; color: var(--midnight); }
.prose a { color: var(--lagoon); border-bottom: 1px solid rgba(0,192,200,.3); transition: border-color .2s; }
.prose a:hover { border-color: var(--lagoon); }

/* Eyebrow with decorative line */
.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lagoon); margin-bottom: .6rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1.5px;
  background: var(--lagoon); flex-shrink: 0;
}

/* Section heading */
h2.sh {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--midnight);
  line-height: 1.1; margin-bottom: 1rem;
  letter-spacing: -.01em;
}

/* Card hover improvements */
.act-card:hover, .rel-card:hover {
  transform: translateY(-4px);
  border-color: var(--lagoon);
  box-shadow: 0 8px 32px rgba(0,192,200,.12), 0 4px 24px rgba(6,13,26,.08);
}
.hotel-card:hover {
  transform: translateY(-2px);
  border-color: var(--lagoon);
  box-shadow: 0 8px 36px rgba(0,192,200,.1);
}
.loc-mini:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  box-shadow: 0 8px 28px rgba(232,101,74,.1);
}

/* Better button */
.btn-primary {
  background: var(--coral); border-radius: 6px;
  font-size: .9rem; letter-spacing: .01em;
  transition: all .25s;
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,101,74,.4);
}

/* Scroll reveal for guide pages too */
.section-reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.section-reveal.visible { opacity: 1; transform: translateY(0); }

