/* ============ Bagażownia Nowy Świat — styles ============ */
:root {
  --bg: #f6f3ec;
  --surface: #fffdf8;
  --surface-2: #efe9dc;
  --ink: #2a2420;
  --ink-soft: #6f655c;
  --line: #e6dfcf;
  --brand: #21433d;          /* deep evergreen */
  --brand-soft: #2f5a52;
  --accent: #d56a40;         /* terracotta — tweakable */
  --accent-ink: #fffaf6;
  --accent-soft: #f6e1d4;    /* derived tint */
  --shadow-sm: 0 1px 2px rgba(42,36,32,.06), 0 2px 6px rgba(42,36,32,.05);
  --shadow-md: 0 10px 30px -12px rgba(42,36,32,.22), 0 4px 12px rgba(42,36,32,.06);
  --shadow-lg: 0 30px 70px -28px rgba(33,67,61,.40), 0 8px 22px rgba(42,36,32,.08);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --maxw: 1180px;
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* Tweak: alternate font pairing */
:root[data-fontpair="classic"] {
  --font-display: "Spectral", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}
:root[data-radius="sharp"] {
  --r-sm: 4px; --r-md: 6px; --r-lg: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.section { padding-block: clamp(56px, 9vw, 110px); }
.eyebrow {
  font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 15px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-soft); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 1.06rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 22px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .mark { width: 38px; height: 34px; flex: none; position: relative; }
.brand .mark .case { position: absolute; inset: 6px 0 0; background: var(--brand); border-radius: 7px; }
.brand .mark .case::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 9px; height: 60%; background: var(--accent); border-radius: 3px; }
.brand .mark .handle { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 18px; height: 11px; border: 3px solid var(--brand); border-bottom: none; border-radius: 7px 7px 0 0; }
.brand small { display: block; font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-body); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { padding: 9px 14px; border-radius: var(--r-pill); font-weight: 600; font-size: .96rem; color: var(--ink-soft); transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* lang dropdown */
.lang-select { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 7px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 11px; font-weight: 700; font-size: .9rem; color: var(--ink); transition: border-color .18s, background .18s; }
.lang-btn:hover { border-color: var(--ink-soft); background: var(--surface); }
.lang-btn .ic { width: 16px; height: 16px; color: var(--accent); }
.lang-btn .code { letter-spacing: .03em; }
.lang-btn .chev { width: 15px; height: 15px; fill: none; stroke: var(--ink-soft); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.lang-select.open .lang-btn .chev { transform: rotate(180deg); }
.lang-select.open .lang-btn { border-color: var(--accent); background: var(--surface); }
.lang-menu { list-style: none; margin: 0; padding: 6px; position: absolute; top: calc(100% + 8px); right: 0; min-width: 184px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg); display: none; z-index: 60; max-height: 320px; overflow-y: auto; }
.lang-select.open .lang-menu { display: block; animation: fadein .18s ease; }
.lang-menu li button { width: 100%; display: flex; align-items: center; gap: 11px; padding: 10px 12px; border: none; background: transparent; border-radius: 10px; font-family: inherit; font-weight: 600; font-size: .96rem; color: var(--ink); text-align: left; cursor: pointer; transition: background .15s; }
.lang-menu li button:hover { background: var(--surface-2); }
.lang-menu li button .lc { font-size: .72rem; font-weight: 800; letter-spacing: .04em; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 2px 7px; min-width: 30px; text-align: center; }
.lang-menu li button:hover .lc { background: var(--surface); }
.lang-menu li button.active { color: var(--accent); }
.lang-menu li button.active .lc { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.lang-menu li button .nm { flex: 1; }
.lang-menu li button .tick { width: 16px; height: 16px; color: var(--accent); opacity: 0; }
.lang-menu li button.active .tick { opacity: 1; }

.menu-btn { display: none; border: 1px solid var(--line); background: var(--surface); width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.menu-btn span::before { position: absolute; top: -6px; } .menu-btn span::after { position: absolute; top: 6px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 88% 6%, var(--accent-soft) 0%, transparent 55%),
    radial-gradient(50% 60% at 6% 96%, color-mix(in srgb, var(--brand) 14%, transparent) 0%, transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px); align-items: center; padding-block: clamp(40px, 6vw, 78px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 16px 8px 10px;
  font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #2fae6a; box-shadow: 0 0 0 4px color-mix(in srgb, #2fae6a 22%, transparent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
.hero h1 .hl { color: var(--accent); }
.hero .lede { margin-top: 22px; font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 30ch; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fact { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 16px; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-sm); }
.fact .ic { width: 18px; height: 18px; flex: none; color: var(--accent); }

/* reservation card */
.res-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 30px); }
.res-card h3 { font-size: 1.4rem; }
.res-card .sub { color: var(--ink-soft); margin-top: 6px; font-size: .96rem; }
.res-form { margin-top: 20px; display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .86rem; letter-spacing: .01em; }
.field input, .field select { font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 14px; transition: border-color .18s, background .18s; }
.field input:focus, .field select:focus { background: var(--surface); border-color: var(--accent); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stepper { display: flex; align-items: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.stepper button { border: none; background: transparent; width: 50px; height: 50px; font-size: 1.4rem; font-weight: 700; color: var(--brand); }
.stepper button:hover { background: var(--accent-soft); color: var(--accent); }
.stepper input { flex: 1; text-align: center; border: none; background: transparent; font-size: 1.1rem; font-weight: 700; min-width: 0; }
.res-summary { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 4px; padding: 14px 16px; background: var(--brand); color: #f4efe6; border-radius: var(--r-md); }
.res-summary .lbl { font-size: .82rem; opacity: .85; font-weight: 600; }
.res-summary .price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.res-summary .price small { font-size: .8rem; opacity: .7; font-weight: 600; }
.res-note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: 2px; }
.res-success { display: none; text-align: center; padding: 14px 6px 4px; }
.res-success.show { display: block; animation: fadein .4s ease; }
.res-success .check { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } }

/* ---------- checkout (multi-step reservation) ---------- */
.res-steps { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.res-steps .rs { display: flex; align-items: center; gap: 8px; flex: 1; }
.res-steps .rs .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-soft); display: grid; place-items: center; font-weight: 800; font-size: .82rem; flex: none; transition: .2s; }
.res-steps .rs .nm { font-size: .8rem; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.res-steps .rs .bar { height: 2px; background: var(--line); border-radius: 2px; flex: 1; min-width: 8px; }
.res-steps .rs:last-child { flex: none; }
.res-steps .rs.active .dot { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.res-steps .rs.active .nm { color: var(--ink); }
.res-steps .rs.done .dot { background: var(--brand); border-color: var(--brand); color: #f4efe6; }

.rstep { display: none; }
.rstep.active { display: block; animation: fadein .35s ease; }

/* segmented size selector */
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg .opt { display: block; text-align: center; border: 1px solid var(--line); background: var(--surface-2); border-radius: var(--r-sm); padding: 11px 6px; cursor: pointer; transition: .15s; }
.seg .opt b { display: block; font-family: var(--font-display); font-size: .98rem; }
.seg .opt small { display: block; font-size: .76rem; color: var(--ink-soft); margin-top: 2px; }
.seg input:checked + .opt { border-color: var(--accent); background: var(--accent-soft); }
.seg input:focus-visible + .opt { outline: 3px solid var(--accent); outline-offset: 2px; }

/* bag-type rows (per-type quantity) */
.bagtypes { display: grid; gap: 10px; }
.bagtype { display: flex; align-items: center; gap: 13px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 10px 12px; transition: border-color .18s, background .18s; }
.bagtype.has { border-color: var(--accent); background: var(--accent-soft); }
.bagtype image-slot { width: 60px; height: 60px; flex: none; box-shadow: var(--shadow-sm); }
.bagtype .bt-info { flex: 1; min-width: 0; }
.bagtype .bt-info b { font-family: var(--font-display); font-size: 1rem; line-height: 1.1; display: block; }
.bagtype .bt-info small { color: var(--ink-soft); font-size: .8rem; display: block; line-height: 1.25; margin-top: 1px; }
.bagtype .bt-price { color: var(--accent); font-weight: 800; font-size: .82rem; margin-top: 3px; display: block; }
.qty { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); flex: none; }
.qty button { width: 34px; height: 34px; border: none; background: transparent; font-size: 1.15rem; font-weight: 800; line-height: 1; color: var(--brand); border-radius: 50%; transition: .15s; }
.qty button:hover { background: var(--accent-soft); color: var(--accent); }
.qty input { width: 28px; text-align: center; border: none; background: transparent; font-weight: 800; font-size: 1rem; color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* recap rows */
.recap { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 6px 16px; margin-bottom: 16px; }
.recap-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; font-size: .92rem; }
.recap-row + .recap-row { border-top: 1px solid var(--line); }
.recap-row .k { color: var(--ink-soft); font-weight: 600; }
.recap-row .v { font-weight: 700; text-align: right; }
.recap-row.total .v { font-family: var(--font-display); font-size: 1.15rem; color: var(--accent); }

/* payment methods */
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 4px; }
.pay-methods label { position: relative; }
.pay-methods input { position: absolute; opacity: 0; pointer-events: none; }
.pay-methods .opt { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; border: 1px solid var(--line); background: var(--surface-2); border-radius: var(--r-sm); padding: 12px 6px; cursor: pointer; font-weight: 700; font-size: .86rem; transition: .15s; }
.pay-methods .opt .ic { width: 22px; height: 22px; color: var(--ink-soft); }
.pay-methods input:checked + .opt { border-color: var(--accent); background: var(--accent-soft); }
.pay-methods input:checked + .opt .ic { color: var(--accent); }
.pay-methods input:focus-visible + .opt { outline: 3px solid var(--accent); outline-offset: 2px; }

.pay-fields { margin-top: 14px; display: none; }
.pay-fields.show { display: grid; gap: 12px; animation: fadein .3s ease; }
.pay-hint { font-size: .85rem; color: var(--ink-soft); background: var(--surface-2); border: 1px dashed var(--line); border-radius: var(--r-sm); padding: 12px 14px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .78rem; color: var(--ink-soft); margin-top: 12px; }
.secure-note .ic { width: 15px; height: 15px; color: var(--brand-soft); }
.demo-tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: var(--r-pill); margin-left: 6px; vertical-align: middle; }

.link-back { background: none; border: none; color: var(--ink-soft); font-weight: 700; font-size: .9rem; padding: 12px; width: 100%; text-decoration: underline; text-underline-offset: 3px; }
.link-back:hover { color: var(--ink); }

/* processing spinner */
.processing { display: none; text-align: center; padding: 30px 6px; }
.processing.show { display: block; }
.spinner { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; border: 4px solid var(--accent-soft); border-top-color: var(--accent); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* confirmation */
.conf-codes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.conf-code { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; text-align: center; }
.conf-code .k { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.conf-code .v { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin-top: 4px; letter-spacing: .02em; }
.conf-actions { display: grid; gap: 10px; margin-top: 18px; }

/* ---------- trust strip ---------- */
.trust { background: var(--brand); color: #ece6da; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 34px; }
.trust-item { display: flex; gap: 13px; align-items: flex-start; }
.trust-item .ic { width: 26px; height: 26px; flex: none; color: var(--accent); margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.trust-item span { font-size: .9rem; opacity: .78; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; position: relative; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .25s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num { counter-increment: step; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; }
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* ---------- pricing ---------- */
.price-section { background: var(--surface-2); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::after { content: attr(data-tag); position: absolute; top: -13px; right: 24px; background: var(--accent); color: var(--accent-ink); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--r-pill); }
.price-card .sz { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 18px; }
.price-card h3 { font-size: 1.3rem; }
.price-card .desc { color: var(--ink-soft); font-size: .92rem; margin-top: 6px; min-height: 2.6em; }
.price-card .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; margin-top: 18px; color: var(--ink); }
.price-card .amt small { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.price-card li .ic { width: 18px; height: 18px; flex: none; color: var(--accent); margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ---------- partner perk band ---------- */
.perk-band { background: var(--bg); }
.perk-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 4vw, 44px); background: var(--surface); border: 1px solid var(--accent); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.perk-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 0% 0%, var(--accent-soft) 0%, transparent 55%); pointer-events: none; }
.perk-badge { position: relative; width: 116px; height: 116px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; text-align: center; line-height: .95; box-shadow: var(--shadow-md); flex: none; }
.perk-badge b { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; display: block; }
.perk-badge small { font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.perk-text { position: relative; }
.perk-text .eyebrow { margin-bottom: 10px; }
.perk-text h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.perk-text p { color: var(--ink-soft); margin-top: 10px; font-size: 1.05rem; max-width: 52ch; }
.perk-text p b { color: var(--brand); }
.perk-meta { position: relative; display: flex; flex-direction: column; gap: 8px; flex: none; }
.perk-meta .pm-row { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; white-space: nowrap; }
.perk-meta .pm-row .ic { width: 18px; height: 18px; color: var(--accent); flex: none; }
@media (max-width: 820px) {
  .perk-card { grid-template-columns: auto 1fr; }
  .perk-meta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 8px 20px; padding-top: 4px; border-top: 1px solid var(--line); margin-top: 4px; }
}
@media (max-width: 520px) {
  .perk-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .perk-text p { margin-inline: auto; }
  .perk-meta { justify-content: center; }
}

/* confirmation perk note */
.conf-perk { position: relative; display: flex; align-items: center; gap: 12px; background: var(--accent-soft); border: 1px dashed var(--accent); border-radius: var(--r-md); padding: 12px 14px; margin-top: 14px; text-align: left; }
.conf-perk .cp-badge { flex: none; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--accent); }
.conf-perk .cp-txt { font-size: .86rem; font-weight: 600; line-height: 1.35; }
.conf-perk .cp-txt b { color: var(--brand); }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.stars { display: flex; gap: 3px; color: var(--accent); }
.review p { font-size: 1.02rem; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #f4efe6; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.reviewer strong { display: block; font-size: .96rem; } .reviewer span { font-size: .84rem; color: var(--ink-soft); }
.rating-hero { display: inline-flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 22px 10px 14px; box-shadow: var(--shadow-sm); margin-top: 8px; }
.rating-hero .big { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; }

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 50px); align-items: center; }
.map-ph { aspect-ratio: 4/3.2; border-radius: var(--r-lg); border: 1px solid var(--line); position: relative; overflow: hidden; box-shadow: var(--shadow-md);
  background:
    repeating-linear-gradient(135deg, #e9e3d4 0 2px, transparent 2px 16px),
    linear-gradient(160deg, #eef0e6, #e3e8dd); }
.map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-ph .pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-100%); display: grid; place-items: center; }
.map-ph .pin .drop { width: 38px; height: 38px; background: var(--accent); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--shadow-md); }
.map-ph .pin .drop::after { content: ""; position: absolute; left: 50%; top: 38%; transform: translate(-50%,-50%); width: 13px; height: 13px; background: var(--surface); border-radius: 50%; }
.map-ph .addr { position: absolute; left: 16px; bottom: 16px; right: 16px; z-index: 2; text-decoration: none; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 16px; box-shadow: var(--shadow-md); font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.map-ph .addr:hover .go { text-decoration: underline; }
.map-ph .addr small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .8rem; }
.map-ph .addr .go { font-size: .85rem; color: var(--accent); font-weight: 700; white-space: nowrap; }
.loc-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.hours-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 4px 4px; margin-top: 24px; box-shadow: var(--shadow-sm); }
.hours-row { display: flex; justify-content: space-between; padding: 13px 18px; border-radius: 12px; }
.hours-row + .hours-row { border-top: 1px solid var(--line); }
.hours-row.today { background: var(--accent-soft); }
.hours-row .d { font-weight: 600; }
.hours-row .h { font-weight: 700; font-variant-numeric: tabular-nums; }
.loc-contacts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.loc-contacts a { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; padding: 12px 18px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--surface); transition: .2s; }
.loc-contacts a:hover { border-color: var(--accent); color: var(--accent); }
.loc-contacts a .ic { width: 18px; height: 18px; color: var(--accent); }

/* ---------- faq ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 26px; height: 26px; flex: none; position: relative; transition: transform .25s; }
.faq-item summary .pm::before, .faq-item summary .pm::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--accent); border-radius: 2px; }
.faq-item summary .pm::before { width: 14px; height: 2.5px; }
.faq-item summary .pm::after { width: 2.5px; height: 14px; transition: transform .25s; }
.faq-item[open] summary .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .ans { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- cta band ---------- */
.cta-band { background: var(--brand); color: #f4efe6; border-radius: var(--r-lg); padding: clamp(36px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% -10%, color-mix(in srgb, var(--accent) 36%, transparent), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fffaf2; font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-band p { color: #d6cfc2; margin-top: 16px; font-size: 1.14rem; max-width: 50ch; margin-inline: auto; }
.cta-band .btn { margin-top: 30px; }

/* ---------- footer ---------- */
.site-footer { background: #1a322e; color: #c9c3b6; padding-block: clamp(48px, 7vw, 76px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #f4efe6; }
.site-footer .brand small { color: #9aa39a; }
.footer-about { margin-top: 16px; max-width: 34ch; font-size: .96rem; color: #a9b0a4; }
.footer-legal-info { margin-top: 16px; max-width: 36ch; font-size: .82rem; line-height: 1.6; color: #8e958a; }
.footer-bottom-links a { color: #a9b0a4; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-col h4 { color: #f4efe6; font-size: 1rem; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: #a9b0a4; padding: 5px 0; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #8e958a; }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } .hero-badge .dot { animation: none; } }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .res-card { order: 2; }
  .hero .lede { max-width: 46ch; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .steps, .price-grid, .reviews-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--line); padding: 14px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open a { font-size: 1.05rem; padding: 12px 16px; }
  .menu-btn { display: inline-flex; }
  .nav .desktop-cta { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr; }
  .hero-facts .fact { font-size: .85rem; }
}
