/* =========================================================
   The Black Rose Barbershop — styles.css
   Palette: near-black + deep crimson "rose" + warm gold/cream
   ========================================================= */

:root {
  --bg:        #0E0E10;
  --bg-2:      #131316;
  --surface:   #1A1A1D;
  --surface-2: #212126;
  --line:      #2C2C31;
  --rose:      #8B1E2D;
  --rose-hi:   #C2293C;
  --rose-link: #E0566A; /* lighter rose for inline links — clears WCAG AA on dark */
  --rose-glow: rgba(194, 41, 60, 0.35);
  --gold:      #B08D57;
  --text:      #F2EFEA;
  --text-mut:  #A8A29B;
  --text-dim:  #938D85; /* lightened to clear AA (4.5:1) for small print */

  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  /* Blackletter / Old English — matches the shop's hand-drawn "Black Rose" flash art */
  --font-black:   'Pirata One', 'UnifrakturCook', 'Old English Text MT', 'Blackletter', serif;

  --maxw: 1160px;
  --header-h: 72px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--rose-link); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: .01em; margin: 0; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--rose); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 1000;
}

:focus-visible { outline: 2px solid var(--rose-hi); outline-offset: 3px; border-radius: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose-hi), var(--rose));
  color: #fff; box-shadow: 0 10px 24px var(--rose-glow);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 30px var(--rose-glow); }

.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--rose-hi); color: var(--text); background: rgba(194,41,60,.08); }

.btn-text { color: var(--text-mut); padding-inline: .4rem; letter-spacing: .04em; }
.btn-text:hover { color: var(--gold); }

.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(14, 14, 16, 0.94); border-bottom-color: var(--line); }
/* Fallback when backdrop blur is unsupported — keep the bar opaque enough to read */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: rgba(14, 14, 16, 0.97); }
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: .7rem; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line-1 { font-family: var(--font-black); font-weight: 400; font-size: 1.32rem; letter-spacing: .01em; line-height: 1; }
.brand-line-2 { font-family: var(--font-display); font-weight: 400; font-size: .74rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); }

.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  color: var(--text-mut); font-family: var(--font-display); font-weight: 500;
  font-size: .95rem; letter-spacing: .05em; text-transform: uppercase;
  position: relative; padding: .3rem 0;
}
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--rose-hi); transition: width .25s var(--ease);
}
.nav-menu a:not(.nav-cta):hover, .nav-menu a.active { color: var(--text); }
.nav-menu a:not(.nav-cta):hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
  color: #fff !important; background: linear-gradient(135deg, var(--rose-hi), var(--rose));
  padding: .55rem 1.1rem !important; border-radius: 999px;
  box-shadow: 0 8px 18px var(--rose-glow);
}
.nav-cta:hover { color: #fff; transform: translateY(-1px); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding: 6rem 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(139, 30, 45, 0.42), transparent 55%),
    radial-gradient(90% 80% at 12% 90%, rgba(176, 141, 87, 0.10), transparent 55%),
    linear-gradient(180deg, #121013, #0E0E10 70%);
}
.hero-bg::after {
  content: ""; position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: min(70vw, 760px); aspect-ratio: 1; opacity: .14;
  background: url("../assets/logo.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 40px rgba(194,41,60,.4));
  animation: slowspin 90s linear infinite;
}
@keyframes slowspin { to { transform: translateY(-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-bg::after { animation: none; } }

.hero-inner { position: relative; z-index: 1; max-width: 760px; }

.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .34em;
  font-size: .8rem; color: var(--gold); margin: 0 0 1.1rem;
}
.hero-title { display: flex; flex-direction: column; gap: .1rem; margin-bottom: 1.4rem; }
.script-accent { font-family: var(--font-black); font-weight: 400; color: var(--rose-hi); font-size: clamp(2.5rem, 7.5vw, 4.8rem); line-height: 1; letter-spacing: .01em; text-shadow: 0 4px 30px var(--rose-glow); }
.hero-title-main {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(3.4rem, 13vw, 8rem); letter-spacing: .02em; line-height: .85; color: var(--text);
}
.hero-tagline { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--text-mut); max-width: 38ch; margin: 0 0 1.8rem; }
.hero-tagline strong { color: var(--text); font-weight: 600; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; list-style: none; padding: 0; margin: 0 0 2.2rem; }
.hero-badges li { font-size: .9rem; color: var(--text-mut); display: flex; align-items: center; gap: .5rem; }
.hero-badges li::before { content: "✓"; color: var(--rose-hi); font-weight: 700; }
.hero-badges .badge-stars::before { content: none; }
.hero-badges .badge-stars { color: var(--text); font-weight: 600; }

.stars { color: var(--gold); letter-spacing: .12em; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; }

/* ---------- Marquee ---------- */
.marquee { background: linear-gradient(90deg, var(--rose), var(--rose-hi)); overflow: hidden; border-block: 1px solid rgba(0,0,0,.25); }
.marquee-track {
  display: flex; align-items: center; gap: 1.6rem; white-space: nowrap;
  padding: .7rem 0; width: max-content;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .18em;
  font-size: .95rem; font-weight: 600; color: #fff;
  animation: marquee 30s linear infinite;
}
.marquee-track .dot { color: rgba(255,255,255,.55); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .26em; font-size: .8rem; color: var(--gold); margin: 0 0 .8rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; }
.section-title .accent { color: var(--rose-hi); }
.section-sub { color: var(--text-mut); font-size: 1.05rem; margin-top: .7rem; }
.section-head.center { text-align: center; max-width: 720px; margin: 0 auto 3.2rem; }
.section-head.center .section-sub { margin-inline: auto; }

/* Flash-style star accents on the eyebrow labels (echoes their tattoo art) */
.eyebrow::before,
.section-eyebrow::before { content: "✦"; margin-right: .6em; color: var(--rose-hi); }
.section-head.center .section-eyebrow::after { content: "✦"; margin-left: .6em; color: var(--rose-hi); }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
/* Featured flash artwork.
   DEFAULT = the rose emblem on a dark card (always safe — no broken image).
   When assets/flash-art.jpg actually loads, JS adds .art-loaded and we switch
   to the cream "pinned to the wall" flash treatment. */
.about-art { display: grid; place-items: center; }
.art-frame {
  margin: 0; position: relative; width: min(80%, 340px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow); transition: transform .45s var(--ease);
}
.art-frame .art-img { display: none; }
.art-frame .art-fallback { display: grid; place-items: center; }
.art-frame .art-fallback img {
  width: 100%; filter: drop-shadow(0 24px 50px rgba(0,0,0,.6));
  animation: floaty 7s ease-in-out infinite;
}
.art-frame figcaption { display: none; }

/* Real photo loaded → cream paper frame, slightly tacked to the wall */
.art-frame.art-loaded {
  background: #efe9dc; border: 1px solid rgba(0,0,0,.18); border-radius: 4px;
  width: min(90%, 360px); padding: 14px 14px 8px; transform: rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0,0,0,.55), 0 2px 0 rgba(255,255,255,.25) inset;
}
.art-frame.art-loaded::before {
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d8475a, var(--rose)); box-shadow: 0 3px 6px rgba(0,0,0,.5);
}
.art-frame.art-loaded:hover { transform: rotate(0deg) scale(1.02); }
.art-frame.art-loaded .art-img { display: block; width: 100%; height: auto; border-radius: 2px; }
.art-frame.art-loaded .art-fallback { display: none; }
.art-frame.art-loaded figcaption {
  display: block; font-family: var(--font-body); font-size: .78rem; color: #5a5048;
  text-align: center; margin-top: 9px; letter-spacing: .02em;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .art-frame .art-fallback img { animation: none; } }
.about-copy p { color: var(--text-mut); margin: 0 0 1.2rem; }
.about-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

/* ---------- Services ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--rose-hi), var(--rose)); transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--rose); box-shadow: var(--shadow); }
.price-card:hover::before { transform: scaleY(1); }
.price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; }
.price-head h3 { font-size: 1.32rem; text-transform: uppercase; letter-spacing: .02em; }
.muted-note { font-size: .72rem; color: var(--text-dim); font-weight: 400; letter-spacing: .04em; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--gold); white-space: nowrap; }
.price-card p { margin: 0; color: var(--text-mut); font-size: .95rem; line-height: 1.5; }
.price-disclaimer {
  text-align: center; margin-top: 2.4rem; color: var(--text-mut); font-size: .95rem;
  background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 1rem 1.4rem;
}
.price-disclaimer a { font-weight: 600; }

/* ---------- Gallery / tiles ---------- */
.gallery { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1.1rem; }
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; display: flex; flex-direction: column; justify-content: flex-end; min-height: 200px;
  position: relative; overflow: hidden; transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(120% 100% at 100% 0%, rgba(139,30,45,.28), transparent 60%);
  transition: opacity .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: var(--rose); }
.tile:hover::after { opacity: 1; }
.tile > * { position: relative; z-index: 1; }
.tile-icon { color: var(--rose-hi); margin-bottom: auto; }
.tile h3 { font-size: 1.3rem; text-transform: uppercase; margin-top: 1rem; }
.tile p { margin: .4rem 0 0; color: var(--text-mut); font-size: .92rem; }
.tile-lg { grid-column: span 2; grid-row: span 2; justify-content: space-between; background: linear-gradient(150deg, var(--surface-2), var(--surface)); }
.tile-lg h3 { font-size: 2rem; }
.tile-lg p { font-size: 1.02rem; max-width: 36ch; }
.tile-cta { grid-column: span 2; background: linear-gradient(150deg, rgba(139,30,45,.22), var(--surface)); justify-content: center; align-items: flex-start; }
.tile-cta .btn { margin-top: 1rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.review-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; position: relative;
}
.review-card::before {
  content: "\201C"; position: absolute; top: -.1em; right: .35em;
  font-family: Georgia, serif; font-size: 6rem; color: var(--rose); opacity: .18; line-height: 1;
}
.review-card .stars { font-size: 1.1rem; margin-bottom: 1rem; }
.review-card blockquote { margin: 0 0 1.2rem; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.review-card figcaption { color: var(--text-mut); font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase; font-size: .82rem; }
.reviews-actions { text-align: center; margin-top: 2.6rem; }

/* ---------- Visit ---------- */
.visit { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }

.open-status {
  display: inline-flex; align-items: center; gap: .6rem; margin: 1.4rem 0 1.6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.1rem; font-weight: 600; font-size: .95rem;
}
.dot-status { width: 10px; height: 10px; border-radius: 50%; background: var(--text-dim); box-shadow: 0 0 0 0 transparent; }
.open-status.is-open .dot-status { background: #3FB870; box-shadow: 0 0 0 4px rgba(63,184,112,.18); }
.open-status.is-closed .dot-status { background: var(--rose-hi); box-shadow: 0 0 0 4px rgba(194,41,60,.18); }
.open-status.is-open #status-text { color: #5fd090; }
.open-status.is-closed #status-text { color: #F2718A; }

.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 1.8rem; }
.hours-table th, .hours-table td { text-align: left; padding: .7rem .2rem; border-bottom: 1px solid var(--line); }
.hours-table th { font-family: var(--font-body); font-weight: 500; color: var(--text); }
.hours-table td { text-align: right; color: var(--text-mut); font-variant-numeric: tabular-nums; }
.hours-table td.closed { color: var(--text-dim); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--text); font-weight: 700; }
.hours-table tr.today { background: rgba(194,41,60,.07); }
.hours-table tr.today th { position: relative; padding-left: .8rem; }
.hours-table tr.today th::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 60%; background: var(--rose-hi); border-radius: 2px; }

.contact-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .9rem; }
.contact-list li { display: flex; align-items: center; gap: .75rem; color: var(--text-mut); }
.contact-list svg { color: var(--rose-hi); flex-shrink: 0; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--gold); }
.parking-note { color: var(--text-mut); font-size: .92rem; margin: 0 0 1.6rem; }
.visit-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.visit-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 420px; box-shadow: var(--shadow); }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--rose), #6f1622); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background: url("../assets/logo.svg") right -60px center / 360px no-repeat;
}
.cta-inner { position: relative; text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; color: #fff; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin: .8rem 0 2rem; }
.cta-band .btn-primary { background: #fff; color: var(--rose); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.cta-band .btn-primary:hover { color: var(--rose); background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: #0A0A0C; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-blurb { color: var(--text-mut); max-width: 34ch; margin: 0 0 1.3rem; font-size: .95rem; }
.social-links { display: flex; gap: .7rem; }
.social-links a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line); color: var(--text-mut);
  transition: all .25s var(--ease);
}
.social-links a:hover { color: #fff; border-color: var(--rose-hi); background: var(--rose); transform: translateY(-3px); }
.footer-nav h3, .footer-visit h3 {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold);
  margin: 0 0 1.1rem; font-weight: 600;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-nav a { color: var(--text-mut); }
.footer-nav a:hover { color: var(--text); }
.footer-visit address { font-style: normal; color: var(--text-mut); line-height: 1.7; }
.footer-visit address a { color: var(--text); }
.footer-hours { color: var(--text-dim); font-size: .88rem; margin-top: .9rem; }

.footer-bottom { border-top: 1px solid var(--line); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { margin: 0; color: var(--text-dim); font-size: .85rem; }
.footer-bottom .credit { color: var(--gold); letter-spacing: .04em; }

/* ---------- Mobile call bar ---------- */
.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--rose-hi), var(--rose)); color: #fff;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .95rem; box-shadow: 0 -8px 24px rgba(0,0,0,.4);
}
.mobile-call-bar:hover { color: #fff; }
/* Don't let the call bar overlap the open full-screen menu */
body.nav-open .mobile-call-bar { display: none; }

/* ---------- Reveal animation (progressive enhancement) ----------
   The hidden state only applies when JS has added .js to <html>.
   Without JS — or if the observer never runs — all content stays visible. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-art { order: -1; }
  .about-actions { justify-content: center; }
  .visit-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-lg, .tile-cta { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  /* Mobile nav */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer; z-index: 120;
  }
  .nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    /* NOTE: .site-header has backdrop-filter, which makes it the containing
       block for this fixed element — so size with viewport units, not bottom:0. */
    position: fixed; top: var(--header-h); left: 0; right: 0; width: 100%; z-index: 1;
    height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
    background: var(--bg-2); border-top: 1px solid var(--line); padding: 2rem; overflow-y: auto;
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-menu li {
    opacity: 0; transform: translateY(14px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }
  .nav-menu.open li { opacity: 1; transform: none; }
  .nav-menu li:nth-child(2) { transition-delay: .04s; }
  .nav-menu li:nth-child(3) { transition-delay: .08s; }
  .nav-menu li:nth-child(4) { transition-delay: .12s; }
  .nav-menu li:nth-child(5) { transition-delay: .16s; }
  .nav-menu li:nth-child(6) { transition-delay: .20s; }
  .nav-menu a { font-size: 1.2rem; }
  body.nav-open { overflow: hidden; }

  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero-badges { gap: .6rem 1rem; }

  .tile-grid { grid-template-columns: 1fr; }
  .tile-lg, .tile-cta { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .mobile-call-bar { display: flex; }
  .site-footer { padding-bottom: 70px; }
  .visit-map, .visit-map iframe { min-height: 300px; }
}

/* On touch devices, drop the hover-lift transforms so they don't "stick" after a tap */
@media (hover: none) and (pointer: coarse) {
  .btn:hover, .price-card:hover, .tile:hover, .review-card:hover,
  .social-links a:hover, .art-frame:hover, .nav-cta:hover { transform: none; }
}

/* =========================================================
   Print — make hours, address & phone legible on paper
   ========================================================= */
@media print {
  body { background: #fff !important; color: #111 !important; }
  .site-header, .marquee, .mobile-call-bar, .hero-bg, .visit-map,
  .nav-toggle, .skip-link, .cta-band { display: none !important; }
  * { box-shadow: none !important; text-shadow: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .section { padding: 1.2rem 0 !important; }
  h1, h2, h3, .hero-title-main { color: #111 !important; }
  .script-accent, .section-title .accent { color: #7a1825 !important; }
  .section-eyebrow, .eyebrow { color: #555 !important; }
  .price { color: #111 !important; }
  a { color: #111 !important; text-decoration: underline; }
  a[href^="http"]::after, a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #555; }
  .price-card, .review-card, .tile { border: 1px solid #ccc !important; background: #fff !important; }
  .hours-table tr.today { background: none !important; }
}

