/* ==========================================================================
   ZM Dental — Tampa, FL
   Stylesheet / design system
   Brand palette & type pulled from the live ZM Dental site:
     - Gold    #cdae49 (primary brand accent — the "ZM" in the logo)
     - Silver  #9a9a9a (the "DENTAL" wordmark)
     - Black / charcoal + white
     - Headings: Cinzel (serif)   Body: Lato
   Rebuilt by Zettabyte Solutions (MSP) for ZM Dental
   ========================================================================== */

:root {
  /* Brand palette — gold + black/white */
  --gold-600: #b08d2c;
  --gold-500: #cdae49;   /* primary brand gold */
  --gold-400: #ddc77a;
  --gold-100: #f3ead0;
  --gold-50:  #faf6ea;

  --silver:   #9a9a9a;

  --ink:      #1a1a1a;   /* near-black headings */
  --charcoal: #111111;   /* dark sections */
  --charcoal-2: #1d1d1d;
  --body:     #4c4c4c;
  --muted:    #7c7c7c;
  --line:     #e6e3da;
  --bg:       #ffffff;
  --bg-soft:  #faf8f3;   /* warm off-white */

  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26, 22, 10, 0.08), 0 1px 2px rgba(26, 22, 10, 0.05);
  --shadow-md: 0 10px 28px rgba(26, 22, 10, 0.12);
  --shadow-lg: 0 22px 50px rgba(26, 22, 10, 0.18);

  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1180px;

  --font-display: "Cinzel", "Playfair Display", Georgia, serif;
  --font-head: "Lato", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Lato", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-500); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: .5px; }
h3, h4 { font-family: var(--font-head); font-weight: 700; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--charcoal); color: #d9d6cd; }
.section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: .9rem;
  position: relative;
}
.section--dark .eyebrow { color: var(--gold-400); }
.lead { font-size: 1.13rem; color: var(--body); max-width: 60ch; }
.center .lead { margin-inline: auto; }
.measure { max-width: 65ch; }

/* gold divider under headings (optional via .divider) */
.divider::after {
  content: ""; display: block; width: 64px; height: 3px; margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: #20180a;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: .85em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gold-600); color: #fff; }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--dark:hover { background: #000; color: var(--gold-400); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--gold-500); box-shadow: none;
}
.btn--ghost:hover { background: var(--gold-500); color: #20180a; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--light:hover { background: var(--gold-400); color: #20180a; }
.btn--lg { padding: 1em 2.1em; font-size: .95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--charcoal);
  color: #c9c6bd;
  font-size: .85rem;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; align-items: center; justify-content: space-between; padding-block: .55rem; }
.topbar a { color: #ede9dd; }
.topbar a:hover { color: var(--gold-400); }
.topbar__group { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: .45em; }
.topbar__item svg { color: var(--gold-500); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .6rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block; padding: .5rem .8rem; border-radius: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .5px;
  text-transform: uppercase; color: var(--ink);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold-600); }
.nav__links a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--gold-500); }
.nav__cta { margin-left: .5rem; }
.nav__cta a { color: #20180a !important; }
.nav__cta a:hover { color: #fff !important; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; color: var(--ink); }
.nav__toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--gold-50), #fff 70%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0 -10% auto auto; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(205,174,73,.18), transparent 65%); top: -140px; pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3rem; align-items: center; padding: clamp(2.5rem, 5vw, 4.5rem) 0; position: relative; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.6rem; }
.hero__tag { color: var(--gold-600); font-family: var(--font-display); font-style: italic; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: 100%; max-height: 540px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero__media::after {
  content: ""; position: absolute; inset: auto auto -18px -18px; width: 120px; height: 120px;
  border: 3px solid var(--gold-500); border-radius: var(--radius-lg); z-index: -1;
}
/* Floating info card over hero image */
.hero__card {
  position: absolute; left: -24px; bottom: 28px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem; display: flex; align-items: center; gap: .8rem; max-width: 260px;
  border-left: 4px solid var(--gold-500);
}
.hero__card strong { font-family: var(--font-display); color: var(--ink); display: block; font-size: 1.5rem; line-height: 1; }
.hero__card span { font-size: .82rem; color: var(--muted); }

/* Practice fact panel (used on home hero alt + contact) */
.hero__panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.8rem; position: relative; }
.hero__badge { position: absolute; top: -16px; right: 22px; background: var(--gold-500); color: #20180a; font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: .4rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.fact-list { list-style: none; margin: 0; padding: 0; }
.fact-list li { display: flex; gap: .7rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.fact-list li:last-child { border-bottom: 0; }
.fact-list .ico { color: var(--gold-600); flex: none; margin-top: 2px; }
.fact-list strong { color: var(--ink); display: block; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.fact-list span { font-size: .92rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2rem; text-align: center; }
.trust .stat { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--gold-600); line-height: 1; }
.trust .label { font-size: .9rem; color: var(--muted); margin-top: .4rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.card__icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 12px;
  background: var(--gold-50); color: var(--gold-600); margin-bottom: 1rem; border: 1px solid var(--gold-100);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4rem; }
.card p { margin-bottom: .6rem; font-size: .96rem; }
.card a.more { font-family: var(--font-head); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; display: inline-flex; align-items: center; gap: .3em; }

.svc { display: flex; flex-direction: column; }
.svc ul { font-size: .95rem; padding-left: 1.1em; margin-bottom: 0; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.split__media--frame::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 3px solid var(--gold-500);
  border-radius: var(--radius-lg); z-index: -1;
}
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .7rem; }
.checklist svg { color: var(--gold-600); flex: none; margin-top: 3px; }

/* ---------- Specials ---------- */
.offer { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.offer::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--gold-500); }
.offer__price { font-family: var(--font-display); font-weight: 700; color: var(--gold-600); font-size: 2.1rem; line-height: 1; margin: .2rem 0 .1rem; }
.offer__price small { font-size: 1rem; color: var(--muted); font-weight: 400; }
.offer__was { color: var(--muted); text-decoration: line-through; font-size: 1rem; margin-left: .4rem; }
.offer .fine { font-size: .82rem; color: var(--muted); margin-top: auto; padding-top: .8rem; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); height: 100%; }
.quote .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: .6rem; }
.quote blockquote { margin: 0 0 1rem; font-size: 1rem; color: var(--ink); font-style: italic; }
.quote cite { font-style: normal; font-family: var(--font-head); font-weight: 700; color: var(--gold-600); font-size: .95rem; }
.quote .when { color: var(--muted); font-size: .85rem; }

/* ---------- Insurance logos ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; align-items: center; }
.logo-grid .logo-cell {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1rem;
  display: grid; place-items: center; min-height: 84px; box-shadow: var(--shadow-sm);
}
.logo-grid img { max-height: 46px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .8; transition: filter .2s, opacity .2s; }
.logo-grid .logo-cell:hover img { filter: grayscale(0); opacity: 1; }

/* legacy text pills (kept for fallback) */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--charcoal), var(--charcoal-2));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  border: 1px solid rgba(205,174,73,.3);
}
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(205,174,73,.28), transparent 70%); top: -120px; right: -80px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfccc3; max-width: 55ch; margin-inline: auto; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--gold-50), #fff);
  padding: clamp(2.6rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0 -8% auto auto; width: 360px; height: 360px; background: radial-gradient(circle, rgba(205,174,73,.16), transparent 65%); top: -120px; }
.breadcrumbs { font-size: .85rem; color: var(--muted); margin-bottom: .6rem; position: relative; }
.breadcrumbs a { color: var(--gold-600); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(205,174,73,.18); }
.field textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-status { display: none; padding: .9rem 1rem; border-radius: 8px; font-size: .95rem; margin-bottom: 1rem; }
.form-status.is-ok { display: block; background: var(--gold-50); color: var(--gold-600); border: 1px solid var(--gold-100); }
.form-status.is-err { display: block; background: #fdecec; color: #a23b3b; border: 1px solid #f5cccc; }

.info-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin-bottom: 1.2rem; }
.info-card h3 { margin-bottom: .8rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico { color: var(--gold-600); flex: none; margin-top: 3px; }
.info-row strong { font-family: var(--font-head); display: block; color: var(--ink); font-size: .95rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: .45rem 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 700; }
.hours-table tr:last-child td { border-bottom: 0; }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #b7b4ab; padding-top: 3.5rem; font-size: .95rem; }
.site-footer a { color: #ddd9cf; }
.site-footer a:hover { color: var(--gold-400); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-brand img { height: 56px; width: auto; margin-bottom: .9rem; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .2s, transform .15s; }
.socials a:hover { background: var(--gold-500); color: #20180a; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; color: #8f8c83; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: .8rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-600); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { margin-bottom: .7rem; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.center.section-head { margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__media { max-width: 520px; }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust .container { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .7rem 1.25rem 1.1rem; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .7rem .6rem; }
  .nav__cta { margin: .3rem 0 0; }
  .nav__toggle { display: inline-flex; }
  .topbar__item--hide { display: none; }
  .hero__card { left: 12px; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ==========================================================================
   Blog — index cards + article prose
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.blog-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gold-50); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__date { font-family: var(--font-head); font-size: .78rem; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin-bottom: .5rem; }
.blog-card h3 { font-size: 1.08rem; line-height: 1.3; margin-bottom: .5rem; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--gold-600); }
.blog-card p { font-size: .92rem; color: var(--body); margin-bottom: 1rem; }
.blog-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gold-600); display: inline-flex; align-items: center; gap: .3em; }

/* Article (single post) */
.article-hero { background: linear-gradient(180deg, var(--gold-50), #fff); border-bottom: 1px solid var(--line); padding: clamp(2.4rem,5vw,3.6rem) 0 0; }
.article-meta { font-family: var(--font-head); font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin-bottom: .6rem; }
.article-figure { margin: 0 0 2rem; }
.article-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-height: 460px; object-fit: cover; }
.article { max-width: 760px; margin-inline: auto; font-size: 1.06rem; }
.article p { margin: 0 0 1.2em; color: var(--body); }
.article h2 { font-size: clamp(1.4rem,2.4vw,1.8rem); margin: 1.8em 0 .6em; }
.article h3 { font-size: 1.2rem; margin: 1.4em 0 .5em; }
.article ul, .article ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.article li { margin-bottom: .5em; }
.article a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 2px; }
.article img { border-radius: var(--radius); margin: 1.5em 0; box-shadow: var(--shadow-sm); }
.article strong { color: var(--ink); }
.article blockquote { margin: 1.5em 0; padding: .6em 1.2em; border-left: 4px solid var(--gold-500); background: var(--gold-50); border-radius: 0 8px 8px 0; color: var(--ink); }
.article-back { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-head); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }

@media (max-width: 940px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
