/* ============================================================
   Magnolia Pharmacy — Refresh Mockup Stylesheet
   Growthpharm | All tokens map 1:1 to proposed Shopify theme settings
   ============================================================ */

:root {
  /* Brand — keep current teal trust equity, add warm magnolia accent */
  --teal-900: #0a4a55;
  --teal-700: #16808f;
  --teal-500: #2aa6b5;
  --teal-100: #d6ecef;

  --rose-700: #b25c6e;   /* magnolia rose accent */
  --rose-500: #d68697;
  --rose-100: #fbe7eb;

  --cream-50: #fbf6ee;
  --cream-100: #f3ead9;

  --ink-900: #14202a;
  --ink-700: #36454f;
  --ink-500: #5a6b75;
  --ink-300: #98a4ad;

  --bg: #ffffff;
  --bg-soft: var(--cream-50);

  /* Type — proposed pairing (NEEDS CLIENT SIGN-OFF, see notes.md) */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --radius: 10px;
  --radius-lg: 18px;

  --max: 1200px;
  --max-prose: 720px;

  --shadow-sm: 0 1px 2px rgba(20,32,42,.06), 0 2px 6px rgba(20,32,42,.04);
  --shadow-md: 0 8px 24px rgba(20,32,42,.08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 var(--s-4);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 var(--s-4); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: var(--s-3);
  display: inline-block;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-5); }
.prose { max-width: var(--max-prose); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--teal-900); color: #fff; }
.btn-secondary { background: transparent; color: var(--teal-900); border-color: var(--teal-900); }
.btn-secondary:hover { background: var(--teal-900); color: #fff; }
.btn-rose { background: var(--rose-700); color: #fff; }
.btn-rose:hover { background: #95495a; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: rgba(20,32,42,.15); }
.btn-ghost:hover { border-color: var(--ink-900); }
.btn-link { padding: 0; background: transparent; color: var(--teal-700); border: none; }
.btn-link:hover { color: var(--teal-900); }
.btn-link::after { content: " →"; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(20,32,42,.06);
}
.announcement {
  background: var(--ink-900);
  color: var(--cream-50);
  font-size: .82rem;
  text-align: center;
  padding: 8px 12px;
  letter-spacing: .04em;
}
.announcement strong { color: var(--rose-500); font-weight: 600; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  max-width: var(--max);
  margin: 0 auto;
  gap: var(--s-5);
}
.nav-logo {
  display: inline-flex; align-items: center;
  line-height: 0;
}
.nav-logo img {
  height: 38px; width: auto; display: block; max-width: 260px;
}
.site-footer .nav-logo img {
  height: 44px; max-width: 300px;
  filter: brightness(0) invert(1);
}
.nav-logo-text { position: absolute; left: -9999px; }
.nav-links {
  display: flex; gap: var(--s-6); list-style: none; padding: 0; margin: 0;
  font-size: .95rem; font-weight: 500;
}
.nav-links a { color: var(--ink-900); }
.nav-links a:hover { color: var(--teal-700); text-decoration: none; }
.nav-cta { display: flex; gap: var(--s-3); align-items: center; }
.nav-toggle { display: none; }

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Sections ---------- */
section { padding: var(--s-9) 0; }
@media (max-width: 720px) { section { padding: var(--s-7) 0; } }

.bg-soft { background: var(--bg-soft); }
.bg-teal { background: var(--teal-900); color: var(--cream-50); }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: #fff; }
.bg-teal .eyebrow { color: var(--rose-500); }
.bg-rose { background: var(--rose-100); }
.bg-cream { background: var(--cream-100); }

/* ---------- Trust stripe ---------- */
.trust-stripe {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  font-size: .85rem; font-weight: 500;
  color: var(--ink-700);
  align-items: center;
  margin-top: var(--s-5);
}
.trust-stripe span { display: inline-flex; align-items: center; gap: var(--s-2); }
.trust-stripe span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500); display: inline-block;
}

/* ---------- Hero variants ---------- */
.hero-a {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--s-8);
  align-items: center;
  padding: var(--s-9) 0;
  background:
    radial-gradient(circle at 80% 20%, var(--rose-100), transparent 55%),
    var(--cream-50);
}
.hero-a .hero-copy h1 { max-width: 18ch; }
.hero-a .hero-copy p.lede { font-size: 1.18rem; color: var(--ink-700); max-width: 50ch; }
.hero-a .hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin: var(--s-5) 0 var(--s-3); }
.hero-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  box-shadow: var(--shadow-md);
  display: grid; place-items: end start;
  padding: var(--s-6);
  color: #fff;
}
.hero-portrait .badge {
  position: absolute; top: var(--s-5); right: var(--s-5);
  background: var(--rose-500); color: #fff;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  padding: 8px 14px; border-radius: 999px;
  text-transform: uppercase;
}
.hero-portrait .caption {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
}
.hero-portrait .caption small {
  display: block; font-family: var(--font-body); font-size: .85rem;
  font-weight: 500; opacity: .85; margin-top: 6px; letter-spacing: .04em;
}
.image-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  text-transform: uppercase; letter-spacing: .14em;
  pointer-events: none;
}
.portrait-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 0;
}
.hero-portrait .caption, .hero-portrait .badge { position: relative; z-index: 2; }
.hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,42,46,.78) 100%);
  z-index: 1;
}
.editorial .portrait-frame { position: relative; overflow: hidden; }

@media (max-width: 880px) {
  .hero-a { grid-template-columns: 1fr; }
  .hero-portrait { aspect-ratio: 4/3; min-height: 280px; }
}

.hero-b {
  background:
    radial-gradient(ellipse at top right, var(--rose-100), transparent 60%),
    radial-gradient(ellipse at bottom left, var(--teal-100), transparent 55%),
    var(--cream-50);
  text-align: center;
  padding: var(--s-10) 0 var(--s-8);
}
.hero-b h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero-b p.lede {
  font-size: 1.18rem; color: var(--ink-700);
  max-width: 56ch; margin: 0 auto var(--s-5);
}
.hero-b .hero-actions { justify-content: center; }
.hero-b .trust-stripe { justify-content: center; }

/* ---------- Symptom finder (Homepage B) ---------- */
.symptom-finder {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
  justify-content: center;
  max-width: 820px; margin: var(--s-7) auto 0;
}
.symptom-chip {
  background: #fff;
  border: 1px solid var(--teal-100);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: .95rem; font-weight: 500;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: var(--s-2);
  box-shadow: var(--shadow-sm);
  transition: all .15s ease;
}
.symptom-chip:hover {
  border-color: var(--teal-700);
  background: var(--teal-700); color: #fff;
  text-decoration: none;
}

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
}
.service-grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.service-card {
  background: #fff;
  border: 1px solid rgba(20,32,42,.08);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  transition: all .2s ease;
  display: flex; flex-direction: column;
  gap: var(--s-3);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-500);
  text-decoration: none;
}
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--teal-100); color: var(--teal-900);
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
}
.service-card.rose .icon { background: var(--rose-100); color: var(--rose-700); }
.service-card h3 { margin: 0; font-size: 1.25rem; }
.service-card p { color: var(--ink-700); margin: 0; }
.service-card .more { color: var(--teal-700); font-weight: 600; font-size: .92rem; margin-top: auto; }

/* ---------- Editorial / Steve band ---------- */
.editorial {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: var(--s-8);
  align-items: center;
}
.editorial .portrait-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--teal-100), var(--cream-100));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.editorial .pull-quote {
  font-family: var(--font-display);
  font-size: 1.6rem; line-height: 1.3;
  color: var(--ink-900);
  border-left: 3px solid var(--rose-500);
  padding-left: var(--s-5);
  margin: var(--s-5) 0;
}
.credential-row {
  display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-4);
}
.credential-pill {
  background: var(--cream-100);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-900);
}

@media (max-width: 880px) {
  .editorial { grid-template-columns: 1fr; }
}

/* ---------- Prescriber band ---------- */
.prescriber-band {
  background:
    linear-gradient(135deg, var(--teal-900) 0%, #052e36 100%);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.prescriber-band .specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.prescriber-band .spec strong {
  display: block; color: #fff;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  margin-bottom: 4px;
}
.prescriber-band .spec span { font-size: .82rem; opacity: .82; letter-spacing: .04em; text-transform: uppercase; }
.prescriber-band h2 { color: #fff; }
.prescriber-band p { color: rgba(255,255,255,.85); }

@media (max-width: 760px) {
  .prescriber-band { grid-template-columns: 1fr; padding: var(--s-6); }
  .prescriber-band .specs { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
}

/* ---------- Curated supplements ---------- */
.product-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.product-card {
  background: #fff;
  border: 1px solid rgba(20,32,42,.08);
  border-radius: var(--radius);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.product-card .bottle {
  aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
  display: grid; place-items: center;
  color: var(--ink-300); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  position: relative;
}
.product-card .bottle::before {
  content: ""; position: absolute; left: 50%; top: 18%;
  width: 38%; height: 64%;
  transform: translateX(-50%);
  background: #fff; border-radius: 8px 8px 4px 4px;
  border: 1px solid rgba(20,32,42,.1);
}
.product-card .bottle::after {
  content: ""; position: absolute; left: 50%; top: 38%;
  width: 30%; height: 18%;
  transform: translateX(-50%);
  background: var(--teal-700); border-radius: 2px;
}
.product-card h4 { margin: 0; }
.product-card .tie { font-size: .88rem; color: var(--ink-700); }
.product-card .price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.product-card .price { font-weight: 700; }
.product-card .sub-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-700);
}

/* ---------- Reels strip ---------- */
.reels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4);
  margin-top: var(--s-6);
}
.reel {
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-900), var(--teal-900));
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  overflow: hidden;
}
.reel::after {
  content: "▶"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 2.4rem; color: rgba(255,255,255,.85);
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
}
@media (max-width: 720px) { .reels { grid-template-columns: 1fr 1fr; } .reel:nth-child(3) { display: none; } }

/* ---------- Patient journey steps ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
.journey .step {
  background: #fff;
  border-top: 3px solid var(--teal-500);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: var(--s-5);
  position: relative;
}
.journey .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 500;
  color: var(--rose-700);
  display: block;
  margin-bottom: var(--s-2);
}
.journey .step h4 { margin-bottom: 6px; }
.journey .step p { font-size: .92rem; color: var(--ink-700); margin: 0; }
@media (max-width: 880px) { .journey { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .journey { grid-template-columns: 1fr; } }

/* ---------- 3-col 'difference' (Homepage B) ---------- */
.diff-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6);
}
.diff-cols .col h3 { font-size: 1.15rem; }
.diff-cols .col p { color: var(--ink-700); }
.diff-cols .icon-mark {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--rose-100); color: var(--rose-700);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  margin-bottom: var(--s-4);
}
@media (max-width: 760px) { .diff-cols { grid-template-columns: 1fr; gap: var(--s-5); } }

/* ---------- Service-page-specific ---------- */
.service-hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-8);
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, var(--rose-100), transparent 50%),
    var(--cream-50);
  padding: var(--s-9) 0 var(--s-8);
}
@media (max-width: 880px) { .service-hero { grid-template-columns: 1fr; } }

.service-hero .breadcrumbs {
  font-size: .82rem; color: var(--ink-500); margin-bottom: var(--s-4);
}
.service-hero .breadcrumbs a { color: var(--ink-500); }

.who-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3) var(--s-6);
  list-style: none; padding: 0; margin: var(--s-5) 0 0;
}
.who-list li {
  position: relative; padding-left: 28px;
  font-size: 1rem;
}
.who-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-100); color: var(--teal-900);
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
}
@media (max-width: 640px) { .who-list { grid-template-columns: 1fr; } }

.diff-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7);
  align-items: start;
}
.diff-block .diff-points { display: grid; gap: var(--s-5); }
.diff-block .diff-point h4 {
  color: var(--teal-900); margin-bottom: 6px;
  font-size: 1.05rem;
}
.diff-block .lab-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-700), var(--ink-900));
  position: relative;
}
@media (max-width: 880px) { .diff-block { grid-template-columns: 1fr; } }

.compare-table {
  width: 100%; border-collapse: collapse; margin-top: var(--s-5);
  font-size: .95rem; background: #fff;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid rgba(20,32,42,.06);
}
.compare-table th { background: var(--cream-50); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-700); }
.compare-table td:first-child { font-weight: 600; color: var(--ink-900); }

.cta-band {
  background: var(--teal-900); color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); flex-wrap: wrap;
}
.cta-band p {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3;
  color: #fff; margin: 0; max-width: 32ch;
}
.cta-band .btn-primary { background: var(--rose-500); }
.cta-band .btn-primary:hover { background: var(--rose-700); }

.faq-list { max-width: var(--max-prose); }
.faq-list details {
  border-bottom: 1px solid rgba(20,32,42,.1);
  padding: var(--s-5) 0;
}
.faq-list summary {
  font-weight: 600; font-size: 1.05rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
  color: var(--ink-900);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-700);
  transition: transform .15s;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details > p { margin-top: var(--s-3); color: var(--ink-700); }

.community-card {
  background: linear-gradient(135deg, var(--rose-100), var(--cream-100));
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  display: grid; grid-template-columns: 2fr 1fr; gap: var(--s-6);
  align-items: center;
}
.community-card .badge-circle {
  width: 100px; height: 100px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  font-family: var(--font-display); color: var(--rose-700);
  font-size: 1.1rem; text-align: center;
  margin: 0 auto;
}
@media (max-width: 720px) { .community-card { grid-template-columns: 1fr; text-align: center; } }

.disclaimer {
  background: var(--ink-900); color: rgba(255,255,255,.7);
  font-size: .82rem; line-height: 1.6;
  padding: var(--s-7) 0;
}
.disclaimer p { margin-bottom: var(--s-3); max-width: 80ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900); color: var(--cream-50);
  padding: var(--s-8) 0 var(--s-5);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.site-footer h5 {
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
  color: rgba(255,255,255,.6); margin-bottom: var(--s-3);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--cream-50); }
.site-footer a:hover { color: var(--rose-500); }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.55);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Index page (mockup gallery) */
.gallery-hero { padding: var(--s-9) 0 var(--s-7); background: var(--cream-50); border-bottom: 1px solid rgba(0,0,0,.06); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-5); padding: var(--s-7) 0;
}
.gallery-card {
  border: 1px solid rgba(20,32,42,.1); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .2s ease;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.gallery-card .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--teal-100), var(--rose-100)); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink-900); }
.gallery-card .body { padding: var(--s-5); }
.gallery-card h3 { margin-bottom: 6px; }
.gallery-card p { color: var(--ink-700); font-size: .92rem; margin: 0; }
.gallery-card .label { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--cream-100); color: var(--ink-700); font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
