/* =========================================================
   ANTEIKU.INK — STUDIO TATUAŻU GNIEZNO
   Design system — Mobile First (320px -> 768px -> 1200px)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital@1&family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root{
  /* --- kolory --- */
  --ink-black:      #0b0b0d;
  --ink-black-2:    #17161a;
  --ink-black-3:    #201f24;
  --ink-line:       #34323a;

  --paper:          #ece6da;
  --paper-2:        #e2dbca;
  --paper-line:     #b9ae95;
  --paper-text:     #1a1712;

  --text-light:     #f4efe6;
  --text-muted:     #a9a5ab;
  --text-muted-2:   #726f78;

  --accent-magenta: #d6247a;
  --accent-orange:  #f2994a;
  --accent-gradient: linear-gradient(135deg, var(--accent-magenta) 0%, #e0447a 45%, var(--accent-orange) 100%);

  --danger:         #e0447a;

  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 22px;

  --shadow-1: 0 10px 30px rgba(0,0,0,.35);
  --shadow-2: 0 18px 50px rgba(0,0,0,.45);

  --maxw: 1200px;

  --ease: cubic-bezier(.22,.88,.32,1);
}

/* --- reset --- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink-black);
  color:var(--text-light);
  font-family:'Inter', system-ui, sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:16px; }
h1,h2,h3,h4{ margin:0; font-family:'Bebas Neue', sans-serif; letter-spacing:.02em; font-weight:400; }
p{ margin:0; }

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

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

.material-icons{ font-size:1.25em; vertical-align:middle; line-height:1; }

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}
@media (max-width:360px){
  .site-header .container{ padding:0 14px; }
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:.5em;
  font-family:'Inter',sans-serif;
  font-weight:700;
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent-orange);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:26px; height:2px;
  background:var(--accent-gradient);
  display:inline-block;
}

.script-word{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-weight:400;
  background:var(--accent-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

section{ position:relative; }

.section{
  padding:64px 0;
}
.section--paper{
  background:var(--paper);
  color:var(--paper-text);
}
.section--paper h1,.section--paper h2,.section--paper h3{ color:var(--paper-text); }
.section--paper .text-muted{ color:#5c5646; }

.section-head{
  max-width:640px;
  margin-bottom:36px;
}
.section-head h2{
  font-size:clamp(2.1rem, 6vw, 3.2rem);
  line-height:1.02;
  text-transform:uppercase;
}
.section-head p{
  margin-top:14px;
  color:var(--text-muted);
  font-size:1.02rem;
  max-width:52ch;
}
.section--paper .section-head p{ color:#5c5646; }

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

/* --- buttons --- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:15px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  border:1px solid transparent;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-primary{
  background:var(--accent-gradient);
  color:#0b0b0d;
  font-weight:800;
  box-shadow:0 8px 24px rgba(214,36,122,.28);
}
.btn-primary:hover{ box-shadow:0 12px 32px rgba(214,36,122,.42); transform:translateY(-2px); }
.btn-outline{
  background:transparent;
  border-color:var(--ink-line);
  color:var(--text-light);
}
.btn-outline:hover{ border-color:var(--accent-orange); color:var(--accent-orange); }
.section--paper .btn-outline{ border-color:var(--paper-line); color:var(--paper-text); }
.section--paper .btn-outline:hover{ border-color:var(--accent-magenta); color:var(--accent-magenta); }
.btn-block{ width:100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(9,9,10,.97);
  border-bottom:1px solid rgba(255,255,255,.06);
}
/* UWAGA: celowo BEZ backdrop-filter / filter / transform na .site-header —
   te właściwości tworzą nowy "containing block" dla potomków position:fixed
   (np. .site-nav), co łamie pełnoekranowe menu mobilne w realnych przeglądarkach. */
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  height:68px;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(1.05rem, 4.6vw, 1.4rem);
  letter-spacing:.05em;
  color:var(--text-light);
  flex-shrink:1;
  min-width:0;
}
.brand-ring{
  width:34px; height:34px;
  border-radius:50%;
  padding:2.5px;
  background:var(--accent-gradient);
  flex-shrink:0;
}
.brand-ring span{
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%;
  border-radius:50%;
  background:var(--ink-black);
  font-family:'Bebas Neue';
  font-size:.62rem;
  letter-spacing:0;
}
.brand-text{
  min-width:0;
  overflow:hidden;
}
.brand-text span{
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand small{
  display:block;
  font-family:'Inter';
  font-size:.6rem;
  letter-spacing:.14em;
  color:var(--text-muted);
  text-transform:uppercase;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  min-width:44px;
  flex-shrink:0;
  background:none;
  border:1px solid var(--ink-line);
  border-radius:10px;
  color:var(--text-light);
  z-index:1100;
}

.site-nav{
  position:fixed;
  inset:0;
  top:68px;
  z-index:999;
  background:var(--ink-black);
  transform:translateX(100%);
  transition:transform .45s var(--ease);
  overflow-y:auto;
}
/* UWAGA: .site-nav jest teraz SIOSTRĄ <header>, a nie jego potomkiem —
   celowo, aby żadna właściwość nagłówka (filter/backdrop-filter/transform/
   will-change) nie mogła w przyszłości ponownie złamać position:fixed
   tego menu przez utworzenie nowego "containing block". */
.site-nav.is-open{ transform:translateX(0); }
.site-nav::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 85% 0%, rgba(214,36,122,.14), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(242,153,74,.10), transparent 55%);
  pointer-events:none;
}
.site-nav .container{ padding-top:36px; padding-bottom:36px; }
.nav-links{ display:flex; flex-direction:column; gap:4px; }
.nav-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 4px;
  font-family:'Bebas Neue';
  font-size:2rem;
  letter-spacing:.02em;
  border-bottom:1px solid var(--ink-line);
  color:var(--text-light);
}
.nav-links a .material-icons{ color:var(--accent-orange); font-size:1.3rem; }
.nav-links a.is-active{ color:var(--accent-orange); }
.nav-cta{ margin-top:28px; }
.nav-meta{
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--ink-line);
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-muted);
  font-size:.92rem;
}
.nav-meta a{ display:flex; align-items:center; gap:10px; color:var(--text-muted); }
.nav-meta a:hover{ color:var(--accent-orange); }

body.nav-open{ overflow:hidden; }

@media (min-width:1000px){
  .nav-toggle{ display:none; }

  .site-nav{
    position:fixed;
    inset:auto;
    top:0; left:0; right:0;
    height:68px;
    z-index:1000;
    background:none;
    transform:none;
    transition:none;
    overflow:visible;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    pointer-events:none;
  }
  .site-nav::before{ display:none; }
  .site-nav .container{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
    height:100%;
    padding-top:0;
    padding-bottom:0;
    pointer-events:none;
  }
  .nav-links{
    flex-direction:row;
    align-items:center;
    gap:2px;
    pointer-events:auto;
  }
  .nav-links a{
    border:none;
    padding:8px 16px;
    font-family:'Inter';
    font-size:.95rem;
    font-weight:600;
    letter-spacing:0;
    text-transform:uppercase;
    color:var(--text-muted);
  }
  .nav-links a:hover{ color:var(--text-light); }
  .nav-links a.is-active{ color:var(--accent-orange); }
  .nav-links a .material-icons{ display:none; }
  .nav-cta{ margin:0; pointer-events:auto; }
  .nav-meta{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  padding-top:120px;
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 20%;
  filter:saturate(.85) contrast(1.05);
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.35) 35%, rgba(11,11,13,.96) 100%),
    linear-gradient(100deg, rgba(11,11,13,.75) 0%, rgba(11,11,13,.15) 55%);
}
.hero-inner{
  position:relative;
  z-index:1;
  padding-bottom:56px;
  width:100%;
}
.hero-eyebrow{
  display:flex; align-items:center; gap:10px;
  font-weight:700; font-size:.72rem; letter-spacing:.24em;
  text-transform:uppercase; color:var(--accent-orange);
  margin-bottom:18px;
}
.hero-eyebrow .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent-gradient);
  box-shadow:0 0 0 4px rgba(214,36,122,.18);
}
.hero h1{
  font-size:clamp(2.6rem, 10vw, 5.6rem);
  line-height:.96;
  text-transform:uppercase;
  max-width:14ch;
}
.hero p.lede{
  margin-top:22px;
  max-width:46ch;
  font-size:1.08rem;
  color:var(--text-light);
  opacity:.88;
}
.hero-actions{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.hero-stats{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:520px;
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:22px;
}
.hero-stats div b{
  display:block;
  font-family:'Bebas Neue';
  font-size:1.7rem;
  background:var(--accent-gradient);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-stats div span{
  font-size:.72rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.scroll-cue{
  position:absolute;
  right:20px; bottom:22px;
  display:none;
  writing-mode:vertical-rl;
  font-size:.7rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text-muted);
  align-items:center;
  gap:10px;
}
.scroll-cue::after{
  content:"";
  width:1px; height:40px;
  background:linear-gradient(var(--text-muted), transparent);
}

@media (min-width:768px){
  .hero h1{ max-width:16ch; }
  .scroll-cue{ display:flex; }
}

/* --- inner page hero (smaller) --- */
.page-hero{
  position:relative;
  padding:150px 0 60px;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(214,36,122,.20), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(242,153,74,.14), transparent 45%);
  pointer-events:none;
}
.page-hero .container{ position:relative; }
.page-hero h1{
  font-size:clamp(2.4rem,8vw,4.4rem);
  text-transform:uppercase;
  line-height:.98;
  max-width:16ch;
}
.page-hero p{
  margin-top:18px;
  max-width:56ch;
  color:var(--text-muted);
  font-size:1.05rem;
}
.breadcrumbs{
  display:flex; align-items:center; gap:8px;
  font-size:.82rem; color:var(--text-muted-2);
  margin-bottom:20px;
  text-transform:uppercase; letter-spacing:.08em;
}
.breadcrumbs a:hover{ color:var(--accent-orange); }
.breadcrumbs .material-icons{ font-size:1rem; }

/* =========================================================
   CARDS / GRIDS — general
   ========================================================= */
.grid{ display:grid; gap:20px; }
.grid-2{ grid-template-columns:1fr; }
.grid-3{ grid-template-columns:1fr; }
.grid-4{ grid-template-columns:repeat(2,1fr); }
@media (min-width:768px){
  .grid-2{ grid-template-columns:1fr 1fr; }
  .grid-3{ grid-template-columns:repeat(3,1fr); }
  .grid-4{ grid-template-columns:repeat(3,1fr); }
}
@media (min-width:1200px){
  .grid-4{ grid-template-columns:repeat(4,1fr); }
}

/* --- flash-sheet numbered service card --- */
.flash-card{
  position:relative;
  background:var(--ink-black-2);
  border:1px solid var(--ink-line);
  border-radius:var(--radius-m);
  padding:28px 24px 26px;
  transition:border-color .3s, transform .3s var(--ease);
}
.flash-card:hover{ border-color:rgba(242,153,74,.5); transform:translateY(-4px); }
.flash-card .num{
  font-family:'Bebas Neue';
  font-size:.8rem;
  color:var(--text-muted-2);
  letter-spacing:.1em;
}
.flash-card .icon{
  width:52px; height:52px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(214,36,122,.16), rgba(242,153,74,.16));
  margin:14px 0 18px;
  color:var(--accent-orange);
}
.flash-card h3{
  font-size:1.5rem;
  text-transform:uppercase;
  margin-bottom:10px;
}
.flash-card p{ color:var(--text-muted); font-size:.95rem; }
.flash-card .tags{
  margin-top:16px;
  display:flex; flex-wrap:wrap; gap:8px;
}
.flash-card .tags span{
  font-size:.72rem;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid var(--ink-line);
  color:var(--text-muted);
}

/* --- process steps (legitimate numbered sequence) --- */
.steps{
  counter-reset:step;
  display:grid;
  gap:0;
  grid-template-columns:1fr;
}
.step{
  counter-increment:step;
  position:relative;
  padding:26px 0 26px 64px;
  border-bottom:1px solid var(--ink-line);
}
.step:last-child{ border-bottom:none; }
.step::before{
  content:counter(step, decimal-leading-zero);
  position:absolute; left:0; top:24px;
  font-family:'Bebas Neue';
  font-size:2.4rem;
  background:var(--accent-gradient);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1;
}
.step h3{ font-size:1.35rem; text-transform:uppercase; margin-bottom:8px; }
.step p{ color:var(--text-muted); max-width:60ch; }
@media (min-width:768px){
  .step{ padding-left:96px; }
  .step::before{ font-size:3.4rem; }
}

/* =========================================================
   GALLERY — stencil reveal signature
   ========================================================= */
.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}
.gallery-filters button{
  background:transparent;
  border:1px solid var(--ink-line);
  color:var(--text-muted);
  padding:10px 18px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:600;
  transition:all .25s;
}
.gallery-filters button:hover{ color:var(--text-light); border-color:var(--accent-orange); }
.gallery-filters button.is-active{
  background:var(--accent-gradient);
  color:#0b0b0d;
  border-color:transparent;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media (min-width:768px){
  .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
}
@media (min-width:1200px){
  .gallery-grid{ grid-template-columns:repeat(4,1fr); }
}

.stencil-item{
  position:relative;
  aspect-ratio:3/4;
  border-radius:var(--radius-s);
  overflow:hidden;
  background:var(--paper);
  cursor:pointer;
}
.stencil-item img{
  width:100%; height:100%; object-fit:cover;
  opacity:0;
  transform:scale(1.04);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.stencil-item.is-revealed img,
.stencil-item:hover img,
.stencil-item:focus-visible img{ opacity:1; transform:scale(1); }

.stencil-item::before{
  /* stencil crosshatch guideline look */
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(107,20,68,.5) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(-45deg, rgba(107,20,68,.35) 0 1px, transparent 1px 9px);
  opacity:1;
  transition:opacity .6s var(--ease);
}
.stencil-item.is-revealed::before,
.stencil-item:hover::before,
.stencil-item:focus-visible::before{ opacity:0; }

.stencil-item::after{
  content:attr(data-label);
  position:absolute; left:0; right:0; bottom:0;
  padding:10px 12px 8px;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  opacity:0;
  transform:translateY(6px);
  transition:opacity .3s, transform .3s;
}
.stencil-item:hover::after,
.stencil-item:focus-visible::after,
.stencil-item.is-revealed::after{ opacity:1; transform:translateY(0); }

.stencil-item .zoom-hint{
  position:absolute; top:10px; right:10px;
  width:30px;height:30px;
  border-radius:50%;
  background:rgba(11,11,13,.55);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:1rem;
  opacity:0;
  transition:opacity .3s;
}
.stencil-item:hover .zoom-hint,
.stencil-item:focus-visible .zoom-hint{ opacity:1; }

/* lightbox */
.lightbox{
  position:fixed; inset:0;
  z-index:2000;
  background:rgba(6,6,7,.94);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox.is-open{ display:flex; }
.lightbox figure{
  margin:0;
  max-width:min(560px, 92vw);
  max-height:88vh;
}
.lightbox img{
  width:100%; height:auto;
  max-height:76vh;
  object-fit:contain;
  border-radius:var(--radius-m);
  box-shadow:var(--shadow-2);
}
.lightbox figcaption{
  margin-top:12px;
  color:var(--text-muted);
  font-size:.85rem;
  text-align:center;
}
.lightbox-close,.lightbox-nav{
  position:absolute;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  width:46px;height:46px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.lightbox-close{ top:18px; right:18px; }
.lightbox-nav.prev{ left:10px; top:50%; transform:translateY(-50%); }
.lightbox-nav.next{ right:10px; top:50%; transform:translateY(-50%); }
@media (min-width:768px){
  .lightbox-nav.prev{ left:24px; }
  .lightbox-nav.next{ right:24px; }
}

/* =========================================================
   TESTIMONIALS / TRUST
   ========================================================= */
.review-card{
  background:var(--paper-2);
  border:1px solid var(--paper-line);
  border-radius:var(--radius-m);
  padding:24px;
  color:var(--paper-text);
}
.review-card .stars{ color:var(--accent-magenta); font-size:1rem; margin-bottom:10px; letter-spacing:2px; }
.review-card p{ font-size:.98rem; }
.review-card .who{ margin-top:14px; font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:.04em; }

.trust-strip{
  display:flex; flex-wrap:wrap; gap:28px;
  align-items:center; justify-content:space-between;
  padding:26px 0;
  border-top:1px solid var(--paper-line);
  border-bottom:1px solid var(--paper-line);
  margin:36px 0;
}
.trust-strip .item{ display:flex; align-items:center; gap:12px; }
.trust-strip .item b{ font-family:'Bebas Neue'; font-size:1.5rem; }
.trust-strip .item span{ font-size:.78rem; color:#5c5646; text-transform:uppercase; letter-spacing:.04em; }

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq-item{
  border-bottom:1px solid var(--ink-line);
}
.section--paper .faq-item{ border-bottom-color:var(--paper-line); }
.faq-q{
  width:100%;
  background:none; border:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:22px 4px;
  text-align:left;
  color:inherit;
  font-family:'Inter'; font-weight:700; font-size:1.02rem;
}
.faq-q .material-icons{ transition:transform .3s var(--ease); color:var(--accent-orange); flex-shrink:0; }
.faq-item.is-open .faq-q .material-icons{ transform:rotate(135deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s var(--ease);
}
.faq-a p{
  padding:0 4px 22px;
  color:var(--text-muted);
  max-width:68ch;
}
.section--paper .faq-a p{ color:#5c5646; }

/* =========================================================
   FORM (kontakt)
   ========================================================= */
.form-card{
  background:var(--ink-black-2);
  border:1px solid var(--ink-line);
  border-radius:var(--radius-l);
  padding:26px 22px;
}
.field{ margin-bottom:18px; }
.field label{
  display:block;
  font-size:.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:8px;
  color:var(--text-muted);
}
.field input,.field select,.field textarea{
  width:100%;
  background:var(--ink-black);
  border:1px solid var(--ink-line);
  border-radius:var(--radius-s);
  padding:14px 14px;
  color:var(--text-light);
  transition:border-color .25s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--accent-orange);
  outline:none;
}
.field textarea{ resize:vertical; min-height:120px; }
.field-error{
  display:none;
  color:var(--danger);
  font-size:.78rem;
  margin-top:6px;
  align-items:center;
  gap:6px;
}
.field-error .material-icons{ font-size:1rem; }
.field.has-error input,.field.has-error select,.field.has-error textarea{ border-color:var(--danger); }
.field.has-error .field-error{ display:flex; }
.consent{
  display:flex; gap:10px; align-items:flex-start;
  font-size:.82rem; color:var(--text-muted);
  margin-bottom:20px;
}
.consent input{ margin-top:3px; width:16px; height:16px; flex-shrink:0; }
.form-note{
  margin-top:14px;
  font-size:.78rem;
  color:var(--text-muted-2);
  display:flex; gap:8px; align-items:flex-start;
}
.form-success{
  display:none;
  background:linear-gradient(135deg, rgba(214,36,122,.14), rgba(242,153,74,.1));
  border:1px solid rgba(242,153,74,.4);
  border-radius:var(--radius-m);
  padding:20px;
  align-items:center;
  gap:14px;
}
.form-success.is-visible{ display:flex; }
.form-success .material-icons{ color:var(--accent-orange); font-size:1.8rem; }

/* --- contact info card / map / hours --- */
.info-card{
  background:var(--ink-black-2);
  border:1px solid var(--ink-line);
  border-radius:var(--radius-l);
  padding:26px 22px;
}
.info-row{
  display:flex; gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--ink-line);
}
.info-row:last-child{ border-bottom:none; }
.info-row .material-icons{ color:var(--accent-orange); }
.info-row h4{ font-family:'Inter'; font-weight:700; font-size:.95rem; text-transform:uppercase; letter-spacing:.03em; margin-bottom:4px; }
.info-row p, .info-row a{ color:var(--text-muted); font-size:.95rem; }
.info-row a:hover{ color:var(--accent-orange); }

.hours-table{ width:100%; border-collapse:collapse; font-size:.92rem; }
.hours-table td{ padding:8px 0; border-bottom:1px dashed var(--ink-line); }
.hours-table td:last-child{ text-align:right; font-weight:700; }
.hours-table tr.is-today td{ color:var(--accent-orange); }
.hours-table tr.closed td:last-child{ color:var(--text-muted-2); }

.map-frame{
  width:100%;
  aspect-ratio:16/10;
  border:0;
  border-radius:var(--radius-l);
  filter:grayscale(.3) invert(.92) contrast(.9);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  position:relative;
  padding:70px 0;
  text-align:center;
  overflow:hidden;
  background:var(--ink-black-2);
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(214,36,122,.22), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(242,153,74,.18), transparent 50%);
}
.cta-band .container{ position:relative; }
.cta-band h2{
  font-size:clamp(2rem,7vw,3.6rem);
  text-transform:uppercase;
  max-width:16ch;
  margin:0 auto 18px;
}
.cta-band p{ color:var(--text-muted); max-width:52ch; margin:0 auto 30px; }
.cta-actions{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }

/* =========================================================
   TEAM
   ========================================================= */
.team-card{
  background:var(--ink-black-2);
  border:1px solid var(--ink-line);
  border-radius:var(--radius-m);
  padding:22px;
  text-align:left;
}
.team-card .avatar{
  width:64px;height:64px;border-radius:50%;
  padding:2.5px;
  background:var(--accent-gradient);
  margin-bottom:16px;
}
.team-card .avatar span{
  width:100%;height:100%;border-radius:50%;
  background:var(--ink-black-3);
  display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue'; font-size:1.3rem;
}
.team-card h3{ font-size:1.3rem; text-transform:uppercase; }
.team-card .role{ font-size:.78rem; color:var(--accent-orange); text-transform:uppercase; letter-spacing:.05em; margin:4px 0 12px; font-weight:700; }
.team-card p{ color:var(--text-muted); font-size:.92rem; }
.team-card .ig{ margin-top:14px; display:inline-flex; align-items:center; gap:6px; font-size:.85rem; color:var(--text-muted); }
.team-card .ig:hover{ color:var(--accent-orange); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--ink-black-2);
  border-top:1px solid var(--ink-line);
  padding-top:56px;
}
.footer-grid{
  display:grid;
  gap:36px;
  grid-template-columns:1fr;
  padding-bottom:36px;
  border-bottom:1px solid var(--ink-line);
}
@media (min-width:768px){
  .footer-grid{ grid-template-columns:1.3fr 1fr 1fr 1fr; }
}
.footer-brand p{ color:var(--text-muted); font-size:.92rem; margin-top:14px; max-width:32ch; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  border:1px solid var(--ink-line);
  display:flex;align-items:center;justify-content:center;
}
.footer-social a:hover{ border-color:var(--accent-orange); color:var(--accent-orange); }
.footer-col h4{
  font-family:'Inter'; font-weight:700; font-size:.82rem;
  text-transform:uppercase; letter-spacing:.06em;
  color:var(--text-muted); margin-bottom:16px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:var(--text-light); font-size:.92rem; }
.footer-col a:hover{ color:var(--accent-orange); }
.footer-col .material-icons{ font-size:1rem; margin-right:6px; color:var(--accent-orange); }

.seo-footer{
  padding:26px 0;
  border-bottom:1px solid var(--ink-line);
}
.seo-footer h5{
  font-family:'Inter'; font-size:.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.08em;
  color:var(--text-muted-2); margin-bottom:12px;
}
.seo-footer .kw-list{
  display:flex; flex-wrap:wrap; gap:8px 10px;
}
.seo-footer .kw-list a, .seo-footer .kw-list span{
  font-size:.76rem;
  color:var(--text-muted-2);
}
.seo-footer .kw-list a:hover{ color:var(--accent-orange); }
.seo-footer .kw-list span::after{ content:"·"; margin-left:10px; color:var(--ink-line); }
.seo-footer .kw-list a:last-child::after,
.seo-footer .kw-list span:last-child::after{ content:""; }

.footer-bottom{
  display:flex; flex-wrap:wrap; gap:12px;
  align-items:center; justify-content:space-between;
  padding:22px 0;
  font-size:.8rem;
  color:var(--text-muted-2);
}
.footer-bottom a:hover{ color:var(--accent-orange); }

/* =========================================================
   MISC utilities
   ========================================================= */
.mt-0{ margin-top:0 !important; }
.center{ text-align:center; }
.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;
}
.skip-link{
  position:absolute;
  left:12px; top:-60px;
  background:var(--accent-gradient);
  color:#0b0b0d;
  padding:12px 18px;
  border-radius:8px;
  font-weight:700;
  z-index:2100;
  transition:top .2s;
}
.skip-link:focus{ top:12px; }

.badge-rating{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--ink-black-2);
  border:1px solid var(--ink-line);
  padding:8px 16px 8px 8px;
  border-radius:999px;
  font-size:.85rem;
}
.badge-rating .stars{ color:var(--accent-orange); letter-spacing:1px; }

.divider-ink{
  height:1px;
  background:linear-gradient(90deg, transparent, var(--ink-line), transparent);
  margin:0;
}

.float-book{
  position:fixed;
  right:16px; bottom:16px;
  z-index:900;
  background:var(--accent-gradient);
  color:#0b0b0d;
  padding:14px 20px;
  border-radius:999px;
  font-weight:800;
  font-size:.88rem;
  display:flex; align-items:center; gap:8px;
  box-shadow:0 10px 30px rgba(214,36,122,.4);
  transition:transform .25s var(--ease);
}
.float-book:hover{ transform:translateY(-3px); }
@media (min-width:1000px){ .float-book{ display:none; } }
