/* =========================================================
   GLOBOratorium Blasku - design system
   Direction: kliniczne laboratorium połysku (jasne, precyzyjne)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400..900;1,400..900&family=Instrument+Serif:ital@0;1&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --paper: #F0F1ED;
  --paper-2: #E7E8E2;
  --ink: #15140F;
  --ink-70: rgba(21,20,15,.7);
  --ink-45: rgba(21,20,15,.45);
  --mid: #6B6A63;
  --line: #D9DAD1;
  --line-strong: #C4C5BA;
  --red: #A22F1D;
  --red-bright: #C23B22;
  --red-dim: #F5E1DA;
  --amber: #B8763A;
  --amber-dim: #F3E8DB;
  --white: #FCFCFA;

  --serif: 'Instrument Serif', Georgia, serif;
  --archivo: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  --max: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

img,video{max-width:100%; display:block;}
a{color:inherit;}
:focus-visible{outline:2px solid var(--red); outline-offset:3px;}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding-left:var(--gutter);
  padding-right:var(--gutter);
}

h1,h2,h3{
  font-family:var(--serif);
  font-weight:400;
  margin:0;
  letter-spacing:-0.01em;
}
h2{font-size:clamp(1.9rem, 3.2vw, 2.7rem); line-height:1.08;}
h3{font-size:1.35rem; line-height:1.2;}

.eyebrow{
  font-family:var(--mono);
  font-size:.72rem;
  letter-spacing:.06em;
  color:var(--mid);
  text-transform:lowercase;
}

p{max-width:62ch;}
.lede{font-size:1.06rem; color:var(--ink-70);}

/* ---------- header ---------- */
.header-topbar{
  background:var(--red);
  color:#fff;
}
.header-topbar .wrap{
  display:flex; justify-content:space-between; align-items:center;
  height:34px;
  font-family:var(--mono); font-size:.72rem; letter-spacing:.02em;
}
.header-topbar a{color:#fff; text-decoration:none;}
.header-topbar a:hover{text-decoration:underline;}
@media (max-width:600px){
  .header-topbar .hours{display:none;}
}
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(240,241,237,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.logo{
  font-family:var(--serif);
  font-style:italic;
  font-size:1.35rem;
  text-decoration:none;
  white-space:nowrap;
}
.logo span{color:var(--red); font-style:normal;}

.header-right{display:flex; align-items:center; gap:28px;}
.main-nav{display:flex; gap:26px;}
.main-nav a{
  text-decoration:none;
  font-size:.92rem;
  color:var(--ink-70);
  padding:6px 0;
  border-bottom:1px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  color:var(--ink); border-bottom-color:var(--red);
}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--sans); font-size:.88rem; font-weight:500;
  padding:11px 20px;
  border-radius:2px;
  text-decoration:none;
  border:1px solid var(--ink);
  cursor:pointer;
}
.btn-primary{background:var(--red); color:#fff; border-color:var(--red);}
.btn-primary:hover{background:var(--red-bright); border-color:var(--red-bright);}
.btn-outline{background:transparent; color:var(--ink); border-color:var(--line-strong);}
.btn-outline:hover{border-color:var(--ink);}
.btn-call{display:none;}

.hamburger{
  display:none;
  width:40px; height:40px;
  border:1px solid var(--line-strong);
  background:transparent;
  align-items:center; justify-content:center;
  border-radius:2px;
}
.hamburger span{display:block; width:18px; height:1px; background:var(--ink); position:relative;}
.hamburger span::before,.hamburger span::after{
  content:""; position:absolute; left:0; width:18px; height:1px; background:var(--ink);
}
.hamburger span::before{top:-6px;}
.hamburger span::after{top:6px;}

.mobile-nav{
  display:none;
  flex-direction:column;
  border-top:1px solid var(--line);
  padding:18px var(--gutter) 24px;
  background:var(--paper);
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  text-decoration:none; color:var(--ink);
  padding:12px 0; border-bottom:1px solid var(--line);
  font-size:1rem;
}
.mobile-nav .btn{margin-top:14px; justify-content:center;}

@media (max-width:860px){
  .main-nav, .header-right .btn-outline{display:none;}
  .hamburger{display:flex;}
  .btn-call{display:inline-flex;}
}

/* ---------- oferta dropdown (desktop) ---------- */
.nav-dropdown{position:relative;}
.nav-dropdown > a{display:inline-flex; align-items:center; gap:5px;}
.nav-dropdown .caret{
  width:7px; height:7px;
  border-right:1px solid currentColor; border-bottom:1px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  opacity:.55;
}
.nav-dropdown-panel{
  position:absolute; top:100%; left:-16px;
  min-width:250px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:0 16px 32px rgba(21,20,15,.10);
  padding:8px 0;
  opacity:0; visibility:hidden;
  transform:translateY(-6px);
  transition:opacity .15s ease, transform .15s ease, visibility .15s;
  z-index:50;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel{
  opacity:1; visibility:visible; transform:translateY(0);
}
.nav-dropdown-panel a{
  display:block;
  padding:11px 20px;
  font-size:.88rem;
  color:var(--ink-70);
  text-decoration:none;
  border-bottom:none !important;
}
.nav-dropdown-panel a:hover{background:var(--paper); color:var(--ink);}
.nav-dropdown-panel a[aria-current="page"]{color:var(--red);}

/* ---------- oferta submenu (mobile, native details) ---------- */
.mobile-nav details{border-bottom:1px solid var(--line);}
.mobile-nav details summary{
  list-style:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 0; font-size:1rem; color:var(--ink);
}
.mobile-nav details summary::-webkit-details-marker{display:none;}
.mobile-nav details summary .ind{font-family:var(--mono); color:var(--mid);}
.mobile-nav details[open] summary .ind{color:var(--red);}
.mobile-nav details .sub-links{padding:0 0 10px 14px; display:flex; flex-direction:column;}
.mobile-nav details .sub-links a{
  border-bottom:none; padding:9px 0; font-size:.92rem; color:var(--ink-70);
}
.mobile-nav > a{border-bottom:1px solid var(--line);}

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--ink);
}
.hero-media{
  position:absolute; inset:0;
}
.hero-media img,
.hero-media video{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 32%;
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(9,9,7,.92) 0%, rgba(9,9,7,.55) 38%, rgba(9,9,7,.12) 62%, rgba(9,9,7,.35) 100%),
    linear-gradient(100deg, rgba(9,9,7,.55) 0%, rgba(9,9,7,0) 42%);
}
.hero-note{
  position:absolute; top:24px; right:var(--gutter);
  font-family:var(--mono); font-size:.68rem; letter-spacing:.04em;
  color:rgba(252,252,250,.55);
  max-width:230px; text-align:right;
  line-height:1.5;
}

.hero-inner{
  position:relative; z-index:2;
  width:100%;
  padding:64px var(--gutter) 56px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:end;
}
.hero-headline{
  font-family:var(--archivo); font-weight:700; font-style:normal;
  color:var(--white);
  font-size:clamp(2.5rem, 6.4vw, 5.2rem);
  line-height:1.02;
  letter-spacing:-0.01em;
  max-width:16ch;
}
.hero-sub{
  font-family:var(--sans);
  color:rgba(252,252,250,.92);
  font-size:1rem;
  max-width:38ch;
  margin-top:18px;
}
.hero-cta{margin-top:28px; display:flex; gap:14px; flex-wrap:wrap;}
.hero-cta .btn-primary{background:var(--white); color:var(--ink); border-color:var(--white);}
.hero-cta .btn-outline{border-color:rgba(252,252,250,.4); color:var(--white);}
.hero-cta .btn-outline:hover{border-color:var(--white);}

/* gloss report tag - signature element */
.gloss-tag{
  background:rgba(252,252,250,.06);
  border:1px solid rgba(252,252,250,.22);
  backdrop-filter:blur(6px);
  padding:22px;
  width:260px;
  aspect-ratio:1/1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:var(--white);
}
.gloss-tag .eyebrow{color:rgba(252,252,250,.55);}
.gloss-tag dl{margin:12px 0 0; font-family:var(--mono); font-size:.78rem;}
.gloss-tag dt{color:rgba(252,252,250,.55); margin-top:8px;}
.gloss-tag dd{margin:2px 0 0; color:var(--white); font-size:.95rem;}

@media (max-width:760px){
  .hero-inner{grid-template-columns:1fr; padding-top:40px;}
  .gloss-tag{width:100%;}
  .hero-note{display:none;}
}

/* ---------- section shell ---------- */
.section{padding:76px 0;}
.section-tight{padding:52px 0;}
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:24px; margin-bottom:36px; flex-wrap:wrap;
}
.rule{border:none; border-top:1px solid var(--line); margin:0;}
.section-divider{
  height:6px;
  background:var(--red);
}

/* ---------- reviews (upper half, right under hero) ---------- */
.reviews{background:var(--white); border-bottom:1px solid var(--line);}
.review-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.review-card{
  background:var(--white);
  padding:26px 24px;
  display:flex; flex-direction:column; gap:14px;
}
.review-top{display:flex; align-items:center; gap:12px;}
.avatar{
  width:38px; height:38px;
  background:var(--red-dim);
  color:var(--red);
  font-family:var(--serif); font-style:italic; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.review-who{font-size:.88rem;}
.review-who b{display:block; font-weight:500;}
.review-who span{color:var(--mid); font-size:.8rem;}
.stars{font-family:var(--mono); font-size:.78rem; color:var(--amber); letter-spacing:.02em;}
.review-quote{font-size:.92rem; color:var(--ink-70); margin:0;}
.review-meta{font-family:var(--mono); font-size:.7rem; color:var(--mid); margin-top:auto;}

@media (max-width:980px){
  .review-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:600px){
  .review-grid{grid-template-columns:1fr; overflow-x:visible;}
}

/* ---------- services ---------- */
.service-list{border-top:1px solid var(--line);}
.service-row{
  display:grid;
  grid-template-columns:1.1fr 2fr auto;
  gap:24px;
  align-items:start;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.service-row h3{font-size:1.25rem;}
.service-tag{
  font-family:var(--mono); font-size:.7rem; color:var(--mid);
  align-self:center; text-align:right; white-space:nowrap;
}
@media (max-width:760px){
  .service-row{grid-template-columns:1fr; gap:8px;}
  .service-tag{text-align:left;}
}

/* ---------- offer teaser (homepage) ---------- */
.offer-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--line); border:1px solid var(--line);
  margin-top:8px;
}
.offer-card{
  display:block; background:var(--white);
  padding:26px 24px; text-decoration:none; color:inherit;
}
.offer-card h3{font-size:1.1rem; margin-bottom:8px;}
.offer-card p{font-size:.88rem; color:var(--ink-70); margin:0;}
.offer-card:hover{background:var(--paper);}
.offer-card:hover h3{color:inherit;}
@media (max-width:760px){.offer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:500px){.offer-grid{grid-template-columns:1fr;}}

/* ---------- gallery preview ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.gallery-tile{
  aspect-ratio:4/5;
  position:relative;
  overflow:hidden;
  background:#101109;
}
.gallery-tile img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.gallery-tile::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(9,9,7,.82) 0%, rgba(9,9,7,0) 46%);
  pointer-events:none;
}
.gallery-tile.placeholder{background:linear-gradient(150deg,#1c1e1a,#0d0e0b 70%);}
.gallery-tile .cap{
  position:absolute; left:14px; bottom:12px; z-index:1;
  font-family:var(--mono); font-size:.68rem; color:rgba(252,252,250,.85);
}
@media (max-width:860px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
}

/* ---------- reach diagram ---------- */
.reach{background:var(--ink); color:var(--white); border-top:6px solid var(--red);}
.reach .eyebrow{color:rgba(252,252,250,.5);}
.reach h2{color:var(--white);}
.reach p.lede{color:rgba(252,252,250,.68);}
.reach-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  margin-top:36px;
}
.reach-diagram{width:100%; height:auto;}
.reach-ring-label{font-family:var(--mono); font-size:9px; fill:rgba(252,252,250,.55); letter-spacing:.03em;}
.reach-town{font-family:var(--mono); font-size:10px; fill:rgba(252,252,250,.85);}
.reach-center{font-family:var(--serif); font-style:italic; font-size:15px; fill:var(--white);}
.reach-legend{display:flex; flex-direction:column; gap:18px;}
.reach-legend-item{display:flex; gap:14px; align-items:baseline; border-top:1px solid rgba(252,252,250,.15); padding-top:14px;}
.reach-legend-item .t{font-family:var(--mono); font-size:.78rem; color:var(--amber); width:78px; flex-shrink:0;}
.reach-legend-item .d{font-size:.92rem; color:rgba(252,252,250,.78);}
@media (max-width:860px){
  .reach-grid{grid-template-columns:1fr;}
}

/* ---------- FAQ ---------- */
.faq-list{border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line);}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0;
  font-family:var(--sans); font-weight:500; font-size:1.02rem;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .ind{
  font-family:var(--mono); font-size:1rem; color:var(--mid); flex-shrink:0; margin-left:20px;
}
.faq-item[open] summary .ind{color:var(--red);}
.faq-item .a{padding:0 0 24px; color:var(--ink-70); max-width:68ch;}

/* ---------- booking cta ---------- */
.booking-cta{
  background:var(--amber-dim);
  border-top:4px solid var(--red);
  border-bottom:1px solid var(--line);
}
.booking-inner{
  display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;
  padding:52px 0;
}
.booking-inner h2{max-width:16ch;}

/* ---------- footer ---------- */
.site-footer{background:var(--ink); color:rgba(252,252,250,.7); padding:56px 0 28px;}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(0,1fr) minmax(0,1fr);
  gap:clamp(28px,5vw,64px);
  align-items:start;
}
.footer-grid > div{min-width:0;}
.footer-grid h4{font-family:var(--mono); font-size:.72rem; letter-spacing:.05em; color:rgba(252,252,250,.5); margin:0 0 14px; font-weight:400;}
.footer-grid a{display:block; text-decoration:none; color:rgba(252,252,250,.78); font-size:.92rem; padding:5px 0; overflow-wrap:anywhere;}
.footer-logo{font-family:var(--serif); font-style:italic; color:var(--white); font-size:1.3rem;}
.footer-bottom{
  margin-top:44px; padding-top:20px; border-top:1px solid rgba(252,252,250,.15);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-family:var(--mono); font-size:.72rem; color:rgba(252,252,250,.45);
}
@media (max-width:760px){
  .footer-grid{grid-template-columns:1fr; gap:30px;}
  .footer-bottom{flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:8px;}
}

/* ---------- generic content pages ---------- */
.page-hero{
  padding:64px 0 40px;
  border-bottom:1px solid var(--line);
}
.page-hero .eyebrow{margin-bottom:10px;}

.before-after{
  display:grid; grid-template-columns:1fr 1fr; gap:1px;
  background:var(--line-strong); border:1px solid var(--line-strong);
  aspect-ratio:16/8;
}
.ba-half{position:relative; overflow:hidden;}
.ba-half.before{background:linear-gradient(160deg,#2a2c26,#15160f);}
.ba-half.after{background:linear-gradient(160deg,#0e0f0c,#050605);}
.ba-half.after::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, transparent 25%, rgba(120,190,220,.16) 45%, transparent 65%);
}
.ba-label{
  position:absolute;
  top:10px;
  left:12px;
  z-index:2;
  padding:4px 7px;
  border-radius:2px;
  background:rgba(5,6,7,.78);
  color:#fff;
  font-family:var(--mono);
  font-size:.68rem;
  line-height:1.2;
  letter-spacing:.02em;
}
.ba-half.after .ba-label{
  left:auto;
  right:12px;
}

/* =========================================================
   2026 dark system - Archivo / black / workshop red
   Shared foundations for the transparent Chrome-inspired navbar,
   the dark site shell and the controlled asymmetric gallery.
   ========================================================= */
:root{
  --paper:#0b0c0e;
  --paper-2:#151719;
  --paper-light:#ecece8;
  --ink:#f3f3ef;
  --ink-70:rgba(243,243,239,.72);
  --ink-45:rgba(243,243,239,.46);
  --mid:#979a9d;
  --line:rgba(243,243,239,.18);
  --line-strong:rgba(243,243,239,.34);
  --red:#c92331;
  --red-bright:#e63a49;
  --red-dim:rgba(201,35,49,.16);
  --amber:#e04a32;
  --amber-dim:#191113;
  --white:#f7f7f3;
  --serif:'Archivo',-apple-system,BlinkMacSystemFont,sans-serif;
  --archivo:'Archivo',-apple-system,BlinkMacSystemFont,sans-serif;
  --sans:'Archivo',-apple-system,BlinkMacSystemFont,sans-serif;
}

body{background:var(--paper);color:var(--ink);font-family:var(--archivo);}
h1,h2,h3{font-family:var(--archivo);font-weight:600;letter-spacing:-.035em;}
h1{font-weight:500;}
.lede,p{color:var(--ink-70);}
.eyebrow{color:var(--mid);font-family:var(--mono);}

/* Shared transparent navbar. It becomes solid when the homepage hero ends. */
.site-header{
  position:fixed;inset:0 0 auto;z-index:100;
  background:transparent;border-bottom:1px solid rgba(247,247,243,.72);
  transition:background-color .2s ease,border-color .2s ease;
  backdrop-filter:none;
}
.site-header.is-solid,.inner-page .site-header{
  background:#050607;border-bottom-color:rgba(247,247,243,.24);
}
.header-topbar{display:none;}
.header-row{height:82px;max-width:none;padding-left:32px;padding-right:0;}
.logo{font-family:var(--archivo);font-style:italic;font-size:1.34rem;font-weight:700;letter-spacing:-.03em;color:var(--white);}
.logo span{color:var(--red);font-style:normal;}
.header-right{height:100%;gap:0;margin-left:auto;}
.main-nav{height:100%;display:flex;gap:0;}
.main-nav>a,.nav-dropdown>a{
  height:100%;display:inline-flex;align-items:center;
  padding:0 28px;border-left:1px solid rgba(247,247,243,.72);
  border-bottom:0;color:var(--white);font-size:.76rem;font-weight:600;text-decoration:none;
  text-transform:uppercase;letter-spacing:.01em;transition:color .18s ease,background-color .18s ease;
}
.main-nav>a:last-child{border-right:1px solid rgba(247,247,243,.72);}
.main-nav>a:hover,.main-nav>a[aria-current="page"],.nav-dropdown>a:hover,.nav-dropdown>a[aria-current="page"]{color:var(--red);background:rgba(0,0,0,.18);border-bottom:0;}
.nav-dropdown{height:100%;}
.nav-dropdown-panel{top:82px;left:0;background:#050607;border-color:rgba(247,247,243,.26);box-shadow:0 18px 40px rgba(0,0,0,.35);}
.nav-dropdown-panel a{color:var(--white);border-bottom:1px solid rgba(247,247,243,.12)!important;}
.nav-dropdown-panel a:hover{background:var(--red);color:var(--white);}
.header-right>.btn-call{display:none;}
.header-right>.btn:not(.btn-call){
  height:100%;display:inline-flex;align-items:center;padding:0 28px;border:0;border-left:1px solid rgba(247,247,243,.72);border-radius:0;
  background:var(--red);color:var(--white);font-size:.76rem;font-weight:600;text-transform:uppercase;letter-spacing:.01em;
}
.header-right>.btn:not(.btn-call):hover{background:var(--red-bright);border-color:rgba(247,247,243,.72);}
.hamburger{border:1px solid rgba(247,247,243,.72);border-radius:0;background:transparent;}
.hamburger span,.hamburger span::before,.hamburger span::after{background:var(--white);}
.mobile-nav{border-top:1px solid rgba(247,247,243,.24);background:#050607;padding-top:18px;}
.mobile-nav a,.mobile-nav details summary{color:var(--white);border-color:rgba(247,247,243,.2);}
.mobile-nav details .sub-links a{color:var(--ink-70);}
.mobile-nav .btn-primary{height:auto;display:flex;background:var(--red);border-color:var(--red);}
.mobile-nav .btn-primary:hover{background:var(--red-bright);}

/* The homepage hero starts beneath the transparent header; inner pages get breathing room. */
.hero{min-height:100svh;background:#050607;}
.hero-inner{padding-top:124px;}
.hero-headline{font-family:var(--archivo);font-weight:700;}
.hero-sub{font-family:var(--archivo);color:rgba(247,247,243,.8);}
.hero-scroll{display:inline-flex;gap:12px;align-items:center;margin-top:30px;color:var(--white);font-family:var(--mono);font-size:.72rem;text-decoration:none;text-transform:uppercase;letter-spacing:.05em;}
.hero-scroll span{color:var(--red);font-size:1.2rem;line-height:0;transition:transform .2s ease;}
.hero-scroll:hover{color:var(--red);}
.hero-scroll:hover span{transform:translateY(3px);}
.hero-cta{display:none;}
.gloss-tag{background:rgba(5,6,7,.42);border-color:rgba(247,247,243,.28);}

/* Dark section rhythm; the gallery is the single light break for honest photo review. */
.section{background:var(--paper);color:var(--ink);}
.section-divider{height:1px;background:rgba(247,247,243,.2);}
#galeria{background:var(--paper-light);color:#111214;}
#galeria .eyebrow,#galeria figcaption,#galeria .cap{color:#64686a;}
#galeria h2{color:#111214;}
#galeria .gallery-tile{background:#111214;}
.offer-grid{grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border-color:var(--line);}
.offer-card{background:var(--paper-2);color:var(--ink);padding:28px 24px;min-height:170px;transition:background-color .2s ease,color .2s ease;}
.offer-card p{color:var(--ink-70);}
.offer-card:hover{background:#202326;color:var(--white);}
.offer-card-cta{background:var(--red);color:var(--white);}
.offer-card-cta .eyebrow,.offer-card-cta p{color:rgba(255,255,255,.78);}
.offer-card-cta:hover{background:var(--red-bright);}
.offer-card-cta h3 span{float:right;color:var(--white);}
.section a:not(.btn):not(.offer-card){color:var(--red);}

/* Deliberate, repeatable asymmetry for client photos. */
.gallery-grid{grid-template-columns:repeat(12,1fr);gap:18px;align-items:start;}
.gallery-tile{aspect-ratio:auto;min-height:0;}
.gallery-tile:nth-child(1){grid-column:1 / span 5;aspect-ratio:4/5;}
.gallery-tile:nth-child(2){grid-column:7 / span 6;aspect-ratio:16/10;margin-top:78px;}
.gallery-tile:nth-child(3){grid-column:2 / span 6;aspect-ratio:16/10;margin-top:18px;}
.gallery-tile:nth-child(4){grid-column:9 / span 4;aspect-ratio:4/5;margin-top:100px;}
.gallery-tile:nth-child(n+5){grid-column:span 4;aspect-ratio:4/5;}
.gallery-tile .cap{font-family:var(--mono);}

/* Readable interaction states and gallery captions. */
.section .offer-card:hover,
.section .offer-card:hover h3,
.section .offer-card:hover p,
.section .offer-card:hover .eyebrow,
.section .offer-card-cta:hover,
.section .offer-card-cta:hover h3,
.section .offer-card-cta:hover p,
.section .offer-card-cta:hover .eyebrow{color:var(--white);}
.section .offer-card-cta:hover{background:var(--red-bright);}
#galeria .gallery-tile .cap{
  color:rgba(247,247,243,.96);
  font-size:.72rem;
  font-weight:500;
  text-shadow:0 1px 12px rgba(0,0,0,.8);
}
#galeria figcaption{color:#26282a !important;}
#galeria .btn-outline{
  color:#111214;
  border-color:rgba(17,18,20,.55);
}
#galeria .btn-outline:hover{
  color:#fff;
  background:#111214;
  border-color:#111214;
}

/* Reach, FAQ and content pages share the same dark shell. */
.reach{background:#050607;border-top:1px solid var(--red);}
.reach-legend-item .t{color:var(--red);}
.faq-list,.service-list{border-color:var(--line);}
.faq-item,.service-row{border-color:var(--line);}
.faq-item .a{color:var(--ink-70);}
.booking-cta{background:var(--red);border-top:0;border-bottom:0;color:var(--white);}
.booking-cta h2{color:var(--white);}
.booking-cta .btn-primary{background:#050607;border-color:#050607;color:var(--white);}
.booking-cta .btn-primary:hover{background:#202326;border-color:#202326;}
.booking-cta .btn-outline{border-color:rgba(255,255,255,.6);color:var(--white);}
.booking-cta .btn-outline:hover{border-color:var(--white);background:rgba(0,0,0,.1);}

/* A quiet, centered homepage ending after the asymmetric photography. */
.booking-cta-centered .booking-inner{
  flex-direction:column;
  flex-wrap:nowrap;
  justify-content:center;
  align-items:center;
  gap:28px;
  padding:clamp(56px,6vw,88px) var(--gutter);
  text-align:center;
}
.booking-cta-centered h2{
  width:100%;
  max-width:24ch;
  margin:0;
  text-wrap:balance;
}
.booking-cta-centered .booking-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  width:100%;
}
.booking-cta-centered .btn-primary{
  min-width:220px;
  max-width:100%;
  min-height:48px;
  justify-content:center;
}
.booking-cta-centered .booking-phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:8px 12px;
  color:var(--white);
  font-size:.95rem;
  line-height:1.4;
  text-decoration:underline;
  text-underline-offset:5px;
}
.booking-cta-centered .booking-phone:hover{
  color:#fff;
  text-decoration-thickness:2px;
}
.booking-cta-centered a:focus-visible{
  outline:2px solid var(--white);
  outline-offset:4px;
}
@media (max-width:860px){
  .booking-cta-centered .booking-inner{
    padding:48px 20px;
    gap:24px;
  }
}

.site-footer{background:#050607;}
.page-hero{padding-top:146px;background:var(--paper);border-bottom-color:var(--line);}
.page-hero h1{font-style:normal!important;}
.nav-dropdown .caret{border-color:currentColor;}

@media (max-width:860px){
  .header-row{height:68px;padding-left:20px;}
  .header-right{display:none;}
  .hamburger{display:flex;margin-right:20px;}
  .mobile-nav{position:absolute;top:68px;left:0;right:0;}
  .hero-inner{padding-top:100px;}
  .offer-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(6,1fr);}
  .gallery-tile:nth-child(1){grid-column:1 / span 4;}
  .gallery-tile:nth-child(2){grid-column:4 / span 3;margin-top:44px;}
  .gallery-tile:nth-child(3){grid-column:1 / span 4;margin-top:14px;}
  .gallery-tile:nth-child(4){grid-column:4 / span 3;margin-top:60px;}
}
@media (max-width:600px){
  .logo{font-size:1.1rem;}
  .hero-inner{padding-bottom:34px;}
  .hero-headline{font-size:clamp(2.2rem,11vw,3.5rem);}
  .offer-grid{grid-template-columns:1fr;}
  .gallery-grid{display:grid;grid-template-columns:1fr;gap:18px;}
  .gallery-tile:nth-child(n){grid-column:1;aspect-ratio:4/5;margin-top:0;}
  .gallery-tile:nth-child(even){aspect-ratio:16/10;}
  .section{padding:60px 0;}
}

/* Homepage only: a native mobile photo rail retains the desktop's varied rhythm.
   No wheel interception, autoplay or extra animation library. */
.home-gallery-hint{display:none;}
@media (max-width:860px){
  .home-gallery-hint{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    max-width:none;
    margin:24px 0 14px;
    color:#45494c;
    font-family:var(--sans);
    font-size:.875rem;
  }
  .home-gallery-rail{
    display:flex;
    align-items:flex-start;
    gap:16px;
    min-width:0;
    margin-inline:calc(0px - var(--gutter));
    padding:4px var(--gutter) 18px;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    scroll-padding-inline:var(--gutter);
    scrollbar-width:thin;
    scrollbar-color:#64686a var(--paper-light);
  }
  .home-gallery-rail:focus-visible{
    outline:2px solid var(--red);
    outline-offset:-2px;
  }
  .home-gallery-rail .gallery-tile:nth-child(n){
    flex:0 0 auto;
    width:min(70vw,360px);
    grid-column:auto;
    aspect-ratio:4 / 5;
    margin:0;
    scroll-snap-align:start;
  }
  .home-gallery-rail .gallery-tile:nth-child(2){
    width:min(80vw,420px);
    aspect-ratio:16 / 10;
    margin-top:48px;
  }
  .home-gallery-rail .gallery-tile:nth-child(3){
    width:min(82vw,440px);
    aspect-ratio:4 / 3;
    margin-top:16px;
  }
  .home-gallery-rail .gallery-tile:nth-child(4){
    aspect-ratio:1;
    margin-top:42px;
  }
  .home-gallery-rail .gallery-tile img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .home-gallery-rail .gallery-tile::after{
    background:linear-gradient(to top,rgba(9,9,7,.94),rgba(9,9,7,.82) 72px,rgba(9,9,7,0) 150px);
  }
  #galeria .home-gallery-rail .gallery-tile .cap{
    right:14px;
    font-size:.875rem;
    line-height:1.4;
    overflow-wrap:break-word;
  }
}

/* Additional client-supplied case studies keep the real-photo gallery honest and scannable. */
.gallery-case{border-top:1px solid var(--line);padding-top:72px;}
.gallery-case .case-intro{max-width:34ch;margin:0;color:var(--ink-70);}
.gallery-case .gallery-grid{margin-top:22px;}
@media (max-width:760px){
  .gallery-case .section-head{display:block;}
  .gallery-case .case-intro{margin-top:14px;}
}

/* Hero alignment: full-bleed Rollers-style edges with text left and widget right. */
.hero-inner{
  max-width:none;
  padding-left:clamp(28px,3.2vw,64px);
  padding-right:clamp(28px,3.2vw,64px);
  grid-template-columns:minmax(0,1fr) minmax(300px,380px);
}
.hero-inner > :first-child{justify-self:start;}
.gloss-tag{
  width:min(380px,100%);
  aspect-ratio:auto;
  min-height:260px;
  margin-left:auto;
}
@media (max-width:760px){
  .hero-inner{grid-template-columns:1fr;padding-left:20px;padding-right:20px;}
  .gloss-tag{width:100%;min-height:0;}
}

/* Hero refinement: tighter hierarchy, brighter supporting copy, restrained entrance motion. */
html{scroll-padding-top:82px;}
.hero-headline{
  font-size:clamp(2.2rem,4.7vw,4.05rem);
  line-height:.98;
  letter-spacing:-.025em;
  max-width:15ch;
}
.hero-sub{
  margin-top:12px;
  max-width:42ch;
  color:rgba(252,252,250,.96);
  font-size:.95rem;
  line-height:1.46;
}
.hero-inner > :first-child{
  animation:hero-copy-in .9s cubic-bezier(.2,.72,.2,1) .12s both;
}
.gloss-tag{
  animation:hero-widget-in 1s cubic-bezier(.2,.72,.2,1) .3s both;
}
@keyframes hero-copy-in{
  from{opacity:0;transform:translate3d(-22px,14px,0);}
  to{opacity:1;transform:translate3d(0,0,0);}
}
@keyframes hero-widget-in{
  from{opacity:0;transform:translate3d(28px,18px,0);}
  to{opacity:1;transform:translate3d(0,0,0);}
}
@media (prefers-reduced-motion: reduce){
  .hero-inner > :first-child,.gloss-tag{animation:none;opacity:1;transform:none;}
}
@media (max-width:600px){
  .hero-headline{font-size:clamp(2rem,10vw,3.1rem);}
}

/* Deliberately force smooth in-page movement, independent of OS motion settings. */
html{scroll-behavior:smooth !important;}

.gloss-tag .eyebrow{text-transform:none;}

/* Compact production disclosure: visible in the first hero exposure without competing with the process widget. */
.hero-ai-note{
  position:relative;
  max-width:42ch;
  margin:18px 0 0;
  padding:11px 0 0 14px;
  border-top:1px solid rgba(247,247,243,.3);
  color:rgba(252,252,250,.78);
  font-family:var(--archivo);
  font-size:.95rem;
  line-height:1.46;
  letter-spacing:.005em;
}
.hero-ai-note::before{
  content:"";
  position:absolute;
  top:-1px;
  left:0;
  width:5px;
  height:5px;
  background:var(--red);
  transform:translateY(-2px);
}
@media (max-width:600px){
  .hero-ai-note{
    max-width:38ch;
    margin-top:15px;
    padding-top:10px;
    font-size:.95rem;
  }
}

/* One process widget, with a native disclosure control on mobile. */
.hero-process{display:block;}
.hero-process-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  list-style:none;
  color:rgba(252,252,250,.55);
  font-family:var(--archivo);
  font-size:.95rem;
  font-weight:500;
  line-height:1.4;
  cursor:default;
}
.hero-process-toggle::-webkit-details-marker{display:none;}
.hero-process-toggle::marker{content:"";}
.hero-process-chevron{display:none;}

/* Mobile hero: copy stays on the film; the process strip touches its lower edge. */
@media (max-width:860px){
  .hero{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    grid-template-rows:minmax(clamp(32rem,70svh,38rem),auto) auto;
    align-items:stretch;
    min-height:0;
    padding-top:0;
  }
  .hero-media{
    grid-area:1 / 1;
    position:relative;
    inset:auto;
    width:100%;
    min-width:0;
    min-height:0;
    overflow:hidden;
  }
  .hero-media img,
  .hero-media video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 32%;
  }
  .hero-scrim{
    grid-area:1 / 1;
    position:relative;
    inset:auto;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(5,6,7,.46) 0%,rgba(5,6,7,.08) 22%,rgba(5,6,7,.48) 43%,rgba(5,6,7,.85) 69%,#050607 100%);
  }
  .hero-inner{display:contents;}
  .hero-inner > .hero-copy{
    grid-area:1 / 1;
    align-self:end;
    position:relative;
    z-index:2;
    min-width:0;
    width:100%;
    padding:156px 20px 24px;
    animation:none;
  }
  .hero-headline{
    max-width:none;
    margin:0 0 12px;
    font-size:clamp(1.9rem,8.2vw,2.75rem);
    line-height:1.06;
  }
  .hero-sub{
    max-width:44ch;
    margin:0;
    font-size:.95rem;
    color:#fcfcfa;
  }
  .hero-ai-note{
    max-width:44ch;
    margin:14px 0 0;
    padding:10px 0 0 14px;
    font-size:.95rem;
    color:#f7f7f3;
  }
  .hero .hero-process{
    grid-area:2 / 1;
    position:relative;
    z-index:2;
    width:100%;
    min-height:0;
    margin:0;
    padding:0;
    border:0;
    border-top:1px solid rgba(247,247,243,.28);
    border-bottom:1px solid rgba(247,247,243,.18);
    background:#050607;
    backdrop-filter:none;
    animation:none;
  }
  .hero-process-toggle{
    min-height:68px;
    padding:18px 20px;
    cursor:pointer;
    color:var(--white);
    -webkit-tap-highlight-color:transparent;
  }
  .hero-process-toggle:focus-visible{
    outline:2px solid var(--red-bright);
    outline-offset:-4px;
  }
  .hero-process-chevron{
    display:block;
    flex-shrink:0;
    width:9px;
    height:9px;
    margin-right:3px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg) translateY(-2px);
    transition:transform .18s ease;
  }
  .hero-process[open] .hero-process-chevron{
    transform:rotate(225deg) translate(-2px,-2px);
  }
  .hero-process dl{
    margin:0;
    padding:0 20px 24px;
    font-family:var(--archivo);
  }
  .hero-process dt{
    margin:16px 0 0;
    padding-top:14px;
    border-top:1px solid rgba(247,247,243,.18);
    color:#c9cbcd;
    font-size:.85rem;
  }
  .hero-process dt:first-child{margin-top:0;}
  .hero-process dd{
    max-width:44ch;
    margin-top:4px;
    color:var(--white);
    font-size:.95rem;
  }
  html{scroll-padding-top:68px;}
}
@media (max-width:860px) and (orientation:landscape){
  .hero{grid-template-rows:minmax(28rem,auto) auto;}
  .hero-inner > .hero-copy{padding-top:110px;}
  .hero-sub,.hero-ai-note{max-width:56ch;}
}
@media (hover:hover) and (max-width:860px){
  .hero-process-toggle:hover{background:#111315;}
}
@media (prefers-reduced-motion:reduce){
  .hero-process-chevron{transition:none;}
}

/* Mobile v3: a restrained 3:2 window adds about 18% crop; copy and process follow below. */
@media (max-width:860px){
  .hero{
    display:block;
    min-height:0;
    padding-top:0;
    background:#050607;
  }
  .hero-media{
    position:relative;
    inset:auto;
    width:100%;
    aspect-ratio:3 / 2;
    overflow:hidden;
    background:#050607;
  }
  .hero-media img,
  .hero-media video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    aspect-ratio:auto;
    object-fit:cover;
    object-position:center;
  }
  .hero-scrim{display:none;}
  .hero-inner{
    display:block;
    max-width:none;
    padding:0;
    background:#050607;
  }
  .hero-inner > .hero-copy{
    display:block;
    width:auto;
    padding:26px 20px 24px;
    animation:none;
  }
  .hero-headline{
    margin:0 0 12px;
    font-size:clamp(2rem,9.5vw,3rem);
    line-height:1.04;
  }
  .hero-sub{
    max-width:44ch;
    margin:0;
    font-size:.95rem;
    line-height:1.46;
    color:#fcfcfa;
  }
  .hero-ai-note{
    max-width:44ch;
    margin:14px 0 0;
    padding:9px 0 0 13px;
    font-size:.78rem;
    line-height:1.45;
    color:rgba(247,247,243,.72);
  }
  .hero .hero-process{
    display:block;
    width:100%;
    min-height:0;
    margin:0;
    border:0;
    border-top:1px solid rgba(247,247,243,.28);
    border-bottom:1px solid rgba(247,247,243,.18);
    background:#050607;
  }
  .hero-process-toggle{min-height:68px;}
}

/* The dedicated gallery uses a calm editorial grid. Asymmetry stays reserved
   for the homepage preview, where it works as a visual accent rather than a
   rule repeated across every case study. */
.inner-page .gallery-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.inner-page .gallery-grid .gallery-tile:nth-child(n){
  grid-column:auto;
  aspect-ratio:4 / 3;
  margin-top:0;
}
.inner-page .gallery-grid .gallery-tile img{
  object-position:center;
}
@media (max-width:860px){
  .inner-page .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
}
@media (max-width:600px){
  .inner-page .gallery-grid{
    grid-template-columns:minmax(0,1fr);
    gap:12px;
  }
  .inner-page .gallery-grid .gallery-tile:nth-child(n){
    aspect-ratio:4 / 3;
  }
  .inner-page .gallery-grid .gallery-tile .cap{
    left:10px;
    right:10px;
    bottom:9px;
    font-size:.68rem;
    line-height:1.3;
  }
}
