@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'yekan-bakh';
  src: url(/assets/fonts/Yekan\ Bakh\ Fa\ 05\ Medium.ttf);
  font-weight: 400;
}
@font-face {
  font-family: 'yekan-bakh';
  src: url(/assets/fonts/Yekan\ Bakh\ Fa\ 06\ Bold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: 'yekan-bakh';
  src: url(/assets/fonts/Yekan\ Bakh\ Fa\ 07\ Heavy.ttf);
  font-weight: 700;
}
@font-face {
  font-family: 'yekan-bakh';
  src: url(/assets/fonts/Yekan\ Bakh\ Fa\ 08\ Fat.ttf);
  font-weight: 800;
}

:root {
  --ink: #14201c;
  --ink-soft: #2a3a34;
  --muted: #5a6b64;
  --line: rgba(20, 32, 28, 0.12);
  --bg: #eef2f1;
  --bg-deep: #e2ebe7;
  --surface: #ffffff;
  --accent: #0d5c4d;
  --accent-hover: #0a4a3e;
  --gold: #9a7b4f;
  --gold-soft: rgba(154, 123, 79, 0.14);
  --shadow: 0 18px 40px rgba(20, 32, 28, 0.08);
  --radius: 18px;
  --font: 'Vazirmatn', 'Yekan Bakh', 'yekan-bakh', Tahoma, sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(13, 92, 77, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(154, 123, 79, 0.08), transparent 50%),
    linear-gradient(180deg, #f4f7f6 0%, var(--bg) 40%, var(--bg-deep) 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

.site-shell { min-height: 100dvh; display: flex; flex-direction: column; }
.site-main { flex: 1; }

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 246, 0.88);
  border-bottom: 1px solid var(--line);
}
.site-nav-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand em {
  font-style: normal;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--surface);
  color: transparent;
  background: transparent;
  border: none;
  opacity: 0.8;
}
.nav-actions .nav-toggle::before { content: ''; position: absolute; left: 22px; top: 22px; display: block; width: 27px; height: 18px; border-top: 2px solid #000; border-bottom: 2px solid #000; }
.nav-actions .nav-toggle::after { content: ''; position: absolute; left: 22px; top: 32px; display: block; width: 32px; height: 2px; background: #000 }
.nav-actions .nav-toggle::after { width: 27px; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #f7fbf9;
  box-shadow: 0 12px 28px rgba(13, 92, 77, 0.22);
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost.color {
  color: #000 !important;
  border-color: rgba(0,0,0,0.35) !important;
  background: rgba(255,255,255,0.06) !important;
}
.btn-ghost:hover { background: rgba(255,255,255,0.7) !important;
 color: #000 !important;
}
.btn-gold {
  background: var(--gold);
  color: #fff8ef;
  box-shadow: 0 12px 28px rgba(154, 123, 79, 0.25);
}
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 0.88rem; border-radius: 12px; }

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92dvh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 20, 0.28) 0%, rgba(10, 24, 20, 0.55) 45%, rgba(10, 24, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 24, 20, 0.55) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
  color: #f4f7f6;
  animation: riseIn 0.9s ease both;
}
.hero-brand {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.hero-brand span { color: #d8c19a; }
.hero-lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(244, 247, 246, 0.88);
  font-weight: 500;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions .btn-ghost {
  color: #f4f7f6;
  border-color: rgba(244, 247, 246, 0.35);
  background: rgba(255,255,255,0.06);
}
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* —— Sections —— */
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 36px;
  animation: riseIn 0.7s ease both;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.page-hero {
  padding: 56px 0 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— Feature strip (home) —— */
.strip-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.strip-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.25s ease;
}
.strip-item:hover { background: rgba(255,255,255,0.45); }
.strip-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.strip-item h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
}
.strip-item p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

/* —— Directory / showcase —— */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.showcase.reverse { direction: ltr; }
.showcase.reverse > * { direction: rtl; }
.showcase-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--bg-deep);
}
.showcase-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}
.showcase:hover .showcase-visual img { transform: scale(1.04); }
.showcase-copy h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  font-weight: 800;
}
.showcase-copy p { margin: 0 0 18px; color: var(--muted); }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}
.hide {
  display: none !important;
}

/* —— Geo permission prompt —— */
.mm-geo-prompt {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.mm-geo-prompt-inner {
  pointer-events: auto;
  width: min(520px, 100%);
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mm-geo-prompt-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 600;
}
.mm-geo-prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* —— Directory filters —— */
.dir-filters {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 92%, var(--gold-soft));
}
.dir-filters-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: end;
}
.dir-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dir-filter-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.dir-filter-field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}
.dir-filter-actions {
  display: flex;
  align-items: end;
}
.dir-filter-notice {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(180, 83, 9, 0.1);
  border: 1px solid rgba(180, 83, 9, 0.28);
  color: #9a3412;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

/* —— Directory grid —— */
.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.dir-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.dir-item:hover { transform: translateY(-4px); }
.dir-item-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}
.dir-item-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.dir-item:hover .dir-item-media img { transform: scale(1.05); }
.dir-item-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dir-item-body h3 { margin: 0; font-size: 1.15rem; font-weight: 800; }
.dir-item-body p { margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1; }
a.dir-item-link { color: inherit; text-decoration: none; }
.dir-item-cta {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.dir-rank {
  display: flex;
  gap: 2px;
  color: rgba(15, 23, 42, 0.22);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.dir-rank .on { color: #d4a017; }
.dir-rank .half {
  background: linear-gradient(90deg, #d4a017 50%, rgba(15, 23, 42, 0.22) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* —— Listing detail —— */
.listing-detail { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; padding-top: 28px; }
.listing-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 12px;
}
.listing-hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111827;
}
.listing-hero-media > img,
.listing-gallery-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 0;
}
.listing-gallery-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.listing-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: none;
}
.listing-gallery-slide.is-active { display: block; }
.listing-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #111827;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.listing-gallery-nav.prev { right: 14px; }
.listing-gallery-nav.next { left: 14px; }
.listing-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.listing-gallery-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.listing-gallery-dot.is-active { background: #fff; }
.listing-rank {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.listing-rank-stars {
  color: rgba(15, 23, 42, 0.2);
  letter-spacing: 1px;
}
.listing-rank-stars .on { color: #d4a017; }
.listing-rank-stars .half {
  background: linear-gradient(90deg, #d4a017 50%, rgba(15, 23, 42, 0.2) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.listing-rank-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}
.listing-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.listing-back {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.listing-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}
.listing-summary {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}
.listing-body {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: start;
  padding-top: 28px;
}
.listing-main h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
}
.listing-main h2 + .listing-description,
.listing-main h2 + .listing-highlights { margin-bottom: 28px; }
.listing-description {
  color: var(--ink-soft);
  line-height: 1.85;
}
.listing-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.listing-highlights li {
  position: relative;
  padding-right: 1.15rem;
  color: var(--ink-soft);
}
.listing-highlights li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.listing-info-card {
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.listing-info-card h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
}
.listing-dl {
  margin: 0;
  display: grid;
  gap: 14px;
}
.listing-dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}
.listing-dl dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.listing-dl a { color: var(--accent); font-weight: 700; }

/* —— Pricing —— */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.price-plan {
  padding: 28px 26px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.price-plan:hover { transform: translateY(-3px); }
.price-plan.is-featured {
  border-color: rgba(13, 92, 77, 0.45);
  background:
    linear-gradient(180deg, rgba(13, 92, 77, 0.06), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow);
}
.price-plan h3 { margin: 0; font-size: 1.25rem; font-weight: 800; }
.price-plan .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.price-plan .price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.price-plan p { margin: 0; color: var(--muted); }
.price-plan ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-plan li {
  position: relative;
  padding-right: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.price-plan li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* —— Feature detail —— */
.feature-blocks { display: grid; gap: 28px; }
.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--line);
}
.feature-block:nth-child(even) { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.feature-block:nth-child(even) .feature-block-copy { order: 2; }
.feature-block:nth-child(even) .feature-block-visual { order: 1; }
.feature-block h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
}
.feature-block p { margin: 0; color: var(--muted); }
.feature-block-visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(13, 92, 77, 0.12), rgba(154, 123, 79, 0.1)),
    var(--surface);
  border: 1px solid var(--line);
}
.feature-block-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.feature-block-visual .visual-panel {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.feature-block-visual .visual-panel strong {
  font-size: 1.2rem;
  font-weight: 800;
}
.feature-block-visual .visual-panel span { color: var(--muted); font-size: 0.95rem; }

/* —— CTA band —— */
.cta-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 40px 36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13, 92, 77, 0.92), rgba(20, 50, 42, 0.95)),
    var(--accent);
  color: #f4f7f6;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 24px;
  align-items: center;
  animation: riseIn 0.8s ease both;
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
}
.cta-band p { margin: 0; color: rgba(244, 247, 246, 0.85); max-width: 34rem; }
.cta-band .btn-gold { color: #1a1510; }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  margin-top: auto;
}
.site-footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-links a:hover { color: var(--accent); }
.footer-licence {
  display: inline-block;
  height: 44px;
}

.footer-licence img {
  height: 100%;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (min-width: 900px){

  .site-nav-inner {display: flex;}
  .site-nav-inner > * { flex: 1;}
  .menu-toggle { display: none; }
  .brand-container { display: flex; flex: 1; justify-content: start; }
  .nav-links { display: flex; flex: 2; justify-content: center; }
  .nav-actions { display: flex; flex: 1; justify-content: end; }
}

@media (max-width: 900px) {
  .showcase,
  .showcase.reverse,
  .feature-block,
  .feature-block:nth-child(even),
  .price-grid,
  .dir-grid,
  .dir-filters-grid,
  .cta-band,
  .listing-hero,
  .listing-body {
    grid-template-columns: 1fr;
  }
  .dir-filter-actions .btn { width: 100%; }
  .listing-info-card { position: static; }
  .feature-block:nth-child(even) .feature-block-copy,
  .feature-block:nth-child(even) .feature-block-visual {
    order: initial;
  }
  .showcase.reverse { direction: rtl; }

  .nav-actions { position: absolute; left: 0; top: 0; padding: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
  }
  .site-nav-inner { flex-wrap: wrap;}
  .menu-toggle { display: inline-flex; }
  .brand-container { justify-content: center; }
  .site-nav.is-open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    border-radius: 10px;
  }
  .nav-links a.is-active { border-bottom-color: var(--line); background: rgba(13, 92, 77, 0.08); }
  .hero { min-height: min(88dvh, 700px); }
  .hero-content { padding: 56px 0 40px; }
  .section { padding: 56px 0; }
  .cta-band { padding: 32px 24px; text-align: center; justify-items: center; }
}

@media (max-width: 620px) {
  /* .site-nav-inner { flex-direction: column; }
  .site-nav-inner > * { flex: 1;} */
  /* .nav-actions .btn-ghost { display: none; } */
  .dir-grid { grid-template-columns: 1fr; }
  .strip-item { grid-template-columns: 3rem 1fr; gap: 12px; }
  .hero-brand { font-size: 2.4rem; }
}
