/* ============================================================
   PRIKA Pool House — poolhousecroatia.com
   Design system: Adriatic navy / pool aqua / warm sand
   ============================================================ */

:root {
  --ink: #14283c;
  --ink-soft: #3d5266;
  --sea: #17607d;
  --aqua: #2aa3b8;
  --aqua-soft: #e3f4f6;
  --sand: #f7f2e9;
  --sand-deep: #efe6d4;
  --terra: #c2653a;
  --terra-soft: #f7e8df;
  --white: #ffffff;
  --line: #e4dccb;
  --ok: #2e8b57;
  --bad: #c0392b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(20, 40, 60, .10);
  --shadow-lg: 0 24px 60px rgba(20, 40, 60, .18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sea); text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 14px;
}
.overline::before { content: ""; width: 34px; height: 2px; background: var(--terra); border-radius: 2px; }
.section-title { font-size: clamp(30px, 4.2vw, 44px); margin-bottom: 18px; letter-spacing: -.01em; }
.section-lead { font-size: 18px; color: var(--ink-soft); max-width: 720px; }

section { padding: 92px 0; }
section.tight { padding: 64px 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(247, 242, 233, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(20,40,60,.08);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--white); transition: color .3s; }
.site-header.scrolled .brand { color: var(--ink); }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: .85; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.92); transition: color .2s; }
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.main-nav a:hover { color: var(--aqua); }
.nav-cta {
  background: var(--terra); color: #fff !important; padding: 10px 22px;
  border-radius: 999px; box-shadow: 0 6px 18px rgba(194,101,58,.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); color: #fff !important; }

.lang-switch { position: relative; }
.lang-switch > button {
  display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35); color: #fff; font: 600 13.5px var(--font-body);
  padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: background .2s;
}
.site-header.scrolled .lang-switch > button { background: var(--white); border-color: var(--line); color: var(--ink); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 170px; display: none;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.lang-menu a:hover { background: var(--aqua-soft); }
.lang-menu a.active { background: var(--sand); font-weight: 700; }
.lang-flag {
  display: inline-block; width: 21px; height: 14px; flex: none;
  border-radius: 2.5px; box-shadow: 0 0 0 1px rgba(20,40,60,.14);
  vertical-align: -2px;
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 140px 0 120px; color: #fff;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,30,45,.55) 0%, rgba(13,30,45,.25) 45%, rgba(13,30,45,.72) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px);
  padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; letter-spacing: .06em;
  margin-bottom: 26px;
}
.hero-kicker .star { color: #ffd76a; }
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); max-width: 850px; margin-bottom: 22px; letter-spacing: -.015em; text-wrap: balance; }
.hero h1 em { font-style: italic; color: #8fd8e4; }
.hero-sub { font-size: clamp(17px, 2vw, 21px); max-width: 640px; color: rgba(255,255,255,.92); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 54px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 600 16px var(--font-body); padding: 15px 32px; border-radius: 999px;
  cursor: pointer; border: 0; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 10px 26px rgba(194,101,58,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(194,101,58,.5); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.26); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px; }
.stat-chip {
  display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
  padding: 12px 20px; border-radius: 14px;
}
.stat-chip svg { width: 26px; height: 26px; flex: none; }
.stat-chip b { display: block; font-size: 16px; line-height: 1.2; }
.stat-chip span { font-size: 12.5px; opacity: .85; }

/* ---------- Intro ---------- */
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.intro-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 17px; }
.intro-copy p strong { color: var(--ink); }
.intro-photos { position: relative; }
.intro-photos img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.intro-photos .photo-back { width: 86%; }
.intro-photos .photo-front {
  position: absolute; width: 58%; right: 0; bottom: -50px;
  border: 6px solid var(--white);
}
.review-badge {
  position: absolute; top: -26px; right: 6%; background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 14px 20px; display: flex; align-items: center; gap: 13px; z-index: 2;
}
.review-badge .score {
  background: var(--sea); color: #fff; font: 700 20px var(--font-display);
  width: 46px; height: 46px; border-radius: 12px 12px 12px 4px; display: flex; align-items: center; justify-content: center;
}
.review-badge b { display: block; font-size: 14.5px; }
.review-badge span { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Amenities ---------- */
.amenities { background: var(--sand); }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.amenity {
  background: var(--white); border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid rgba(228,220,203,.6);
  transition: transform .25s, box-shadow .25s;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--aqua-soft); color: var(--sea);
}
.amenity-icon svg { width: 27px; height: 27px; }
.amenity b { font-size: 15.5px; }
.amenity span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Rooms strip ---------- */
.rooms { background: var(--white); }
.room-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.room-card { background: var(--sand); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-card img { height: 210px; width: 100%; object-fit: cover; }
.room-card-body { padding: 22px 24px 26px; }
.room-card h3 { font-size: 20px; margin-bottom: 8px; }
.room-card p { font-size: 14.5px; color: var(--ink-soft); }
.room-card .beds { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.bed-tag {
  display: inline-flex; align-items: center; gap: 6px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 600; color: var(--sea);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--sand); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; margin-top: 48px;
}
.gallery-grid a { border-radius: var(--radius); overflow: hidden; position: relative; display: block; }
.gallery-grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(6) { grid-column: span 2; }
.gallery-more {
  display: flex; align-items: center; justify-content: center; background: var(--sea);
  color: #fff; font-weight: 600; font-size: 16px; border-radius: var(--radius); cursor: pointer;
}
.gallery-more:hover { background: var(--ink); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10, 22, 34, .95);
  display: none; align-items: center; justify-content: center; flex-direction: column; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-caption { color: rgba(255,255,255,.85); margin-top: 16px; font-size: 14.5px; }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; cursor: pointer; transition: background .2s;
}
.lightbox button:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Area / attractions ---------- */
.area { background: var(--white); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.area-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--sand);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.area-card img { height: 190px; width: 100%; object-fit: cover; }
.area-card-body { padding: 22px 24px 26px; flex: 1; }
.area-card h3 { font-size: 20px; margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.area-card h3 a { color: inherit; }
.area-card h3 a:hover { color: var(--aqua); }
.dist-badge {
  flex: none; background: var(--aqua-soft); color: var(--sea); font: 700 12.5px var(--font-body);
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.area-card p { font-size: 14.5px; color: var(--ink-soft); }
.area-list { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; }
.area-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 4px; border-bottom: 1px dashed var(--line); font-size: 15.5px;
}
.area-list li b { font-weight: 600; display: flex; align-items: center; gap: 11px; }
.area-list li b svg { width: 20px; height: 20px; color: var(--terra); flex: none; }
.area-list li span { color: var(--sea); font-weight: 700; font-size: 14px; white-space: nowrap; }

/* ---------- Review section ---------- */
.reviews { background: var(--sea); color: #fff; text-align: center; }
.reviews .overline { color: #8fd8e4; justify-content: center; }
.reviews .overline::before { background: #8fd8e4; }
.review-quote { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 36px); font-style: italic; max-width: 760px; margin: 10px auto 26px; line-height: 1.4; }
.review-meta { font-size: 15px; color: rgba(255,255,255,.85); }
.review-scores { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; }
.score-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px; padding: 14px 24px; min-width: 130px;
}
.score-pill b { display: block; font: 700 26px var(--font-display); color: #8fd8e4; }
.score-pill span { font-size: 13px; opacity: .85; }

/* ---------- Booking ---------- */
.booking { background: var(--sand); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 48px; align-items: start; }

/* Calendar */
.cal-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-head h3 { font-size: 19px; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white);
  cursor: pointer; font-size: 16px; color: var(--sea); transition: .2s;
}
.cal-nav button:hover:not(:disabled) { background: var(--sea); color: #fff; border-color: var(--sea); }
.cal-nav button:disabled { opacity: .35; cursor: default; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cal-month h4 { text-align: center; font: 600 15.5px var(--font-body); margin-bottom: 12px; }
.cal-table { width: 100%; border-collapse: collapse; }
.cal-table th { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; padding: 6px 0; }
.cal-table td { text-align: center; padding: 2px; }
.cal-day {
  width: 38px; height: 38px; line-height: 38px; margin: 0 auto; border-radius: 50%;
  font-size: 13.5px; font-weight: 500; cursor: pointer; transition: .15s; position: relative;
}
.cal-day:hover:not(.booked):not(.past):not(.empty) { background: var(--aqua-soft); }
.cal-day.booked { background: #fdecea; color: #d98880; text-decoration: line-through; cursor: not-allowed; }
.cal-day.past { color: #c8c2b4; cursor: default; }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--aqua); }
.cal-day.sel-start, .cal-day.sel-end { background: var(--sea) !important; color: #fff; font-weight: 700; }
.cal-day.in-range { background: var(--aqua-soft); border-radius: 0; }
.cal-legend { display: flex; gap: 22px; margin-top: 20px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; }
.cal-legend i { display: inline-block; width: 14px; height: 14px; border-radius: 4px; margin-right: 7px; vertical-align: -2px; }
.cal-legend .free i { background: var(--white); border: 1.5px solid var(--line); }
.cal-legend .taken i { background: #fdecea; }
.cal-legend .chosen i { background: var(--sea); }
.cal-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 22px; }
.cal-status.ok { color: var(--ok); }
.cal-status.err { color: var(--bad); }

/* Form */
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  font: 15px var(--font-body); color: var(--ink); background: var(--sand);
  border: 1.5px solid transparent; border-radius: 10px; padding: 12px 14px; outline: none; transition: .2s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--aqua); background: var(--white); box-shadow: 0 0 0 4px rgba(42,163,184,.12);
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin: 4px 0 18px; }
.form-msg { margin-top: 16px; padding: 13px 16px; border-radius: 10px; font-size: 14.5px; font-weight: 500; display: none; }
.form-msg.ok { display: block; background: #e8f6ee; color: var(--ok); }
.form-msg.err { display: block; background: #fdecea; color: var(--bad); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Prices ---------- */
.prices { background: var(--sand); padding-top: 0; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 30px 32px; margin-top: 40px; max-width: 860px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--ink-soft); padding: 10px 12px; border-bottom: 2px solid var(--line);
}
.price-table th:nth-child(2), .price-table td:nth-child(2),
.price-table th:nth-child(3), .price-table td:nth-child(3) { text-align: right; }
.price-table td { padding: 13px 12px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .price-amount { font-weight: 700; color: var(--sea); font-size: 17px; white-space: nowrap; }
.price-table .price-period { font-weight: 600; }
.price-note { margin-top: 18px; font-size: 14px; color: var(--ink-soft); display: flex; gap: 9px; align-items: flex-start; }
.price-note::before { content: "✓"; color: var(--ok); font-weight: 700; }
@media (max-width: 560px) {
  .price-card { padding: 20px 16px; }
  .price-table td, .price-table th { padding: 10px 6px; font-size: 14px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font: 600 17px var(--font-body);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font: 400 26px var(--font-display); color: var(--terra); transition: transform .25s; flex: none; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 15.5px; max-width: 700px; }

/* ---------- Map / location ---------- */
.location { background: var(--sand); }
.map-embed { margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.site-footer h4 { color: #fff; font: 600 15px var(--font-body); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.75); font-size: 14.5px; }
.site-footer a:hover { color: #8fd8e4; }
.site-footer li { margin-bottom: 10px; }
.footer-brand { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 14px; }
.footer-about { font-size: 14.5px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.5);
}

/* ---------- Guide / article pages ---------- */
.page-hero {
  position: relative; padding: 170px 0 80px; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--sea) 100%);
}
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,30,45,.62), rgba(13,30,45,.78)); }
.page-hero .container { position: relative; z-index: 2; }
.crumbs { font-size: 13.5px; margin-bottom: 18px; color: rgba(255,255,255,.75); }
.crumbs a { color: rgba(255,255,255,.9); }
.crumbs a:hover { color: #8fd8e4; }
.crumbs span { margin: 0 8px; opacity: .6; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); max-width: 820px; letter-spacing: -.01em; margin-bottom: 14px; }
.page-hero .lead { font-size: 18px; max-width: 680px; color: rgba(255,255,255,.9); }

.article-body { max-width: 800px; margin: 0 auto; padding: 66px 24px 20px; }
.article-body p { color: var(--ink-soft); margin-bottom: 20px; font-size: 17px; }
.article-body p strong, .article-body li strong { color: var(--ink); }
.article-body h2 { font-size: clamp(25px, 3.2vw, 32px); margin: 48px 0 16px; }
.article-body h3 { font-size: 21px; margin: 34px 0 12px; }
.article-body ul { list-style: disc; padding-left: 24px; margin: 0 0 20px; }
.article-body li { color: var(--ink-soft); margin-bottom: 8px; font-size: 16.5px; }
.article-body a { font-weight: 600; text-decoration: underline; text-decoration-color: rgba(42,163,184,.45); text-underline-offset: 3px; }
.article-body a:hover { color: var(--aqua); }
.article-body figure { margin: 34px 0; }
.article-body figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.article-body figcaption { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; text-align: center; }

.info-box {
  background: var(--sand-deep); border-radius: var(--radius-lg); padding: 26px 28px; margin: 38px 0;
  border-left: 4px solid var(--terra);
}
.info-box h3 { margin: 0 0 12px; font-size: 18px; }
.info-box ul { list-style: none; padding: 0; margin: 0; }
.info-box li { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.info-box li:last-child { border-bottom: 0; }
.info-box li b { font-weight: 600; color: var(--ink); }
.info-box li span { color: var(--sea); font-weight: 600; white-space: nowrap; }

.cta-banner {
  background: var(--sea); color: #fff; border-radius: var(--radius-lg); padding: 34px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 52px 0; box-shadow: var(--shadow-lg);
}
.cta-banner h3 { font-size: 23px; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.88); margin: 0; font-size: 15.5px; }
.cta-banner .btn-primary { flex: none; }

.related { background: var(--sand); padding: 70px 0 90px; }
.related h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 34px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-grid .area-card img { height: 150px; }
.related-grid .area-card h3 { font-size: 17px; }
.related-grid .area-card p { font-size: 13.5px; }
@media (max-width: 1020px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } .cta-banner { padding: 26px 22px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .room-cards, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid a:nth-child(1) { grid-column: span 2; }
  .booking-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 90px; }
}
@media (max-width: 760px) {
  section { padding: 64px 0; }
  .main-nav {
    position: fixed; inset: 0; background: rgba(16, 30, 44, .97); flex-direction: column;
    align-items: center; justify-content: center; gap: 30px; display: none; z-index: 90;
  }
  .main-nav.open { display: flex; }
  .main-nav a { color: #fff !important; font-size: 20px; }
  .nav-toggle { display: block; position: relative; z-index: 95; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .room-cards, .area-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .cal-months { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero { min-height: 84vh; }
  .intro-photos .photo-front { bottom: -30px; }
  .form-card, .cal-wrap { padding: 24px 20px; }
}
@media (max-width: 460px) {
  .hero-stats { gap: 9px; }
  .stat-chip { padding: 9px 13px; }
  .footer-grid { grid-template-columns: 1fr; }
}
