/* Voyalis — "Coastal Editorial" design system.
   Fraunces (expressive serif display) + Hanken Grotesk (body), self-hosted.
   Ocean-teal workhorse + sunset-coral accent over warm ivory/sand neutrals.
   Airy magazine layout, soft warm shadows, subtle grain. Light theme by design. */

/* ---------- fonts (self-hosted variable woff2) ---------- */
@font-face {
  font-family: "Fraunces"; font-style: normal; font-display: swap; font-weight: 300 700;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Fraunces"; font-style: normal; font-display: swap; font-weight: 300 700;
  src: url("fonts/fraunces-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-display: swap; font-weight: 300 700;
  src: url("fonts/hanken-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-display: swap; font-weight: 300 700;
  src: url("fonts/hanken-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root {
  /* neutrals — warm ivory / sand */
  --paper: #faf7f0;
  --paper-2: #f2ece0;
  --surface: #eae2d2;
  --ink: #0f201d;
  --text: #1a2b26;
  --text-2: #3d4f49;
  --muted: #6c7c74;
  --dim: #9aa79e;
  --line: #e8dfcd;
  --line-2: #d8ccb3;

  /* brand: ocean-teal + sunset-coral pop */
  --accent: #0f6d63;
  --accent-hover: #0b564d;
  --accent-deep: #063d36;
  --accent-soft: #dfeeeb;
  --pop: #e8734a;
  --pop-soft: #f9e4da;

  /* category hues */
  --coast: #14807a;
  --city: #5a6b7c;
  --alpine: #4d7a58;
  --boutique: #b45f38;
  --wellness: #7d6aa6;
  --nature: #6f8043;

  --r-xs: 8px; --r-sm: 12px; --r-md: 18px; --r-lg: 26px; --r-xl: 34px; --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(28,43,38,.05), 0 2px 6px rgba(28,43,38,.05);
  --sh-2: 0 3px 8px rgba(15,64,58,.06), 0 14px 30px rgba(15,64,58,.10);
  --sh-3: 0 6px 16px rgba(15,64,58,.08), 0 30px 60px rgba(15,64,58,.16);
  --sh-pop: 0 12px 34px rgba(15,32,29,.18);

  --display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0; overflow-x: clip;
  background: var(--paper); color: var(--text-2);
  font-family: var(--font); font-size: 17px; line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display); color: var(--text);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.015em;
  margin: 0 0 .5em; text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 1.7rem + 3.9vw, 4.5rem); font-weight: 400; letter-spacing: -0.025em; line-height: 1.0; font-optical-sizing: auto; }
h2 { font-size: clamp(1.9rem, 1.35rem + 2.3vw, 3rem); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; font-weight: 500; letter-spacing: -0.01em; }
h4 { font-size: 1.06rem; font-weight: 600; }
.serif-i { font-style: italic; }
h1 em, h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
p { margin: 0 0 1rem; text-wrap: pretty; }
a { color: var(--accent-hover); text-decoration: none; }
a:hover { color: var(--accent-deep); }
img, video { max-width: 100%; height: auto; display: block; }
strong { color: var(--text); font-weight: 600; }
small { font-size: .82em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-xs) 0; z-index: 200; font-weight: 600; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- icons ---------- */
.ico { width: 1.25em; height: 1.25em; display: inline-block; vertical-align: -0.2em; flex: none; color: inherit; }
.ico-sm { width: 1em; height: 1em; }
.ico-lg { width: 1.5em; height: 1.5em; }

/* hue tokens */
.hue-coast { --h: var(--coast); } .hue-city { --h: var(--city); }
.hue-alpine { --h: var(--alpine); } .hue-boutique { --h: var(--boutique); }
.hue-wellness { --h: var(--wellness); } .hue-nature { --h: var(--nature); }
.hue-accent { --h: var(--accent); } .hue-pop { --h: var(--pop); }

/* ---------- eyebrow / lead ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap; row-gap: 4px; font-family: var(--font);
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; max-width: 100%;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--pop); }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.08rem, 1rem + .5vw, 1.32rem); color: var(--muted); line-height: 1.55; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15px; font-weight: 600; line-height: 1;
  padding: 15px 24px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: background .18s, box-shadow .18s, transform .1s, border-color .18s, color .18s;
  text-decoration: none; white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(15,109,99,.28); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: 0 8px 24px rgba(15,109,99,.36); }
.btn-pop { background: var(--pop); color: #fff; box-shadow: 0 6px 18px rgba(232,115,74,.32); }
.btn-pop:hover { background: #d95f36; color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--paper-2); border-color: var(--accent); color: var(--accent-hover); }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.34); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,247,240,.82); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 34px; height: 34px; flex: none; color: var(--accent); }
.brand-word { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--display); font-weight: 500; font-size: 1.34rem; letter-spacing: -.02em; color: var(--ink); }
.brand-word small { font-family: var(--font); font-weight: 600; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav ul a { color: var(--text-2); font-weight: 500; font-size: 15px; padding: 8px 13px; border-radius: var(--r-xs); transition: background .15s, color .15s; }
.site-nav ul a:hover { background: var(--paper-2); color: var(--text); }
.site-nav a[aria-current="page"] { color: var(--accent-hover); background: var(--accent-soft); }
.nav-cta { padding: 11px 20px; }
.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; align-items: center; justify-content: center; color: var(--text); }
.nav-toggle .ico { width: 26px; height: 26px; }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 + .lead { margin-top: 16px; }
.section-alt { background: var(--paper-2); }
.section-tight { padding: 60px 0; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 90px 0 76px; background: var(--paper-2); isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -25% -10% auto -10%; height: 145%; z-index: -2;
  background:
    radial-gradient(48% 55% at 82% 6%, rgba(15,109,99,.22), transparent 60%),
    radial-gradient(42% 48% at 8% 92%, rgba(232,115,74,.16), transparent 62%),
    radial-gradient(40% 46% at 96% 96%, rgba(20,128,122,.14), transparent 64%);
  filter: saturate(112%);
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--grain); background-size: 160px; opacity: .04; mix-blend-mode: multiply; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero p.lead { margin-bottom: 32px; max-width: 34ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line-2); }
.hero-stats .num { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--text); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.hero-stats .lbl { font-size: 13px; color: var(--muted); margin-top: 3px; }
.hero-media { position: relative; }
.hero-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-3); }
.hero-media::before { content: ""; position: absolute; inset: -16px auto auto -16px; width: 64%; height: 64%; z-index: -1; background: var(--accent); border-radius: var(--r-xl); opacity: .1; }
.float-badge {
  position: absolute; display: inline-flex; align-items: center; gap: 9px; background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--sh-2); border-radius: var(--r-pill);
  padding: 10px 17px; font-size: 13.5px; font-weight: 600; color: var(--text);
}
.float-badge .ico { color: var(--h, var(--accent)); }
.float-badge.fb-1 { top: 9%; right: -16px; }
.float-badge.fb-2 { bottom: 11%; left: -18px; }

/* ---------- media helpers ---------- */
.cover { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--r-md); display: block; background: var(--surface); }
.about-hero { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 28px; background: var(--surface); box-shadow: var(--sh-2); }

/* ---------- grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-1); transition: border-color .2s, transform .2s, box-shadow .2s; }
a.card { color: inherit; }
a.card:hover { color: inherit; transform: translateY(-5px); box-shadow: var(--sh-2); border-color: transparent; }
.card h3 { margin-bottom: 6px; }
.card p { font-size: 15px; color: var(--muted); margin-bottom: 0; }

.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--h, var(--accent-hover)); background: color-mix(in srgb, var(--h, var(--accent)) 12%, #fff); padding: 5px 11px; border-radius: var(--r-pill); }

/* feature card */
.feature { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-1); transition: transform .2s, box-shadow .2s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.icon-chip { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; color: var(--h, var(--accent)); background: color-mix(in srgb, var(--h, var(--accent)) 13%, #fff); }
.icon-chip .ico { width: 27px; height: 27px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 7px; }
.feature p { font-size: 15px; color: var(--muted); margin: 0; }

/* category card */
.cat-card { position: relative; overflow: hidden; padding: 0; display: block; }
.cat-card .cat-body { padding: 22px 24px 26px; }
.cat-card .cover { border-radius: 0; aspect-ratio: 5/3; }
.cat-ico { position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--h, var(--accent)); box-shadow: 0 6px 16px color-mix(in srgb, var(--h, var(--accent)) 45%, transparent); }
.cat-ico .ico { width: 23px; height: 23px; }
.cat-card h3 { margin-bottom: 5px; }
.cat-card .count { font-size: 13px; color: var(--dim); font-weight: 600; }

/* stay card */
a.stay-card { color: inherit; overflow: hidden; padding: 0; display: flex; flex-direction: column; }
a.stay-card:hover { color: inherit; }
.stay-card .cover-wrap { position: relative; overflow: hidden; }
.stay-card .cover { border-radius: 0; aspect-ratio: 3/2; transition: transform .4s ease; }
a.stay-card:hover .cover { transform: scale(1.05); }
.stay-card .rating-pill { position: absolute; top: 13px; right: 13px; display: inline-flex; align-items: center; gap: 5px; background: rgba(15,32,29,.82); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 11px; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.stay-card .rating-pill .ico { width: 14px; height: 14px; color: #ffd27a; }
.stay-card .cat-tag { position: absolute; left: 13px; bottom: 13px; }
.stay-card .sc-body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.stay-card .sc-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.stay-card .sc-loc .ico { width: 14px; height: 14px; color: var(--h, var(--accent)); }
.stay-card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.stay-card p { font-size: 14.5px; flex: 1; }
.stay-card .sc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.price { color: var(--text); font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.price .off { color: var(--dim); font-weight: 500; }
.stay-card .more { display: inline-flex; align-items: center; gap: 5px; color: var(--accent-hover); font-weight: 700; font-size: 13.5px; }
.stay-card:hover .more .ico { transform: translateX(3px); }
.more .ico { transition: transform .18s; }

/* steps */
.steps { counter-reset: step; gap: 26px; }
.step { position: relative; padding-left: 70px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -4px; width: 52px; height: 52px; border-radius: 15px; background: var(--accent-soft); color: var(--accent-hover); font-family: var(--display); font-weight: 500; font-size: 1.2rem; display: grid; place-items: center; }
.step h3 { margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* stat band */
.stat-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 52px 40px; isolation: isolate; }
.stat-band::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(60% 140% at 10% 0%, rgba(15,109,99,.6), transparent 55%), radial-gradient(50% 120% at 96% 100%, rgba(232,115,74,.34), transparent 60%); }
.stat-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--grain); background-size: 160px; opacity: .07; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat { position: relative; }
.stat .n { font-family: var(--display); font-size: clamp(2.4rem, 4.8vw, 3.4rem); font-weight: 400; font-variant-numeric: tabular-nums; letter-spacing: -.02em; line-height: 1; }
.stat .l { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 10px; }
.stat + .stat::before { content: ""; position: absolute; left: -13px; top: 8%; height: 84%; width: 1px; background: rgba(255,255,255,.12); }
.stat-foot { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.stat-foot span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.82); }
.stat-foot .ico { width: 16px; height: 16px; color: var(--pop); }
.unit { font-size: .62em; margin-left: 1px; color: var(--pop); vertical-align: baseline; }
.hero-stats .unit { color: var(--accent); }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--text-2); background: var(--paper); border: 1.5px solid var(--line-2); border-radius: var(--r-pill); padding: 10px 18px; cursor: pointer; transition: .16s; }
.chip-btn .ico { width: 16px; height: 16px; color: var(--muted); }
.chip-btn:hover { border-color: var(--accent); color: var(--accent-hover); }
.chip-btn:hover .ico { color: var(--accent); }
.chip-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 5px 14px rgba(15,109,99,.26); }
.chip-btn.active .ico { color: #fff; }

/* ---------- page header band ---------- */
.page-head { position: relative; background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 58px 0; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(58% 130% at 92% -10%, rgba(15,109,99,.12), transparent 60%); }
.page-head > .wrap { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem); }
.page-head .lead { margin-top: 12px; max-width: 62ch; }
.breadcrumb { font-size: 13px; color: var(--dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-hover); }

/* ---------- prose / article ---------- */
.prose { max-width: 720px; font-size: 17.5px; }
.prose > p:first-of-type { font-size: 1.16em; color: var(--text-2); }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--accent); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 13px 15px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--paper-2); font-weight: 600; color: var(--text); }
.article-lead { font-size: 1.2rem; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.article-cover { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--r-lg); margin: 14px 0 34px; box-shadow: var(--sh-2); }
.article-meta { display: inline-flex; align-items: center; gap: 8px; color: var(--dim); font-size: 14px; margin-bottom: 10px; }
.article-meta .ico { width: 16px; height: 16px; }
.updated { color: var(--dim); font-size: 14px; }

/* callout */
.callout { display: flex; gap: 15px; background: var(--accent-soft); border-radius: var(--r-md); padding: 20px 22px; margin: 26px 0; font-size: 15.5px; color: var(--text-2); }
.callout::before { content: ""; flex: none; width: 4px; border-radius: 4px; background: var(--accent); }
.callout strong { color: var(--accent-deep); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 64px 44px; text-align: center; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(50% 120% at 18% 0%, rgba(15,109,99,.55), transparent 60%), radial-gradient(48% 110% at 88% 100%, rgba(232,115,74,.42), transparent 60%); }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--grain); background-size: 160px; opacity: .07; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 560px; margin: 0 auto 28px; }

/* ---------- stay detail ---------- */
.detail-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.detail-hero .cover { aspect-ratio: 4/3; box-shadow: var(--sh-3); border-radius: var(--r-lg); }
.detail-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 20px; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: var(--r-pill); background: var(--paper-2); color: var(--text-2); }
.pill .ico { width: 15px; height: 15px; color: var(--muted); }
.pill.accent { background: var(--accent-soft); color: var(--accent-hover); }
.pill.accent .ico { color: var(--accent); }
.pill.score { background: var(--ink); color: #fff; }
.pill.score .ico { color: #ffd27a; }
.spec-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 6px; }
.spec { flex: 1 1 140px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 16px; }
.spec .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); font-weight: 700; }
.spec .v { color: var(--text); font-weight: 600; margin-top: 3px; font-size: 15px; }
.highlight-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.highlight-list li { padding-left: 34px; position: relative; color: var(--text-2); }
.highlight-list li .ico { position: absolute; left: 0; top: 3px; width: 21px; height: 21px; color: var(--accent); }
.watch-note { display: flex; gap: 12px; align-items: flex-start; background: var(--pop-soft); border-radius: var(--r-md); padding: 16px 18px; margin-top: 22px; font-size: 15px; color: var(--text-2); }
.watch-note .ico { flex: none; width: 20px; height: 20px; color: var(--pop); margin-top: 2px; }

/* score circle */
.score-badge { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 84px; height: 84px; border-radius: 50%; background: var(--accent); color: #fff; box-shadow: var(--sh-2); flex: none; }
.score-badge .s { font-family: var(--display); font-size: 1.7rem; font-weight: 500; line-height: 1; }
.score-badge .o { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-top: 2px; }
.verdict { display: flex; gap: 20px; align-items: center; background: var(--paper-2); border-radius: var(--r-lg); padding: 24px 26px; margin: 6px 0 4px; }
.verdict .vt { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); font-weight: 700; }
.verdict h3 { margin: 4px 0 0; font-size: 1.3rem; }

/* ---------- journal / guide cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .pc-cover { overflow: hidden; }
.post-card .cover { border-radius: 0; aspect-ratio: 16/10; transition: transform .4s ease; }
.post-card:hover .cover { transform: scale(1.05); }
.post-card .pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .pc-meta { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--dim); margin-bottom: 11px; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.post-card .pc-meta .ico { width: 15px; height: 15px; }
.post-card h3 { font-size: 1.28rem; }
.post-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.post-card .more { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-hover); font-weight: 700; font-size: 14px; margin-top: 14px; }
.post-card:hover .more .ico { transform: translateX(3px); }
.post-card .more .ico { transition: transform .18s; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; font-family: var(--display); font-size: 1.2rem; font-weight: 500; letter-spacing: -.01em; color: var(--text); padding: 24px 48px 24px 0; cursor: pointer; position: relative; }
.faq-q .fq-ico { position: absolute; right: 6px; top: 50%; width: 20px; height: 20px; margin-top: -10px; color: var(--accent); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .fq-ico { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 40px 24px 0; margin: 0; color: var(--muted); max-width: 72ch; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { position: relative; }
.review .q-ico { width: 26px; height: 26px; color: var(--h, var(--accent)); opacity: .5; margin-bottom: 10px; }
.review .stars { display: inline-flex; gap: 2px; color: #e0a63b; margin-bottom: 12px; }
.review .stars .ico { width: 17px; height: 17px; }
.review p { font-size: 15px; color: var(--text-2); }
.review .who { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--dim); margin-top: 16px; }
.review .who .av { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 500; font-size: 15px; color: #fff; background: var(--h, var(--accent)); }
.review .who strong { color: var(--text); display: block; font-size: 14px; }

/* ---------- forms ---------- */
.form { max-width: 580px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.field input, .field textarea { width: 100%; font-family: inherit; font-size: 16px; color: var(--text); background: var(--paper); border: 1.5px solid var(--line-2); border-radius: var(--r-sm); padding: 14px 16px; transition: box-shadow .12s, border-color .12s, background .12s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); background: #fff; }
.field textarea { min-height: 150px; resize: vertical; }
.field .err { color: var(--pop); font-size: 13px; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--pop); box-shadow: 0 0 0 4px var(--pop-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 13px; color: var(--dim); }
.alert { display: flex; gap: 10px; align-items: flex-start; border-radius: var(--r-sm); padding: 14px 18px; margin-bottom: 22px; font-size: 15px; }
.alert .ico { margin-top: 1px; }
.alert-ok { background: #e2f3ec; color: #0a6b4f; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list .li-ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-hover); }
.info-list .li-ico .ico { width: 20px; height: 20px; }
.info-list .k { font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.info-list .v { color: var(--text); font-weight: 500; }
.newsletter { background: var(--paper-2); border-radius: var(--r-lg); padding: 28px; }
.newsletter form { display: flex; gap: 10px; margin-top: 14px; }
.newsletter input { flex: 1; }

/* ---------- cookie banner ---------- */
.cookie-banner { position: fixed; left: max(16px, env(safe-area-inset-left)); right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 300; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-md); box-shadow: var(--sh-pop); }
.cookie-inner { display: flex; align-items: center; gap: 22px; padding: 18px 22px; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.cookie-text { flex: 1 1 320px; display: flex; gap: 14px; }
.cookie-text .ck-ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; }
.cookie-text strong { color: var(--text); }
.cookie-text p { font-size: 14px; color: var(--muted); margin: 4px 0 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: 14px; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(15,32,29,.55); backdrop-filter: blur(3px); z-index: 400; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-backdrop.open { display: flex; }
.modal { background: var(--paper); border-radius: var(--r-lg); max-width: 480px; width: 100%; padding: 30px; box-shadow: var(--sh-pop); }
.modal h3 { margin-bottom: 6px; }
.toggle-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.toggle-row p { font-size: 14px; color: var(--muted); margin: 4px 0 0; }
.switch { position: relative; flex: 0 0 46px; width: 46px; height: 27px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line-2); border-radius: var(--r-pill); transition: .16s; }
.switch .track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 21px; height: 21px; background: #fff; border-radius: 50%; transition: .16s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(19px); }
.switch input:disabled + .track { opacity: .5; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; }

/* ---------- footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--ink); color: rgba(255,255,255,.7); border-top: 3px solid var(--accent); margin-top: 84px; padding: 68px 0 34px; font-size: 15px; isolation: isolate; }
.site-footer::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(48% 80% at 100% 0%, rgba(15,109,99,.3), transparent 60%); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.5fr; gap: 38px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { color: var(--pop); }
.footer-brand .brand-word b { color: #fff; }
.footer-brand .brand-word small { color: rgba(255,255,255,.5); }
.footer-about { color: rgba(255,255,255,.6); font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.footer-col h3 { font-family: var(--font); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: #fff; }
.site-footer address { font-style: normal; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.9; }
.site-footer address strong { color: #fff; }
.site-footer address a { color: rgba(255,255,255,.8); }
.site-footer address a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom p { margin: 0; }
.muted { color: var(--dim); }

/* ---------- reveal (only hidden when JS is active, so no-JS never blanks) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .contact-grid, .detail-hero { grid-template-columns: 1fr; }
  .hero p.lead { max-width: none; }
  .hero-media { order: -1; max-width: 440px; margin-inline: auto; }
  .detail-hero .cover { aspect-ratio: 16/10; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  section { padding: 62px 0; }
  .nav-toggle { display: flex; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 24px; box-shadow: var(--sh-pop); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .18s; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav ul a { display: block; padding: 14px; font-size: 16px; border-radius: var(--r-sm); }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--accent); }
  .nav-cta { margin-top: 14px; justify-content: center; }
  .post-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .post-grid, .review-grid, .footer-grid, .stat-grid { grid-template-columns: 1fr; }
  .stat-grid { gap: 30px; }
  .stat + .stat::before { display: none; }
  .stat-foot { gap: 12px 18px; }
  .cta-band, .stat-band { padding: 40px 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .float-badge { display: none; }
  .verdict { flex-direction: column; align-items: flex-start; gap: 14px; }
  .newsletter form { flex-direction: column; }
}
@media (max-width: 440px) {
  .wrap { padding: 0 18px; }
  .page-head { padding: 42px 0; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
}
