/* ============================================================
   GHOST DETAILING — design tokens
   Palette: near-black / off-white / gray, with a "chrome sheen"
   signature borrowed from freshly polished paintwork.
   Display: Bebas Neue (tall, condensed, automotive)
   Body:    Inter
   Spec/Mono: JetBrains Mono (used for prices + labels, like a spec sheet)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root{
  --black: #0a0a0b;
  --near-black: #141416;
  --charcoal: #232326;
  --gray-700: #4a4a4f;
  --gray-500: #8a8a90;
  --gray-300: #c9c9cd;
  --gray-100: #eeeeef;
  --white: #fafafa;
  --pure-white: #ffffff;

  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(0,0,0,0.10);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1180px;
  --radius: 2px;

  --ease: cubic-bezier(.16,.8,.24,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4,h5{ margin:0; font-weight:800; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

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

:focus-visible{
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.site-header :focus-visible,
.hero2 :focus-visible,
.section-dark :focus-visible,
.cta-band :focus-visible,
footer :focus-visible,
.pkg-card.featured :focus-visible{
  outline-color: var(--white);
}
.pkg-card:not(.featured) :focus-visible{
  outline-color: var(--black);
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:18px;
  height:1px;
  background: var(--gray-500);
}

/* ---------- header / nav ---------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(10,10,11,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color: var(--white);
}
.brand img{
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: contrast(1.1);
}
.brand-word{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}
.nav-links{
  display:flex;
  gap: 34px;
  align-items:center;
}
.nav-links a{
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color: var(--white); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px;
  background: var(--white);
}
.nav-cta{
  color: var(--white) !important;
  padding: 0;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  transition: opacity .2s var(--ease);
}
.nav-cta:hover{ opacity: 0.7; }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  width: 32px; height: 24px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background: var(--white);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span{ top:11px; }
.nav-toggle span::before{ top:-8px; }
.nav-toggle span::after{ top:8px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span::after{ transform: translateY(-8px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary{
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover{ transform: translateY(-2px); }
.btn-outline{
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-outline:hover{ border-color: var(--white); transform: translateY(-2px); }
.btn-outline.dark{
  border-color: rgba(0,0,0,0.24);
  color: var(--black);
}
.btn-outline.dark:hover{ border-color: var(--black); }

/* signature: chrome sheen sweep on hover, mimics light passing over polished paint */
.sheen{ position:relative; overflow:hidden; }
.sheen::after{
  content:"";
  position:absolute;
  top:0; left:-60%;
  width:40%; height:100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left .75s var(--ease);
  pointer-events:none;
}
.sheen:hover::after{ left: 130%; }
.btn-outline.sheen::after{ background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%); }

/* ---------- hero ---------- */
.hero{
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow:hidden;
  padding: 150px 0 120px;
}
.hero-photo{
  position:absolute; inset:0;
  background-image: url('../assets/photos/garage-hero.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.95;
}
.hero::before{
  /* dark gradient over the studio photo so headline stays legible */
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.98) 0%, rgba(10,10,11,0.92) 34%, rgba(10,10,11,0.45) 64%, rgba(10,10,11,0.12) 100%),
    linear-gradient(0deg, rgba(10,10,11,1) 0%, rgba(10,10,11,0.25) 26%, rgba(10,10,11,0.05) 100%);
  z-index:1;
}
.hero::after{
  content:"";
  position:absolute;
  top:-20%; right:-10%;
  width:60%; height:140%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.06) 48%, transparent 62%);
  transform: skewX(-14deg);
  z-index:1;
}
.hero-inner{ position:relative; z-index:2; max-width: 760px; }
.hero-stats{ z-index:2; }
.hero h1{
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-top: 22px;
}
.hero h1 em{
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}
.hero p.lead{
  margin-top: 26px;
  font-size: 19px;
  color: var(--gray-300);
  max-width: 540px;
  font-weight: 400;
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-stats{
  position:relative; z-index:2;
  margin-top: 90px;
  display:grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  max-width: 620px;
}
.hero-stats .stat-num{
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
}
.hero-stats .stat-label{
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ---------- sections ---------- */
section{ padding: 108px 0; overflow-x: hidden; }
.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2{
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  margin-top: 16px;
  letter-spacing: 0.005em;
}
.section-head p{
  margin-top: 16px;
  font-size: 17px;
  color: var(--gray-700);
}
.section-dark{
  background: var(--black);
  color: var(--white);
}
.section-dark .section-head p{ color: var(--gray-300); }

/* ---------- process (real sequence -> numbered is justified) ---------- */
.process{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.process-step{
  padding: 34px 26px 34px 0;
  border-right: 1px solid var(--line-dark);
  position:relative;
}
.process-step:last-child{ border-right:none; }
.process-step .num{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-500);
}
.process-step h4{
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.process-step p{
  margin-top: 10px;
  font-size: 15px;
  color: var(--gray-700);
}

/* ---------- package / spec cards ---------- */
.pkg-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.pkg-card{
  background: var(--white);
  padding: 34px 30px 30px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition: background .3s var(--ease);
}
.pkg-card.featured{
  background: var(--black);
  color: var(--white);
}
.pkg-tag{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--gray-500);
}
.pkg-card.featured .pkg-tag{ color: var(--gray-300); }
.pkg-card h3{
  font-family: var(--font-display);
  font-size: 30px;
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.pkg-card .desc{
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray-700);
}
.pkg-card.featured .desc{ color: var(--gray-300); }
.pkg-list{
  margin-top: 22px;
  flex:1;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.pkg-list li{
  font-size: 14px;
  padding-left: 18px;
  position:relative;
  color: inherit;
}
.pkg-list li::before{
  content:"—";
  position:absolute;
  left:0;
  color: var(--gray-500);
}
.pkg-price{
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.pkg-card.featured .pkg-price{ border-top-color: var(--line); }
.pkg-price .from{
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-500);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pkg-cta{
  margin-top: 20px;
}

/* ---------- feature strip ---------- */
.features{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature h4{
  font-size: 16px;
  font-weight: 700;
}
.feature .idx{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
  display:block;
}
.feature p{
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray-700);
}

/* ---------- price table (ceník page) ---------- */
.price-category{
  margin-bottom: 64px;
}
.price-category-head{
  display:flex;
  align-items:baseline;
  gap: 16px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.price-category-head .icon{ font-size: 22px; }
.price-category-head h3{
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.01em;
}
.price-row{
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 20px;
}
.price-row .name{
  font-size: 16px;
  font-weight: 600;
}
.price-row .note{
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}
.duration{
  display:inline-flex;
  align-items:center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}
.duration::before{ content:"⏱"; font-size:11px; }
.price-row .price{
  font-family: var(--font-mono);
  font-size: 18px;
  white-space: nowrap;
  font-weight: 600;
}
.price-row .price .from{
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
  text-transform: uppercase;
}

.notice-box{
  margin-top: 40px;
  border: 1px solid var(--line-dark);
  padding: 26px 28px;
  background: var(--gray-100);
}
.notice-box h4{
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.notice-box ul{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.notice-box li{
  font-size: 14px;
  color: var(--gray-700);
  padding-left: 16px;
  position:relative;
}
.notice-box li::before{
  content:"!";
  position:absolute;
  left:0;
  font-family: var(--font-mono);
  font-weight:700;
  color: var(--gray-500);
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--black);
  color: var(--white);
  text-align:center;
  padding: 100px 0;
  position:relative;
  overflow:hidden;
}
.cta-band h2{
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
}
.cta-band p{
  margin-top: 18px;
  color: var(--gray-300);
  font-size: 17px;
}
.cta-band .hero-actions{ justify-content:center; margin-top: 36px; }

/* ---------- footer ---------- */
footer{
  background: var(--black);
  color: var(--gray-300);
  padding: 70px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand img{ height:36px; width:36px; border-radius:50%; }
.footer-brand span{
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.03em;
}
.footer-col h5{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap: 12px; }
.footer-col a{ font-size: 14px; transition: color .2s; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  padding-top: 26px;
  display:flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a{ color: var(--gray-500); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.footer-bottom a:hover{ color: var(--white); }

/* ---------- generic page hero (inner pages) ---------- */
.page-hero{
  background: var(--black);
  color: var(--white);
  padding: 130px 0 76px;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;
  top:-30%; right:-5%;
  width:50%; height:160%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.05) 48%, transparent 62%);
  transform: skewX(-14deg);
}
.page-hero h1{
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 78px);
  margin-top: 16px;
  position:relative; z-index:2;
}
.page-hero p{
  margin-top: 16px;
  color: var(--gray-300);
  font-size: 17px;
  max-width: 560px;
  position:relative; z-index:2;
}
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  position:relative; z-index:2;
}
.breadcrumb a:hover{ color: var(--white); }

.studio-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4px;
  align-items: start;
}
.studio-grid img{ width:100%; border:1px solid var(--line); }
@media (max-width: 980px){
  .studio-grid{ grid-template-columns: 1fr; }
}
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
}
.about-media{
  aspect-ratio: 4/5;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-media img{
  width: 70%;
  opacity:1;
}
.values-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-top: 30px;
}
.value-card{
  background: var(--white);
  padding: 28px;
  color: var(--black);
}
.value-card h4{ font-size:16px; font-weight:700; }
.value-card p{ margin-top:8px; font-size:14px; color: var(--gray-700); }

/* ---------- contact page ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}
.contact-info-item{
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.contact-info-item h5{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.contact-info-item p, .contact-info-item a{
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  display:block;
}
.social-row{
  display:flex;
  gap: 14px;
  margin-top: 30px;
}
.social-row a{
  width: 42px; height:42px;
  border: 1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.social-row a:hover{ background: var(--black); color: var(--white); }

/* ---------- forms ---------- */
.form-field{
  margin-bottom: 22px;
}
.form-honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label{
  display:block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 10px;
}
input, select, textarea{
  width:100%;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  transition: border-color .2s var(--ease);
}
input::placeholder, textarea::placeholder{ color: var(--gray-500); }
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color: var(--black);
}
textarea{ resize: vertical; min-height: 110px; }
select{
  cursor:pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%238a8a90' stroke-width='1.6'><path d='M5 7l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 14px;
  padding-right: 24px;
}
select::-ms-expand{ display:none; }
.form-note{
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}
.form-note a{ color: var(--black); text-decoration: underline; text-underline-offset: 2px; }
.form-success{
  display:none;
  padding: 26px;
  background: var(--black);
  color: var(--white);
  margin-top: 20px;
}
.form-success.show{ display:block; }
.form-success h4{ font-family: var(--font-display); font-size:22px; letter-spacing:0.02em; }
.form-success p{ margin-top:8px; font-size:14px; color: var(--gray-300); }

/* ---------- reservation ---------- */
.res-layout{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: flex-start;
}
.res-summary{
  position: sticky;
  top: 110px;
  background: var(--black);
  color: var(--white);
  padding: 34px 30px;
}
.res-summary h4{
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
}
.res-summary-row{
  display:flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.res-summary-row .v{ color: var(--gray-300); font-family: var(--font-mono); font-size:13px; text-align:right; }
.res-summary-total{
  display:flex;
  justify-content: space-between;
  align-items:baseline;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
}
.res-summary-total .lbl{ font-family: var(--font-body); font-size: 13px; color: var(--gray-300); font-weight:400; }

.pkg-select{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.pkg-option{
  border: 1px solid var(--line-dark);
  padding: 16px 18px 16px 42px;
  cursor:pointer;
  transition: border-color .2s, background .2s;
  position:relative;
}
.pkg-option:hover{ border-color: var(--black); }
.pkg-option.selected{ border-color: var(--black); background: var(--black); color: var(--white); }
.pkg-option .opt-check{
  position:absolute;
  left: 16px;
  top: 18px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray-500);
  border-radius: 3px;
}
.pkg-option .opt-check::after{
  content:"";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
}
.pkg-option.selected .opt-check{ background: var(--white); border-color: var(--white); }
.pkg-option.selected .opt-check::after{
  content:"✓";
  opacity:1;
  color: var(--black);
  font-size: 12px;
  line-height:16px;
  text-align:center;
  display:block;
}
.pkg-option .name{ font-weight:700; font-size:14px; }
.pkg-option .price{ font-family: var(--font-mono); font-size: 13px; color: var(--gray-500); margin-top:6px; }
.pkg-option .opt-duration{ font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); margin-top:4px; }
.pkg-option.selected .price{ color: var(--gray-300); }
.pkg-option.selected .opt-duration{ color: var(--gray-300); }

#simplybook-embed{ margin-top: 20px; }
#simplybook-embed:empty{ display: none; }
#simplybook-embed iframe{ width: 100%; min-height: 640px; border: 1px solid var(--line-dark); }

.calendar{
  border: 1px solid var(--line-dark);
  padding: 22px;
}
.calendar-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.calendar-head .month{
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.calendar-nav{
  display:flex;
  gap:8px;
}
.calendar-nav button{
  width:32px; height:32px;
  border: 1px solid var(--line-dark);
  background: transparent;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s, color .2s;
}
.calendar-nav button:hover{ background: var(--black); color: var(--white); }
.calendar-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-grid .dow{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align:center;
  padding-bottom: 8px;
}
.calendar-grid .day{
  aspect-ratio: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  font-family: var(--font-mono);
  cursor:pointer;
  border-radius: 50%;
  transition: background .18s, color .18s;
}
.calendar-grid .day.empty{ cursor:default; }
.calendar-grid .day.disabled{ color: var(--gray-300); cursor:not-allowed; }
.calendar-grid .day:not(.empty):not(.disabled):not(.selected):hover{ background: var(--gray-100); }
.calendar-grid .day.selected{ background: var(--black); color: var(--white); }

.time-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.time-slot{
  border: 1px solid var(--line-dark);
  padding: 10px 0;
  text-align:center;
  font-family: var(--font-mono);
  font-size: 13px;
  cursor:pointer;
  transition: background .18s, color .18s;
}
.time-slot:hover{ background: var(--gray-100); }
.time-slot.selected{ background: var(--black); color: var(--white); }
.time-slot.unavailable{ color: var(--gray-300); text-decoration: line-through; cursor: not-allowed; background:none; }

/* ---------- utility ---------- */
.mt-lg{ margin-top: 56px; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.reveal{
  opacity:0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in{ opacity:1; transform: translateY(0); }

/* ============ responsive ============ */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
  .about-grid, .contact-grid, .res-layout{ grid-template-columns: 1fr; }
  .res-summary{ position:static; }
  .process{ grid-template-columns: 1fr; }
  .process-step{ border-right:none; border-bottom: 1px solid var(--line-dark); padding: 26px 0; }
  .pkg-grid{ grid-template-columns: 1fr; }
  .features{ grid-template-columns: repeat(2,1fr); }
  .form-row{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .live-total{ flex-wrap: wrap; gap: 4px; }
  .live-total .amt{ font-size: 20px; }
  .nav-links{
    position:fixed;
    top:76px; left:0; right:0;
    background: var(--black);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding: 10px 28px 26px;
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open{ opacity:1; transform: translateY(0); pointer-events:all; }
  .nav-links a{ display:block; padding: 15px 0; width:100%; border-bottom: 1px solid var(--line); }
  .nav-links li{ width:100%; }
  .nav-links a.active::after{ display:none; }
  .nav-cta{ margin-top: 0; text-align:left; }
  .nav-toggle{ display:block; }
  .features{ grid-template-columns: 1fr; }
  .hero-stats{ grid-template-columns: repeat(3,1fr); gap: 20px; }
  section{ padding: 76px 0; }
  .hero{ padding: 130px 0 80px; }
}

/* ============================================================
   FRACTALIZED-INSPIRED STRUCTURAL LAYER
   Numbered sections, floating live-calculator card, marquee
   footer, audience segments, FAQ accordion — all reskinned
   in monochrome for Ghost Detailing.
   ============================================================ */

.sec-num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  display:block;
  margin-bottom: 14px;
}
.section-dark .sec-num{ color: var(--gray-500); }

/* ---------- split hero with floating live card ---------- */
.hero2{
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow:hidden;
  padding: 140px 0 0;
}
.hero2-photo{
  position:absolute; inset:0;
  background-image: url('../assets/photos/garage-hero.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.9;
}
.hero2::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(10,10,11,0.98) 0%, rgba(10,10,11,0.94) 40%, rgba(10,10,11,0.62) 68%, rgba(10,10,11,0.30) 100%),
    linear-gradient(0deg, rgba(10,10,11,1) 0%, rgba(10,10,11,0.2) 24%, rgba(10,10,11,0.05) 100%);
  z-index:1;
}
.hero2-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items:end;
  padding-bottom: 70px;
}
.hero2 h1{
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  margin-top: 18px;
}
.hero2 p.lead{
  margin-top: 22px;
  font-size: 18px;
  color: var(--gray-300);
  max-width: 520px;
}
.hero2-actions{
  display:flex; gap:14px; margin-top: 36px; flex-wrap:wrap;
}

/* the floating "live calculator" card, echoing Fractalized's ticket widget */
.live-card{
  background: var(--white);
  color: var(--black);
  padding: 30px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.live-card-top{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}
.live-service-picker{ position:relative; }
.live-service-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  width:100%;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--black);
  background:none;
  border:none;
  border-bottom: 1px solid var(--line-dark);
  padding: 4px 2px 10px;
  cursor:pointer;
  text-align:left;
}
.live-service-btn:hover, .live-service-btn[aria-expanded="true"]{ border-color: var(--black); }
.live-service-btn svg{ flex-shrink:0; transition: transform .2s var(--ease); color: var(--gray-500); }
.live-service-btn[aria-expanded="true"] svg{ transform: rotate(180deg); }
.live-service-panel{
  position:absolute;
  top: calc(100% + 10px);
  left:0;
  right:0;
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.35);
  padding: 20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 50;
  max-height: min(60vh, 380px);
  overflow-y:auto;
}
.live-service-panel[hidden]{ display:none; }
.live-service-col h6{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.live-service-item{
  display:block;
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding: 8px 6px;
  font-size: 13px;
  font-weight:600;
  color: var(--black);
  cursor:pointer;
  border-radius: 3px;
  transition: background .15s;
}
.live-service-item:hover{ background: var(--gray-100); }
.live-service-item.is-selected{ background: var(--black); color: var(--white); }

/* compact variant — used for small in-form pickers like "Typ vozu" */
.live-service-btn.compact{
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 12px 2px;
}
.live-service-panel.compact{
  grid-template-columns: 1fr;
  min-width: 180px;
  max-width: 260px;
  padding: 10px;
  gap: 0;
}
.live-service-panel.compact .live-service-item{ font-size: 14px; font-weight:400; padding: 10px 10px; }
@media (max-width: 720px){
  .live-service-panel{ grid-template-columns: 1fr; max-height: 60vh; }
  .live-service-btn{ font-size: 18px; }
}
.live-card-top .name{
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
}
.live-card-top .tag{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display:block;
}
.live-badge{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--black);
  color: var(--white);
  padding: 5px 9px;
  display:flex; align-items:center; gap:6px;
}
.live-badge .dot{
  width:6px; height:6px; border-radius:50%;
  background:#8fe36a;
  display:inline-block;
}
.live-stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}
.live-stats .k{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.live-stats .v{
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
}
.live-stepper-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 20px 0 4px;
}
.live-stepper-row .lbl{ font-size: 13px; font-weight:600; }
.stepper{
  display:flex;
  align-items:center;
  gap: 14px;
}
.stepper button{
  width: 30px; height:30px;
  border: 1px solid var(--line-dark);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 16px;
  display:flex; align-items:center; justify-content:center;
  transition: background .18s, color .18s;
}
.stepper button:hover{ background: var(--black); color: var(--white); }
.stepper .count{
  font-family: var(--font-mono);
  font-size: 16px;
  min-width: 16px;
  text-align:center;
}
.live-total{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display:flex;
  justify-content: space-between;
  align-items:baseline;
}
.live-total .lbl{ font-size: 12px; color: var(--gray-500); text-transform:uppercase; letter-spacing:0.06em; }
.live-total .amt{ font-family: var(--font-mono); font-size: 26px; font-weight:700; }
.live-card .btn{ width:100%; margin-top: 20px; }

/* ---------- feature checklist (echoes "Yield that earns its place") ---------- */
.checklist-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 10px;
}
.checklist-item{
  background: var(--black);
  padding: 34px;
}
.checklist-item h4{
  font-size: 18px;
  font-weight: 700;
  display:flex;
  align-items:baseline;
  gap:10px;
}
.checklist-item h4 .mark{
  font-family: var(--font-mono);
  color: var(--gray-500);
  font-size: 14px;
}
.checklist-item p{
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ---------- numbered horizontal stepper (process) ---------- */
.stepper-flow{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  align-items:start;
  margin-top: 50px;
  gap: 20px;
}
.stepper-flow-item{
  flex: 1 1 0;
  min-width: 150px;
  position: relative;
  padding-top: 22px;
}
.stepper-flow-item::before{
  content:"";
  position:absolute;
  top:6px; left:0; right:0;
  height:1px;
  background: var(--line-dark);
}
.stepper-flow-item::after{
  content:"";
  position:absolute;
  top:2px; left:0;
  width:9px; height:9px;
  border-radius:50%;
  background: var(--black);
}
.stepper-flow-item .n{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
}
.stepper-flow-item h5{
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

/* ---------- trust grid ---------- */
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-top: 10px;
}
.trust-card{
  background: var(--white);
  padding: 30px 24px;
}
.trust-card .ic{
  width: 34px; height:34px;
  border: 1px solid var(--line-dark);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 18px;
}
.trust-card h4{ font-size:15px; font-weight:700; }
.trust-card p{ margin-top:8px; font-size:13px; color:var(--gray-700); line-height:1.6; }

/* ---------- audience segments ("where do you fit") ---------- */
.audience-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-top: 10px;
}
.audience-card{
  background: var(--white);
  padding: 38px 30px;
  display:flex;
  flex-direction:column;
  min-height: 260px;
}
.audience-card .tag{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.audience-card h3{
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.audience-card p{
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  flex:1;
}
.audience-card a{
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.audience-card a::after{ content:"→"; transition: transform .2s var(--ease); }
.audience-card a:hover::after{ transform: translateX(4px); }

/* ---------- FAQ accordion ---------- */
.faq-list{ margin-top: 10px; border-top: 1px solid var(--line-dark); }
.faq-item{ border-bottom: 1px solid var(--line-dark); }
.faq-q{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding: 24px 0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.faq-q .plus{
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gray-500);
  transition: transform .25s var(--ease);
  flex-shrink:0;
  margin-left: 20px;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s var(--ease);
}
.faq-a p{
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.7;
}

/* ---------- marquee footer ---------- */
.marquee-wrap{
  overflow:hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  white-space: nowrap;
}
.marquee-track{
  display:inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--gray-700);
  animation: marquee 22s linear infinite;
}
.marquee-track span{ margin: 0 22px; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.footer-statement{
  padding-top: 70px;
  padding-bottom: 50px;
}
.footer-statement h2{
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  max-width: 680px;
  letter-spacing: 0.005em;
}
.footer-statement p{
  margin-top: 18px;
  color: var(--gray-300);
  font-size: 16px;
  max-width: 480px;
}

@media (max-width: 980px){
  .hero2-grid{ grid-template-columns: 1fr; }
  .checklist-grid, .trust-grid, .audience-grid, .values-grid{ grid-template-columns: 1fr; }
  .stepper-flow{ grid-template-columns: 1fr; gap: 26px; }
  .stepper-flow-item::before{ display:none; }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner{
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  padding: 16px 22px;
  z-index: 1000;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.cookie-banner.show{ transform: translateY(0); opacity: 1; }
.cookie-banner-inner{
  display:flex;
  align-items:center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-top{
  display:flex;
  align-items:center;
  gap: 14px;
  flex: 1 1 380px;
  min-width: 260px;
}
.cookie-banner-icon{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
}
.cookie-banner-icon svg{ width:18px; height:18px; }
.cookie-banner h4{
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
}
.cookie-banner p{
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--gray-300);
  line-height: 1.5;
}
.cookie-banner p a{ color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-left: auto;
}
.cookie-actions .btn{ padding: 10px 16px; font-size: 12px; }
.cookie-actions .btn-text{
  background:none; border:none; color: var(--gray-300);
  font-size: 12px; font-weight: 700; letter-spacing:0.02em;
  padding: 10px 4px; transition: color .2s;
}
.cookie-actions .btn-text:hover{ color: var(--white); }


/* settings modal */
.cookie-modal-overlay{
  position: fixed; inset: 0;
  background: rgba(10,10,11,0.7);
  z-index: 1100;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.cookie-modal-overlay.show{ display:flex; }
.cookie-modal{
  background: var(--white);
  color: var(--black);
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
}
.cookie-modal h3{
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
}
.cookie-modal > p{
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.7;
}
.cookie-cat{
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}
.cookie-cat-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
}
.cookie-cat-head h5{
  font-size: 14px;
  font-weight: 700;
}
.cookie-cat p{
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}
.toggle{
  position:relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.toggle input{ position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer; }
.toggle-track{
  position:absolute; inset:0;
  background: var(--gray-300);
  transition: background .2s;
  pointer-events: none;
}
.toggle-thumb{
  position:absolute; top:3px; left:3px;
  width: 16px; height:16px;
  background: var(--white);
  transition: transform .2s;
  pointer-events: none;
}
.toggle input:checked ~ .toggle-track{ background: var(--black); }
.toggle input:checked ~ .toggle-thumb{ transform: translateX(18px); }
.toggle input:disabled ~ .toggle-track{ background: var(--black); opacity: 0.4; }
.toggle input:disabled{ cursor:not-allowed; }
.cookie-modal-actions{
  display:flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* floating reopen icon */
.cookie-fab{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 900;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.5);
}
.cookie-fab.show{ opacity: 1; transform: scale(1); pointer-events: auto; }
.cookie-fab svg{ width:22px; height:22px; color: var(--white); }
.cookie-fab:hover{ background: var(--charcoal); }

@media (max-width: 600px){
  .cookie-banner{ left:12px; right:12px; bottom:12px; padding: 18px 18px; }
  .cookie-actions{ flex-direction:column; width:100%; margin-left:0; }
  .cookie-actions .btn, .cookie-actions .btn-text{ width:100%; text-align:center; }
}

/* ============================================================
   TEXT SLIDE-IN SYSTEM (scroll-linked)
   Headings and body text inside a scroll-revealed container
   slide in from the right, tied directly to scroll position —
   not a fixed-duration timer. This keeps the motion visible and
   proportional no matter how fast or slow you scroll. Actual
   transform/opacity values are set inline by JS every frame
   (see main.js, "scroll-linked text slide"), which also handles
   the smoothing itself (lerp) — no CSS transition here, since
   stacking a CSS transition on top of JS-driven per-frame values
   would double up the smoothing and feel laggy instead of fluid.
   ============================================================ */
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5,
.reveal p, .reveal li{
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce){
  .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5,
  .reveal p, .reveal li{
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   PAGE LOADER — ghost washing a car
   ============================================================ */
#page-loader{
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: var(--black);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  transition: opacity 1.4s var(--ease), visibility 1.4s var(--ease);
}
#page-loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-scene{
  position: relative;
  width: 340px;
  max-width: 70vw;
}
.loader-car{
  width: 100%;
  height: auto;
  display:block;
  overflow: visible;
}
.loader-car .car-line{
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.loader-car .car-wheel{
  fill: var(--black);
  stroke: rgba(255,255,255,0.7);
  stroke-width: 3;
}
.loader-shine{
  position:absolute;
  top: 18%;
  left: 8%;
  width: 26%;
  height: 42%;
  background: linear-gradient(115deg, transparent 10%, rgba(255,255,255,0.65) 50%, transparent 90%);
  transform: skewX(-18deg);
  animation: loaderShine 1.6s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes loaderShine{
  0%   { left: 4%; opacity: 0; }
  15%  { opacity: 1; }
  50%  { left: 70%; opacity: 1; }
  65%  { opacity: 0; }
  100% { left: 4%; opacity: 0; }
}
.loader-ghost{
  position:absolute;
  top: -34%;
  left: 50%;
  width: 130px;
  margin-left: -65px;
  animation: loaderScrub 1.6s ease-in-out infinite;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.5));
}
.loader-ghost img{ width:100%; display:block; }
@keyframes loaderScrub{
  0%   { transform: translateX(-78px) translateY(2px) rotate(-6deg); }
  25%  { transform: translateX(-20px) translateY(-4px) rotate(2deg); }
  50%  { transform: translateX(78px) translateY(2px) rotate(6deg); }
  75%  { transform: translateX(20px) translateY(-4px) rotate(-2deg); }
  100% { transform: translateX(-78px) translateY(2px) rotate(-6deg); }
}
.loader-label{
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  display:flex;
  align-items:center;
  gap: 10px;
}
.loader-label .dot{
  width:5px; height:5px;
  border-radius:50%;
  background: var(--gray-500);
  animation: loaderDot 1.4s ease-in-out infinite;
}
.loader-label .dot:nth-child(2){ animation-delay: .2s; }
.loader-label .dot:nth-child(3){ animation-delay: .4s; }
@keyframes loaderDot{
  0%, 100% { opacity: .25; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce){
  #page-loader{ transition: none; }
  .loader-ghost, .loader-shine, .loader-label .dot{ animation: none; }
}

/* ============================================================
   FORM SUCCESS POPUP
   ============================================================ */
.success-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(10,10,11,0.7);
  z-index: 1200;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.success-modal-overlay.show{ display:flex; }
.success-modal{
  background: var(--white);
  color: var(--black);
  max-width: 420px;
  width: 100%;
  padding: 40px 34px 34px;
  text-align:center;
  position:relative;
}
.success-modal-close{
  position:absolute;
  top: 14px;
  right: 14px;
  background:none;
  border:none;
  font-size: 16px;
  color: var(--gray-500);
  cursor:pointer;
  padding: 6px;
  line-height:1;
}
.success-modal-close:hover{ color: var(--black); }
.success-modal-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 20px;
}
.success-modal h3{
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
}
.success-modal p{
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================================
   FOOTER INSTAGRAM LINK
   ============================================================ */
.footer-ig{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.footer-ig svg{
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-ig:hover svg{
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.live-hint{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}
.live-total[hidden]{ display:none; }
