:root {
  --forest: #14382e;
  --forest-deep: #0e2a23;
  --moss: #2a6b54;
  --leaf: #3e8f6e;
  --sage: #7fa08c;
  --mint: #e6f1ea;
  --cream: #f7f3ea;
  --paper: #fbf9f3;
  --ink: #13241c;
  --ink-soft: #3d4f46;
  --muted: #5f7168;
  --line: rgba(20, 56, 46, 0.1);
  --line-strong: rgba(20, 56, 46, 0.16);
  --gold: #b8956a;
  --display: 'Fraunces', 'Noto Serif SC', Georgia, 'Songti SC', serif;
  --sans: 'Plus Jakarta Sans', 'Noto Sans SC', system-ui, 'PingFang SC', sans-serif;
  --radius: 1.15rem;
  --radius-lg: 1.75rem;
  --shadow: 0 18px 50px rgba(14, 42, 35, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--forest-deep);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

#site-footer {
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
  background: var(--forest-deep);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 46% at 8% -8%, rgba(62, 143, 110, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 36% at 100% 0%, rgba(184, 149, 106, 0.1), transparent 50%);
}

body > * { position: relative; z-index: 1; }

body.nav-open { overflow: hidden; }

#site-header {
  z-index: 80;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.serif { font-family: var(--display); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #f8f5ee;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.site-brand:hover {
  opacity: 0.88;
}

.site-logo {
  display: block;
  width: 168px;
  height: 40px;
}

.site-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-brand-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-text-link,
.nav-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: #1b1b1b;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.header-text-link:hover,
.nav-toggle:hover,
.header-text-link.is-active {
  color: var(--forest);
}

.nav-toggle .nav-ico {
  width: 20px;
  height: 20px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 16, 0.42);
  opacity: 0;
  transition: opacity .28s ease;
}

.nav-overlay.is-open .nav-overlay-scrim { opacity: 1; }

.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100%;
  height: 100dvh;
  background: #1e3939;
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform .32s cubic-bezier(.22, .8, .32, 1);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.18);
}

.nav-overlay.is-open .nav-panel { transform: translateX(0); }

.nav-panel-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 18px 22px 8px;
  padding-top: max(18px, env(safe-area-inset-top));
}

.nav-close {
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-close .nav-ico {
  width: 22px;
  height: 22px;
}

.nav-tabs {
  display: flex;
  gap: 28px;
  padding: 6px 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 0 14px;
  margin-bottom: -1px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.nav-tab.is-active { border-bottom-color: #fff; }

.nav-panel-scroll {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-sheet { display: none; }
.nav-sheet.is-active { display: block; }

.nav-item,
.nav-back,
.nav-sub-link {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 17px 28px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.nav-item:hover,
.nav-back:hover,
.nav-sub-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-item .nav-ico,
.nav-back .nav-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nav-item-label { flex: 1; }

.nav-item-arrow {
  display: inline-flex;
  opacity: 0.75;
}

.nav-item-arrow .nav-ico {
  width: 18px;
  height: 18px;
}

.nav-back {
  font-weight: 600;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.nav-sub-title {
  margin: 0;
  padding: 18px 28px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay-scrim,
  .nav-panel { transition: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--forest);
  color: #f7f3ea;
  box-shadow: 0 10px 24px rgba(20, 56, 46, 0.18);
}

.btn-primary:hover { background: var(--forest-deep); }

.btn-secondary {
  background: #fff;
  color: var(--forest);
  border-color: var(--line-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
}

.btn-gold {
  background: var(--gold);
  color: #1a140c;
}

.hero {
  padding: 28px 0 20px;
}

.hero-banner {
  position: relative;
  min-height: min(78vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 56px;
  color: #f7f3ea;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.hero-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 24, 0.28) 0%, rgba(10, 28, 24, 0.58) 42%, rgba(10, 28, 24, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 28, 24, 0.45), transparent 58%);
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-banner .hero-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #f4f0e6;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-banner h1 {
  color: #fff;
  margin: 18px 0 16px;
}

.hero-banner h1 em {
  color: #e8d3b0;
}

.hero-banner .hero-lead {
  color: #d5e3db;
  max-width: 38rem;
}

.hero-banner .search-card {
  margin-top: 28px;
}

.hero-banner .search-popular > span {
  color: #c5d4cc;
}

.hero-banner .search-popular button,
.hero-banner .search-popular a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f7f3ea;
}

.hero-banner .search-popular button:hover,
.hero-banner .search-popular a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-banner .trust-bar {
  color: #c9d8d0;
}

.hero-banner .trust-bar strong {
  color: #fff;
}

.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 36px;
  overflow: hidden;
  color: #f7f3ea;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 24, 0.15), rgba(10, 28, 24, 0.78));
}

.page-banner .wrap {
  position: relative;
  z-index: 1;
  padding: 48px 0 36px;
}

.page-banner h1 {
  color: #fff;
  margin: 8px 0 10px;
}

.page-banner .lede,
.page-banner .muted,
.page-banner #cat-crumbs,
.page-banner #cat-crumbs a {
  color: #d7e4dc;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  color: var(--moss);
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34rem;
}

.search-card {
  position: relative;
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.9fr auto;
  gap: 8px;
  overflow: visible;
  z-index: 16;
}

.search-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 20px;
  background: var(--cream);
  z-index: 1;
}

.search-field:focus-within,
.search-field.is-open {
  z-index: 3;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--forest);
}

.search-field > span,
.search-field > label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-field input,
.search-field select,
.field input,
.field textarea,
.field select {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--ink);
  outline: none;
  width: 100%;
}

.search-go {
  min-width: 108px;
  min-height: 58px;
  align-self: stretch;
  border-radius: 20px;
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  max-height: 340px;
  overflow: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(14, 42, 35, 0.14);
}

.search-suggest[hidden] { display: none; }

.search-suggest-label,
.search-suggest-empty {
  padding: 8px 12px 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--moss);
}

.search-suggest-empty {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}

.search-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: none;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.search-suggest button:hover,
.search-suggest button.is-on {
  background: var(--mint);
}

.search-suggest button small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.search-suggest-more {
  display: block;
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.search-suggest-more:hover {
  background: var(--mint);
}

.search-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.search-popular > span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: 4px;
}

.search-popular button,
.search-popular a {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 550;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}

.search-popular button:hover,
.search-popular a:hover {
  border-color: var(--sage);
  background: var(--mint);
  color: var(--forest);
}

.crumbs {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.crumbs a { color: var(--forest); }

.seo-local {
  margin-top: 22px;
  max-width: 44rem;
}

.seo-local p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.seo-local h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 10px;
}

.seo-local-section {
  padding-top: 8px;
}

.seo-local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 12px 0 0;
}

.seo-local-links a {
  color: var(--forest);
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.9rem;
  font-weight: 550;
}

.seo-local-links a:hover {
  border-color: var(--sage);
  background: var(--mint);
}

.seo-local-list {
  margin: 10px 0 0;
  padding-left: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.seo-local-list a { color: var(--forest); }

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 36px;
}

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.hero-float.a { left: -18px; bottom: 48px; }
.hero-float.b { right: 18px; top: 24px; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  padding: 22px 0 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.trust-bar strong { color: var(--forest); }

.section { padding: 72px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 600;
}

.section-head p,
.lede {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 38rem;
}

.page-hero { padding: 36px 0 12px; }

.cat-grid,
.card-grid,
.review-grid,
.guide-grid,
.city-grid,
.feat-grid,
.why-grid,
.city-mosaic {
  display: grid;
  gap: 16px;
}

.cat-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.guide-grid { grid-template-columns: repeat(3, 1fr); }
.city-grid { grid-template-columns: repeat(5, 1fr); }
.feat-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(4, 1fr); }
.city-mosaic { grid-template-columns: repeat(4, 1fr); }

.tile,
.card,
.review-card,
.guide-card,
.company-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tile:hover,
.card:hover,
.company-card:hover,
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tile img,
.guide-card img,
.company-cover img,
.city-card img {
  height: 168px;
  width: 100%;
  object-fit: cover;
}

.tile {
  position: relative;
}

.tile img { height: 196px; }

.company-cover {
  position: relative;
  height: 176px;
  overflow: hidden;
}

.company-cover img {
  height: 176px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20, 56, 46, 0.92);
  color: #f4f0e6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.company-cover .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.company-card h3 {
  font-size: 1.12rem;
}

.why-card {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.city-card {
  position: relative;
  min-height: 168px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.city-card img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.city-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 28, 24, 0.78));
}

.city-card span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  padding: 18px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.city-card small {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}

.profile-hero {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 28px;
}

.profile-hero > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.profile-hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 560px;
  background: rgba(251, 249, 243, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.notice-page {
  max-width: 640px;
}

.tile-body,
.card-body,
.review-card,
.guide-card,
.company-card { padding: 18px 18px 20px; }

.tile h3,
.card h3,
.company-card h3,
.guide-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.muted { color: var(--muted); }
.tiny { font-size: 0.78rem; letter-spacing: 0.12em; font-weight: 700; color: var(--moss); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 550;
}

.pill:hover { border-color: var(--sage); background: var(--mint); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.step-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.activity {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: var(--forest);
  color: #f4f0e6;
  border-radius: 32px;
  padding: 36px;
  overflow: hidden;
}

.activity-list {
  display: grid;
  gap: 10px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fd4b0;
  flex-shrink: 0;
}

.stars { color: #c4a574; letter-spacing: 1px; }

.review-summary {
  text-align: center;
  margin: 4px 0 28px;
}

.review-summary > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.review-summary strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.review-viewport {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
  touch-action: pan-y;
}

.review-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

.review-card[data-review-card] {
  min-height: 228px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow);
}

.review-track .review-card[data-review-card] {
  flex: 0 0 calc((100% - 32px) / 3);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-avatar.tone-0 { background: var(--mint); color: var(--forest); }
.review-avatar.tone-1 { background: #efe4d2; color: #6d5333; }
.review-avatar.tone-2 { background: #dce8e1; color: var(--moss); }
.review-avatar.tone-3 { background: #f0e6dc; color: #5c4030; }
.review-avatar.tone-4 { background: #e4eee8; color: var(--forest); }

.review-stars {
  display: flex;
  gap: 3px;
  margin: 0 0 14px;
}

.review-stars span {
  display: block;
  width: 16px;
  height: 16px;
  color: rgba(20, 56, 46, 0.16);
}

.review-stars span.is-on { color: var(--leaf); }

.review-stars svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.review-card[data-review-card] > p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
  font-size: 0.98rem;
}

.review-meta {
  margin-top: 16px !important;
  color: var(--muted) !important;
  font-size: 0.86rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 56, 46, 0.16);
  cursor: pointer;
  position: relative;
}

.review-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
}

.review-dot.is-on { background: var(--forest); }

@media (prefers-reduced-motion: reduce) {
  .review-track { transition: none; }
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 40px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(20, 56, 46, 0.94), rgba(42, 107, 84, 0.88)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #f7f3ea;
}

.guide-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-top: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.guide-featured:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.guide-featured img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.guide-featured-body {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-featured-body h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
}

.filter-pill.is-on {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.price-calc {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 28px;
}

.price-result-num {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 8px 0 6px;
}

.price-range {
  position: relative;
  height: 8px;
  margin: 22px 0 10px;
  background: var(--mint);
  border-radius: 99px;
}

.price-range b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8%;
  right: 8%;
  background: linear-gradient(90deg, var(--leaf), var(--forest));
  border-radius: 99px;
  opacity: 0.55;
}

.price-range i {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 4px rgba(20, 56, 46, 0.12);
}

.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.price-split div {
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 16px;
}

.price-split strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-top: 4px;
}

.price-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  background: var(--cream);
}

.price-table tr:last-child td { border-bottom: 0; }

.price-table tbody tr {
  cursor: pointer;
}

.price-table tbody tr:hover { background: #fbf9f3; }

.price-table tbody tr.is-on { background: var(--mint); }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.check-row input { margin-top: 3px; accent-color: var(--forest); }

.prose-article h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 28px 0 10px;
}

.prose-article p { line-height: 1.7; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 0;
  margin: 0 0 22px;
  font-size: 0.86rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--moss);
  font-weight: 600;
  text-decoration: none;
}

.crumbs a:hover { color: var(--forest); }

.crumbs .crumbs-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.guide-hero { padding: 28px 0 0; }

.guide-hero-copy { max-width: 46rem; }

.guide-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 10px 0 16px;
}

.guide-hero .lede {
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 40rem;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-hero-figure {
  margin: 28px 0 0;
}

.guide-hero-figure img {
  width: 100%;
  height: min(48vw, 400px);
  object-fit: cover;
  border-radius: 28px;
}

.guide-hero-figure figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.guide-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: 56px;
  align-items: start;
  padding: 40px 0 12px;
}

.guide-toc {
  position: sticky;
  top: 96px;
  padding: 18px 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.guide-toc .tiny { margin: 0 0 12px; }

.guide-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  counter-reset: toc;
}

.guide-toc li { margin: 0; }

.guide-toc a {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 8px;
  padding: 7px 4px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1.35;
}

.guide-toc a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.78rem;
  color: var(--gold);
  padding-top: 1px;
}

.guide-toc a:hover,
.guide-toc a.is-on {
  color: var(--forest);
  background: var(--mint);
}

.kort-sagt {
  background: var(--mint);
  border-radius: 22px;
  padding: 22px 24px 24px;
  margin: 0 0 36px;
}

.kort-sagt h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 4px 0 12px;
}

.kort-sagt ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.15rem;
}

.kort-sagt li {
  margin: 8px 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.guide-main .prose-article h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  letter-spacing: -0.03em;
  margin: 40px 0 12px;
  scroll-margin-top: 100px;
}

.guide-main .prose-article h3 {
  font-size: 1.08rem;
  margin: 22px 0 8px;
}

.guide-main .prose-article p {
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-size: 1.02rem;
}

.guide-main .prose-article a {
  color: var(--forest);
  font-weight: 600;
  text-underline-offset: 3px;
}

.guide-main .prose-article ul,
.guide-main .prose-article ol {
  list-style: revert;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-left: 1.2rem;
  margin: 0 0 18px;
}

.guide-main .prose-article li { margin: 6px 0; }

.guide-check {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
}

.guide-check li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.guide-check i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
}

.guide-note {
  margin: 22px 0 26px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
}

.guide-note p { margin: 0; }

.guide-note .tiny { margin: 0 0 6px; }

.guide-steps {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: gstep;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.guide-steps li::before {
  counter-increment: gstep;
  content: counter(gstep, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.2;
}

.guide-faq {
  margin-top: 48px;
}

.guide-faq > h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.guide-source {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.guide-source a { color: var(--forest); font-weight: 600; }

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.guide-main .price-table tbody tr { cursor: default; }

.site-footer {
  margin-top: 0;
  background: var(--forest-deep);
  color: #d7e4dc;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: 32px 40px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-lead {
  margin: 14px 0 0;
  line-height: 1.6;
  max-width: 22rem;
}

.site-footer a { color: #e8f1ec; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer li { color: #d7e4dc; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #9bb0a5;
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
}

.footer-legal a { color: #c5d6cc; }

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label { font-weight: 600; font-size: 0.9rem; }

.field input,
.field textarea,
.field select {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 14px;
  min-height: 48px;
}

.field textarea { min-height: 140px; resize: vertical; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.stepper {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.stepper span {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: var(--mint);
}

.stepper span.is-on { background: var(--forest); }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  display: none;
}

.faq-item.is-open p { display: block; }

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 980px) {
  .hero-grid, .activity, .cta-band, .steps, .cat-grid, .card-grid, .review-grid, .guide-grid, .feat-grid, .why-grid, .price-calc, .guide-featured, .price-split, .guide-layout {
    grid-template-columns: 1fr;
  }
  .guide-layout { gap: 22px; padding-top: 28px; }
  .guide-toc { position: static; }
  .guide-toc ol { grid-template-columns: 1fr 1fr; gap: 0 12px; }
  .guide-hero-figure img { height: 220px; }
  .review-track .review-card[data-review-card] { flex: 0 0 100%; }
  .guide-featured img { min-height: 200px; height: 200px; }
  .city-mosaic { grid-template-columns: repeat(2, 1fr); }
  .search-card { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 0; }
  .hero-visual img { height: 280px; }
  .hero-float.a { left: 12px; bottom: 16px; }
  .hero-banner { min-height: 0; padding: 96px 0 36px; }
  .profile-hero, .profile-hero > img { min-height: 0; height: auto; }
  .profile-hero-card { position: relative; left: 0; right: 0; bottom: 0; max-width: none; border-radius: 0; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
  .site-header-inner { width: min(100% - 28px, 1240px); min-height: 72px; }
  .header-actions { gap: 18px; }
  .nav-tabs { padding-left: 22px; padding-right: 22px; gap: 20px; }
  .nav-item, .nav-back, .nav-sub-link { padding-left: 22px; padding-right: 22px; }
  .wrap { width: min(100% - 28px, 1180px); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .cta-band, .activity { padding: 24px; }
  .city-mosaic, .why-grid { grid-template-columns: 1fr; }
  .hero-banner h1 { font-size: 2.4rem; }
  .guide-hero h1 { font-size: 2rem; }
  .kort-sagt, .guide-toc { padding: 16px 18px; }
  .guide-toc ol { grid-template-columns: 1fr; }
}
