/* ==========================================================================
   Parco Gioconda B&B - Ischia
   Stile: mediterraneo elegante - verde parco, sabbia, terracotta
   ========================================================================== */

:root {
  --green-900: #1c3a30;
  --green-800: #244a3d;
  --green-700: #2f5d4e;
  --green-600: #3a6f5c;
  --green-500: #4a7c68;
  --sand: #efe7d7;
  --cream: #faf6ee;
  --paper: #fffdf9;
  --terracotta: #c97a4a;
  --terracotta-dark: #b1663a;
  --gold: #cda15a;
  --ink: #262521;
  --muted: #6f6d63;
  --line: rgba(28, 58, 48, 0.12);
  --shadow-sm: 0 2px 10px rgba(28, 58, 48, 0.08);
  --shadow-md: 0 12px 40px rgba(28, 58, 48, 0.14);
  --sidebar-w: 264px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--green-900); margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1em; }
a { color: var(--green-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta); }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s, background .2s, box-shadow .2s, color .2s;
}
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--green-800); transform: translateY(-2px); }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--green-800), var(--green-900));
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  z-index: 1000;
  transition: transform .35s ease;
}

.brand { text-align: center; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .01em;
}
.brand-mark span { display: block; font-size: .68rem; font-family: var(--sans); letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-top: .5rem; font-weight: 500; }
.brand-leaf { font-size: 1.4rem; color: var(--gold); }

.side-nav { list-style: none; margin: 1.6rem 0 0; padding: 0; flex: 1; }
.side-nav li { margin: .12rem 0; }
.side-nav a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .8rem;
  color: rgba(255,255,255,.82);
  border-radius: 10px;
  font-size: .96rem;
  font-weight: 500;
  transition: background .2s, color .2s, padding .2s;
}
.side-nav a:hover, .side-nav a.active { background: rgba(255,255,255,.1); color: #fff; padding-left: 1.1rem; }
.side-nav a.active { color: var(--gold); }
.side-nav svg { width: 19px; height: 19px; flex-shrink: 0; opacity: .85; }

.side-foot { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.3rem; font-size: .86rem; }
.side-foot a { color: rgba(255,255,255,.85); }
.side-foot .phone { display: flex; align-items: center; gap: .55rem; font-weight: 600; color: #fff; font-size: 1.05rem; margin-bottom: .7rem; }
.side-foot .addr { color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 1rem; font-size: .82rem; }
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* ---------- Topbar (mobile) ---------- */
.topbar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  height: 62px;
  background: var(--green-900);
  color: #fff;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 1001;
  box-shadow: var(--shadow-sm);
}
.topbar .brand-mark { font-size: 1.15rem; }
.topbar .brand-mark span { display: none; }
.hamburger {
  background: none; border: none; color: #fff; cursor: pointer;
  width: 42px; height: 42px; display: grid; place-items: center;
}
.hamburger svg { width: 26px; height: 26px; }
.overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20,40,33,.55);
  z-index: 999;
  opacity: 0; transition: opacity .3s;
}
.overlay.show { display: block; opacity: 1; }

/* ---------- Language toggle ---------- */
.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  background: none; border: none; color: rgba(255,255,255,.7);
  padding: .3rem .7rem; font-size: .8rem; font-weight: 600; cursor: pointer;
  font-family: var(--sans); letter-spacing: .05em;
}
.lang-toggle button.active { background: var(--terracotta); color: #fff; }
.sidebar .lang-toggle { margin-top: 1.1rem; align-self: center; }

/* ==========================================================================
   Layout
   ========================================================================== */
.main { margin-left: var(--sidebar-w); }
.section { padding: 5.5rem clamp(1.5rem, 6vw, 6rem); }
.section-alt { background: var(--paper); }
.section-sand { background: var(--sand); }
.container { max-width: 1180px; margin: 0 auto; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.lead { font-size: 1.18rem; color: var(--muted); }

.section-head { max-width: 720px; margin: 0 auto 3.2rem; }
.center .section-head { text-align: center; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 6rem clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,40,33,.72) 0%, rgba(20,40,33,.42) 45%, rgba(20,40,33,.15) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 660px; }
.hero h1 { color: #fff; margin-bottom: .4rem; }
.hero .eyebrow { color: var(--gold); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,.92); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.8); font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-cue span { width: 1px; height: 34px; background: rgba(255,255,255,.6); animation: cue 1.8s infinite; }
@keyframes cue { 0%,100%{opacity:.3; transform: scaleY(.6);} 50%{opacity:1; transform: scaleY(1);} }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: center;
  color: #fff;
  padding: 7rem clamp(1.5rem, 6vw, 6rem) 4rem;
  overflow: hidden;
}
.page-hero .hero-bg { transform: scale(1.05); }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,40,33,.35), rgba(20,40,33,.68)); }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 560px; margin: 0; }

/* ==========================================================================
   Intro / feature rows
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: 18px; box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; max-height: 520px; }
.split-media .badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--terracotta); color: #fff; padding: 1rem 1.4rem;
  border-radius: 14px; box-shadow: var(--shadow-md); text-align: center; line-height: 1.1;
}
.split-media .badge b { font-family: var(--serif); font-size: 1.8rem; display: block; }
.split-media .badge small { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }

/* ---------- Feature icons ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.8rem 1.5rem; text-align: center; transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature .ic { width: 52px; height: 52px; margin: 0 auto 1rem; display: grid; place-items: center; background: var(--sand); border-radius: 14px; color: var(--green-700); }
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.feature p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   Cards (camere / servizi)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
  background: var(--paper); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .28s, box-shadow .28s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { font-size: .95rem; color: var(--muted); flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: .3rem 0 1rem; }
.tag { font-size: .78rem; background: var(--sand); color: var(--green-800); padding: .28rem .7rem; border-radius: 999px; font-weight: 500; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-grid figure { margin: 0 0 14px; break-inside: avoid; border-radius: 14px; overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; transition: transform .5s; }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: rgba(28,58,48,0); transition: background .3s; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure:hover::after { background: rgba(28,58,48,.15); }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-strip figure { margin: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 1; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-strip figure:hover img { transform: scale(1.07); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(15,28,23,.94);
  z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.5rem;
  display: grid; place-items: center; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .05em; }

/* ==========================================================================
   Booking form
   ========================================================================== */
.booking { background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #fff; }
.booking .eyebrow { color: var(--gold); }
.booking h2 { color: #fff; }
.booking .lead { color: rgba(255,255,255,.8); }
.booking-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.booking-side p { color: rgba(255,255,255,.82); }
.booking-side .b-contact { display: flex; align-items: center; gap: .8rem; margin: 1rem 0; color: #fff; font-weight: 500; }
.booking-side .b-contact svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

.form-card { background: var(--paper); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-size: .82rem; font-weight: 600; color: var(--green-800); margin-bottom: .4rem; letter-spacing: .02em; }
input, select, textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: .98rem; color: var(--ink); background: #fff; transition: border .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(58,111,92,.14); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .4rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; font-size: .92rem; display: none; }
.form-status.ok { display: block; background: #e7f3ec; color: #1f6b45; border: 1px solid #b9ddc7; }
.form-status.err { display: block; background: #fbeaea; color: #a23b3b; border: 1px solid #eec4c4; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; }
.post { display: block; text-decoration: none; color: inherit; background: var(--paper); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .28s, box-shadow .28s; }
a.post:hover { color: inherit; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post:hover .post-media img { transform: scale(1.06); }
.post-body { padding: 1.5rem 1.6rem 1.8rem; }
.post-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .15em; color: var(--terracotta); font-weight: 600; }
.post-body h3 { margin: .5rem 0 .5rem; font-size: 1.3rem; }
.post-body p { font-size: .94rem; color: var(--muted); }
.post-body .read { font-weight: 600; font-size: .9rem; color: var(--green-700); }

/* ==========================================================================
   Contatti / map
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem,4vw,3.5rem); align-items: stretch; }
.contact-info .info-item { display: flex; gap: 1rem; margin-bottom: 1.6rem; }
.contact-info .ic { width: 46px; height: 46px; flex-shrink: 0; background: var(--sand); border-radius: 12px; display: grid; place-items: center; color: var(--green-700); }
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 .2rem; }
.contact-info p, .contact-info a { margin: 0; font-size: 1.05rem; color: var(--ink); }
.map-embed { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ==========================================================================
   CTA band + Footer
   ========================================================================== */
.cta-band { background: var(--terracotta); color: #fff; text-align: center; padding: 4rem 1.5rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.8rem; }

.footer { background: var(--green-900); color: rgba(255,255,255,.7); padding: 3.5rem clamp(1.5rem,6vw,6rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer .brand-mark { text-align: left; font-size: 1.4rem; }
.footer a { color: rgba(255,255,255,.7); display: block; margin-bottom: .5rem; font-size: .95rem; }
.footer a:hover { color: var(--gold); }
.footer .socials { margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1023px) {
  .sidebar { transform: translateX(-100%); box-shadow: 0 0 60px rgba(0,0,0,.35); }
  .sidebar.open { transform: translateX(0); }
  .topbar { display: flex; }
  .main { margin-left: 0; padding-top: 62px; }
  .hero { min-height: calc(100vh - 62px); }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .split, .booking-wrap, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { max-height: 420px; }
  .split-media .badge { right: 1rem; bottom: -18px; }
  .gallery-grid { columns: 2; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .booking-wrap { direction: ltr; }
  .booking-side { order: 2; }
}

@media (max-width: 520px) {
  .section { padding: 3.5rem 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.wa-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 1500;
  transition: transform .25s, box-shadow .25s;
  animation: wa-pop .4s ease .6s both;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37,211,102,.6); }
.wa-fab svg { width: 34px; height: 34px; fill: #fff; }
.wa-fab::after {
  content: attr(data-tip);
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--green-900); color: #fff; white-space: nowrap;
  padding: .5rem .85rem; border-radius: 8px; font-size: .85rem; font-weight: 500;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  box-shadow: var(--shadow-sm);
}
.wa-fab:hover::after { opacity: 1; }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }
@media (max-width: 520px) {
  .wa-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-fab svg { width: 30px; height: 30px; }
  .wa-fab::after { display: none; }
}

/* ==========================================================================
   Tariffe / prezzario
   ========================================================================== */
.rate-table { max-width: 860px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.rate-row { display: grid; grid-template-columns: 1.1fr 1.4fr 1fr; align-items: center; padding: 1.1rem 1.6rem; border-bottom: 1px solid var(--line); }
.rate-row:last-child { border-bottom: none; }
.rate-row.head { background: var(--green-800); color: #fff; font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.rate-row .r-season { font-family: var(--serif); font-size: 1.15rem; color: var(--green-900); font-weight: 600; }
.rate-row .r-dates { color: var(--muted); font-size: .95rem; }
.rate-row .r-price { text-align: right; font-weight: 600; color: var(--terracotta); }
.rate-row.head .r-season, .rate-row.head .r-dates, .rate-row.head .r-price { color: #fff; font-family: var(--sans); font-size: .78rem; }
.rate-note { max-width: 860px; margin: 1.4rem auto 0; text-align: center; color: var(--muted); font-size: .9rem; }
@media (max-width: 620px) {
  .rate-row { grid-template-columns: 1fr; gap: .25rem; padding: 1rem 1.2rem; text-align: left; }
  .rate-row .r-price { text-align: left; }
  .rate-row.head { display: none; }
}

/* ==========================================================================
   Article (blog post)
   ========================================================================== */
.article { max-width: 780px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.article .meta .post-cat { font-size: .74rem; }
.article > img, .article figure img { border-radius: 16px; box-shadow: var(--shadow-sm); margin: 1.5rem 0; width: 100%; }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2rem; }
.article h3 { margin-top: 1.6rem; }
.article p, .article li { font-size: 1.06rem; color: #35342d; }
.article ul { padding-left: 1.2rem; margin-bottom: 1.2rem; }
.article li { margin-bottom: .5rem; }
.article .lead { color: var(--muted); font-size: 1.2rem; }
.article blockquote { border-left: 4px solid var(--terracotta); margin: 1.6rem 0; padding: .4rem 1.2rem; color: var(--green-800); font-style: italic; background: var(--sand); border-radius: 0 10px 10px 0; }
.back-link { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 2rem; font-weight: 600; color: var(--green-700); }
