/* ============================================================
   TrueNorth Guide — theme: teal/ocean + coral, travel magazine
   Variable names are kept from the original engine's stylesheet;
   only their values (and fonts/radius/shadows) have changed.
   ============================================================ */
:root {
  --navy-900: #0b2b30;
  --navy-800: #0e474e;
  --navy-700: #0f6b73;
  --navy-600: #12868f;
  --gold: #e08a4b;
  --gold-dark: #c56f2c;
  --gold-soft: #fbe7d6;
  --ink: #13212b;
  --body: #3c4a52;
  --muted: #74858c;
  --line: #e2eaea;
  --bg: #ffffff;
  --bg-alt: #f3f8f8;
  --bg-tint: #e7f1f1;
  --star: #e0a53f;
  --star-off: #d2dcdc;
  --ok: #12868f;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 12px rgba(15, 107, 115, .08);
  --shadow: 0 16px 44px rgba(15, 107, 115, .14);
  --shadow-lg: 0 28px 74px rgba(11, 43, 48, .20);
  --serif: "Palatino Linotype", "Book Antiqua", Palatino, "Georgia", serif;
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--body);
  background: var(--bg); line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
section { position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; cursor: pointer;
  border: 1px solid transparent; border-radius: 999px; padding: .7em 1.4em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s; text-align: center;
}
.btn--primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: 0 8px 20px rgba(224, 138, 75, .38); }
.btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 26px rgba(224, 138, 75, .48); }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--outline { background: #fff; border-color: var(--line); color: var(--navy-700); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn--lg { padding: .85em 1.8em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- stars ---------- */
.rating-stars { display: inline-flex; gap: 1px; font-size: 1rem; line-height: 1; letter-spacing: 1px; }
.rating-stars .st { color: var(--star-off); }
.rating-stars .st.full { color: var(--star); }
.rating-stars .st.half { background: linear-gradient(90deg, var(--star) 50%, var(--star-off) 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.class-stars { font-size: .95rem; }

.chip { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .02em; color: var(--navy-700); background: var(--bg-tint); border: 1px solid var(--line); padding: .28em .7em; border-radius: 999px; }
.chip--light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .25); }

/* ---------- topbar + header ---------- */
.topbar { background: var(--navy-900); color: #c9d4e3; font-size: .8rem; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; gap: 12px; }
.topbar__contact { color: var(--gold); font-weight: 600; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header__in { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: var(--gold); font-size: 1.1rem; }
.brand__text { font-family: var(--serif); line-height: 1; color: var(--ink); }
.brand__text strong { font-size: 1.35rem; letter-spacing: .01em; }
.brand__text em { font-style: normal; color: var(--gold-dark); font-size: 1.35rem; margin-left: 2px; }
.site-nav ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.nav-link { display: inline-block; padding: .5em .9em; border-radius: 8px; color: var(--navy-800); font-weight: 600; font-size: .96rem; }
.nav-link:hover { background: var(--bg-tint); color: var(--navy-700); }
.nav-link.active { color: var(--gold-dark); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; font-size: 1.3rem; padding: 2px 10px; cursor: pointer; color: var(--navy-800); }

/* ---------- hero (home) ---------- */
.hero { position: relative; color: #fff; background: linear-gradient(150deg, var(--navy-900), var(--navy-700) 70%); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(1100px 500px at 85% -10%, rgba(224, 138, 75, .30), transparent 60%),
  radial-gradient(700px 400px at 10% 120%, rgba(18, 134, 143, .55), transparent 60%); pointer-events: none; }
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 84px 0 92px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(224, 138, 75, .14); border: 1px solid rgba(224, 138, 75, .32); padding: .4em .9em; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.5rem); margin-bottom: .35em; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero__lead { font-size: 1.18rem; color: #d6dfeb; max-width: 34ch; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 30px; margin-top: 40px; }
.hero__stat strong { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--gold); }
.hero__stat span { font-size: .84rem; color: #b9c5d6; }
.hero__card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; padding: 12px; box-shadow: var(--shadow-lg); }
.hero__card img { border-radius: 12px; width: 100%; height: 340px; object-fit: cover; }
.hero__card-cap { display: flex; justify-content: space-between; align-items: center; padding: 12px 8px 4px; color: #e7edf5; font-size: .9rem; }
.hero__card-cap strong { color: #fff; font-family: var(--serif); }

/* ---------- section framing ---------- */
.section { padding: 78px 0; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--bg-tint); }
.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head .eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- hotel cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .25s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { position: relative; display: block; aspect-ratio: 16/11; 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__badge { position: absolute; top: 12px; left: 12px; background: rgba(11, 43, 48, .9); color: var(--gold); font-size: .74rem; font-weight: 700; padding: .35em .7em; border-radius: 999px; }
.card__rating { position: absolute; bottom: 12px; right: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; font-weight: 800; font-size: 1.02rem; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; box-shadow: var(--shadow-sm); font-family: var(--serif); }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.card__loc { font-size: .82rem; color: var(--muted); font-weight: 600; }
.card__title { font-size: 1.32rem; margin: 0 0 .4em; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--gold-dark); }
.card__desc { font-size: .96rem; color: var(--body); margin-bottom: 14px; flex: 1; }
.card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.card__cta { align-self: flex-start; }

/* ---------- feature / about / steps ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; object-fit: cover; max-height: 440px; width: 100%; }
.lead { font-size: 1.16rem; color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-dark); font-weight: 800; }
.step h3 { margin: 8px 0 .4em; font-size: 1.16rem; }
.step p { font-size: .94rem; margin: 0; color: var(--body); }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 22px; }
.stat strong { display: block; font-family: var(--serif); font-size: 2.6rem; color: var(--navy-700); }
.stat span { color: var(--muted); font-weight: 600; font-size: .92rem; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.value__ic { font-size: 1.7rem; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 12px; background: var(--gold-soft); margin-bottom: 14px; }
.value h3 { font-size: 1.2rem; }
.value p { font-size: .95rem; margin: 0; }

/* destinations strip */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dest { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest:hover img { transform: scale(1.08); }
.dest__cap { position: absolute; inset: auto 0 0 0; padding: 16px; background: linear-gradient(transparent, rgba(11, 43, 48, .88)); color: #fff; }
.dest__cap strong { font-family: var(--serif); font-size: 1.15rem; display: block; }
.dest__cap span { font-size: .8rem; color: #cdd8e6; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); color: #fff; border-radius: 20px; padding: 54px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfd9e6; max-width: 60ch; margin: 0 auto 24px; }

/* ---------- review page ---------- */
.rhero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; background: var(--navy-900); color: #fff; }
.rhero__media { position: relative; min-height: 420px; }
.rhero__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.rhero__badge { position: absolute; top: 18px; left: 18px; background: rgba(11, 43, 48, .92); color: var(--gold); font-weight: 700; padding: .45em .9em; border-radius: 999px; font-size: .82rem; }
.rhero__panel { padding: 54px 52px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); }
.rhero__crumbs { font-size: .82rem; color: #9fb0c6; margin-bottom: 14px; }
.rhero__crumbs a { color: #c9d5e5; }
.rhero__panel h1 { color: #fff; margin-bottom: .3em; }
.rhero__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; color: #cdd8e6; font-size: .92rem; }
.rhero__score { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.rhero__num { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); font-weight: 700; }
.rhero__count { font-size: .82rem; color: #9fb0c6; width: 100%; }
.rhero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }

.review-body { padding: 66px 0; }
.review-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; align-items: start; }
.review-article { max-width: 760px; }
.review-article h2 { margin-top: 1.6em; }
.review-article h3 { margin-top: 1.4em; color: var(--navy-700); }
.review-article p { font-size: 1.06rem; }
.review-article .dropcap::first-letter { font-family: var(--serif); font-size: 3.4rem; float: left; line-height: .8; padding: 6px 10px 0 0; color: var(--gold-dark); font-weight: 700; }
.review-article blockquote.pull { border-left: 4px solid var(--gold); background: var(--bg-alt); padding: 18px 24px; border-radius: 0 10px 10px 0; font-family: var(--serif); font-size: 1.28rem; color: var(--navy-800); font-style: italic; margin: 30px 0; }
.review-article .verdict { background: var(--navy-900); color: #eaf0f7; border-radius: var(--radius); padding: 30px 32px; margin: 40px 0 0; }
.review-article .verdict h2 { color: #fff; margin-top: 0; }
.review-article .verdict .score-row { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.review-article .verdict .score-row .big { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); font-weight: 800; }

.byline { display: flex; align-items: center; gap: 14px; padding: 16px 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.byline__avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; }
.byline__by { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.byline__name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy-800); }
.byline__role { display: block; font-size: .84rem; color: var(--muted); }

.review-aside { position: sticky; top: 90px; }
.aside-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.aside-box h3 { font-size: 1.05rem; margin-bottom: 12px; }
.amenity-list { list-style: none; margin: 0; padding: 0; }
.amenity-list li { position: relative; padding: 7px 0 7px 26px; font-size: .92rem; border-bottom: 1px dashed var(--line); }
.amenity-list li:last-child { border-bottom: 0; }
.amenity-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-dark); }

/* guest reviews */
.guest-reviews { background: var(--bg-alt); padding: 72px 0; }
.qr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.qr { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin: 0; }
.qr__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.qr__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; font-weight: 800; font-family: var(--serif); }
.qr__name { font-weight: 700; color: var(--ink); display: block; font-size: .96rem; }
.qr__date { font-size: .78rem; color: var(--muted); }
.qr__score { margin-left: auto; }
.qr__text { margin: 0; font-size: .98rem; color: var(--body); font-style: italic; }
.qr__text::before { content: "“"; color: var(--gold); font-family: var(--serif); font-size: 1.4rem; margin-right: 2px; }

/* reserve CTA on review page */
.reserve-cta { padding: 72px 0; }
.reserve__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.reserve__info { padding: 44px; }
.reserve__info h2 { margin-top: 0; }
.contact-list { list-style: none; padding: 0; margin: 22px 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .98rem; color: var(--ink); }
.contact-list li span { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 2px; }
.reserve__map { min-height: 360px; }
.map { position: relative; height: 100%; min-height: 360px; }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map__link { position: absolute; bottom: 12px; right: 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-sm); }

/* ---------- generic page header ---------- */
.page-hero { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff; padding: 66px 0 58px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd8e6; max-width: 62ch; font-size: 1.1rem; margin: 0; }
.page-hero .rhero__crumbs { margin-bottom: 14px; }
.page-body { padding: 62px 0; }
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; color: var(--navy-700); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: .5em; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--bg-alt); }
.callout { background: var(--gold-soft); border: 1px solid #f0c6a3; border-radius: var(--radius); padding: 20px 24px; margin: 26px 0; }
.callout strong { color: var(--navy-800); }

/* ---------- authors ---------- */
.authors-list { display: grid; gap: 30px; max-width: 900px; margin: 0 auto; }
.author-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); scroll-margin-top: 100px; }
.author-card.flash { animation: flash 1.6s ease; }
@keyframes flash { 0% { box-shadow: 0 0 0 3px var(--gold); } 100% { box-shadow: var(--shadow-sm); } }
.author-card__head { display: flex; gap: 18px; align-items: center; margin-bottom: 16px; }
.author-card__avatar { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-size: 1.9rem; font-weight: 700; flex: none; }
.author-card__head h2 { margin: 0; font-size: 1.5rem; }
.author-card__role { margin: 2px 0 0; color: var(--gold-dark); font-weight: 600; font-size: .92rem; }
.author-card__focus { margin: 2px 0 0; color: var(--muted); font-size: .86rem; }
.author-card__bio { font-size: 1.02rem; }
.author-card__articles { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 16px; }
.author-card__articles h3 { font-size: 1.05rem; }
.author-card__articles ul { list-style: none; padding: 0; margin: 0; }
.author-card__articles li { padding: 6px 0; }

/* ---------- forms / reserve / feedback ---------- */
.form-wrap { max-width: 960px; margin: 0 auto; }
.reserve-layout { display: grid; grid-template-columns: 1.4fr .9fr; gap: 34px; align-items: start; }
.res-form, .fb-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .92rem; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fdfefe; color: var(--ink); transition: border .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224, 138, 75, .2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { background: #fdecec; border: 1px solid #f3c2c2; color: #a12525; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .9rem; margin: 0 0 14px; }
.form-fineprint { font-size: .8rem; color: var(--muted); margin: 14px 0 0; }
.chosen-hotel { display: flex; gap: 14px; align-items: center; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 22px; }
.chosen-hotel img { width: 74px; height: 60px; object-fit: cover; border-radius: 8px; flex: none; }
.chosen-hotel__label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.chosen-hotel strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.reserve-side { background: var(--navy-900); color: #eaf0f7; border-radius: var(--radius); padding: 28px; }
.reserve-side h3 { color: #fff; }
.reserve-side__help { margin-top: 16px; font-size: .9rem; color: #b9c5d6; }
.tick-list, .contact-list.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li { position: relative; padding: 8px 0 8px 28px; font-size: .95rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.tick-list li:last-child { border-bottom: 0; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

.notice { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--ok); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.notice--success .notice__icon { background: var(--ok); }
.notice__icon { flex: none; width: 46px; height: 46px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: 1.4rem; font-weight: 800; }
.notice h2 { margin-top: 0; }
.summary { list-style: none; padding: 0; margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.summary li { display: flex; padding: 10px 14px; font-size: .95rem; border-bottom: 1px solid var(--line); }
.summary li:last-child { border-bottom: 0; }
.summary li span { width: 130px; color: var(--muted); font-weight: 600; }
.notice__foot { margin: 8px 0 0; font-size: .92rem; }
.fb-quote { border-left: 4px solid var(--gold); background: var(--bg-alt); padding: 14px 18px; border-radius: 0 8px 8px 0; font-style: italic; color: var(--navy-800); margin: 14px 0; }

/* modal popup */
.modal-overlay { position: fixed; inset: 0; background: rgba(11, 43, 48, .58); display: grid; place-items: center; z-index: 200; opacity: 0; transition: opacity .25s; padding: 20px; }
.modal-overlay.show { opacity: 1; }
.modal { background: #fff; border-radius: var(--radius); padding: 38px 34px; max-width: 420px; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(14px) scale(.98); transition: transform .25s; }
.modal-overlay.show .modal { transform: none; }
.modal__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--ok); color: #fff; font-size: 1.8rem; display: grid; place-items: center; margin: 0 auto 14px; }
.modal h3 { margin: 0 0 .4em; }
.modal p { color: var(--body); margin-bottom: 20px; }

/* faq / help */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; font-family: var(--serif); font-size: 1.1rem; padding: 14px 0; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 1.5rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 14px; margin: 0; }
.help-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 46px; }
.help-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.help-card .ic { font-size: 1.8rem; }
.help-card h3 { font-size: 1.14rem; margin: 10px 0 .3em; }
.help-card p { font-size: .93rem; margin: 0; }

/* ---------- reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #b9c5d6; padding: 62px 0 26px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand p { font-size: .92rem; max-width: 34ch; }
.brand--footer .brand__text strong, .brand--footer .brand__text em { color: #fff; }
.brand--footer .brand__text em { color: var(--gold); }
.footer-contact { color: #8895a8; font-size: .84rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #b9c5d6; font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-disclaimer { padding: 22px 0; font-size: .82rem; color: #8895a8; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-disclaimer a { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .84rem; color: #8895a8; }
.footer-bottom__links a { color: #b9c5d6; margin-left: 16px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__in, .about-grid, .rhero, .reserve__grid, .reserve-layout, .review-layout { grid-template-columns: 1fr; }
  .card-grid, .values, .steps, .stat-band, .dest-grid, .help-cards { grid-template-columns: repeat(2, 1fr); }
  .qr-grid { grid-template-columns: 1fr; }
  .review-aside { position: static; }
  .rhero__media, .rhero__media img { min-height: 300px; }
  .hero__card img { height: 260px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height .3s; }
  .site-nav.open { max-height: 400px; }
  .site-nav ul { flex-direction: column; padding: 10px 22px; gap: 0; }
  .nav-link { display: block; padding: .8em 0; border-bottom: 1px solid var(--line); }
  .card-grid, .values, .steps, .stat-band, .dest-grid, .help-cards, .field-row { grid-template-columns: 1fr; }
  .topbar__in span:first-child { display: none; }
  .hero__stats { flex-wrap: wrap; gap: 18px; }
  .rhero__panel, .reserve__info { padding: 32px 24px; }
  .cta-band { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
/* ============================================================
   Cookie consent banner (added for Google EU consent policy)
   ============================================================ */
.consent{position:fixed;left:0;right:0;bottom:0;z-index:2000;background:var(--navy-900);color:#eaf0f8;
  box-shadow:0 -18px 50px rgba(8,18,34,.45);border-top:3px solid var(--gold);animation:consent-up .3s ease both;}
@keyframes consent-up{from{transform:translateY(100%);}to{transform:translateY(0);}}
.consent__in{max-width:var(--wrap);margin:0 auto;padding:18px 22px;display:flex;gap:24px;align-items:center;flex-wrap:wrap;}
.consent__body{flex:1 1 460px;min-width:280px;}
.consent__body h4{font-family:var(--serif);font-size:1.15rem;margin:0 0 6px;color:#fff;}
.consent__body p{margin:0 0 10px;font-size:.9rem;line-height:1.55;color:#c4d0e0;}
.consent__body a{color:var(--gold-soft);text-decoration:underline;}
.consent__opts{display:flex;gap:8px 22px;flex-wrap:wrap;}
.consent__opt{display:flex;align-items:center;gap:8px;font-size:.86rem;color:#dbe4f0;cursor:pointer;}
.consent__opt span{color:var(--muted);}
.consent__opt input{width:16px;height:16px;accent-color:var(--gold);}
.consent__actions{display:flex;gap:10px;flex:0 0 auto;flex-wrap:wrap;}
.consent__actions .btn{padding:.6rem 1.05rem;font-size:.86rem;white-space:nowrap;}
@media (max-width:640px){.consent__actions{width:100%;}.consent__actions .btn{flex:1 1 auto;text-align:center;}}
/* small button variant (used on Your Privacy Choices page) */
.btn--sm{padding:.32rem .7rem;font-size:.82rem;}
