:root {
  --ink: #eef3ff;
  --muted: #aeb8d0;
  --night: #070b18;
  --night-2: #0b1021;
  --panel: rgba(17, 24, 48, 0.82);
  --panel-solid: #111830;
  --line: rgba(178, 197, 255, 0.14);
  --blue: #65d9ff;
  --violet: #8a73ff;
  --gold: #ffe29a;
  --success: #76e6bd;
  --danger: #ff8aa1;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(76, 145, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(138, 115, 255, 0.13), transparent 30rem),
    var(--night);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 99;
  padding: 10px 14px;
  color: #07101a;
  background: var(--blue);
  border-radius: 10px;
}

.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 24, 0.72);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 11, 24, 0.92);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand img { width: 40px; height: 40px; }
.brand small { display: block; color: var(--muted); font-size: 10px; letter-spacing: 0.14em; }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.nav-links a { color: #dbe4fb; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #07101a;
  background: linear-gradient(135deg, var(--blue), #91edff);
  box-shadow: 0 10px 28px rgba(101, 217, 255, 0.16);
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(101, 217, 255, 0.24); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.045); border-color: var(--line); box-shadow: none; }
.button.secondary:hover { border-color: rgba(101,217,255,.5); }
.button.small { min-height: 40px; padding-inline: 16px; font-size: 13px; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.04);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -190px;
  top: -110px;
  border: 1px solid rgba(101,217,255,.11);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(101,217,255,.04), 0 0 110px rgba(138,115,255,.06);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero h1 .gradient-text,
.gradient-text {
  color: transparent;
  background: linear-gradient(120deg, #f8fbff 8%, var(--blue) 54%, #b5a7ff 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead { max-width: 680px; margin-bottom: 30px; color: #c2cce2; font-size: 17px; }

.search-box {
  display: flex;
  max-width: 680px;
  padding: 7px;
  border: 1px solid rgba(170, 198, 255, 0.2);
  border-radius: 18px;
  background: rgba(11,16,33,.84);
  box-shadow: var(--shadow);
}

.search-box input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
}

.search-box input::placeholder { color: #7986a6; }
.search-box .button { min-width: 106px; border-radius: 13px; }

.quick-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.quick-links a,
.filter-chip {
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c4cee3;
  background: rgba(255,255,255,.025);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.quick-links a:hover,
.filter-chip:hover,
.filter-chip.is-active { color: var(--ink); border-color: rgba(101,217,255,.5); background: rgba(101,217,255,.1); }

.night-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(164,188,255,.16);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(101,217,255,.12), transparent 46%),
    linear-gradient(330deg, rgba(138,115,255,.16), transparent 48%),
    #10162d;
  box-shadow: var(--shadow);
}

.night-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -50px;
  bottom: -55px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,234,168,.9), rgba(255,234,168,.12) 35%, transparent 68%);
  opacity: .34;
}

.night-card .kicker { color: var(--gold); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.night-card h2 { margin: 70px 0 12px; font-size: 34px; line-height: 1.2; letter-spacing: -.035em; }
.night-card p { max-width: 330px; color: var(--muted); }
.night-card .mini-stats { position: absolute; left: 28px; bottom: 28px; display: flex; gap: 10px; z-index: 1; }
.mini-stat { padding: 11px 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(7,11,24,.52); }
.mini-stat strong { display: block; font-size: 16px; }
.mini-stat span { color: var(--muted); font-size: 10px; }

.trust-strip { padding: 18px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 13px; color: #c6d1e8; font-size: 13px; }
.trust-icon { display: grid; width: 38px; height: 38px; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 12px; color: var(--blue); background: rgba(101,217,255,.06); font-weight: 900; }

.section { padding: 88px 0; }
.section.compact { padding: 60px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-head h2 { margin-bottom: 8px; font-size: clamp(28px, 4vw, 44px); line-height: 1.2; letter-spacing: -.04em; }
.section-head p { max-width: 600px; margin-bottom: 0; color: var(--muted); }
.text-link { color: var(--blue); font-size: 13px; font-weight: 800; white-space: nowrap; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.condition-card {
  min-height: 186px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(16,22,45,.72);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.condition-card:hover { transform: translateY(-5px); border-color: rgba(101,217,255,.38); background: rgba(20,29,58,.9); }
.condition-card .number { color: var(--blue); font: 800 11px/1 system-ui, sans-serif; letter-spacing: .14em; }
.condition-card h3 { margin: 42px 0 8px; font-size: 20px; }
.condition-card p { margin: 0; color: var(--muted); font-size: 13px; }

.guide-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.guide-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #10162d;
}

.guide-card:first-child {
  background:
    radial-gradient(circle at 80% 20%, rgba(101,217,255,.2), transparent 38%),
    linear-gradient(155deg, #111b3a, #10162d 60%);
}

.guide-card::after { content: ""; position: absolute; inset: auto -20% -48% 20%; height: 190px; border: 1px solid rgba(101,217,255,.16); border-radius: 50%; transform: rotate(-10deg); }
.guide-card .tag { position: relative; z-index: 1; color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.guide-card h3 { position: relative; z-index: 1; margin: 100px 0 10px; font-size: 26px; line-height: 1.3; letter-spacing: -.03em; }
.guide-card:not(:first-child) h3 { font-size: 22px; }
.guide-card p { position: relative; z-index: 1; color: var(--muted); font-size: 13px; }
.guide-card .card-link { position: absolute; right: 24px; bottom: 22px; z-index: 2; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); }

.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-solid);
  transition: transform 170ms ease, border-color 170ms ease;
}
.listing-card:hover { transform: translateY(-4px); border-color: rgba(101,217,255,.34); }
.listing-card[hidden] { display: none; }
.listing-visual {
  position: relative;
  display: grid;
  min-height: 196px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(101,217,255,.16), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(138,115,255,.2), transparent 35%),
    #0c1226;
}
.listing-monogram { display: grid; width: 82px; height: 82px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; color: #f7fbff; background: rgba(255,255,255,.035); font: 800 34px/1 Georgia, serif; box-shadow: 0 20px 50px rgba(0,0,0,.24); }
.status-badge { position: absolute; left: 16px; top: 16px; padding: 6px 10px; border-radius: 999px; color: #071a13; background: var(--success); font-size: 10px; font-weight: 900; }
.listing-body { padding: 20px; }
.listing-meta { margin-bottom: 7px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.listing-body h3 { margin-bottom: 7px; font-size: 22px; }
.listing-body p { min-height: 48px; margin-bottom: 16px; color: var(--muted); font-size: 13px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: #cbd5ea; font-size: 10px; }

.placeholder-card { display: grid; min-height: 380px; place-items: center; padding: 30px; border: 1px dashed rgba(178,197,255,.2); border-radius: 22px; color: var(--muted); background: rgba(255,255,255,.015); text-align: center; }
.placeholder-card strong { display: block; margin-bottom: 8px; color: #dce5f7; }

.owner-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px 42px;
  border: 1px solid rgba(101,217,255,.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, rgba(101,217,255,.1), rgba(138,115,255,.08)), var(--panel-solid);
}
.owner-banner h2 { margin-bottom: 7px; font-size: 28px; }
.owner-banner p { margin: 0; color: var(--muted); }

.page-hero { padding: 76px 0 50px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: #8190af; font-size: 12px; }
.breadcrumbs a:hover { color: var(--blue); }
.page-hero h1 { max-width: 840px; margin-bottom: 17px; font-size: clamp(36px, 6vw, 62px); line-height: 1.12; letter-spacing: -.05em; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 16px; }
.last-reviewed { display: inline-flex; gap: 8px; align-items: center; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #9eabc5; font-size: 11px; }
.last-reviewed::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(118,230,189,.1); }

.filter-panel { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-search { width: 100%; margin-bottom: 14px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; outline: none; color: var(--ink); background: rgba(7,11,24,.56); }
.filter-search:focus { border-color: rgba(101,217,255,.52); }
.result-count { margin: 18px 0 12px; color: var(--muted); font-size: 12px; }
.empty-state { padding: 46px 20px; border: 1px dashed var(--line); border-radius: 20px; color: var(--muted); text-align: center; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 46px; }
.article-body { color: #c7d1e7; }
.article-body h2 { margin: 56px 0 16px; color: var(--ink); font-size: 30px; letter-spacing: -.03em; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 34px 0 12px; color: var(--ink); font-size: 21px; }
.article-body p { margin-bottom: 22px; }
.article-body ul { padding-left: 1.2em; }
.notice { padding: 18px 20px; border-left: 3px solid var(--blue); border-radius: 0 14px 14px 0; color: #c8d5ed; background: rgba(101,217,255,.07); }
.sidebar { position: sticky; top: 100px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.sidebar h2 { font-size: 15px; }
.sidebar a { display: block; padding: 8px 0; color: var(--muted); font-size: 13px; border-bottom: 1px solid rgba(178,197,255,.08); }
.sidebar a:hover { color: var(--blue); }

.shop-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel-solid);
}
.shop-visual { position: relative; display: grid; place-items: center; background: radial-gradient(circle at 30% 25%, rgba(101,217,255,.2), transparent 36%), radial-gradient(circle at 75% 72%, rgba(138,115,255,.22), transparent 32%), #0b1125; }
.shop-visual .listing-monogram { width: 118px; height: 118px; font-size: 46px; }
.shop-content { padding: 44px; }
.shop-content h1 { margin-bottom: 9px; font-size: clamp(36px, 5vw, 56px); letter-spacing: -.04em; }
.shop-content .summary { color: var(--muted); }
.shop-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; margin-top: 28px; border: 1px solid var(--line); border-radius: 15px; background: var(--line); }
.fact { padding: 14px; background: #10172e; }
.fact span { display: block; color: #8190ae; font-size: 10px; }
.fact strong { display: block; margin-top: 4px; font-size: 13px; }

.detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.detail-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); }
.detail-card h2 { font-size: 23px; }
.price-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(178,197,255,.09); }
.price-row:last-child { border-bottom: 0; }
.price-row span { color: var(--muted); font-size: 13px; }
.price-row strong { white-space: nowrap; }

.owner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.owner-step { padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.owner-step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 38px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.owner-step h3 { font-size: 19px; }
.owner-step p { margin: 0; color: var(--muted); font-size: 13px; }

.plan-table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.plan-table th, .plan-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.plan-table th { color: #9eabc6; font-size: 11px; letter-spacing: .08em; }
.plan-table td { font-size: 13px; }
.plan-table tr:last-child td { border-bottom: 0; }
.plan-table strong { color: var(--blue); }
.plan-scroll { overflow-x: auto; border-radius: 20px; }
.application-output { margin-top: 22px; }
.application-output label { display: block; margin-bottom: 8px; color: #cbd6eb; font-size: 12px; font-weight: 700; }
.application-output textarea { width: 100%; min-height: 260px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: rgba(7,11,24,.7); resize: vertical; }

.form-shell { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #cbd6eb; font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; outline: none; color: var(--ink); background: rgba(7,11,24,.56); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(101,217,255,.52); }
.form-note { margin: 15px 0 0; color: #8f9bb6; font-size: 11px; }
.form-status { margin-top: 14px; color: var(--gold); font-size: 12px; }

.site-footer { margin-top: 50px; padding: 54px 0 28px; border-top: 1px solid var(--line); background: rgba(5,8,18,.66); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-copy { max-width: 420px; margin-top: 16px; color: var(--muted); font-size: 13px; }
.footer-col h2 { margin-bottom: 12px; color: #8f9cb8; font-size: 11px; letter-spacing: .12em; }
.footer-col a { display: block; padding: 5px 0; color: #ced7e9; font-size: 13px; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: #6f7b96; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .hero-grid, .shop-hero, .detail-grid, .article-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .night-card { min-height: 330px; }
  .condition-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-card:first-child { grid-column: 1 / -1; }
  .sidebar { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .menu-button { display: grid; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(11,16,33,.98);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 10px; }
  .nav-links .nav-cta { margin-top: 4px; }
  .hero h1 { font-size: 45px; }
  .search-box { display: grid; }
  .search-box .button { min-height: 47px; }
  .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 12px; }
  .condition-grid, .listing-grid, .guide-grid, .owner-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .guide-card:first-child { grid-column: auto; }
  .owner-banner { grid-template-columns: 1fr; padding: 28px; }
  .shop-content { padding: 28px; }
  .shop-visual { min-height: 280px; }
  .field.full { grid-column: auto; }
  .plan-table thead { display: none; }
  .plan-table, .plan-table tbody, .plan-table tr, .plan-table td { display: block; width: 100%; }
  .plan-table tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .plan-table td { padding: 6px 16px; border: 0; }
  .footer-bottom { display: block; }
}

@media (max-width: 430px) {
  .brand span { font-size: 13px; }
  .brand small { font-size: 8px; }
  .hero h1 { font-size: 40px; }
  .night-card { padding: 22px; }
  .night-card h2 { margin-top: 50px; font-size: 29px; }
  .mini-stat:nth-child(3) { display: none; }
  .facts { grid-template-columns: 1fr; }
}

/* Search-first experience */
:focus-visible {
  outline: 3px solid rgba(101, 217, 255, .8);
  outline-offset: 3px;
}

.search-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 30px;
}

.search-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -350px;
  border: 1px solid rgba(101, 217, 255, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 130px rgba(138, 115, 255, .08);
  pointer-events: none;
}

.hero-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
  align-items: end;
  gap: 46px;
  margin-bottom: 28px;
}

.hero-heading .eyebrow { margin-bottom: 10px; }
.hero-heading h1 {
  margin: 0;
  font-size: clamp(48px, 7.4vw, 88px);
  line-height: .98;
  letter-spacing: -.065em;
}
.hero-heading > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: #bec9df;
  font-size: 16px;
}

.finder-shell {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(171, 196, 255, .22);
  border-radius: 27px;
  background: linear-gradient(130deg, rgba(101, 217, 255, .08), rgba(138, 115, 255, .08));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.finder-form {
  padding: 22px;
  border-radius: 20px;
  background: rgba(10, 15, 31, .96);
}

.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.finder-field {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 13px 15px 12px;
  background: #10172e;
}

.finder-field > span,
.filter-field > span {
  color: #7887a6;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.finder-field select,
.finder-field input,
.filter-field select,
.filter-field input {
  width: 100%;
  min-width: 0;
  padding: 2px 24px 2px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background-color: transparent;
  font-size: 14px;
  font-weight: 750;
}

.finder-field select option,
.filter-field select option { color: var(--ink); background: #111830; }
.finder-field input::placeholder,
.filter-field input::placeholder { color: #5f6c88; }

.finder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}

.finder-footer p { margin: 0; color: #9eabc5; font-size: 12px; }
.finder-footer p strong { color: var(--ink); }
.finder-footer p small { margin-left: 5px; color: #6f7b95; }
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(118, 230, 189, .1);
}
.finder-submit { min-width: 190px; }

.quick-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
}
.quick-search > span { margin-right: 4px; color: #5e6b86; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.quick-search a { padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; color: #b7c3da; font-size: 11px; font-weight: 750; }
.quick-search a:hover { color: var(--ink); border-color: rgba(101, 217, 255, .45); background: rgba(101, 217, 255, .08); }

.decision-finder {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(100, 87, 213, .2);
  border-radius: 21px;
  background: #fff;
  box-shadow: var(--shadow);
}
.decision-finder-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.decision-finder-head > span { color: #28243c; font-size: 13px; font-weight: 850; }
.decision-finder-head small { color: #7b8494; font-size: 11px; }
.decision-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.decision-routes a {
  display: grid;
  grid-template-columns: 30px 1fr 28px;
  align-items: center;
  gap: 10px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafafa;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.decision-routes a:hover { transform: translateY(-2px); border-color: rgba(100, 87, 213, .35); background: #fff; }
.decision-routes a > span { color: #8d84d9; font: 800 10px/1 system-ui, sans-serif; }
.decision-routes strong { display: block; color: #252a38; font-size: 15px; line-height: 1.35; }
.decision-routes small { display: block; grid-column: 2; color: #818998; font-size: 10px; }
.decision-routes b { grid-column: 3; grid-row: 1 / span 2; color: #6457d5; font-weight: 500; }
.all-conditions-link { display: block; margin-top: 14px; color: #6457d5; font-size: 12px; font-weight: 800; text-align: right; }
.all-conditions-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.trust-item strong { display: block; color: #dbe5f7; font-size: 13px; }
.trust-item small { display: block; color: #7f8ca8; font-size: 10px; }

.featured-listings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.featured-place {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr 42px;
  align-items: center;
  gap: 20px;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(101, 217, 255, .16), transparent 34%),
    #10162d;
  transition: transform 170ms ease, border-color 170ms ease;
}
.featured-place::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -115px;
  bottom: -130px;
  border: 1px solid rgba(101, 217, 255, .15);
  border-radius: 50%;
}
.featured-place.isis { background: radial-gradient(circle at 90% 10%, rgba(255, 226, 154, .14), transparent 34%), linear-gradient(140deg, rgba(138, 115, 255, .08), transparent), #10162d; }
.featured-place:hover { transform: translateY(-4px); border-color: rgba(101, 217, 255, .38); }
.place-index { align-self: start; color: rgba(238, 243, 255, .18); font: 800 34px/1 Georgia, serif; }
.place-main { position: relative; z-index: 1; }
.place-main h3 { margin-bottom: 9px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.035em; }
.place-main p { margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.place-arrow { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); }

.browse-section { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .014); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-grid-current { grid-template-columns: repeat(3, 1fr); }
.category-card { min-height: 170px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(16, 22, 45, .72); transition: transform 160ms ease, border-color 160ms ease; }
.category-card:hover { transform: translateY(-4px); border-color: rgba(101, 217, 255, .4); }
.category-card > span { display: block; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.category-card > strong { display: block; margin-top: 58px; font-size: 18px; }
.category-card > small { display: block; margin-top: 4px; color: #7986a1; font-size: 10px; }

.area-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 70px; }
.area-layout .section-head { margin-bottom: 0; }
.area-list { border-top: 1px solid var(--line); }
.area-list a { display: grid; grid-template-columns: 42px 1fr auto 28px; align-items: center; gap: 15px; min-height: 76px; border-bottom: 1px solid var(--line); }
.area-list a > span { color: #65728d; font: 800 11px/1 system-ui, sans-serif; }
.area-list a > strong { font-size: 18px; }
.area-list a > small { color: #7f8ba4; font-size: 11px; }
.area-list a > b { color: var(--blue); font-weight: 500; }
.area-list a:hover > strong { color: var(--blue); }
.area-coming { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 15px; min-height: 76px; border-bottom: 1px solid var(--line); }
.area-coming > span { color: #7d8696; font-size: 10px; font-weight: 800; }
.area-coming > strong { color: #4f5869; font-size: 14px; }
.area-coming > small { color: #8a92a0; font-size: 10px; }

.search-page-hero { padding-bottom: 32px; }
.filter-panel { padding: 22px; }
.filter-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px; }
.filter-field { display: grid; gap: 6px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(7, 11, 24, .54); }
.filter-search { margin: 0; padding: 2px 0; border: 0; background: transparent; }
.filter-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 15px; }
.filter-reset { flex: 0 0 auto; padding: 5px; border: 0; color: #8190ad; background: transparent; font-size: 11px; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.filter-reset:hover { color: var(--blue); }
.results-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 28px 0 15px; }
.results-toolbar > div strong { font-size: 24px; }
.results-toolbar > div span { margin-left: 4px; color: var(--muted); font-size: 12px; }
.results-toolbar p { margin: 0; color: #7c89a4; font-size: 11px; }
.results-grid { grid-template-columns: repeat(2, minmax(0, 430px)); }
.results-grid .listing-card { display: block; }
.results-grid .listing-visual { min-height: 220px; }
.listing-card.isis-card .listing-visual { background: radial-gradient(circle at 28% 20%, rgba(255, 226, 154, .17), transparent 34%), radial-gradient(circle at 76% 75%, rgba(138, 115, 255, .25), transparent 37%), #0c1226; }
.category-stamp { position: absolute; right: 16px; bottom: 13px; color: rgba(238, 243, 255, .32); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.listing-body h2 { margin-bottom: 7px; font-size: 24px; }
.listing-facts { display: flex; flex-wrap: wrap; gap: 14px; margin: -2px 0 16px; color: var(--gold); font-size: 11px; font-weight: 800; }
.article-listings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.article-listings .listing-card { display: block; }
.article-listings .listing-visual { min-height: 165px; }
.coverage-panel { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; margin: 64px 0 28px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, .018); }
.coverage-panel h2 { margin-bottom: 8px; font-size: 26px; }
.coverage-panel p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.coverage-grid > span { padding: 15px; border: 1px solid var(--line); border-radius: 13px; color: #d6e0f3; font-size: 13px; font-weight: 800; background: rgba(7, 11, 24, .42); }
.coverage-grid small { display: block; margin-top: 4px; color: #6f7c98; font-size: 9px; font-weight: 700; }
.empty-state p { margin: 7px 0 18px; }

.shop-page-top { padding-bottom: 24px; }
.isis-shop .shop-visual { overflow: hidden; background: radial-gradient(circle at 50% 38%, rgba(255, 226, 154, .16), transparent 30%), radial-gradient(circle at 20% 18%, rgba(138, 115, 255, .28), transparent 36%), #0b1022; }
.isis-shop .shop-visual::before { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255, 226, 154, .12); border-radius: 50%; box-shadow: 0 0 90px rgba(138, 115, 255, .12); }
.isis-shop .shop-visual .listing-monogram { position: relative; z-index: 2; }
.isis-shop .shop-visual small { position: absolute; bottom: 25px; color: rgba(238, 243, 255, .38); font-size: 9px; font-weight: 900; letter-spacing: .23em; }
.shop-symbol { position: absolute; z-index: 1; margin: -120px 0 0 105px; color: var(--gold); font: 400 64px/1 Georgia, serif; opacity: .5; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 14px 13px 42px; border: 1px solid var(--line); border-radius: 13px; color: #cbd5e8; background: rgba(7, 11, 24, .35); }
.check-list li::before { content: "✓"; position: absolute; left: 15px; color: var(--success); font-weight: 900; }
.mini-history { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.mini-history span { display: block; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.mini-history strong { display: block; margin-top: 5px; font-size: 14px; }
.before-visit { display: grid; grid-template-columns: 1fr .9fr; gap: 45px; padding: 34px; border: 1px solid rgba(255, 226, 154, .18); border-radius: 25px; background: linear-gradient(130deg, rgba(255, 226, 154, .06), rgba(138, 115, 255, .06)), var(--panel-solid); }
.before-visit h2 { margin-bottom: 10px; font-size: 28px; }
.before-visit p { margin: 0; color: var(--muted); }
.verify-list { display: grid; gap: 9px; align-content: center; }
.verify-list span { padding: 14px; border: 1px solid var(--line); border-radius: 13px; color: #b9c5dc; font-size: 12px; }
.verify-list b { margin-right: 10px; color: var(--blue); }
.verify-list span:last-child b { color: var(--gold); }

@media (max-width: 1040px) {
  .finder-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .hero-heading, .area-layout { grid-template-columns: 1fr; gap: 24px; }
  .hero-heading > p { max-width: 640px; }
  .featured-listings, .coverage-panel, .before-visit { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .search-hero { padding-top: 42px; }
  .hero-heading h1 { font-size: 52px; }
  .finder-form { padding: 14px; }
  .finder-grid, .filter-grid { grid-template-columns: 1fr; }
  .finder-footer { display: grid; }
  .finder-submit { width: 100%; }
  .quick-search > span { width: 100%; }
  .featured-listings, .results-grid, .category-grid, .article-listings { grid-template-columns: 1fr; }
  .featured-place { grid-template-columns: 40px 1fr; min-height: 0; padding: 24px; }
  .place-arrow { display: none; }
  .category-card { min-height: 132px; }
  .category-card > strong { margin-top: 35px; }
  .area-list a { grid-template-columns: 32px 1fr 24px; }
  .area-list a > small { display: none; }
  .filter-actions { display: grid; }
  .filter-reset { justify-self: start; }
  .results-toolbar { display: block; }
  .results-toolbar p { margin-top: 4px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .before-visit { padding: 26px; }
}

@media (max-width: 430px) {
  .hero-heading h1 { font-size: 45px; }
  .featured-place { gap: 12px; padding: 21px; }
  .place-index { font-size: 25px; }
  .finder-footer p small { display: block; margin: 3px 0 0 16px; }
}

/* Editorial guides and area landing pages */
.guide-hub-hero { padding-bottom: 34px; }
.guide-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.guide-index-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: end;
  gap: 20px;
  min-height: 250px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 22, 45, .78);
  transition: transform 170ms ease, border-color 170ms ease;
}
.guide-index-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -115px; top: -135px; border: 1px solid rgba(101, 217, 255, .15); border-radius: 50%; }
.guide-index-card.featured { background: radial-gradient(circle at 88% 12%, rgba(101, 217, 255, .17), transparent 35%), linear-gradient(145deg, #111b3a, #10162d); }
.guide-index-card:hover { transform: translateY(-4px); border-color: rgba(101, 217, 255, .4); }
.guide-index-card .guide-no { align-self: start; color: rgba(238, 243, 255, .2); font: 800 30px/1 Georgia, serif; }
.guide-index-card div { position: relative; z-index: 1; }
.guide-index-card small { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.guide-index-card h2 { margin: 44px 0 9px; font-size: clamp(22px, 3vw, 30px); line-height: 1.3; letter-spacing: -.035em; }
.guide-index-card p { margin: 0; color: var(--muted); font-size: 14px; }
.guide-index-card b { position: relative; z-index: 1; color: var(--blue); font-size: 13px; white-space: nowrap; }
.area-guide-banner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 36px 40px; border: 1px solid rgba(101, 217, 255, .2); border-radius: 26px; background: linear-gradient(120deg, rgba(101, 217, 255, .09), rgba(138, 115, 255, .07)), var(--panel-solid); }
.area-guide-banner h2 { margin-bottom: 8px; font-size: 30px; }
.area-guide-banner p { max-width: 650px; margin: 0; color: var(--muted); }

.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.decision-card { padding: 23px; border: 1px solid rgba(101, 217, 255, .2); border-radius: 19px; background: linear-gradient(145deg, rgba(101, 217, 255, .08), transparent), var(--panel); }
.decision-card.warm { border-color: rgba(255, 226, 154, .18); background: linear-gradient(145deg, rgba(255, 226, 154, .06), rgba(138, 115, 255, .06)), var(--panel); }
.decision-card > span { color: var(--blue); font-size: 12px; font-weight: 850; }
.decision-card.warm > span { color: var(--gold); }
.decision-card h3 { margin: 24px 0 8px; font-size: 23px; }
.decision-card p { margin-bottom: 20px; color: var(--muted); font-size: 14px; }
.decision-card b { color: var(--blue); font-size: 13px; }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
.compare-table { width: 100%; min-width: 680px; border-collapse: collapse; background: rgba(17, 24, 48, .76); }
.compare-table th, .compare-table td { padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; }
.compare-table thead th { color: #8f9db8; font-size: 12px; letter-spacing: .06em; }
.compare-table tbody th { color: var(--ink); font-size: 15px; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }
.faq-list { display: grid; gap: 9px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: rgba(17, 24, 48, .64); }
.faq-list summary { padding: 16px 18px; color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-list details p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: 14px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.related-links strong { width: 100%; margin-bottom: 2px; color: #7f8ba5; font-size: 12px; letter-spacing: .06em; }
.related-links a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c8d3e7; font-size: 13px; }
.related-links a:hover { color: var(--blue); border-color: rgba(101, 217, 255, .4); }
.related-wide { margin-top: 0; }

.numbered-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.numbered-points section { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(17, 24, 48, .66); }
.numbered-points span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.numbered-points h3 { margin: 30px 0 8px; font-size: 18px; }
.numbered-points p { margin: 0; color: var(--muted); font-size: 13px; }
.spotlight-place { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 24px; padding: 24px; border: 1px solid rgba(101, 217, 255, .22); border-radius: 21px; background: radial-gradient(circle at 92% 10%, rgba(101, 217, 255, .12), transparent 32%), var(--panel-solid); }
.spotlight-mark { display: grid; width: 82px; height: 82px; place-items: center; border: 1px solid var(--line); border-radius: 22px; color: var(--ink); font: 800 34px/1 Georgia, serif; background: rgba(255, 255, 255, .035); }
.spotlight-place h3 { margin: 5px 0 7px; font-size: 25px; }
.spotlight-place p { margin-bottom: 14px; color: var(--muted); font-size: 14px; }
.spotlight-place > b { color: var(--blue); font-size: 13px; white-space: nowrap; }
.price-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--line); }
.price-summary > div { display: flex; justify-content: space-between; gap: 16px; padding: 15px; background: #10172e; }
.price-summary span { color: var(--muted); font-size: 13px; }
.price-summary strong { color: var(--ink); font-size: 14px; white-space: nowrap; }
.price-hero-card { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; padding: 28px; border: 1px solid rgba(101, 217, 255, .22); border-radius: 22px; background: radial-gradient(circle at 15% 10%, rgba(101, 217, 255, .14), transparent 38%), var(--panel-solid); }
.price-hero-card > div > span { display: block; margin-top: 22px; color: var(--muted); font-size: 14px; }
.price-hero-card > div > strong { display: block; color: var(--blue); font-size: clamp(44px, 7vw, 70px); line-height: 1.05; letter-spacing: -.045em; }
.price-hero-card strong small { font-size: 20px; }
.price-hero-card p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.check-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.check-panels section { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: rgba(17, 24, 48, .64); }
.check-panels span { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .11em; }
.check-panels h3 { margin: 24px 0 7px; font-size: 18px; }
.check-panels p { margin: 0; color: var(--muted); font-size: 13px; }

.area-page-hero { padding: 76px 0 48px; }
.area-title-row { display: grid; grid-template-columns: 1fr 210px; align-items: end; gap: 50px; }
.area-title-row h1 { margin-bottom: 18px; font-size: clamp(42px, 6vw, 68px); line-height: 1.08; letter-spacing: -.055em; }
.area-title-row p { max-width: 690px; margin: 0; color: var(--muted); }
.area-stat { display: grid; place-items: center; min-height: 190px; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 50% 20%, rgba(101, 217, 255, .14), transparent 48%), var(--panel-solid); text-align: center; }
.area-stat span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.area-stat strong { display: block; font: 800 58px/1 Georgia, serif; }
.area-stat small { color: var(--muted); font-size: 12px; }
.area-finder-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.area-finder-bar span { display: block; color: #7f8ca7; font-size: 12px; }
.area-finder-bar strong { display: block; margin-top: 3px; font-size: 16px; }
.area-place-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.area-place-card { display: grid; grid-template-columns: 78px 1fr; gap: 22px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: radial-gradient(circle at 90% 8%, rgba(101, 217, 255, .13), transparent 30%), var(--panel-solid); }
.area-place-card.isis { background: radial-gradient(circle at 90% 8%, rgba(255, 226, 154, .1), transparent 30%), linear-gradient(145deg, rgba(138, 115, 255, .06), transparent), var(--panel-solid); }
.area-place-mark { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid var(--line); border-radius: 20px; color: var(--ink); font: 800 31px/1 Georgia, serif; background: rgba(255, 255, 255, .035); }
.area-place-card span { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .07em; }
.area-place-card.isis span { color: var(--gold); }
.area-place-card h3 { margin: 13px 0 8px; font-size: 26px; }
.area-place-card p { color: var(--muted); font-size: 14px; }
.area-place-card dl { margin: 20px 0; border-top: 1px solid var(--line); }
.area-place-card dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.area-place-card dt { color: #8491ab; font-size: 12px; }
.area-place-card dd { margin: 0; color: #d8e2f2; font-size: 13px; font-weight: 800; text-align: right; }
.area-place-card b { color: var(--blue); font-size: 13px; }
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.occasion-grid a { min-height: 220px; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: rgba(17, 24, 48, .7); }
.occasion-grid span { color: var(--blue); font-size: 12px; font-weight: 900; }
.occasion-grid h3 { margin: 46px 0 8px; font-size: 20px; }
.occasion-grid p { color: var(--muted); font-size: 13px; }
.occasion-grid b { color: var(--blue); font-size: 13px; }

@media (max-width: 920px) {
  .guide-index-grid, .area-place-grid { grid-template-columns: 1fr; }
  .area-title-row { grid-template-columns: 1fr 170px; }
  .numbered-points { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .guide-index-card { grid-template-columns: 38px 1fr; min-height: 0; padding: 23px; }
  .guide-index-card b { display: none; }
  .guide-index-card h2 { margin-top: 30px; }
  .area-guide-banner, .decision-grid, .check-panels, .area-title-row, .occasion-grid { grid-template-columns: 1fr; }
  .area-guide-banner { padding: 27px; }
  .compare-wrap { margin-right: -14px; }
  .spotlight-place { grid-template-columns: 66px 1fr; gap: 16px; padding: 20px; }
  .spotlight-mark { width: 62px; height: 62px; }
  .spotlight-place > b { display: none; }
  .price-summary { grid-template-columns: 1fr; }
  .price-hero-card { grid-template-columns: 1fr; }
  .area-stat { min-height: 150px; }
  .area-finder-bar { display: grid; }
  .area-place-card { grid-template-columns: 54px 1fr; gap: 15px; padding: 21px; }
  .area-place-mark { width: 52px; height: 52px; border-radius: 16px; font-size: 25px; }
}

@media (max-width: 430px) {
  .area-place-card { grid-template-columns: 1fr; }
  .area-place-card dl > div { display: grid; gap: 2px; }
  .area-place-card dd { text-align: left; }
}

/* Clean editorial theme: local guide first, nightlife second */
:root {
  --ink: #172033;
  --muted: #667085;
  --night: #f7f7f4;
  --night-2: #ffffff;
  --panel: rgba(255, 255, 255, .92);
  --panel-solid: #ffffff;
  --line: rgba(23, 32, 51, .12);
  --blue: #6457d5;
  --violet: #7569df;
  --gold: #a96f2e;
  --success: #2e9274;
  --danger: #c74f67;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 55px rgba(28, 36, 55, .09);
}

body {
  background:
    linear-gradient(rgba(100, 87, 213, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 87, 213, .035) 1px, transparent 1px),
    var(--night);
  background-size: 44px 44px;
}

.site-header,
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(250, 250, 247, .92);
  box-shadow: 0 6px 24px rgba(23, 32, 51, .04);
}

.brand { color: #171b29; letter-spacing: .055em; }
.brand small { color: #7c8494; }
.nav-links a { color: #4d5668; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--blue); }

.button,
.nav-cta {
  color: #fff;
  background: #28243c;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(40, 36, 60, .16);
}
.button:hover,
.nav-cta:hover { box-shadow: 0 13px 30px rgba(40, 36, 60, .2); }
.button.secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button.secondary:hover { border-color: rgba(100, 87, 213, .45); }

.search-hero {
  padding-top: 64px;
  background: linear-gradient(180deg, rgba(100, 87, 213, .07), transparent 78%);
}
.search-hero::before {
  width: 420px;
  height: 420px;
  right: -190px;
  top: -230px;
  border-color: rgba(100, 87, 213, .16);
  box-shadow: inset 0 0 100px rgba(100, 87, 213, .05);
}
.hero-heading h1,
.page-hero h1,
.area-title-row h1 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 650;
  letter-spacing: -.035em;
}
.hero-heading h1 { color: #171b29; }
.hero-heading > p,
.hero-lead,
.page-hero p { color: var(--muted); }
.gradient-text,
.hero h1 .gradient-text { color: #6457d5; background: none; -webkit-text-fill-color: currentColor; }
.eyebrow { color: #7569df; }

.finder-shell {
  padding: 1px;
  border-color: rgba(100, 87, 213, .2);
  border-radius: 21px;
  background: #fff;
  box-shadow: var(--shadow);
}
.finder-form { background: #fff; }
.finder-grid { border-color: var(--line); background: var(--line); }
.finder-field { background: #fff; }
.finder-field > span,
.filter-field > span { color: #8991a0; }
.finder-field select,
.finder-field input,
.filter-field select,
.filter-field input { color: var(--ink); }
.finder-field select option,
.filter-field select option { color: var(--ink); background: #fff; }
.finder-footer p,
.result-count { color: var(--muted); }
.quick-search > span { color: #848c9a; }
.quick-search a,
.quick-links a,
.filter-chip { color: #596274; background: #fff; }
.quick-search a:hover,
.quick-links a:hover,
.filter-chip:hover,
.filter-chip.is-active { color: var(--blue); background: rgba(100, 87, 213, .06); border-color: rgba(100, 87, 213, .32); }

.trust-strip,
.browse-section { background: rgba(255, 255, 255, .58); }
.trust-item,
.trust-item strong { color: #3f4859; }
.trust-item small { color: #7c8595; }
.trust-icon { color: var(--blue); background: rgba(100, 87, 213, .07); }

.featured-place,
.featured-place.isis,
.guide-card,
.guide-card:first-child,
.condition-card,
.category-card,
.listing-card,
.guide-index-card,
.guide-index-card.featured,
.decision-card,
.decision-card.warm,
.numbered-points section,
.check-panels section,
.occasion-grid a,
.area-place-card,
.area-place-card.isis,
.detail-card,
.sidebar,
.filter-panel,
.coverage-panel,
.before-visit,
.area-finder-bar,
.plan-table,
.form-shell,
.owner-step,
.faq-list details {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(28, 36, 55, .045);
}
.featured-place:hover,
.guide-index-card:hover,
.category-card:hover,
.listing-card:hover,
.condition-card:hover { border-color: rgba(100, 87, 213, .34); background: #fff; }
.featured-place::after,
.guide-card::after,
.guide-index-card::after { border-color: rgba(100, 87, 213, .13); }
.place-index,
.guide-index-card .guide-no { color: rgba(42, 46, 67, .16); }
.place-main p,
.guide-card p,
.guide-index-card p,
.condition-card p,
.listing-body p,
.coverage-panel p,
.before-visit p,
.decision-card p,
.numbered-points p,
.check-panels p,
.occasion-grid p,
.area-place-card p { color: var(--muted); }

.listing-visual,
.listing-card.isis-card .listing-visual,
.shop-visual,
.isis-shop .shop-visual {
  background: linear-gradient(145deg, #28243c, #464064);
}
.listing-monogram,
.area-place-mark,
.spotlight-mark { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); }
.status-badge { color: #fff; background: #2e9274; }
.category-stamp { color: rgba(255, 255, 255, .54); }

.shop-hero { background: #fff; box-shadow: var(--shadow); }
.shop-content .summary,
.article-body,
.price-row span,
.price-summary span { color: var(--muted); }
.facts,
.price-summary { background: var(--line); }
.fact,
.price-summary > div { background: #fff; }
.fact span,
.breadcrumbs,
.area-place-card dt { color: #7d8696; }
.tag-pill { color: #596274; background: #fafafa; }
.check-list li { color: #4f5869; background: #fafafa; }
.verify-list span { color: #586174; background: #fafafa; }
.notice { color: #50596b; background: rgba(100, 87, 213, .07); border-color: var(--blue); }
.compare-table { background: #fff; }
.compare-table thead th { color: #697386; background: #f5f5f8; }
.related-links a { color: #50596b; background: #fff; }
.area-place-card dd,
.coverage-grid > span { color: var(--ink); }
.coverage-grid > span,
.filter-field { background: #fafafa; }

.site-footer { background: #202031; }
.site-footer .brand,
.site-footer .footer-col a { color: #f7f7fb; }
.site-footer .brand small,
.site-footer .footer-copy,
.site-footer .footer-col h2,
.site-footer .footer-bottom { color: #a9aabb; }

@media (max-width: 720px) {
  .nav-links { background: rgba(250, 250, 247, .99); }
  .hero-heading h1 { font-size: 48px; }
  .finder-form { padding: 12px; }
  .finder-grid { gap: 0; }
  .finder-field { border-bottom: 1px solid var(--line); }
  .finder-field:last-child { border-bottom: 0; }
  .decision-finder { padding: 14px; }
  .decision-finder-head { display: grid; gap: 5px; }
  .decision-routes { grid-template-columns: 1fr; }
  .decision-routes a { min-height: 76px; }
  .all-conditions-link { text-align: left; }
  .category-grid-current { grid-template-columns: 1fr; }
  .area-coming { grid-template-columns: 1fr; gap: 3px; padding: 16px 0; }
}
