/* ============================================================================
   Adams & Morancy, P.C. — token system
   Concept: "The Ledger" — granite paper, bound-ledger green, filing-stamp terracotta.
   Every component below reads these custom properties; no raw colors in markup.
   ========================================================================== */

@font-face {
  font-family: "Source Serif 4";
  src: url("./fonts/source-serif-4-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./fonts/source-serif-4-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./fonts/source-serif-4-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./fonts/source-serif-4-latin-600-italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("./fonts/public-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("./fonts/public-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("./fonts/public-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("./fonts/public-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---- color: HSL components (h s% l%), composed via hsl(var(--x)) ---- */
  --background: 40 22% 96%;
  --background-alt: 38 18% 91%;
  --surface: 40 26% 98%;
  --foreground: 160 18% 12%;
  --muted: 160 8% 42%;
  --muted-foreground: 160 7% 36%;
  --border: 40 12% 84%;

  --primary: 152 45% 15%;
  --primary-glow: 152 34% 26%;
  --primary-foreground: 40 30% 96%;

  --accent: 18 58% 50%;
  --accent-glow: 18 66% 62%;
  --accent-foreground: 40 30% 97%;

  /* ---- gradients ---- */
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  --gradient-subtle: linear-gradient(180deg, hsl(var(--background)), hsl(var(--background-alt)));
  --gradient-accent-wash: radial-gradient(circle at 80% 15%, hsl(var(--accent) / 0.16), transparent 55%);

  /* ---- brand-tinted shadows ---- */
  --shadow-elegant: 0 10px 30px -10px hsl(var(--primary) / 0.4);
  --shadow-glow: 0 0 40px hsl(var(--accent) / 0.22);
  --shadow-soft: 0 2px 14px hsl(var(--foreground) / 0.08);
  --shadow-card: 0 1px 2px hsl(var(--foreground) / 0.06), 0 8px 24px -12px hsl(var(--primary) / 0.22);

  /* ---- radius scale (one scale, site-wide) ---- */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- spacing rhythm ---- */
  --space-3xs: 0.375rem;
  --space-2xs: 0.75rem;
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2.5rem;
  --space-lg: 4rem;
  --space-xl: 6.5rem;
  --space-2xl: 9rem;

  /* ---- type ---- */
  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --measure: 65ch;

  /* ---- motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-med: 320ms;
}

@keyframes stamp-in {
  0% { opacity: 0; transform: scale(1.7) rotate(-14deg); }
  70% { opacity: 1; transform: scale(0.94) rotate(-8deg); }
  100% { opacity: 1; transform: scale(1) rotate(-8deg); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rail-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------------------------------------------------------------------------
   Base
   ------------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  min-height: 100dvh;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0;
  color: hsl(var(--foreground));
}

p { margin: 0; }

.measure { max-width: var(--measure); }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

section { position: relative; }

/* ---------------------------------------------------------------------------
   Buttons — one identity per CTA intent, defined once
   ------------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

/* call-intent — appears wherever the phone number is the action, site-wide */
.btn--call {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-elegant);
}
.btn--call:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--call:active { transform: translateY(0); }

/* quiet secondary — internal navigation intent */
.btn--quiet {
  background: transparent;
  color: hsl(var(--surface));
  border-color: hsl(var(--surface) / 0.5);
}
.btn--quiet:hover { border-color: hsl(var(--surface)); background: hsl(var(--surface) / 0.1); }

/* quiet-on-light — same intent, used on light-background sections */
.btn--quiet-light {
  background: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}
.btn--quiet-light:hover { border-color: hsl(var(--primary)); background: hsl(var(--primary) / 0.06); }

/* directions intent — used only on location/contact context */
.btn--directions {
  background: hsl(var(--surface));
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.35);
  box-shadow: var(--shadow-soft);
}
.btn--directions:hover { background: hsl(var(--primary) / 0.08); }

/* ---------------------------------------------------------------------------
   Demo attribution banner (compliance)
   ------------------------------------------------------------------------ */
.demo-banner {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-align: center;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
}
.demo-banner a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: hsl(var(--background) / 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-2xs);
  gap: var(--space-sm);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(var(--foreground));
  min-width: 0;
  flex-shrink: 1;
}
.nav__brand img { width: 32px; height: 32px; flex-shrink: 0; border-radius: var(--radius-sm); }
.nav__brand span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav__brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: hsl(var(--muted));
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .nav__brand { font-size: 0.86rem; }
  .nav__brand small { display: none; }
  .nav__row { gap: var(--space-2xs); }
  .nav__cta.btn { padding: 0.7rem 1rem; font-size: 0.83rem; }
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.93rem;
  font-weight: 500;
}
.nav__links a { color: hsl(var(--muted-foreground)); transition: color var(--dur-fast) var(--ease-out); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: hsl(var(--primary)); }
@media (min-width: 860px) { .nav__links { display: flex; } }
.nav__cta { flex-shrink: 0; }

/* ---------------------------------------------------------------------------
   Hero — full-bleed photo, text anchored bottom-left over a scrim
   ------------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 82dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 860px) { .hero { min-height: 92dvh; } }
.hero__figure { position: absolute; inset: 0; z-index: 0; }
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, hsl(var(--foreground) / 0.86) 0%, hsl(var(--foreground) / 0.4) 42%, hsl(var(--foreground) / 0.12) 68%, transparent 100%);
}
.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-sm) var(--space-xl);
  max-width: 760px;
  color: hsl(var(--surface));
}
@media (min-width: 860px) { .hero__copy { padding: var(--space-lg) var(--space-lg) var(--space-2xl); } }
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--surface) / 0.82);
}
.hero__headline {
  font-size: clamp(2.3rem, 5.6vw, 3.9rem);
  max-width: 14ch;
  color: hsl(var(--surface));
}
.hero__sub {
  font-size: 1.12rem;
  color: hsl(var(--surface) / 0.86);
  max-width: 46ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-xs); align-items: center; }

/* ---------------------------------------------------------------------------
   Trust strip — hairline three-up, no cards
   ------------------------------------------------------------------------ */
.strip {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--surface));
}
.strip__row {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .strip__row { grid-template-columns: repeat(3, 1fr); } }
.strip__item {
  padding: var(--space-md) var(--space-sm);
  border-top: 1px solid hsl(var(--border));
}
@media (min-width: 760px) {
  .strip__item { border-top: none; border-left: 1px solid hsl(var(--border)); }
  .strip__item:first-child { border-left: none; }
}
.strip__item h3 { font-size: 1.02rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 0.4rem; }
.strip__item p { color: hsl(var(--muted-foreground)); font-size: 0.95rem; }

/* ---------------------------------------------------------------------------
   Ledger list — ruled rows, no cards (homepage practice-area teaser)
   ------------------------------------------------------------------------ */
.ledger { padding-block: var(--space-xl); }
.ledger__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-md); }
.ledger__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.ledger__list { border-top: 1px solid hsl(var(--border)); }
.ledger__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xs) var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid hsl(var(--border));
  align-items: baseline;
}
@media (min-width: 780px) {
  .ledger__row { grid-template-columns: 2.4rem 1fr 2.2fr auto; }
}
.ledger__num {
  font-family: var(--font-display);
  font-style: italic;
  color: hsl(var(--accent));
  font-size: 1.05rem;
}
.ledger__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.ledger__desc { color: hsl(var(--muted-foreground)); max-width: 52ch; }
.ledger__link {
  font-weight: 600;
  font-size: 0.92rem;
  color: hsl(var(--primary));
  white-space: nowrap;
  justify-self: start;
}
@media (min-width: 780px) { .ledger__link { justify-self: end; } }
.ledger__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------------------------------------------------------
   Split band — image right (firm intro)
   ------------------------------------------------------------------------ */
.split { padding-block: var(--space-xl); background: hsl(var(--background-alt)); }
.split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) { .split__grid { grid-template-columns: 1fr 0.95fr; } }
.split__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3.3; }
.split__figure img { width: 100%; height: 100%; object-fit: cover; }
.split__copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: var(--space-xs); }
.split__copy p { color: hsl(var(--muted-foreground)); max-width: 48ch; }
.split__copy p + p { margin-top: var(--space-2xs); }
.split__copy .btn { margin-top: var(--space-sm); }

/* ---------------------------------------------------------------------------
   Full-bleed statement break with the "stamp" wow element
   ------------------------------------------------------------------------ */
.statement {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  position: relative;
}
.statement::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-accent-wash);
  pointer-events: none;
}
.statement__inner {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}
@media (min-width: 760px) { .statement__inner { grid-template-columns: auto 1fr; text-align: left; } }
.statement__stamp {
  justify-self: center;
  width: 108px;
  height: 108px;
  border-radius: var(--radius-pill);
  border: 2.5px solid hsl(var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: hsl(var(--accent-glow));
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: stamp-in 0.7s var(--ease-out) 0.1s both;
  transform: rotate(-8deg);
  flex-shrink: 0;
}
.statement__stamp strong { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; letter-spacing: 0; text-transform: none; margin-top: 0.15rem; }
@media (prefers-reduced-motion: reduce) {
  .statement__stamp { animation: none; opacity: 1; transform: rotate(-8deg) scale(1); }
}
.statement__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.32;
}
.statement__cite {
  display: block;
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: hsl(var(--primary-foreground) / 0.75);
}

/* ---------------------------------------------------------------------------
   Vertical process rail
   ------------------------------------------------------------------------ */
.rail { padding-block: var(--space-xl); }
.rail__list { position: relative; max-width: 640px; margin-inline: auto; }
.rail__list::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: hsl(var(--border));
  transform-origin: top;
  animation: rail-grow 0.9s var(--ease-out) both;
}
@media (prefers-reduced-motion: reduce) { .rail__list::before { animation: none; transform: scaleY(1); } }
.rail__step {
  position: relative;
  padding-left: 3.2rem;
  padding-bottom: var(--space-lg);
}
.rail__step:last-child { padding-bottom: 0; }
.rail__marker {
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  background: hsl(var(--surface));
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.rail__step h3 { font-size: 1.22rem; margin-bottom: 0.3rem; }
.rail__step p { color: hsl(var(--muted-foreground)); max-width: 46ch; }

/* ---------------------------------------------------------------------------
   Closing CTA band
   ------------------------------------------------------------------------ */
.visit-band {
  background: hsl(var(--background-alt));
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
}
.visit-band__panel {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.visit-band address { font-style: normal; color: hsl(var(--muted-foreground)); }
.visit-band .hero__ctas { justify-content: center; }

/* ---------------------------------------------------------------------------
   Page intro (interior pages)
   ------------------------------------------------------------------------ */
.page-intro {
  padding: var(--space-xl) var(--space-sm) var(--space-md);
  text-align: center;
}
.page-intro h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); max-width: 20ch; margin-inline: auto; }
.page-intro p { color: hsl(var(--muted-foreground)); max-width: 54ch; margin: var(--space-xs) auto 0; }

/* ---------------------------------------------------------------------------
   Practice-area alternating rows (own page)
   ------------------------------------------------------------------------ */
.rows { padding-block: var(--space-lg); }
.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  padding-block: var(--space-lg);
}
@media (min-width: 860px) {
  .row { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .row--flip .row__figure { order: 2; }
  .row--flip .row__copy { order: 1; }
}
.row + .row { border-top: 1px solid hsl(var(--border)); }
.row__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3.1; }
.row__figure img { width: 100%; height: 100%; object-fit: cover; }
.row__eyebrow { display: block; margin-bottom: var(--space-3xs); }
.row__copy h2 { font-size: 1.65rem; margin-bottom: var(--space-2xs); }
.row__copy p { color: hsl(var(--muted-foreground)); max-width: 46ch; }
.row__copy ul { margin: var(--space-xs) 0 0; padding: 0; list-style: none; }
.row__copy li {
  padding: 0.4rem 0;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-size: 0.94rem;
}
.row__copy li:first-child { border-top: none; }

/* ---------------------------------------------------------------------------
   About — split panel + facts strip
   ------------------------------------------------------------------------ */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0 var(--space-xl);
}
@media (min-width: 900px) { .about-split { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }
.about-split__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/4.2; }
.about-split__figure img { width: 100%; height: 100%; object-fit: cover; }
.about-split__copy p { color: hsl(var(--muted-foreground)); max-width: 52ch; }
.about-split__copy p + p { margin-top: var(--space-xs); }

.facts {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.facts__row { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .facts__row { grid-template-columns: repeat(3, 1fr); } }
.facts__item {
  padding: var(--space-md) var(--space-sm);
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}
@media (min-width: 760px) {
  .facts__item { border-top: none; border-left: 1px solid hsl(var(--border)); }
  .facts__item:first-child { border-left: none; }
}
.facts__item strong { display: block; font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.25rem; color: hsl(var(--primary)); }
.facts__item span { color: hsl(var(--muted-foreground)); font-size: 0.9rem; }

/* plain community note band */
.note-band { padding: var(--space-xl) var(--space-sm); }
.note-band__inner { max-width: 62ch; margin-inline: auto; text-align: center; }
.note-band p { color: hsl(var(--muted-foreground)); font-size: 1.05rem; }

/* ---------------------------------------------------------------------------
   Contact — stacked info rail + figure, static address card
   ------------------------------------------------------------------------ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0 var(--space-xl);
}
@media (min-width: 900px) { .contact-split { grid-template-columns: 1fr 1fr; align-items: center; } }
.contact-rail { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-rail__cta { align-self: flex-start; }
.contact-rail__item { display: flex; gap: var(--space-xs); align-items: flex-start; }
.contact-rail__item strong { display: block; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.2rem; }
.contact-rail__item span, .contact-rail__item a { color: hsl(var(--muted-foreground)); }
.contact-rail__item a:hover { color: hsl(var(--primary)); }
.contact-rail__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.contact-figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3.4; }
.contact-figure img { width: 100%; height: 100%; object-fit: cover; }

.map-band { padding: 0 0 var(--space-xl); }
.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border));
  background: var(--gradient-subtle);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}
.map-card__pin {
  width: 56px; height: 56px;
  border-radius: var(--radius-pill);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.map-card__address { color: hsl(var(--muted-foreground)); font-size: 1.02rem; }

/* ---------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------ */
.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: var(--space-lg) var(--space-sm) var(--space-md);
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
}
.footer__brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.footer__brand img { width: 26px; height: 26px; border-radius: var(--radius-sm); }
.footer address { font-style: normal; color: hsl(var(--background) / 0.65); font-size: 0.92rem; line-height: 1.7; }
.footer nav { display: flex; gap: var(--space-sm); flex-wrap: wrap; font-size: 0.92rem; }
.footer nav a { color: hsl(var(--background) / 0.75); }
.footer nav a:hover { color: hsl(var(--background)); }
.footer__legal {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid hsl(var(--background) / 0.15);
  font-size: 0.82rem;
  color: hsl(var(--background) / 0.55);
}
.footer__legal a { color: hsl(var(--background) / 0.8); text-decoration: underline; text-underline-offset: 2px; }
