/* =========================================================
   Opelika Shoe Repair · styles.css
   Small-town craftsman. Warm. Trustworthy. Mobile first.
   ========================================================= */

:root {
  --bg: #faf6ef;
  --bg-panel: #ffffff;
  --bg-warm: #f3ead9;
  --ink: #2a1f15;
  --ink-soft: #5a4a3a;
  --ink-muted: #8a7a68;
  --line: #e6dcc6;
  --brand: #7a3b1f;        /* leather brown */
  --brand-dark: #5a2a14;
  --accent: #b8893b;       /* brass */
  --green: #3b6b3b;
  --red: #b34a3a;
  --shadow-sm: 0 1px 2px rgba(58, 38, 18, 0.06), 0 2px 6px rgba(58, 38, 18, 0.05);
  --shadow-md: 0 4px 10px rgba(58, 38, 18, 0.08), 0 12px 28px rgba(58, 38, 18, 0.08);
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1120px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, iframe { max-width: 100%; display: block; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.muted { color: var(--ink-muted); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff; padding: 10px 14px;
  border-radius: 6px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.brand-tag { font-size: 11.5px; color: var(--ink-muted); letter-spacing: 0.2px; }

.site-nav { display: none; gap: 22px; align-items: center; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: 15px; }
.site-nav a:hover { color: var(--brand-dark); }
.site-nav .nav-cta {
  background: var(--brand); color: #fff; padding: 8px 14px;
  border-radius: 999px; transition: background 0.15s;
}
.site-nav .nav-cta:hover { background: var(--brand-dark); color: #fff; }

@media (min-width: 760px) { .site-nav { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(184,137,59,0.18), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, rgba(122,59,31,0.12), transparent 70%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ----- Door sign (open / closed storefront placard) ----- */
.door-sign {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  padding-top: 24px;            /* clearance for the hanging string */
  perspective: 720px;
  -webkit-perspective: 720px;
}
.door-sign__hanger {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  pointer-events: none;
}
.door-sign__hanger svg { width: 100%; height: 100%; display: block; overflow: visible; }
.door-sign__string { stroke: var(--ink-soft); stroke-width: 1.3; fill: none; opacity: 0.5; }
.door-sign__screw {
  fill: var(--accent);
  stroke: var(--brand-dark);
  stroke-width: 0.7;
}

.door-sign__plate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 190px;
  padding: 16px 28px 14px;
  border-radius: 13px;
  transform-origin: top center;
  will-change: transform;
  transition: transform 200ms cubic-bezier(.45,0,.55,1),
              background 320ms ease, color 320ms ease, box-shadow 320ms ease;
  animation: signSettle 360ms cubic-bezier(.2,.85,.3,1);
}

/* Open: cream enamel field, deep-green wordmark, brass double keyline */
.door-sign.is-open .door-sign__plate {
  background: linear-gradient(180deg, #fdfaf3 0%, #f4ecdc 100%);
  color: var(--green);
  box-shadow:
    inset 0 0 0 1.5px rgba(184,137,59,0.6),
    inset 0 0 0 4px #fdfaf3,
    inset 0 1px 0 rgba(255,255,255,0.7),
    var(--shadow-md);
}
/* Closed: deep leather field, cream wordmark, brass keyline */
.door-sign.is-closed .door-sign__plate {
  background: linear-gradient(180deg, #4a2c18 0%, #38200f 100%);
  color: #f3e7cf;
  box-shadow:
    inset 0 0 0 1.5px rgba(184,137,59,0.65),
    inset 0 0 0 4px #38200f,
    inset 0 1px 0 rgba(255,255,255,0.06),
    var(--shadow-md);
}

/* The flip: sign turns top-over-bottom while its face is swapped */
.door-sign.is-flipping .door-sign__plate { transform: rotateX(90deg); }

.door-sign__eyelet {
  position: absolute; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(0,0,0,0.4), rgba(0,0,0,0.12));
  box-shadow: inset 0 0 0 1px rgba(184,137,59,0.7);
}
.door-sign__eyelet--l { left: 17px; }
.door-sign__eyelet--r { right: 17px; }

.door-sign__state {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-indent: 0.18em;         /* re-center against the tracking */
}
.door-sign.is-open .door-sign__state { text-shadow: 0 1px 0 rgba(255,255,255,0.55); }
.door-sign.is-closed .door-sign__state { text-shadow: 0 1px 1px rgba(0,0,0,0.45); }

.door-sign__detail {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 26px;            /* reserve the clock's row so the JS open->closed swap can't shift layout (CLS) */
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.01em;
}
.door-sign__sub { white-space: nowrap; }
.door-sign.is-open .door-sign__sub { color: var(--ink-soft); }
.door-sign.is-closed .door-sign__sub { color: rgba(243,231,207,0.82); }

.door-sign__clock { width: 26px; height: 26px; flex: 0 0 auto; display: none; }
.door-sign.is-closed .door-sign__clock { display: block; }
.cl-face { fill: none; stroke: rgba(184,137,59,0.85); stroke-width: 1.6; }
.cl-ticks line { stroke: rgba(184,137,59,0.8); stroke-width: 1.4; stroke-linecap: round; }
.cl-hour { stroke: #f3e7cf; stroke-width: 2; stroke-linecap: round; }
.cl-min  { stroke: #f3e7cf; stroke-width: 1.4; stroke-linecap: round; }
.cl-pin  { fill: var(--accent); }

@keyframes signSettle {
  0%   { transform: rotateZ(-5deg) translateY(-3px); }
  55%  { transform: rotateZ(2.5deg); }
  100% { transform: rotateZ(0); }
}
@media (prefers-reduced-motion: reduce) {
  .door-sign__plate { animation: none; transition: none; }
  .door-sign.is-flipping .door-sign__plate { transform: none; }
}

.hero-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.card-title {
  font-family: var(--font-display); font-size: 22px; margin: 0 0 14px;
}
.card-list { margin: 0; padding: 0; display: grid; gap: 14px; }
.card-list div { display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: start; }
.card-list dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); padding-top: 2px; }
.card-list dd { margin: 0; font-size: 15px; color: var(--ink); }

@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.3fr 1fr; gap: 48px; }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.01em;
}
.section-sub { color: var(--ink-soft); font-size: 17px; margin: 0; }

/* ---------- Services / The Workshop ---------- */
.section-services {
  background: var(--bg-panel);
  background-image:
    radial-gradient(900px 480px at 100% 0%, rgba(184,137,59,0.06), transparent 60%),
    radial-gradient(900px 480px at 0%   100%, rgba(122,59,31,0.05), transparent 60%);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Workshop shell ----- */
.workshop {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) {
  .workshop { grid-template-columns: minmax(280px, 320px) 1fr; }
}

/* ----- Rail ----- */
.workshop-rail {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
  overflow-x: auto;
  scrollbar-width: thin;
}
@media (min-width: 880px) {
  .workshop-rail {
    flex-direction: column;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    overflow: visible;
  }
}

.rail-item {
  appearance: none;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: baseline;
  padding: 24px 22px 24px 28px;
  color: var(--ink-muted);
  flex: 1 0 auto;
  white-space: nowrap;
  transition: color 320ms cubic-bezier(.2,.8,.2,1),
              background 320ms cubic-bezier(.2,.8,.2,1);
}
@media (min-width: 880px) {
  .rail-item {
    flex: 0 0 auto;
    white-space: normal;
    padding: 32px 28px 32px 36px;
    border-bottom: 1px solid var(--line);
  }
  .rail-item:last-child { border-bottom: 0; }
}

/* Indicator: horizontal bar on mobile, vertical bar on desktop */
.rail-item::before {
  content: "";
  position: absolute;
  background: var(--brand);
  transition: transform 380ms cubic-bezier(.2,.8,.2,1),
              opacity 320ms cubic-bezier(.2,.8,.2,1);
  transform-origin: left center;
}
.rail-item::before {
  left: 0; right: 0; bottom: 0;
  height: 2px;
  transform: scaleX(0);
  opacity: 0.6;
}
@media (min-width: 880px) {
  .rail-item::before {
    left: 0; top: 18%; bottom: 18%;
    right: auto;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: center top;
  }
}
.rail-item:hover { color: var(--ink-soft); background: var(--bg); }
.rail-item:hover::before { transform: scaleX(0.4); opacity: 0.5; }
@media (min-width: 880px) {
  .rail-item:hover::before { transform: scaleY(0.4); }
}
.rail-item.is-active { color: var(--ink); background: var(--bg); }
.rail-item.is-active::before { transform: scaleX(1); opacity: 1; }
@media (min-width: 880px) {
  .rail-item.is-active::before { transform: scaleY(1); }
}
.rail-item:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -4px;
}

.rail-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  padding-top: 4px;
}
.rail-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: inherit;
}
.rail-label em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink-muted);
}
.rail-item.is-active .rail-label em { color: var(--ink-soft); }

/* ----- Stage ----- */
.workshop-stage {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  background:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(184,137,59,0.035) 24px 25px),
    var(--bg);
  padding: 36px 28px;
  min-height: 520px;
}
@media (min-width: 720px) { .workshop-stage { padding: 48px 48px; } }
@media (min-width: 1100px) { .workshop-stage { padding: 64px 64px; } }

.stage-panel {
  grid-area: stack;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 420ms cubic-bezier(.2,.8,.2,1),
              transform 480ms cubic-bezier(.2,.8,.2,1),
              visibility 0s linear 480ms;
}
.stage-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 420ms cubic-bezier(.2,.8,.2,1),
              transform 480ms cubic-bezier(.2,.8,.2,1),
              visibility 0s linear 0s;
}

.stage-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}
.stage-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
}
.stage-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 36px;
}

.stage-services {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid var(--line);
  columns: 1;
  column-gap: 56px;
}
@media (min-width: 720px) { .stage-services { columns: 2; } }

.stage-services li {
  break-inside: avoid;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.rn {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  text-align: right;
  letter-spacing: 0.04em;
}
.sv {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.stage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stage-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  font-weight: 600;
}
.stage-cta {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 240ms ease, transform 240ms cubic-bezier(.2,.8,.2,1);
}
.stage-cta:hover { color: var(--brand-dark); transform: translateX(3px); }
.stage-cta:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ----- No-JS fallback ----- */
/* Default markup is single-active-panel (.is-active). Without JS the rail
   is hidden, the stage stacks all panels for full content visibility/SEO. */
.workshop-rail { display: none; }
.workshop { grid-template-columns: 1fr; box-shadow: none; }
.workshop-stage {
  padding: 0;
  min-height: 0;
  background: transparent;
}
.stage-panel {
  position: static;
  grid-area: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.stage-panel:last-child { border-bottom: 0; }

/* When JS upgrades the document, restore the interactive Workshop */
.js .workshop {
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) {
  .js .workshop { grid-template-columns: minmax(280px, 320px) 1fr; }
}
.js .workshop-rail { display: flex; }
.js .workshop-stage {
  padding: 36px 28px;
  min-height: 520px;
  background:
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(184,137,59,0.035) 24px 25px),
    var(--bg);
}
@media (min-width: 720px) { .js .workshop-stage { padding: 48px 48px; } }
@media (min-width: 1100px) { .js .workshop-stage { padding: 64px 64px; } }
.js .stage-panel {
  position: relative;
  grid-area: stack;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 420ms cubic-bezier(.2,.8,.2,1),
              transform 480ms cubic-bezier(.2,.8,.2,1),
              visibility 0s linear 480ms;
  padding: 0;
  border-bottom: 0;
}
.js .stage-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 420ms cubic-bezier(.2,.8,.2,1),
              transform 480ms cubic-bezier(.2,.8,.2,1),
              visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .stage-panel, .js .stage-panel,
  .rail-item, .rail-item::before, .stage-cta {
    transition: none !important;
  }
}

.svc-note { text-align: center; margin-top: 32px; color: var(--ink-soft); font-style: italic; }

/* ---------- About ---------- */
.about-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; }
}
.about-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); margin: 0 0 18px; line-height: 1.2; }
.about-copy p { font-size: 17px; color: var(--ink-soft); margin: 0 0 16px; }
.about-quote {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-style: italic;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-top: 24px !important;
}
.about-photo { margin: 0; }
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.photo-placeholder {
  background:
    repeating-linear-gradient(135deg, var(--bg-warm) 0 12px, var(--bg) 12px 24px);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  color: var(--ink-muted);
  text-align: center;
  padding: 20px;
}
.photo-placeholder span { font-size: 36px; display: block; margin-bottom: 8px; }
.photo-placeholder p { margin: 0; font-size: 14px; }
.photo-placeholder.small { aspect-ratio: 1 / 1; }
.photo-placeholder.small span { font-size: 28px; margin-bottom: 4px; }
.photo-placeholder.small p { font-size: 12px; }
.about-photo figcaption { margin-top: 10px; font-size: 13px; color: var(--ink-muted); text-align: center; }

/* ---------- Gallery ---------- */
.section-gallery { background: var(--bg-panel); }
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 12px 10px;
  background: linear-gradient(to top, rgba(42,31,21,0.75), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}
.gallery-item .photo-placeholder { background: var(--bg-warm); border-style: solid; border-color: var(--line); }

/* ---------- Location ---------- */
.location-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .location-grid { grid-template-columns: 1fr 1.3fr; gap: 48px; }
}
.location-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); margin: 0 0 14px; line-height: 1.2; }
.location-copy p, .location-copy address { font-size: 16px; color: var(--ink-soft); }
.location-copy address { font-style: normal; margin: 18px 0; line-height: 1.6; color: var(--ink); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-warm);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Hours ---------- */
.section-hours { background: var(--bg-panel); }
.hours-grid {
  max-width: 520px; margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.hour-row {
  display: flex; justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.hour-row:first-child { border-top: none; }
.hour-row.today { background: var(--bg-warm); font-weight: 600; }
.hour-row.closed span:last-child { color: var(--ink-muted); }
.section-hours .svc-note { margin-top: 22px; text-align: center; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
}
.contact-copy h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); margin: 0 0 14px; line-height: 1.2; }
.contact-copy p { font-size: 17px; color: var(--ink-soft); }
.contact-cards { display: grid; gap: 14px; }
@media (min-width: 600px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: grid; gap: 6px;
  padding: 22px 20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  color: inherit;
}
.cc-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.cc-value { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); }
.cc-meta { font-size: 13px; color: var(--ink-muted); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 0 0 32px;
  background: var(--ink);
  color: #d6c8b2;
}
.footer-logo-wrap {
  background: #fff;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 36px;
  padding: 24px 28px;
  display: flex;
  justify-content: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.footer-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}
.footer-inner {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1fr auto; }
}
.site-footer .muted { color: #a89880; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 4px; color: #f5e7c6; }
.footer-credit { font-size: 13.5px; margin: 0; color: #a89880; }
.footer-credit a { color: #e8d6a8; }
.footer-credit a:hover { color: #fff; }

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