/* ============================================================
   BLIND FOX TATTOO — Homepage
   Design system: ui-ux-pro-max (Portfolio-Grid + Motion-Driven)
   Palette: blue-black gallery + steel-teal accent (from flyer)
   Type: Playfair Display (display) / Inter (body)
   ============================================================ */

:root{
  /* surfaces (subtle blue undertone, not pure black) */
  --bg:        #0A0D10;
  --bg-elev:   #11161C;
  --surface:   #161D24;
  --surface-2: #1C242D;
  /* ink */
  --ink:       #F3F6F9;
  --ink-dim:   #A8B4C0;
  --ink-faint: #6C7884;
  /* lines */
  --line:      #242D37;
  --line-soft: #1A222B;
  /* accent — steel teal pulled from the brand flyer */
  --teal:      #79B6CE;
  --teal-br:   #A6D7E8;
  --teal-deep: #294653;
  /* radius + shadow */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
  --shadow-teal: 0 12px 40px -12px rgba(121,182,206,.35);
  /* type scale */
  --t-hero: clamp(2.9rem, 9vw, 6.2rem);
  --t-h2:   clamp(2rem, 4.6vw, 3.4rem);
  --t-h3:   clamp(1.3rem, 2.4vw, 1.7rem);
  --nav-h: 72px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:var(--nav-h); -webkit-text-size-adjust:100%; }
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'Inter',system-ui,sans-serif; font-size:16px; line-height:1.65;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
h1,h2,h3{ font-family:'Playfair Display',Georgia,serif; line-height:1.08; font-weight:700; letter-spacing:-.01em; margin:0; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:var(--teal); color:#04121a; }

.wrap{ width:100%; max-width:1180px; margin-inline:auto; padding-inline:clamp(20px,5vw,40px); }
section{ position:relative; }

/* eyebrow label */
.eyebrow{
  font-family:'Inter',sans-serif; font-size:.78rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--teal); display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background:var(--teal); opacity:.7; }

/* ---------- buttons ---------- */
.btn{
  --pad:14px 26px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:'Inter',sans-serif; font-weight:600; font-size:.98rem; letter-spacing:.01em;
  padding:var(--pad); border-radius:var(--r-pill); cursor:pointer; border:1px solid transparent;
  transition:transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  min-height:48px; white-space:nowrap;
}
.btn svg{ width:19px; height:19px; flex:none; }
.btn-primary{ background:linear-gradient(135deg,var(--teal-br),var(--teal)); color:#04141d; box-shadow:var(--shadow-teal); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 46px -12px rgba(121,182,206,.55); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--teal); color:var(--teal-br); transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn:focus-visible,a:focus-visible,button:focus-visible{ outline:3px solid var(--teal); outline-offset:3px; border-radius:var(--r-sm); }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; inset:0 0 auto 0; height:var(--nav-h); z-index:100;
  display:flex; align-items:center;
  background:rgba(10,13,16,.55); backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid transparent; transition:background .3s ease, border-color .3s ease;
}
.nav.scrolled{ background:rgba(10,13,16,.9); border-bottom-color:var(--line-soft); }
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; gap:20px; width:100%; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:42px; width:auto; }
.brand .word{ font-family:'Playfair Display',serif; font-weight:800; font-size:1.15rem; letter-spacing:.02em; line-height:1; }
.brand .word small{ display:block; font-family:'Inter',sans-serif; font-weight:500; font-size:.66rem; letter-spacing:.3em; color:var(--teal); margin-top:3px; }
.nav-links{ display:flex; align-items:center; gap:30px; list-style:none; margin:0; padding:0; }
.nav-links a{ font-size:.92rem; font-weight:500; color:var(--ink-dim); position:relative; transition:color .2s ease; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--teal); transition:width .25s ease; }
.nav-links a:hover{ color:var(--ink); } .nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--line); border-radius:var(--r-sm); width:46px; height:46px; color:var(--ink); cursor:pointer; align-items:center; justify-content:center; }
.nav-toggle svg{ width:22px; height:22px; }

/* mobile drawer */
.drawer{ position:fixed; inset:var(--nav-h) 0 auto 0; z-index:99; background:var(--bg-elev); border-bottom:1px solid var(--line);
  transform:translateY(-120%); transition:transform .35s cubic-bezier(.4,0,.2,1); padding:18px clamp(20px,5vw,40px) 28px; }
.drawer.open{ transform:translateY(0); }
.drawer ul{ list-style:none; margin:0 0 18px; padding:0; display:flex; flex-direction:column; gap:4px; }
.drawer a{ display:block; padding:13px 4px; font-size:1.05rem; font-weight:500; border-bottom:1px solid var(--line-soft); color:var(--ink-dim); }
.drawer a:hover{ color:var(--teal); }

/* ============================================================
   HERO  (above the fold: headline + CALL NOW)
   ============================================================ */
.hero{ min-height:100svh; display:flex; align-items:center; padding-top:var(--nav-h); position:relative; isolation:isolate; overflow:hidden; }
.hero::before{ /* teal glow */ content:""; position:absolute; z-index:-2; inset:0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(121,182,206,.22), transparent 55%),
    radial-gradient(90% 70% at 12% 96%, rgba(41,70,83,.5), transparent 60%),
    linear-gradient(180deg,#0A0D10 0%, #0C1116 100%); }
/* the colour fox sits behind the hero text as atmosphere, with a scrim over it
   so the headline keeps its contrast. .hero-art holds two stacked layers: the
   art (which carries the opacity) and ::after (the scrim, unaffected by it). */
.hero-art{ position:absolute; inset:0; z-index:-1; overflow:hidden; pointer-events:none; }
.hero-art .fox{
  position:absolute; inset:0;
  /* Path is relative to THIS stylesheet (assets/css/), deliberately not a custom
     property: url() inside a var() resolves against the sheet that consumes it,
     so a page-emitted relative path 404s from every subdirectory. */
  background:url('../img/blind-fox-tattoo-fox-hero.webp') no-repeat;
  background-position:76% 50%;
  background-size:min(56vw,620px) auto;
  opacity:.52;
  filter:saturate(.95);
}
.hero-art::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(52% 58% at 18% 50%, rgba(10,13,16,.93) 0%, rgba(10,13,16,.45) 42%, rgba(10,13,16,0) 72%),
    linear-gradient(180deg, rgba(10,13,16,.3) 0%, rgba(10,13,16,0) 24%, rgba(10,13,16,.62) 100%);
}
.hero-inner{ max-width:760px; }
.hero .eyebrow{ margin-bottom:22px; }
.hero h1{ font-size:var(--t-hero); font-weight:800; }
.hero h1 .teal{ color:var(--teal); font-style:italic; font-weight:700; }
.hero .lead{ color:var(--ink-dim); font-size:clamp(1.05rem,1.6vw,1.28rem); margin:24px 0 0; max-width:54ch; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:38px; }
.hero-meta{ display:flex; flex-wrap:wrap; gap:10px 28px; margin-top:34px; color:var(--ink-dim); font-size:.92rem; }
.hero-meta span{ display:inline-flex; align-items:center; gap:9px; }
.hero-meta svg{ width:17px; height:17px; color:var(--teal); flex:none; }
.scroll-hint{ position:absolute; left:50%; bottom:26px; transform:translateX(-50%); color:var(--ink-faint); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scroll-hint svg{ width:20px; height:20px; animation:bob 1.8s ease-in-out infinite; }
@keyframes bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(6px); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec{ padding:clamp(72px,11vh,128px) 0; }
.sec-head{ max-width:640px; margin-bottom:54px; }
.sec-head h2{ font-size:var(--t-h2); margin-top:16px; }
.sec-head p{ color:var(--ink-dim); margin-top:18px; font-size:1.06rem; }
.sec-tinted{ background:var(--bg-elev); border-block:1px solid var(--line-soft); }

/* ---------- ABOUT ---------- */
.about-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,68px); align-items:center; }
.about-copy p + p{ margin-top:18px; }
.about-copy .lead-line{ font-family:'Playfair Display',serif; font-size:clamp(1.3rem,2.2vw,1.7rem); font-style:italic; color:var(--ink); line-height:1.4; margin-bottom:24px; }
.stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.stat{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md); padding:24px 22px; transition:transform .25s ease, border-color .25s ease; }
.stat:hover{ transform:translateY(-4px); border-color:var(--teal-deep); }
.stat .num{ font-family:'Playfair Display',serif; font-size:2.4rem; font-weight:700; color:var(--teal); line-height:1; }
.stat .lbl{ color:var(--ink-dim); font-size:.9rem; margin-top:10px; }

/* ---------- SERVICES ---------- */
.svc-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(258px,1fr)); gap:20px; }
.svc-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.svc-card:hover{ transform:translateY(-6px); border-color:var(--teal-deep); box-shadow:var(--shadow); }
.svc-card .ph{ aspect-ratio:4/3; }
.svc-body{ padding:20px 22px 24px; }
.svc-body h3{ font-size:1.22rem; display:flex; align-items:center; gap:9px; }
.svc-body .star{ color:var(--teal); width:15px; height:15px; }
.svc-body p{ color:var(--ink-dim); font-size:.92rem; margin-top:8px; }
.svc-note{ margin-top:30px; color:var(--ink-dim); font-size:.98rem; text-align:center; }
.svc-note b{ color:var(--ink); font-weight:600; }

/* ---------- ARTISTS ---------- */
.artist-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; }
.artist{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:transform .3s ease, border-color .3s ease; }
.artist:hover{ transform:translateY(-6px); border-color:var(--teal-deep); }
.artist .ph{ aspect-ratio:3/4; }
.artist-body{ padding:22px 24px 26px; }
.artist-body .role{ color:var(--teal); font-size:.78rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; }
.artist-body h3{ font-size:1.5rem; margin:8px 0 4px; }
.artist-body .exp{ color:var(--ink-dim); font-size:.92rem; }
.artist-body .spec{ margin-top:14px; font-size:.92rem; color:var(--ink); }
.artist-ig{ margin-top:18px; display:inline-flex; align-items:center; gap:8px; font-size:.9rem; font-weight:500; color:var(--ink-dim); transition:color .2s ease; }
.artist-ig:hover{ color:var(--teal); } .artist-ig svg{ width:18px; height:18px; }

/* ---------- REVIEWS (honest empty-state, no fabrication) ---------- */
.reviews-wrap{ text-align:center; max-width:680px; margin-inline:auto; }
.stars-row{ display:inline-flex; gap:6px; color:var(--teal); margin-bottom:8px; }
.stars-row svg{ width:24px; height:24px; }
.reviews-wrap h2{ font-size:var(--t-h2); margin:14px 0 18px; }
.reviews-wrap p{ color:var(--ink-dim); font-size:1.08rem; }
.reviews-cta{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:34px; }
.review-tip{ margin-top:26px; font-size:.85rem; color:var(--ink-faint); }

/* ---------- PORTFOLIO ---------- */
.filter-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.chip{ font-family:'Inter',sans-serif; font-size:.86rem; font-weight:500; color:var(--ink-dim); background:var(--surface); border:1px solid var(--line);
  padding:9px 18px; border-radius:var(--r-pill); cursor:pointer; transition:all .2s ease; min-height:44px; }
.chip:hover{ color:var(--ink); border-color:var(--teal-deep); }
.chip.active{ background:var(--teal); color:#04141d; border-color:var(--teal); font-weight:600; }
.masonry{ columns:3 260px; column-gap:16px; }
.masonry .tile{ break-inside:avoid; margin-bottom:16px; border-radius:var(--r-md); overflow:hidden; border:1px solid var(--line); position:relative; }
.masonry .tile .ph{ border:none; }
.masonry .tile:nth-child(3n) .ph{ aspect-ratio:3/4; }
.masonry .tile:nth-child(3n+1) .ph{ aspect-ratio:1; }
.masonry .tile:nth-child(3n+2) .ph{ aspect-ratio:4/5; }
.portfolio-foot{ text-align:center; margin-top:40px; }

/* ---------- IMAGE PLACEHOLDER (drop real photos in) ---------- */
.ph{
  position:relative; width:100%; display:flex; align-items:center; justify-content:center; text-align:center;
  background:
    repeating-linear-gradient(135deg, rgba(121,182,206,.04) 0 14px, transparent 14px 28px),
    linear-gradient(160deg,#1A232C,#10161C);
  color:var(--ink-faint); border:0;
}
.ph::after{ content:attr(data-label); font-family:'Inter',sans-serif; font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; padding:14px; max-width:80%; }
.ph .ico{ position:absolute; top:14px; left:14px; width:18px; height:18px; opacity:.4; }

/* ============================================================
   FOOTER / CONTACT
   ============================================================ */
.foot{ background:var(--bg-elev); border-top:1px solid var(--line); padding-top:clamp(64px,9vh,100px); }
.foot-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:clamp(34px,5vw,64px); padding-bottom:56px; }
.foot h3{ font-family:'Inter',sans-serif; font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal); font-weight:600; margin-bottom:20px; }
.foot .brand{ margin-bottom:18px; }
.foot p{ color:var(--ink-dim); font-size:.96rem; }
.foot-contact a{ display:flex; align-items:flex-start; gap:12px; color:var(--ink-dim); padding:8px 0; font-size:.98rem; transition:color .2s ease; }
.foot-contact a:hover{ color:var(--teal); } .foot-contact svg{ width:19px; height:19px; color:var(--teal); flex:none; margin-top:2px; }
.hours-list{ list-style:none; margin:0; padding:0; }
.hours-list li{ display:flex; justify-content:space-between; gap:18px; padding:7px 0; border-bottom:1px solid var(--line-soft); color:var(--ink-dim); font-size:.95rem; }
.hours-list li b{ color:var(--ink); font-weight:500; }
.hours-list li.closed b{ color:var(--ink-faint); }
.foot-bottom{ border-top:1px solid var(--line); padding:24px 0; display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; align-items:center; color:var(--ink-faint); font-size:.84rem; }
.social-row{ display:flex; gap:12px; }
.social-row a{ width:44px; height:44px; border:1px solid var(--line); border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; color:var(--ink-dim); transition:all .2s ease; }
.social-row a:hover{ color:var(--teal); border-color:var(--teal-deep); transform:translateY(-3px); }
.social-row svg{ width:20px; height:20px; }

/* ---------- sticky mobile call bar ---------- */
.callbar{ position:fixed; inset:auto 0 0 0; z-index:90; display:none; gap:10px; padding:12px 14px calc(12px + env(safe-area-inset-bottom));
  background:rgba(10,13,16,.94); backdrop-filter:blur(12px); border-top:1px solid var(--line); }
.callbar .btn{ flex:1; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; } .reveal.d3{ transition-delay:.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-ghost{ display:none; }
  .about-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .foot-brand-col{ grid-column:1 / -1; }
  .masonry{ columns:2 200px; }
}
@media (max-width:560px){
  .callbar{ display:flex; }
  body{ padding-bottom:78px; }
  .hero{ min-height:auto; padding-block:calc(var(--nav-h) + 48px) 72px; }
  .hero-cta .btn{ flex:1; }
  .foot-grid{ grid-template-columns:1fr; }
  .masonry{ columns:2 140px; }
  .scroll-hint{ display:none; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .scroll-hint svg{ animation:none; }
  *{ transition-duration:.01ms !important; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   Added when the site grew from one page into style / artist /
   about / gallery landing pages. Same tokens, same language.
   ============================================================ */

/* skip link */
.skip{ position:absolute; left:-9999px; top:0; z-index:200; background:var(--teal); color:#04141d;
  padding:12px 20px; border-radius:0 0 var(--r-sm) 0; font-weight:600; }
.skip:focus{ left:0; }

/* ---------- compact hero for interior pages ---------- */
.phero{ padding:calc(var(--nav-h) + clamp(46px,8vh,84px)) 0 clamp(40px,6vh,64px); position:relative; isolation:isolate; overflow:hidden; }
.phero::before{ content:""; position:absolute; z-index:-2; inset:0;
  background:
    radial-gradient(110% 80% at 82% 0%, rgba(121,182,206,.17), transparent 58%),
    radial-gradient(80% 70% at 6% 100%, rgba(41,70,83,.42), transparent 62%),
    linear-gradient(180deg,#0A0D10 0%, #0C1116 100%); }
.phero-inner{ max-width:780px; }
.phero h1{ font-size:clamp(2.3rem,5.6vw,4rem); margin-top:16px; }
.phero .lead{ color:var(--ink-dim); font-size:clamp(1.04rem,1.5vw,1.2rem); margin-top:20px; max-width:60ch; }
.phero .hero-cta{ display:flex; flex-wrap:wrap; gap:13px; margin-top:30px; }

/* ---------- breadcrumbs ---------- */
.crumbs{ font-size:.84rem; color:var(--ink-faint); }
.crumbs ol{ list-style:none; display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin:0; padding:0; }
.crumbs a{ color:var(--ink-dim); } .crumbs a:hover{ color:var(--teal); }
.crumbs li + li::before{ content:"/"; margin-right:8px; color:var(--line); }
.crumbs [aria-current]{ color:var(--ink-faint); }

/* ---------- long-form copy ---------- */
.prose{ max-width:68ch; }
.prose p{ color:var(--ink-dim); font-size:1.04rem; }
.prose p + p{ margin-top:18px; }
.prose h2{ font-size:clamp(1.6rem,3vw,2.2rem); margin-top:52px; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size:var(--t-h3); margin-top:34px; }
.prose h2 + p, .prose h3 + p{ margin-top:16px; }
.prose strong, .prose b{ color:var(--ink); font-weight:600; }
.prose a{ color:var(--teal); text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; }
.prose a:hover{ color:var(--teal-br); }
.prose ul{ color:var(--ink-dim); margin:16px 0 0; padding-left:22px; }
.prose li{ margin-top:9px; }
.prose li::marker{ color:var(--teal); }
.prose blockquote{ margin:26px 0 0; padding:2px 0 2px 22px; border-left:2px solid var(--teal-deep);
  font-family:'Playfair Display',Georgia,serif; font-style:italic; font-size:1.14rem; color:var(--ink); }

/* two-column body: copy + sticky aside */
.split{ display:grid; grid-template-columns:minmax(0,1.55fr) minmax(0,.95fr); gap:clamp(32px,5vw,66px); align-items:start; }
.aside-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:26px 26px 28px; position:sticky; top:calc(var(--nav-h) + 22px); }
.aside-card h3{ font-family:'Inter',sans-serif; font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; color:var(--teal); font-weight:600; }
.aside-card p{ color:var(--ink-dim); font-size:.96rem; margin-top:14px; }
.aside-card .btn{ margin-top:20px; }
.aside-list{ list-style:none; margin:16px 0 0; padding:0; }
.aside-list li{ padding:11px 0; border-bottom:1px solid var(--line-soft); font-size:.95rem; color:var(--ink-dim); }
.aside-list li:last-child{ border-bottom:0; }
.aside-list a{ color:var(--ink); font-weight:500; }
.aside-list a:hover{ color:var(--teal); }

/* ---------- photo gallery (real work) ---------- */
.gal{ columns:3 270px; column-gap:16px; }
.gal.tight{ columns:4 200px; }
.gal figure{ break-inside:avoid; margin:0 0 16px; position:relative; border-radius:var(--r-md);
  overflow:hidden; border:1px solid var(--line); background:var(--surface); }
.gal img{ width:100%; height:auto; display:block; transition:transform .5s cubic-bezier(.2,.7,.2,1), opacity .3s ease; }
.gal figure:hover img{ transform:scale(1.035); }
.gal figcaption{ position:absolute; inset:auto 0 0 0; padding:34px 15px 13px; font-size:.82rem; line-height:1.45;
  color:var(--ink); background:linear-gradient(180deg,transparent,rgba(6,9,12,.92));
  opacity:0; transform:translateY(8px); transition:opacity .3s ease, transform .3s ease; }
.gal figure:hover figcaption, .gal figure:focus-within figcaption{ opacity:1; transform:none; }
.gal button.zoom{ position:absolute; inset:0; width:100%; height:100%; background:none; border:0; cursor:zoom-in; padding:0; }
.gal-note{ color:var(--ink-faint); font-size:.86rem; margin-top:22px; }

/* ---------- lightbox ---------- */
.lb{ position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center;
  background:rgba(5,7,9,.93); backdrop-filter:blur(6px); padding:clamp(14px,4vw,48px); }
.lb.open{ display:flex; }
.lb img{ max-width:100%; max-height:82vh; border-radius:var(--r-md); box-shadow:var(--shadow); }
.lb figcaption{ color:var(--ink-dim); font-size:.92rem; text-align:center; margin-top:16px; max-width:64ch; }
.lb-close{ position:absolute; top:18px; right:18px; width:46px; height:46px; border-radius:var(--r-pill);
  background:var(--surface); border:1px solid var(--line); color:var(--ink); cursor:pointer; font-size:1.3rem; line-height:1; }
.lb-close:hover{ border-color:var(--teal); color:var(--teal); }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); width:50px; height:50px; border-radius:var(--r-pill);
  background:rgba(22,29,36,.85); border:1px solid var(--line); color:var(--ink); cursor:pointer; font-size:1.4rem; line-height:1; }
.lb-nav:hover{ border-color:var(--teal); color:var(--teal); }
.lb-prev{ left:clamp(8px,2vw,26px); } .lb-next{ right:clamp(8px,2vw,26px); }

/* ---------- style / service cards with real photos ---------- */
.svc-card a.svc-link{ display:block; }
.svc-card .shot{ position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--surface-2); }
.svc-card .shot img{ width:100%; height:100%; object-fit:cover; transition:transform .55s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover .shot img{ transform:scale(1.05); }
.svc-body .more, .artist-body .more{ display:inline-flex; align-items:center; gap:7px; margin-top:15px; color:var(--teal);
  font-size:.88rem; font-weight:600; }
.svc-card:hover .more, .artist:hover .more{ gap:11px; }
.svc-body .count{ color:var(--ink-faint); font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; margin-top:12px; }

/* ---------- artist ---------- */
.artist .shot{ position:relative; aspect-ratio:3/4; overflow:hidden; background:var(--surface-2); }
.artist .shot img{ width:100%; height:100%; object-fit:cover; transition:transform .55s cubic-bezier(.2,.7,.2,1); }
.artist:hover .shot img{ transform:scale(1.04); }
.artist-hero{ display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:clamp(28px,5vw,60px); align-items:start; }
.artist-portrait{ border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); background:var(--surface); }
.artist-portrait img{ width:100%; height:auto; }
.artist-facts{ list-style:none; margin:22px 0 0; padding:0; }
.artist-facts li{ display:flex; gap:12px; padding:11px 0; border-bottom:1px solid var(--line-soft); font-size:.95rem; color:var(--ink-dim); }
.artist-facts li:last-child{ border-bottom:0; }
.artist-facts b{ color:var(--ink); font-weight:500; min-width:88px; flex:none; }
.tag-row{ display:flex; flex-wrap:wrap; gap:9px; margin-top:20px; }
.tag{ font-size:.84rem; font-weight:500; color:var(--ink-dim); background:var(--surface); border:1px solid var(--line);
  padding:8px 15px; border-radius:var(--r-pill); transition:all .2s ease; }
.tag:hover{ color:var(--teal); border-color:var(--teal-deep); }

/* ---------- FAQ ---------- */
.faq{ max-width:74ch; }
.faq details{ border:1px solid var(--line); border-radius:var(--r-md); background:var(--surface); margin-top:12px; overflow:hidden; }
.faq details[open]{ border-color:var(--teal-deep); }
.faq summary{ cursor:pointer; padding:18px 22px; font-weight:600; font-size:1.02rem; color:var(--ink);
  display:flex; justify-content:space-between; align-items:center; gap:16px; list-style:none; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; color:var(--teal); font-size:1.4rem; font-weight:400; line-height:1; flex:none; }
.faq details[open] summary::after{ content:"–"; }
.faq .answer{ padding:0 22px 20px; color:var(--ink-dim); font-size:1rem; }
.faq .answer p + p{ margin-top:14px; }

/* ---------- CTA band ---------- */
.cta-band{ background:var(--bg-elev); border-block:1px solid var(--line-soft); padding:clamp(52px,8vh,86px) 0; }
.cta-band .inner{ display:flex; flex-wrap:wrap; gap:26px 40px; align-items:center; justify-content:space-between; }
.cta-band h2{ font-size:clamp(1.7rem,3.4vw,2.5rem); max-width:22ch; }
.cta-band p{ color:var(--ink-dim); margin-top:12px; max-width:46ch; }
.cta-band .btns{ display:flex; flex-wrap:wrap; gap:13px; }

/* ---------- related cards ---------- */
.rel-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; }
.rel-card{ display:block; border:1px solid var(--line); border-radius:var(--r-md); overflow:hidden; background:var(--surface);
  transition:transform .3s ease, border-color .3s ease; }
.rel-card:hover{ transform:translateY(-5px); border-color:var(--teal-deep); }
.rel-card .shot{ aspect-ratio:16/10; overflow:hidden; }
.rel-card .shot img{ width:100%; height:100%; object-fit:cover; }
.rel-card .txt{ padding:17px 19px 20px; }
.rel-card h3{ font-size:1.12rem; }
.rel-card p{ color:var(--ink-dim); font-size:.88rem; margin-top:7px; }

/* ---------- small note / callout ---------- */
.callout{ border:1px solid var(--line); border-left:3px solid var(--teal-deep); border-radius:var(--r-sm);
  background:var(--surface); padding:20px 22px; margin-top:30px; }
.callout p{ color:var(--ink-dim); font-size:.97rem; }
.callout p + p{ margin-top:12px; }
.callout b{ color:var(--ink); }

/* ---------- visit / contact block ---------- */
.visit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(26px,4vw,48px); }
.visit-grid .card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:28px; }
.visit-grid h3{ font-family:'Inter',sans-serif; font-size:.8rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--teal); font-weight:600; margin-bottom:18px; }

/* ---------- footer: four columns once there are pages to link ---------- */
.foot-grid{ grid-template-columns:1.25fr .85fr .85fr .85fr; }
.foot-nav{ list-style:none; margin:0; padding:0; }
.foot-nav li{ padding:6px 0; }
.foot-nav a{ color:var(--ink-dim); font-size:.95rem; }
.foot-nav a:hover{ color:var(--teal); }

@media (max-width:980px){
  .split{ grid-template-columns:1fr; }
  .aside-card{ position:static; }
  .artist-hero{ grid-template-columns:1fr; }
  .artist-portrait{ max-width:420px; }
}
@media (max-width:900px){
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .gal{ columns:2 200px; }
  .gal.tight{ columns:2 160px; }
  .visit-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .foot-grid{ grid-template-columns:1fr; }
  .gal{ columns:2 140px; }
  .cta-band .btns{ width:100%; }
  .cta-band .btns .btn{ flex:1; }
}

/* one- or two-artist sections: don't let a lone card stretch across the grid */
.artist-grid.compact{ grid-template-columns:repeat(auto-fit,minmax(250px,320px)); justify-content:start; }


/* ============================================================
   HOME-PAGE ATMOSPHERE
   The shop's own flagship shots, running full-bleed between the
   sections so the work carries the page as you scroll.
   ============================================================ */

/* ---------- full-bleed photo band ---------- */
.band{
  position:relative; isolation:isolate; overflow:hidden;
  min-height:clamp(340px,54vh,600px); display:flex; align-items:center;
}
.band.reveal{ transform:none; }            /* full-bleed: fade in place, never slide */
.band > img{
  position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover;
  transform:scale(1.07); transition:transform 1.8s cubic-bezier(.2,.7,.2,1);
}
.band.in > img{ transform:scale(1); }
.band::after{                               /* scrim: keeps the copy legible over the photo */
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(90deg, rgba(10,13,16,.94) 0%, rgba(10,13,16,.74) 40%, rgba(10,13,16,.3) 100%),
    linear-gradient(180deg, rgba(10,13,16,.5) 0%, rgba(10,13,16,0) 42%, rgba(10,13,16,.7) 100%);
}
.band-copy{ max-width:40ch; padding-block:clamp(52px,9vh,96px); }
.band-copy .eyebrow{ margin-bottom:20px; }
.band-copy .line{
  font-family:'Playfair Display',Georgia,serif; font-style:italic; font-weight:600;
  font-size:clamp(1.45rem,3.1vw,2.5rem); line-height:1.22; color:var(--ink);
}
.band-copy .sub{ color:var(--ink-dim); margin-top:18px; font-size:1.02rem; max-width:44ch; }
.band-copy .btn{ margin-top:28px; }

/* ---------- three-up flagship triptych ---------- */
.trip-wrap{ background:var(--bg); }
.trip{ display:grid; grid-template-columns:repeat(3,1fr); gap:3px; background:var(--line-soft); }
.trip figure{ position:relative; margin:0; overflow:hidden; aspect-ratio:4/5; background:var(--surface); }
.trip img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.06); transition:transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.trip.in img{ transform:scale(1); }
.trip.in figure:nth-child(2) img{ transition-delay:.12s; }
.trip.in figure:nth-child(3) img{ transition-delay:.24s; }
.trip figcaption{
  position:absolute; inset:auto 0 0 0; padding:64px 18px 18px; font-size:.84rem; line-height:1.45;
  color:var(--ink); background:linear-gradient(180deg,transparent,rgba(6,9,12,.92));
  opacity:0; transition:opacity .45s ease;
}
.trip figure:hover figcaption, .trip figure:focus-within figcaption{ opacity:1; }
.trip-caption{ color:var(--ink-faint); font-size:.84rem; text-align:center; padding:18px 20px 0; }

/* swipeable rail on phones — 3 columns at 390px would be 130px each */
@media (max-width:760px){
  .trip{
    grid-template-columns:repeat(3,76vw); gap:8px; padding:0 12vw;
    overflow-x:auto; scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch; scrollbar-width:none; background:var(--bg);
  }
  .trip::-webkit-scrollbar{ display:none; }
  .trip figure{ scroll-snap-align:center; border-radius:var(--r-md); }
  /* No hover on touch, and a permanent overlay buried a third of every photo —
     the alt text still serves screen readers, and .trip-caption sits below. */
  .trip figcaption{ display:none; }
}

/* the hero fox, re-staged for a tall narrow screen */
@media (max-width:760px){
  .hero-art .fox{
    background-position:62% 26%;
    background-size:min(124vw,540px) auto;
    opacity:.62;
  }
  .hero-art::after{
    background:
      radial-gradient(120% 38% at 40% 74%, rgba(10,13,16,.95) 0%, rgba(10,13,16,.55) 48%, rgba(10,13,16,0) 86%),
      linear-gradient(180deg, rgba(10,13,16,.12) 0%, rgba(10,13,16,0) 10%, rgba(10,13,16,.78) 100%);
  }
}

/* ---------- bigger tap targets on touch-sized screens ---------- */
@media (max-width:900px){
  .foot-nav li{ padding:0; }
  .foot-nav a{ display:flex; align-items:center; min-height:44px; }
  .foot-contact a{ min-height:44px; align-items:center; }
  .artist-ig{ min-height:44px; }
  /* list-item links (related styles, artist specialties) are discrete targets,
     not inline prose, so they get a real 44px touch box */
  .aside-list a{ display:flex; align-items:center; min-height:44px; }
  .aside-list li{ padding:0; }
  .tag{ min-height:44px; display:inline-flex; align-items:center; }
  .foot .brand{ min-height:44px; }
  .crumbs a, .crumbs li{ min-height:32px; display:inline-flex; align-items:center; }
}

/* whole style/artist cards are one link — make the CTA line read as part of it */
.svc-card .svc-link:hover .more, .svc-card .svc-link:focus-visible .more{ gap:12px; }
.svc-card .svc-link:focus-visible, .artist .svc-link:focus-visible{ outline:3px solid var(--teal); outline-offset:3px; }
.svc-card h3, .artist-body h3{ color:var(--ink); }
.artist-foot{ padding:0 24px 24px; }

@media (prefers-reduced-motion:reduce){
  .band > img, .trip img{ transform:none !important; transition:none !important; }
}
