/* =============================================================
   E CASTRO ART — Barbershop & Tattoo Studio
   Archetype: 02 Editorial Dark Warm (adapted — red primary / navy secondary)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }
@property --angle      { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  /* palette — warm near-black, never pure black */
  --bg:        #100D0C;
  --bg-2:      #17120F;
  --bg-3:      #1F1815;
  --bg-3-hi:   #241C18;
  --cream:     #F3EEE4;
  --cream-2:   #D9CFC0;
  --cream-3:   #8C8074;
  --accent:    #C23A2C;   /* barber-pole red, refined */
  --accent-2:  #9B2D22;
  --accent-soft: rgba(194,58,44,.16);
  --blue:      #35506B;   /* barber-pole blue, refined & desaturated */
  --blue-soft: #4A6B8A;
  --blue-glow: rgba(74,107,138,.28);
  --line:      rgba(243,238,228,.12);
  --line-hi:   rgba(243,238,228,.22);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1220px;
  --nav-h: 76px;
  --radius: 18px;
  --radius-lg: 26px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;             /* NOT hidden — preserves sticky */
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.sr-only {
  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 {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin-top: .75rem; }
.section-sub { margin-top: 1rem; color: var(--cream-2); font-size: 1.05rem; max-width: 52ch; }
.section-head.is-center .section-sub { margin-inline: auto; }

/* halo glow — must extend past section bounds, no overflow:hidden ancestor */
.section-halo {
  position: absolute; inset: -20% -10% -20% -10%; z-index: 0;
  pointer-events: none; filter: blur(110px);
  opacity: .55;
}
.section-halo.is-red    { background: radial-gradient(45% 45% at 30% 30%, var(--accent-soft), transparent 70%); }
.section-halo.is-blue   { background: radial-gradient(45% 45% at 75% 60%, var(--blue-glow), transparent 70%); }
.section > .container   { position: relative; z-index: 1; }

/* =============================================================
   4. Typography helpers
   ============================================================= */
em { font-style: italic; color: var(--accent); }

/* split-text reveal — defensive rule, always wins over .reveal opacity:0 */
.reveal[data-split] { opacity: 1; transform: none; }
.split-word, .split-char { display: inline-block; will-change: transform, opacity; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.7rem; border-radius: 999px;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--accent); color: var(--cream); }
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 22px 46px rgba(194,58,44,.28), 0 8px 20px rgba(0,0,0,.35); }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line-hi);
}
.btn-ghost:hover { border-color: var(--cream-2); background: rgba(243,238,228,.05); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 1rem; }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(16,13,12,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
.nav-mark { width: 34px; height: 34px; flex: none; }
.nav-links { display: none; align-items: center; gap: 1.2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
@media (min-width: 1280px) { .nav-links { gap: 1.8rem; } }
.nav-link { position: relative; font-size: .92rem; font-weight: 500; color: var(--cream-2); padding: .25rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; align-items: center; gap: .75rem; }
@media (min-width: 720px) { .nav-cta { display: flex; } }
.nav-call { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: var(--cream); }
.nav-call svg { width: 17px; height: 17px; color: var(--accent); }

.nav-burger {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span, .nav-burger::before, .nav-burger::after { content: ""; }
.nav-burger-lines { position: relative; width: 20px; height: 14px; }
.nav-burger-lines span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .35s var(--ease-soft), opacity .25s;
}
.nav-burger-lines span:nth-child(1) { top: 0; }
.nav-burger-lines span:nth-child(2) { top: 6px; }
.nav-burger-lines span:nth-child(3) { top: 12px; }
.nav.is-open .nav-burger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-burger-lines span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg-2); color: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-links a { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.nav-mobile-cta { margin-top: 2.2rem; display: flex; flex-direction: column; gap: .9rem; align-items: center; }

/* Cards */
.card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}

/* tilt (applied via JS) */
.has-tilt {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .45s var(--ease-soft), border-color .3s;
  position: relative; isolation: isolate;
}
.has-tilt:hover { transition-duration: .15s; border-color: var(--line-hi); }
.has-tilt::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx) var(--my), var(--accent-soft), transparent 62%);
  opacity: 0; transition: opacity .35s;
}
.has-tilt:hover::before { opacity: 1; }

/* Icon badge */
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bg-3-hi); border: 1px solid var(--line);
  color: var(--cream); margin-bottom: 1.1rem;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.is-accent { background: var(--accent-soft); border-color: rgba(194,58,44,.35); color: var(--accent); }

/* Pop-up micro-interaction shared with .btn already; add to social icons */
.icon-link {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-hi); color: var(--cream);
  transition: transform .4s var(--ease-soft), background-color .3s, border-color .3s;
}
.icon-link:hover { transform: translateY(-3px); background: var(--accent); border-color: var(--accent); }
.icon-link svg { width: 19px; height: 19px; }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s, clip-path 1s;
  animation: splashSafety .01s 3.6s forwards; /* mandatory JS-fail safety */
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark { width: 64px; height: 64px; color: var(--accent); animation: splashPulse 1.6s var(--ease-soft) infinite; }
@keyframes splashPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.88); opacity: .7; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 92vh; min-height: 92svh;
  display: flex; align-items: center; justify-content: center;
  overflow: clip;
  isolation: isolate;
  text-align: center;
  background: var(--bg);
}
.hero-bg-tint {
  position: absolute; inset: 0;
  background: radial-gradient(65% 55% at 50% 38%, rgba(36,28,24,.4), var(--bg) 78%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -2; mix-blend-mode: screen; opacity: .7;
  background:
    radial-gradient(50% 45% at var(--mesh-x) var(--mesh-y), rgba(194,58,44,.42), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(74,107,138,.32), transparent 35%, rgba(194,58,44,.26), transparent 70%);
  filter: blur(70px);
  animation: meshShift 24s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 24%; --mesh-y: 34%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 46%; --mesh-y: 56%; }
  100% { --mesh-angle: 360deg; --mesh-x: 24%; --mesh-y: 34%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .1; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { position: relative; padding-block: calc(var(--nav-h) + 3rem) 3.5rem; width: 100%; }
.hero-content { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.hero-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem; color: var(--cream-2); font-size: .85rem; font-weight: 500; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 4px var(--accent-soft); }
.hero-glyph { display: inline-flex; margin-bottom: 1.3rem; color: var(--accent); }
.hero-glyph svg { width: 46px; height: 46px; }
.hero-title { font-size: clamp(2.6rem, 7.4vw, 5.4rem); max-width: 16ch; }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--cream-2); max-width: 46ch; }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }

/* =============================================================
   8. Services
   ============================================================= */
.services-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card h3 { font-size: 1.15rem; }
.service-card p { margin-top: .55rem; color: var(--cream-3); font-size: .92rem; }
.service-card.is-highlight { background: linear-gradient(155deg, var(--bg-3) 0%, rgba(194,58,44,.14) 100%); border-color: rgba(194,58,44,.3); }

/* =============================================================
   9. Concept split (Barbering + Tattoo)
   ============================================================= */
.concept { overflow: visible; }
.concept-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .concept-grid { grid-template-columns: 1.05fr .95fr; gap: 4rem; } }
.concept-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
}
.concept-figure img { width: 100%; height: 100%; object-fit: cover; }
.concept-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(16,13,12,.65), transparent 55%);
}
.concept-tag {
  position: absolute; left: 1.3rem; bottom: 1.3rem; z-index: 2;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream); background: rgba(16,13,12,.55); border: 1px solid var(--line-hi);
  padding: .5rem .9rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.concept-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.concept-copy p { margin-top: 1.1rem; color: var(--cream-2); max-width: 46ch; }
.concept-mark { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.concept-mark svg { width: 44px; height: 44px; color: var(--blue-soft); }
.concept-mark span { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--cream-2); }

/* =============================================================
   9b. Piercing
   ============================================================= */
.piercing-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .piercing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
.piercing-card {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-3);
}
.piercing-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .55s; }
.piercing-card:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(1.03); }

/* =============================================================
   10. Credibility
   ============================================================= */
.credibility-grid { display: grid; gap: 2.2rem; }
@media (min-width: 960px) { .credibility-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; } }
.credibility-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.credibility-figure img { width: 100%; height: 100%; object-fit: cover; }
.credibility-copy p { margin-top: 1.2rem; color: var(--cream-2); font-size: 1.05rem; max-width: 50ch; }
.credibility-names { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.credibility-chip {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--line-hi); color: var(--cream-2);
}

/* =============================================================
   11. Gallery / Showcase (pinned horizontal on desktop)
   ============================================================= */
.showcase { position: relative; }
.showcase-track-wrap {
  overflow-x: auto; overflow-y: visible;
  padding-block: .5rem 1.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.showcase-track-wrap::-webkit-scrollbar { height: 6px; }
.showcase-track-wrap::-webkit-scrollbar-thumb { background: var(--line-hi); border-radius: 999px; }
[data-showcase] {
  display: flex; flex-wrap: nowrap; gap: 1.3rem;
  width: max-content;
  padding-inline: 1.25rem;
}
@media (min-width: 720px)  { [data-showcase] { padding-inline: 2rem; } }
@media (min-width: 1280px) { [data-showcase] { padding-inline: 2.5rem; } }
.showcase.is-pinned [data-showcase] { padding-inline: 2.5rem; }
.gallery-card {
  scroll-snap-align: start;
  flex: 0 0 auto; width: min(78vw, 340px);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 4/5;
  background: var(--bg-3);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .55s; }
.gallery-card:hover img { transform: scale(1.08); filter: saturate(1.12) brightness(1.03); }
.gallery-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(16,13,12,.86) 0%, rgba(16,13,12,.05) 55%);
}
.gallery-meta { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 2; }
.gallery-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .4rem;
}
.gallery-title { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); }

.gallery-card.is-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 2rem; border: 1px dashed var(--line-hi); gap: 1rem;
}
.gallery-card.is-soon svg { width: 40px; height: 40px; color: var(--blue-soft); }
.gallery-card.is-soon h3 { font-size: 1.15rem; }
.gallery-card.is-soon p { color: var(--cream-3); font-size: .88rem; max-width: 24ch; }

/* =============================================================
   12. Promotion — stamp card
   ============================================================= */
.promo-card {
  background: linear-gradient(155deg, var(--bg-3) 0%, var(--bg-3-hi) 100%);
  border: 1px solid var(--line-hi); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  display: grid; gap: 2rem;
}
@media (min-width: 960px) { .promo-card { grid-template-columns: 1fr auto; align-items: center; gap: 3rem; } }
.promo-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.promo-copy p { margin-top: .9rem; color: var(--cream-2); max-width: 40ch; }
.promo-copy .btn { margin-top: 1.6rem; }
.stamp-row { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.stamp {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--line-hi); color: var(--cream-3);
  transition: background-color .5s var(--ease-out), border-color .5s var(--ease-out), color .5s var(--ease-out), transform .5s var(--ease-bounce);
}
.stamp svg { width: 19px; height: 19px; }
.stamp.is-filled { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.stamp.is-free { border-color: var(--blue-soft); color: var(--blue-soft); width: 54px; height: 54px; }
.stamp.is-free.is-filled { background: var(--blue-soft); border-color: var(--blue-soft); color: var(--cream); }

/* =============================================================
   13. Why section
   ============================================================= */
.why-grid { display: grid; gap: 1.3rem; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card h3 { font-size: 1.2rem; }
.why-card p { margin-top: .6rem; color: var(--cream-3); font-size: .92rem; }

/* =============================================================
   13b. Shop / Products
   ============================================================= */
.shop-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px)  { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .shop-grid { grid-template-columns: repeat(4, 1fr); } }
.shop-card { padding: 1.1rem 1.1rem 1.4rem; display: flex; flex-direction: column; }
.shop-card-img {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  background: var(--bg-3-hi); display: grid; place-items: center;
  padding: .9rem; margin-bottom: 1.1rem;
}
.shop-card-img img { width: 100%; height: 100%; object-fit: contain; }
.shop-brand { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; }
.shop-card h3 { font-size: 1rem; }
.shop-note { margin-top: .5rem; color: var(--cream-3); font-size: .86rem; }
.shop-footnote { margin-top: 1.8rem; text-align: center; color: var(--cream-3); font-size: .88rem; }

/* =============================================================
   14. Instagram
   ============================================================= */
.ig-section { text-align: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.ig-cta { margin-top: .5rem; display: flex; flex-direction: column; align-items: center; }
.ig-mark { width: 40px; height: 40px; color: var(--accent); margin-bottom: 1rem; }
.ig-handle { display: block; font-family: var(--serif); font-style: italic; font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--cream-2); }

/* =============================================================
   15. Contact / Booking
   ============================================================= */
.contact-grid { display: grid; gap: 1.6rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .95fr 1.05fr; gap: 2.5rem; align-items: stretch; } }
.contact-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.6rem;
}
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-row .icon-badge { margin-bottom: 0; flex: none; }
.contact-row-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: .3rem; }
.contact-row-value { font-size: 1.05rem; font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 320px; height: 100%;
  filter: grayscale(.25) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* =============================================================
   16. Sticky mobile CTA bar
   ============================================================= */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: .6rem;
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(16,13,12,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .5s var(--ease-soft);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
@media (min-width: 960px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar .btn { flex: 1; padding-block: .9rem; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.2rem; }
.footer-grid { display: grid; gap: 2.4rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.footer-brand svg { width: 30px; height: 30px; color: var(--accent); }
.footer-tagline { margin-top: .8rem; color: var(--cream-3); font-size: .92rem; max-width: 30ch; }
.footer-col-title { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; }
.footer-list li { margin-bottom: .6rem; }
.footer-list a { color: var(--cream-2); font-size: .95rem; }
.footer-list a:hover { color: var(--cream); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-bottom {
  margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center;
  color: var(--cream-3); font-size: .82rem;
}

/* =============================================================
   18. Reveal + reduced-motion (intrusive only)
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .splash-mark { animation: none; }
  /* Do NOT disable: tilt, hover, fade, mesh-on-hover, count-ups */
}

/* =============================================================
   19. Breakpoints reference (mobile-first, used above)
   540 / 720 / 960 / 1280 / 1600
   ============================================================= */
@media (min-width: 1600px) {
  .container { max-width: 1320px; }
}
