/* ================================================================
   A to Z Tax — design system
   editorial-fintech, ink navy + oat + amber, Fraunces + Inter
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Cool near-monochrome. No warm beige, no gold, no terracotta.
     Photography supplies the only real color on the page; UI stays graphite-on-paper
     with one quiet moss tint reserved for links and small marks. */
  --ink:        #15171A;       /* body + headings — graphite, not pure black */
  --ink-soft:   #5C6066;       /* secondary text */
  --ink-40:     rgba(21,23,26,.38);
  --ink-14:     rgba(21,23,26,.12);
  --ink-08:     rgba(21,23,26,.06);
  --paper:      #F2F3F1;       /* cool off-white, faintly green-grey */
  --oat:        #E6E8E4;       /* subtle surface shift, ~6% darker than paper */
  --oat-2:      #D7DAD5;       /* borders, hover states */
  --ink-dark:   #1D1F22;       /* "dark" section background — still ink, not taupe */
  --moss:       #3C5446;       /* muted deep moss — used VERY sparingly */
  --moss-deep:  #2C4034;
  --amber:      #3C5446;       /* legacy alias — now moss, not gold */
  --amber-deep: #2C4034;       /* legacy alias */
  --sage:       #6B7670;       /* cool sage for neutral tags */
  --brick:      #3C5446;       /* alias */
  --plum:       #3C5446;       /* alias */
  --plum-deep:  #2C4034;       /* alias */
  --line:       rgba(21,23,26,.09);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(43,39,34,.04), 0 2px 8px rgba(43,39,34,.03);
  --shadow-md: 0 4px 16px rgba(43,39,34,.06);
  --shadow-lg: 0 12px 36px rgba(43,39,34,.08);

  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
}
.serif-italic { font-style: italic; font-family: var(--font-display); font-weight: 400; }

.num { font-variant-numeric: tabular-nums lining-nums; font-feature-settings: 'tnum'; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ================================================================
   HEADER
   ================================================================ */
.az-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.1) blur(8px);
}
.az-header .inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
/* Pure wordmark — "Tax Prep" in Fraunces display as the category keyword,
   "Directory" in the UI sans tail as the site-type descriptor. SEO-first:
   the brand name literally names what the site is, not a clever symbol. */
.az-brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.az-brand .b-serif {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}
.az-brand .b-tail {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 10px;
  border-left: 1px solid var(--line);
  line-height: 1;
  align-self: center;
}

.az-nav { display: flex; gap: 28px; margin-left: 12px; }
.az-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
}
.az-nav a:hover { color: var(--ink); }
.az-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--ink); opacity: .6;
}
.az-header-right { margin-left: auto; display: flex; gap: 14px; align-items: center; }
.az-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all .15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.az-btn.primary { background: var(--ink); color: var(--oat); }
.az-btn.primary:hover { background: var(--ink-soft); }
.az-btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.az-btn.ghost:hover { border-color: var(--ink); }
.az-btn.amber { background: var(--amber); color: var(--ink); }
.az-btn.amber:hover { background: var(--amber-deep); color: var(--oat); }

@media (max-width: 900px) {
  .az-nav { display: none; }
  .az-header .inner { height: 64px; }
  .az-header-right .az-btn.ghost { display: none; }
}
@media (max-width: 420px) {
  .az-header-right .az-btn.primary { padding: 9px 14px; font-size: 13px; }
}

/* ================================================================
   HERO (homepage)
   ================================================================ */
.az-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
.az-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(43,39,34,.035) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(43,39,34,.035) 39px 40px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 75%);
  pointer-events: none;
}
.az-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 88px;
}
.az-hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 14px 6px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 28px;
}
.az-hero-kicker .dot { width: 6px; height: 6px; background: var(--ink-soft); border-radius: 50%; opacity: .6; }

.az-hero h1 {
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.az-hero h1 em {
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  opacity: .72;
}
.az-hero h1 .accent-line {
  display: inline-block; position: relative;
}
.az-hero h1 .accent-line::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 1px; background: var(--ink);
  opacity: .35;
  z-index: 0;
}
.az-hero-lede {
  font-size: 19px; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.az-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.az-hero-meta {
  display: flex; gap: 36px; margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.az-hero-meta .stat-num {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.az-hero-meta .stat-label {
  font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* hero spotlight card */
.az-spotlight {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: translateY(28px);
}
.az-spotlight-cover {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink-08);
  overflow: hidden;
}
.az-spotlight-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); }
.az-spotlight-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--paper); color: var(--ink);
  padding: 7px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.az-spotlight-body { padding: 26px 28px 28px; }
.az-spotlight-city {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-bottom: 10px;
}
.az-spotlight-name {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.az-spotlight-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px; line-height: 1.5;
  color: var(--ink-soft);
  border-left: 2px solid var(--ink-14);
  padding-left: 14px; margin: 16px 0 22px;
}
.az-spotlight-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 14px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.az-spotlight-stats .s-v {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
}
.az-spotlight-stats .s-l {
  font-size: 11px; color: var(--ink-soft);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 960px) {
  .az-hero { padding-top: 56px; }
  .az-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .az-spotlight { transform: none; }
}

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.az-section { padding: 104px 0; }
.az-section.tight { padding: 72px 0; }
.az-section.ink { background: var(--ink-dark); color: var(--paper); }
.az-section.oat { background: var(--oat); }

.az-sec-head {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: end;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.az-section.ink .az-sec-head { border-bottom-color: rgba(248,244,235,.14); }
.az-sec-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}
.az-section.ink .az-sec-kicker { color: rgba(248,244,235,.65); }
.az-sec-title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  max-width: 720px;
}
.az-sec-title em { font-style: italic; color: inherit; opacity: .64; }
.az-section.ink .az-sec-title em { color: inherit; opacity: .68; }
.az-sec-link {
  font-size: 14px; font-weight: 500;
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}
.az-section.ink .az-sec-link { color: var(--oat); border-color: rgba(248,244,235,.3); }

@media (max-width: 720px) {
  .az-sec-head { grid-template-columns: 1fr; gap: 12px; }
}

/* ================================================================
   SPECIALTY CARDS (6 categories)
   ================================================================ */
.az-specialty {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.az-specialty-card {
  background: var(--paper);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background .2s ease;
  position: relative;
}
.az-specialty-card:hover { background: var(--oat); }
.az-specialty-card .idx {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.az-specialty-card h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
}
.az-specialty-card .desc {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.55;
}
.az-specialty-card .count {
  margin-top: auto; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--line);
}
.az-specialty-card .count .n {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  letter-spacing: -0.015em;
}
.az-specialty-card .count .l {
  font-size: 12px; color: var(--ink-soft);
}
.az-specialty-card .arrow {
  position: absolute; top: 32px; right: 32px;
  width: 32px; height: 32px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease;
}
.az-specialty-card:hover .arrow { border-color: var(--ink); transform: rotate(-45deg); }

@media (max-width: 900px) { .az-specialty { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .az-specialty { grid-template-columns: 1fr; } }

/* ================================================================
   FEATURED FIRMS GRID
   ================================================================ */
.az-firms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.az-firm {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.az-firm:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.az-firm-cover {
  position: relative;
  aspect-ratio: 3/2;
  background: var(--ink-08);
  overflow: hidden;
}
.az-firm-cover img { width: 100%; height: 100%; object-fit: cover; }
.az-firm-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 11px; border-radius: 4px;
  background: var(--paper); color: var(--ink);
  font-size: 11px; letter-spacing: 0.05em;
  font-weight: 600; text-transform: uppercase;
}
.az-firm-rating {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 11px;
  background: rgba(43,39,34,.72);
  color: var(--paper);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  backdrop-filter: blur(6px);
}
.az-firm-rating svg { width: 13px; height: 13px; fill: var(--amber); }
.az-firm-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.az-firm-city {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.az-firm h3 {
  font-size: 22px; line-height: 1.2;
  margin-bottom: 10px;
}
.az-firm .addr {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 18px;
}
.az-firm-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-soft);
}
.az-firm-meta .mk { font-family: var(--font-mono); letter-spacing: 0.05em; }
.az-firm-meta .mk span { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) { .az-firms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .az-firms { grid-template-columns: 1fr; } }

/* ================================================================
   NUMBERS STRIP
   ================================================================ */
.az-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 56px 0;
  border-top: 1px solid rgba(248,244,235,.18);
  border-bottom: 1px solid rgba(248,244,235,.18);
}
.az-num-cell {
  padding: 0 32px;
  border-right: 1px solid rgba(248,244,235,.12);
}
.az-num-cell:last-child { border-right: 0; }
.az-num-cell .n {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.az-num-cell .n em { font-style: italic; color: inherit; opacity: .65; }
.az-num-cell .l {
  margin-top: 14px;
  font-size: 13px; color: rgba(248,244,235,.68);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .az-numbers { grid-template-columns: repeat(2, 1fr); }
  .az-num-cell { padding: 20px 24px; border-bottom: 1px solid rgba(248,244,235,.12); }
  .az-num-cell:nth-child(2n) { border-right: 0; }
}

/* ================================================================
   CITY GRID
   ================================================================ */
.az-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.az-city {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-08);
  transition: transform .4s ease;
}
.az-city:hover { transform: translateY(-4px); }
.az-city img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: saturate(.82) brightness(.92); }
.az-city:hover img { transform: scale(1.05); }
.az-city::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(43,39,34,.66));
}
.az-city .label {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  color: var(--oat);
  z-index: 1;
}
.az-city .label h3 {
  font-size: 26px; letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--paper);
}
.az-city .label .sub {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(248,244,235,.8);
}
.az-city .label .sub span { color: rgba(248,244,235,.82); }

@media (max-width: 900px) { .az-cities { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   EDITORIAL GUIDE
   ================================================================ */
.az-guide {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.az-guide-text h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.az-guide-text h2 em { font-style: italic; color: inherit; opacity: .64; }
.az-guide-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
}
.az-checklist {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.az-check-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.az-check-item .num-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  padding-top: 4px;
  letter-spacing: 0.08em;
}
.az-check-item h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.az-check-item p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.az-guide-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--oat-2);
}
.az-guide-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); }
.az-guide-visual::before {
  content: ''; position: absolute; inset: 24px;
  border: 1px solid rgba(248,244,235,.4);
  z-index: 1;
  pointer-events: none;
}
.az-guide-card {
  position: absolute;
  right: -24px; bottom: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
  z-index: 2;
}
.az-guide-card .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.az-guide-card .stmt {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1.25;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .az-guide { grid-template-columns: 1fr; gap: 40px; }
  .az-guide-card { right: 16px; bottom: 16px; max-width: 220px; padding: 18px; }
}

/* ================================================================
   TRUST BAND / FOOTER
   ================================================================ */
.az-footer {
  background: var(--ink);
  color: var(--oat);
  padding: 80px 0 40px;
}
.az-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248,244,235,.14);
}
.az-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,244,235,.55);
  margin-bottom: 20px;
}
.az-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.az-footer li a { font-size: 14px; color: rgba(248,244,235,.75); }
.az-footer li a:hover { color: var(--oat); }
.az-footer .brand-block .pitch {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 18px 0 20px;
  max-width: 360px;
  color: var(--paper);
}
.az-footer .brand-block .pitch em { font-style: italic; color: inherit; opacity: .7; }
.az-footer .disclosure {
  font-size: 12px; line-height: 1.6;
  color: rgba(248,244,235,.55);
  max-width: 420px;
}
.az-footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 12px; color: rgba(248,244,235,.55);
  flex-wrap: wrap;
}
.az-footer-bottom a { color: rgba(248,244,235,.75); }
.az-footer-bottom a:hover { color: var(--oat); }

@media (max-width: 900px) {
  .az-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .az-footer-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HOTEL (FIRM DETAIL) PAGE
   ================================================================ */
.az-detail-top {
  padding: 40px 0 24px;
  background: var(--oat);
  border-bottom: 1px solid var(--line);
}
.az-breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  display: flex; gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.az-breadcrumb a:hover { color: var(--ink); }
.az-breadcrumb .sep { color: var(--ink-14); }
.az-detail-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.az-detail-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px;
}
.az-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}
.az-chip.primary { background: var(--ink); color: var(--oat); border-color: var(--ink); }
.az-chip.amber { background: var(--oat); color: var(--ink); border-color: var(--ink-14); }

.az-detail-head h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
}
.az-detail-sub {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
  align-items: center;
}
.az-detail-sub .rating-big {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.az-detail-sub .rating-big .score {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.az-detail-sub .rating-big .stars { display: inline-flex; align-items: center; flex-shrink: 0; }
.az-detail-sub .rating-big .stars svg { width: 14px; height: 14px; fill: var(--amber); margin-right: 2px; flex-shrink: 0; }

.az-detail-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Gallery */
.az-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 520px;
  margin: 32px 0 0;
}
.az-gallery .g {
  overflow: hidden;
  background: var(--ink-08);
  position: relative;
}
.az-gallery .g:nth-child(1) { grid-row: 1/3; border-top-left-radius: var(--radius-md); border-bottom-left-radius: var(--radius-md); }
.az-gallery .g:nth-child(2) { border-top-right-radius: var(--radius-md); }
.az-gallery .g:nth-child(4) { border-bottom-right-radius: var(--radius-md); }
.az-gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.az-gallery .g:hover img { transform: scale(1.04); }
.az-gallery .g.more {
  display: grid; place-items: center; color: var(--oat); background: var(--ink);
  font-family: var(--font-display); font-size: 20px;
}
.az-gallery .g[data-lb-index], .az-gallery img[data-lb-index] { cursor: zoom-in; }

/* Lightbox */
.az-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(21, 23, 26, 0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 64px;
}
.az-lightbox.open { display: flex; }
.az-lightbox .lb-stage {
  margin: 0; max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.az-lightbox .lb-img {
  max-width: 100%; max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.az-lightbox .lb-counter {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(248, 244, 235, 0.7);
  text-transform: uppercase;
}
.az-lightbox .lb-close,
.az-lightbox .lb-nav {
  position: absolute;
  background: rgba(248, 244, 235, 0.1);
  color: var(--paper);
  border: 1px solid rgba(248, 244, 235, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  line-height: 1;
  transition: background .15s, border-color .15s;
}
.az-lightbox .lb-close:hover,
.az-lightbox .lb-nav:hover { background: rgba(248, 244, 235, 0.2); border-color: rgba(248, 244, 235, 0.4); }
.az-lightbox .lb-close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 28px;
}
.az-lightbox .lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 32px;
}
.az-lightbox .lb-prev { left: 24px; }
.az-lightbox .lb-next { right: 24px; }

@media (max-width: 640px) {
  .az-lightbox { padding: 16px; }
  .az-lightbox .lb-nav { width: 40px; height: 40px; font-size: 24px; }
  .az-lightbox .lb-prev { left: 8px; }
  .az-lightbox .lb-next { right: 8px; }
  .az-lightbox .lb-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
}

@media (max-width: 800px) {
  .az-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; height: auto; }
  .az-gallery .g:nth-child(1) { grid-column: 1/3; grid-row: 1; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .az-gallery .g:nth-child(2) { border-radius: 0; }
  .az-gallery .g:nth-child(4) { border-radius: 0 0 0 var(--radius-md); }
  .az-gallery .g:nth-child(5) { border-radius: 0 0 var(--radius-md) 0; }
  .az-detail-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .az-detail-actions { flex-wrap: wrap; }
  .az-detail-actions .az-btn { flex: 1 1 auto; justify-content: center; }
  .az-detail-head h1 { font-size: clamp(32px, 8vw, 44px); }
}

/* Detail body */
.az-detail-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 104px;
}
.az-detail-main h2 {
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.az-detail-main p.lede {
  font-size: 18px; line-height: 1.65;
  color: var(--ink-soft);
}
.az-detail-main .section-block { padding: 40px 0; border-top: 1px solid var(--line); }
.az-detail-main .section-block:first-child { border-top: 0; padding-top: 0; }

.az-highlights {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.az-hl {
  padding: 20px 22px;
  background: var(--oat);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--ink-14);
}
.az-hl .l {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 8px;
}
.az-hl .v {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.01em;
  line-height: 1.2;
}
.az-hl .m {
  font-size: 13px; color: var(--ink-soft);
  margin-top: 6px;
}

.az-amenity-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.az-amenity {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}
.az-amenity h4 {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.az-amenity .ad {
  font-size: 13px; color: var(--ink-soft); margin-bottom: 16px;
}
.az-amenity ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.az-amenity li { display: flex; gap: 10px; font-size: 14px; align-items: start; }
.az-amenity li::before {
  content: ''; width: 16px; height: 16px; flex: 0 0 16px;
  background: var(--sage); border-radius: 50%;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 8l3 3 5-6" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>') center/contain no-repeat;
  margin-top: 2px;
}

/* Hours table */
.az-hours {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.az-hours-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.az-hours-row:last-child { border-bottom: 0; }
.az-hours-row .d { font-weight: 500; }
.az-hours-row .h { font-family: var(--font-mono); color: var(--ink-soft); letter-spacing: 0.02em; }
.az-hours-row.closed .h { color: var(--brick); }
.az-hours-row.weekend { background: var(--oat); }

/* Reviews / quotes */
.az-quotes {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.az-quote {
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
}
.az-quote::before {
  content: '"';
  position: absolute; top: 6px; left: 18px;
  font-family: var(--font-display);
  font-size: 64px; color: var(--ink-14); line-height: 1;
}
.az-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px; line-height: 1.55;
  color: var(--ink);
  margin: 18px 0 8px;
  padding-left: 8px;
}
.az-quote .attrib {
  font-size: 12px;
  color: var(--ink-soft);
  display: flex; gap: 6px; align-items: center;
  padding-left: 8px;
}

/* Sidebar booking card */
.az-book-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.az-book-head {
  background: var(--ink);
  color: var(--oat);
  padding: 22px 26px;
}
.az-book-head .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(248,244,235,.65);
  margin-bottom: 8px;
}
.az-book-head h3 {
  font-family: var(--font-display);
  font-size: 22px; color: var(--paper);
  letter-spacing: -0.01em;
}
.az-book-channels { padding: 12px 0; }
.az-book-channel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.az-book-channel:last-child { border-bottom: 0; }
.az-book-channel:hover { background: var(--oat); }
.az-book-channel .cn {
  font-weight: 500; font-size: 15px; margin-bottom: 2px;
}
.az-book-channel .cm { font-size: 12px; color: var(--ink-soft); }
.az-book-channel .cta-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--oat);
  font-size: 12px; font-weight: 500;
}
.az-book-channel .cta-pill.ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }

.az-book-foot {
  padding: 18px 26px;
  background: var(--oat);
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-soft);
  line-height: 1.5;
}

.az-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.az-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 1000px) {
  .az-detail-body { grid-template-columns: 1fr; gap: 48px; }
  .az-book-card { position: static; }
  .az-highlights { grid-template-columns: 1fr; }
  .az-amenity-grid { grid-template-columns: 1fr; }
  .az-quotes { grid-template-columns: 1fr; }
}

/* ================================================================
   DESTINATIONS PAGE
   ================================================================ */
.az-dest-hero {
  padding: 96px 0 56px;
  background: var(--oat);
  border-bottom: 1px solid var(--line);
}
.az-dest-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 900px;
  margin-bottom: 24px;
}
.az-dest-hero h1 em { font-style: italic; color: inherit; opacity: .64; }
.az-dest-hero .lede {
  font-size: 18px; color: var(--ink-soft);
  max-width: 620px;
}
.az-dest-meta {
  display: flex; gap: 32px; margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 13px;
}
.az-dest-meta span b { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-right: 6px; }

.az-state-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 72px;
  background: var(--paper);
  z-index: 20;
}
.az-state-chip {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: all .15s;
}
.az-state-chip.active { background: var(--ink); color: var(--oat); border-color: var(--ink); }
.az-state-chip:hover { border-color: var(--ink); }

.az-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 56px 0 104px;
}
.az-dest-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink-08);
}
.az-dest-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s; filter: saturate(.85);
}
.az-dest-tile:hover img { transform: scale(1.05); }
.az-dest-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43,39,34,.72));
}
.az-dest-tile .info {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 1; color: var(--oat);
}
.az-dest-tile .state-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: rgba(248,244,235,.7);
  margin-bottom: 8px;
}
.az-dest-tile h3 {
  font-size: 30px; color: var(--paper);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.az-dest-tile .count-line {
  font-size: 13px;
  color: rgba(248,244,235,.82);
}
.az-dest-tile .count-line b { color: var(--paper); font-weight: 500; }

@media (max-width: 900px) { .az-dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .az-dest-grid { grid-template-columns: 1fr; } }

/* ============================================================
   EDITORIAL PAGES — about / guide / legal / contact / 404
   Single-column prose with sidenote rail; typography-first.
   ============================================================ */
.az-page-hero {
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--line);
}
.az-page-hero .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.az-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 18ch;
}
.az-page-hero h1 em {
  font-style: italic;
  color: inherit;
  opacity: .64;
}
.az-page-hero .lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}

.az-prose {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
  gap: 80px;
}
.az-prose-body { max-width: 68ch; font-size: 17px; line-height: 1.72; color: var(--ink); }
.az-prose-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 56px 0 20px;
  line-height: 1.2;
}
.az-prose-body h2:first-child { margin-top: 0; }
.az-prose-body h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 40px 0 12px;
}
.az-prose-body p { margin: 0 0 18px; }
.az-prose-body p.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 400;
}
.az-prose-body ul, .az-prose-body ol {
  margin: 0 0 22px;
  padding-left: 20px;
}
.az-prose-body li { margin-bottom: 8px; }
.az-prose-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.az-prose-body a:hover { text-decoration-color: var(--ink); }
.az-prose-body strong { font-weight: 600; color: var(--ink); }
.az-prose-body em { font-style: italic; }
.az-prose-body blockquote {
  border-left: 2px solid var(--moss);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}
.az-prose-body hr {
  border: 0; border-top: 1px solid var(--line);
  margin: 44px 0;
}
.az-prose-body .callout {
  border: 1px solid var(--line);
  background: var(--oat);
  padding: 22px 24px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.6;
}
.az-prose-body .callout b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--moss); margin-bottom: 8px; }

.az-prose-aside {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  align-self: start;
  position: sticky; top: 96px;
}
.az-prose-aside h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 600;
}
.az-prose-aside ul { list-style: none; padding: 0; margin: 0; }
.az-prose-aside li { margin-bottom: 10px; font-size: 14px; }
.az-prose-aside a { color: var(--ink); text-decoration: none; }
.az-prose-aside a:hover { color: var(--moss); }

@media (max-width: 900px) {
  .az-prose { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px 80px; }
  .az-prose-aside { position: static; border-left: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
}

/* Contact form */
.az-form { display: grid; gap: 20px; margin-top: 32px; max-width: 560px; }
.az-form label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.az-form input,
.az-form textarea,
.az-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--oat-2);
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 160ms ease;
}
.az-form input:focus,
.az-form textarea:focus,
.az-form select:focus { border-color: var(--ink); }
.az-form textarea { resize: vertical; min-height: 140px; }
.az-form button {
  justify-self: start;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.az-form button:hover { background: var(--moss-deep); }

/* Contact rail — alternate method cards */
.az-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.az-contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.az-contact-card h4 { margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--moss); font-weight: 600; }
.az-contact-card p { margin: 0 0 6px; font-size: 14px; color: var(--ink); line-height: 1.5; }
.az-contact-card .val { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }

@media (max-width: 700px) { .az-contact-grid { grid-template-columns: 1fr; } }

/* 404 */
.az-404 {
  padding: 140px 0;
  text-align: center;
}
.az-404 .code {
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
  opacity: .14;
}
.az-404 h1 {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 400;
  letter-spacing: -0.02em;
  margin: -80px 0 20px;
  color: var(--ink);
  position: relative;
}
.az-404 p { font-size: 17px; color: var(--ink-soft); max-width: 48ch; margin: 0 auto 32px; line-height: 1.6; }
.az-404 .btns { display: flex; gap: 14px; justify-content: center; }

/* Specialty hub + listing */
.az-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0;
}
.az-spec-tile {
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 32px;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease;
  color: inherit;
}
.az-spec-tile:hover { border-color: var(--ink); transform: translateY(-2px); }
.az-spec-tile .count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}
.az-spec-tile h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.az-spec-tile p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 900px) { .az-spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .az-spec-grid { grid-template-columns: 1fr; } }

/* City/specialty listing (search results) */
.az-listing { padding: 40px 0 100px; }
.az-listing-sum {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.az-listing-sum b { color: var(--ink); font-weight: 500; }
.az-listing-row {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.az-listing-row:last-child { border-bottom: 0; }
.az-listing-cover {
  aspect-ratio: 4/3;
  background: var(--oat);
  overflow: hidden;
  border-radius: 2px;
}
.az-listing-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.az-listing-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.az-listing-body h3 a { color: var(--ink); text-decoration: none; }
.az-listing-body h3 a:hover { color: var(--moss); text-decoration: underline; text-underline-offset: 4px; }
.az-listing-body .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.az-listing-body p.desc { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink); max-width: 58ch; }
.az-listing-score {
  text-align: right;
  font-family: var(--font-mono);
}
.az-listing-score .rt { font-size: 28px; color: var(--ink); }
.az-listing-score .rc { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

@media (max-width: 780px) {
  .az-listing-row { grid-template-columns: 1fr; gap: 14px; }
  .az-listing-cover { aspect-ratio: 16/9; }
  .az-listing-score { text-align: left; }
}

/* Journal (editorial blog) */
.az-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0;
}
.az-journal-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.az-journal-card .cover {
  aspect-ratio: 4/3;
  background: var(--oat);
  overflow: hidden; margin-bottom: 18px;
}
.az-journal-card .cat {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 10px;
}
.az-journal-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.015em; margin: 0 0 10px; color: var(--ink);
}
.az-journal-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width: 900px) { .az-journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .az-journal-grid { grid-template-columns: 1fr; } }
