:root {
  --ink: #fffaf4;
  --ink-soft: #e6ddd3;
  --paper: #070707;
  --panel: #111113;
  --line: rgba(255, 250, 244, 0.14);
  --amber: #c58b3c;
  --amber-dark: #f4cc91;
  --teal: #2f7773;
  --red: #f06f64;
  --charcoal: #080706;
  --muted: #b8aea3;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 119, 115, 0.18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(197, 139, 60, 0.12), transparent 28%),
    var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.75;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 7, 7, 0.84);
  border-bottom: 1px solid rgba(255, 250, 244, 0.12);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 800;
}

.brand small {
  color: var(--teal);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.nav-item {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.74;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  width: 184px;
  display: none;
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 8px;
  background: rgba(13, 13, 16, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-dropdown-open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #fffaf4;
  font-weight: 800;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(197, 139, 60, 0.18);
  outline: none;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 119, 115, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.06);
  color: #fffaf4;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nav-toggle span {
  position: absolute;
  display: block;
  left: 11px;
  top: 20px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(2) {
  width: 14px;
  transform: translateX(6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(47, 119, 115, 0.18);
  border-color: rgba(47, 119, 115, 0.45);
  color: var(--teal);
  outline: none;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) !important;
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0 !important;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) !important;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-search-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(121, 151, 190, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 27, 40, 0.92), rgba(9, 14, 22, 0.9));
  color: #fffaf4;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 244, 0.03);
}

.nav-search-link:hover,
.nav-search-link:focus-visible {
  border-color: rgba(197, 139, 60, 0.72);
  background:
    linear-gradient(180deg, rgba(25, 35, 50, 0.98), rgba(13, 18, 28, 0.96));
  outline: none;
}

.search-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.nav-cta,
.button,
.button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-cta,
.button {
  background: var(--amber);
  color: #1b1208;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fffaf4;
  border-color: rgba(255, 255, 255, 0.22);
}

.button-outline {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 10px 16px;
  background: rgba(255, 250, 244, 0.06);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
}

.button-outline.dark-outline {
  background: rgba(255, 250, 244, 0.04);
  color: #fffaf4;
  border-color: rgba(255, 250, 244, 0.22);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: stretch;
  color: #fffaf4;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.96) 0%, rgba(16, 13, 12, 0.78) 38%, rgba(16, 13, 12, 0.14) 72%),
    url("hero-lounge.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 8vh, 96px) 0 40px;
  display: grid;
  align-content: center;
}

.hero-content {
  max-width: 680px;
}

.home-hero .hero-inner {
  min-height: min(780px, calc(100vh - 68px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f4cc91;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  max-width: 9.5em;
}

.hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 250, 244, 0.88);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.18);
}

.home-contact-strip a,
.home-contact-strip div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(16, 13, 12, 0.62);
}

.home-contact-strip span {
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
}

.home-contact-strip strong {
  color: #fffaf4;
  font-size: 1.05rem;
  line-height: 1.25;
  word-break: break-word;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.proof-item {
  padding: 18px;
  background: rgba(16, 13, 12, 0.55);
}

.proof-item strong {
  display: block;
  font-size: 1.05rem;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: clamp(56px, 7vw, 92px) 0;
}

.section.alt {
  background: #0e0d0c;
}

.intent-band {
  padding: clamp(38px, 5.5vw, 72px) 0;
}

.home-entry {
  background:
    linear-gradient(180deg, #0a0908 0%, #111113 100%);
  padding-top: clamp(44px, 6vw, 76px);
}

.section-head.compact {
  max-width: 820px;
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 119, 115, 0.16), rgba(197, 139, 60, 0.1)),
    #12110f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.link-card span {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.link-card h3 {
  margin-top: auto;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.link-card p {
  margin: 0;
  color: var(--muted);
}

.link-card:hover {
  border-color: rgba(47, 119, 115, 0.36);
  transform: translateY(-2px);
}

.intent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.intent-card {
  min-height: 100%;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(34, 24, 16, 0.07);
}

.clean-grid .intent-card {
  background: rgba(17, 17, 19, 0.86);
}

.intent-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.intent-card p {
  margin: 0;
  color: var(--muted);
}

.mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(197, 139, 60, 0.16);
  color: var(--amber-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.intent-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intent-actions {
  margin-top: 20px;
}

.social-row {
  margin-top: 14px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--amber-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.05);
}

.contact-list dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  word-break: break-word;
}

.contact-list a {
  color: #64c7bf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--amber-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.location-stat {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.07), rgba(47, 119, 115, 0.09));
}

.location-stat span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.location-stat strong {
  display: block;
  margin-top: 8px;
  color: #fffaf4;
  font-size: 2rem;
  line-height: 1;
}

.bar-category-hero {
  border-bottom: 1px solid rgba(255, 250, 244, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.96), rgba(10, 10, 12, 0.88)),
    radial-gradient(circle at 78% 20%, rgba(47, 119, 115, 0.22), transparent 28%);
}

.bar-hero-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.bar-hero-copy h1 {
  margin-bottom: 18px;
}

.bar-hero-copy p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.bar-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.04);
  box-shadow: var(--shadow);
}

.bar-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bar-hero-media figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.bar-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.bar-stat-row span {
  display: block;
  padding: 12px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.05);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.bar-stat-row strong {
  display: block;
  color: #fffaf4;
  font-size: 1.55rem;
  line-height: 1.2;
}

.bar-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-card {
  padding: 20px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.07), rgba(47, 119, 115, 0.08));
}

.signal-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.keyword-cloud,
.store-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-cloud span,
.store-tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border: 1px solid rgba(255, 250, 244, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.06);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.bar-filter-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.05);
}

.bar-filter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.bar-filter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.72);
  color: #fffaf4;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
}

.bar-filter-form input:focus {
  border-color: rgba(197, 139, 60, 0.72);
  outline: none;
}

.bar-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bar-filter-chips button {
  min-height: 34px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.05);
  color: var(--ink-soft);
  padding: 5px 11px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.bar-filter-chips button:hover,
.bar-filter-chips button:focus-visible {
  border-color: rgba(197, 139, 60, 0.62);
  background: rgba(197, 139, 60, 0.16);
  color: #fffaf4;
  outline: none;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.store-card {
  min-height: 100%;
  overflow: hidden;
}

.store-card .store-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(47, 119, 115, 0.18);
  color: #8fd2cb;
  font-size: 0.82rem;
  font-weight: 900;
}

.store-card h3 {
  margin-top: 12px;
}

.store-card h3 a:hover,
.store-card h3 a:focus-visible {
  color: var(--amber-dark);
  outline: none;
}

.store-card-media {
  display: block;
  margin: -22px -22px 16px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 244, 0.12);
  background: rgba(255, 250, 244, 0.04);
}

.store-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.store-card:hover .store-card-media img {
  transform: scale(1.035);
}

.store-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(197, 139, 60, 0.14);
  color: #f4cc91;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.store-card-meta,
.store-rating-line {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.store-rating-line strong {
  color: var(--ink-soft);
}

.store-visual {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.04);
}

.store-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.store-card dl,
.store-detail dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.store-card dl div,
.store-detail dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.store-card dt,
.store-detail dt {
  color: var(--muted);
  font-weight: 800;
}

.store-card dd,
.store-detail dd {
  margin: 0;
  color: var(--ink-soft);
}

.store-card[hidden] {
  display: none;
}

.store-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.store-fact {
  min-height: 88px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.055);
}

.store-fact.full {
  grid-column: 1 / -1;
}

.store-fact span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.store-fact strong,
.store-fact a {
  display: block;
  margin-top: 5px;
  color: #fffaf4;
  font-weight: 900;
  line-height: 1.45;
}

.rating-stars {
  display: inline-flex;
  gap: 2px;
  margin-top: 5px;
  color: #f4cc91;
  font-size: 1.18rem;
  letter-spacing: 0;
  line-height: 1;
}

.rating-stars.is-empty {
  color: rgba(255, 250, 244, 0.3);
}

.source-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(197, 139, 60, 0.22);
  border-radius: 8px;
  background: rgba(197, 139, 60, 0.08);
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.95rem;
}

.district-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.district-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.06);
  color: rgba(255, 250, 244, 0.82);
  font-weight: 800;
}

.store-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
}

.map-panel {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 119, 115, 0.22), rgba(197, 139, 60, 0.14)),
    radial-gradient(circle at 72% 22%, rgba(255, 250, 244, 0.12), transparent 28%),
    #101214;
}

.search-panel {
  display: grid;
  gap: 18px;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.055);
}

.site-search-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(7, 7, 7, 0.54);
  color: #fffaf4;
  font: inherit;
  font-weight: 800;
}

.site-search-form input::placeholder {
  color: rgba(255, 250, 244, 0.5);
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  padding: 18px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.055);
}

.search-result h2 {
  margin: 0;
  font-size: 1.15rem;
}

.search-result p {
  margin: 8px 0 0;
}

.search-result small {
  display: block;
  margin-top: 10px;
  color: var(--amber-dark);
  font-weight: 900;
}

.search-empty {
  padding: 18px;
  border: 1px solid rgba(197, 139, 60, 0.24);
  border-radius: 8px;
  background: rgba(197, 139, 60, 0.08);
  color: rgba(255, 250, 244, 0.8);
  font-weight: 800;
}

.pricing-band {
  background:
    linear-gradient(180deg, #080808 0%, #0f1011 100%);
  border-block: 1px solid rgba(255, 250, 244, 0.08);
}

.price-plans {
  display: grid;
  gap: 18px;
}

.price-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 250, 244, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.035), rgba(47, 119, 115, 0.08)),
    #0d0d10;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.price-main {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 8px;
}

.price-meta {
  color: rgba(255, 250, 244, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0;
}

.price-plan h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.price-features {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 clamp(20px, 4vw, 58px);
  border-left: 1px solid rgba(255, 250, 244, 0.18);
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 250, 244, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
}

.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -0.08em;
  color: #36d47f;
  font-size: 1.18em;
  font-weight: 900;
}

.price-note {
  margin: 18px 0 0;
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.95rem;
}

.price-actions {
  margin-top: 22px;
}

.check-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(197, 139, 60, 0.16);
  color: var(--amber-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 54px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf4;
  background: var(--teal);
  font-weight: 900;
  font-size: 0.85rem;
}

.notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(240, 111, 100, 0.28);
  border-radius: 8px;
  background: rgba(240, 111, 100, 0.08);
}

.notice strong {
  color: var(--red);
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

th {
  background: rgba(197, 139, 60, 0.16);
  color: var(--ink);
}

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

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
}

.article {
  max-width: 860px;
}

.article h1 {
  color: var(--ink);
  max-width: none;
}

.article h2 {
  margin-top: 34px;
}

.article p,
.article li {
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--teal);
  font-weight: 800;
}

.mini-hero {
  padding: 64px 0 48px;
  background:
    linear-gradient(135deg, #080706, #151311 58%, #0b1110);
  color: #fffaf4;
}

.mini-hero h1 {
  max-width: 920px;
}

.mini-hero p {
  max-width: 760px;
  color: rgba(255, 250, 244, 0.78);
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.checklist label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.checklist input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) 0;
  color: rgba(255, 250, 244, 0.78);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #100d0c 0%, #172826 54%, #100d0c 100%);
  background-size: 34px 34px, 34px 34px, auto;
  border-top: 1px solid rgba(197, 139, 60, 0.32);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 139, 60, 0.9), rgba(47, 119, 115, 0.85), transparent);
}

.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 1.15fr;
  gap: 14px;
  align-items: stretch;
}

.site-footer a,
.site-footer strong {
  color: #fffaf4;
}

.footer-grid > div {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 250, 244, 0.13);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 38px rgba(0, 0, 0, 0.18);
}

.footer-grid > div:first-child {
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(197, 139, 60, 0.2), rgba(47, 119, 115, 0.14)),
    rgba(255, 250, 244, 0.055);
}

.footer-grid > div:first-child strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 250, 244, 0.68);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 3px;
  color: #f4cc91;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.footer-links a,
.footer-links span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 244, 0.11);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.055);
  color: rgba(255, 250, 244, 0.84);
  font-weight: 800;
  line-height: 1.25;
}

.footer-links a:hover {
  border-color: rgba(197, 139, 60, 0.55);
  background: rgba(197, 139, 60, 0.14);
  color: #fffaf4;
}

.footer-links span {
  color: rgba(255, 250, 244, 0.72);
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10, 8, 7, 0.96) 0%, rgba(16, 13, 12, 0.84) 58%, rgba(16, 13, 12, 0.36) 100%),
      url("hero-lounge.jpg") center / cover no-repeat;
  }

  .hero-inner {
    min-height: 720px;
    align-content: start;
  }

  .grid.three,
  .grid.two,
  .intent-grid,
  .home-link-grid,
  .location-summary,
  .store-detail,
  .store-facts,
  .site-search-form,
  .price-plan,
  .footer-grid,
  .notice {
    grid-template-columns: 1fr;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bar-hero-grid,
  .bar-signal-grid {
    grid-template-columns: 1fr;
  }

  .bar-hero-grid {
    padding: 46px 0 42px;
  }

  .bar-stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .notice-actions {
    justify-content: stretch;
  }

  .home-contact-strip {
    grid-template-columns: 1fr;
  }

  .price-features {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 244, 0.16);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 72px;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    width: 100%;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 250, 244, 0.18);
    border-radius: 8px;
    background: rgba(16, 13, 12, 0.56);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav.is-open .nav-links {
    display: grid;
    gap: 6px;
  }

  .nav-links a {
    min-height: 46px;
    justify-content: flex-end;
    padding: 8px 10px;
    border-radius: 8px;
    color: #fffaf4;
  }

  .nav-item {
    width: 100%;
    display: grid;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: flex-end;
    padding: 8px 10px;
    border: 1px solid rgba(255, 250, 244, 0.08);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.04);
    color: #fffaf4;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 6px;
    padding: 6px;
    background: rgba(7, 7, 7, 0.36);
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-dropdown-open .nav-dropdown-menu {
    display: grid;
    gap: 6px;
  }

  .nav-dropdown-menu a {
    min-height: 42px;
    justify-content: flex-end;
    border: 1px solid rgba(255, 250, 244, 0.08);
    background: rgba(255, 250, 244, 0.045);
  }

  .nav-links a:not(.nav-cta) {
    border: 1px solid rgba(255, 250, 244, 0.08);
    background: rgba(255, 250, 244, 0.04);
  }

  .nav-links a:not(.nav-cta):hover {
    border-color: rgba(197, 139, 60, 0.42);
    background: rgba(197, 139, 60, 0.16);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-links .nav-search-link {
    justify-content: center;
    border-color: rgba(121, 151, 190, 0.54);
    background:
      linear-gradient(180deg, rgba(18, 27, 40, 0.9), rgba(9, 14, 22, 0.78));
  }

  .bar-hero-grid {
    width: min(100% - 24px, 1180px);
  }

  .bar-stat-row,
  .bar-filter-form {
    grid-template-columns: 1fr;
  }

  .store-card-media {
    margin: -18px -18px 14px;
  }

  .store-card .button-outline {
    width: 100%;
  }

  .hero-inner,
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .home-hero .hero-inner {
    min-height: 640px;
    padding-top: 50px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .home-contact-strip {
    margin-top: 28px;
  }

  .home-hero .hero-content > p {
    font-size: 14px;
    line-height: 1.75;
  }

  .home-contact-strip a,
  .home-contact-strip div {
    min-height: 66px;
    padding: 12px 14px;
  }

  .link-card {
    min-height: 142px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .button-secondary,
  .button-outline {
    width: 100%;
  }
}
