/* ============================================================
   Ремонт на Покриви 94 Шумен — Design System
   Бранд: черно / брандово червено / жълт "94" акцент + топла теракота
   ============================================================ */

:root{
  /* Brand ink (от логото — черен фон) */
  --ink:      #0D0D10;
  --ink-2:    #16171B;
  --ink-3:    #202127;

  /* Брандово червено (керемидите в логото) */
  --red:      #DA291C;
  --red-600:  #C21F14;
  --red-700:  #A2170D;

  /* Жълт акцент ("94") — пестеливо */
  --amber:    #F5B301;

  /* Топла теракота (от реалните покриви) */
  --terra:    #C4562E;

  /* Неутрали */
  --bg:       #F6F4F1;
  --bg-warm:  #F1ECE6;
  --surface:  #FFFFFF;
  --text:     #1A1A1D;
  --text-2:   #55555C;
  --muted:    #86868E;
  --line:     #E7E2DB;
  --line-2:   #D8D2C9;

  --shadow-sm: 0 1px 2px rgba(13,13,16,.06), 0 1px 3px rgba(13,13,16,.05);
  --shadow-md: 0 10px 30px -12px rgba(13,13,16,.22);
  --shadow-lg: 0 30px 60px -20px rgba(13,13,16,.35);
  --shadow-red: 0 14px 34px -12px rgba(218,41,28,.5);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --f-display: "Oswald", "Inter", sans-serif;
  --f-head: "Onest", "Inter", sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:var(--f-body); font-size:17px; line-height:1.65;
  font-weight:400; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:clip;
}
html{ overflow-x:clip; }
img,picture,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-head); font-weight:700; line-height:1.08; letter-spacing:-.02em; color:var(--ink); }
p{ margin:0; }
:focus-visible{ outline:3px solid var(--red); outline-offset:3px; border-radius:4px; }

/* ---------- Layout ---------- */
.container{ width:100%; max-width:var(--container); margin:0 auto; padding-inline:var(--gutter); }
.container-wide{ max-width:1400px; }
section{ position:relative; }
.section{ padding-block:clamp(64px, 9vw, 130px); }
.section--tight{ padding-block:clamp(48px, 6vw, 84px); }

/* ---------- Type helpers ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-display); font-weight:600; font-size:.82rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--red);
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--red); display:inline-block; }
.eyebrow--light{ color:var(--amber); }
.eyebrow--light::before{ background:var(--amber); }
.eyebrow--center{ justify-content:center; }

h1,.h1{ font-size:clamp(2.4rem, 6vw, 4.5rem); }
h2,.h2{ font-size:clamp(1.9rem, 4vw, 3.1rem); }
h3,.h3{ font-size:clamp(1.25rem, 2vw, 1.6rem); }
.lead{ font-size:clamp(1.05rem, 1.5vw, 1.28rem); color:var(--text-2); line-height:1.6; }
.section-head{ max-width:720px; margin-bottom:clamp(38px,5vw,64px); }
.section-head--center{ margin-inline:auto; text-align:center; }
.section-head p{ margin-top:18px; }

.text-red{ color:var(--red); }
.display-num{ font-family:var(--f-display); font-weight:700; line-height:1; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--f-head); font-weight:600; font-size:1rem; line-height:1;
  padding:16px 28px; border-radius:var(--r); border:1px solid transparent;
  transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s, color .25s;
  white-space:nowrap; cursor:pointer;
}
.btn svg{ width:19px; height:19px; }
.btn--primary{ background:var(--red); color:#fff; box-shadow:var(--shadow-red); }
.btn--primary:hover{ background:var(--red-600); transform:translateY(-3px); box-shadow:0 20px 40px -12px rgba(218,41,28,.6); }
.btn--dark{ background:var(--ink); color:#fff; }
.btn--dark:hover{ background:var(--ink-3); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line-2); }
.btn--ghost:hover{ border-color:var(--ink); transform:translateY(-3px); }
.btn--light{ background:#fff; color:var(--ink); }
.btn--light:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.btn--outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.35); }
.btn--outline-light:hover{ background:rgba(255,255,255,.1); border-color:#fff; transform:translateY(-3px); }
.btn--lg{ padding:19px 34px; font-size:1.05rem; }
.btn--block{ width:100%; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(13,13,16,.0); transition:background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.is-solid{
  background:rgba(13,13,16,.92); backdrop-filter:blur(14px) saturate(1.2);
  box-shadow:0 1px 0 rgba(255,255,255,.06), 0 12px 30px -18px rgba(0,0,0,.6);
}
.nav{ display:flex; align-items:center; gap:28px; height:76px; }
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; }
.brand img{ width:46px; height:46px; border-radius:10px; }
.brand-txt{ display:flex; flex-direction:column; line-height:1; }
.brand-txt b{ font-family:var(--f-display); font-weight:700; color:#fff; font-size:1.02rem; letter-spacing:.02em; text-transform:uppercase; }
.brand-txt span{ font-size:.72rem; color:var(--amber); letter-spacing:.16em; text-transform:uppercase; margin-top:4px; font-weight:500; }
.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  font-family:var(--f-head); font-weight:500; font-size:.96rem; color:rgba(255,255,255,.82);
  padding:10px 14px; border-radius:9px; transition:color .2s, background .2s; position:relative;
}
.nav-links a:hover{ color:#fff; background:rgba(255,255,255,.08); }
.nav-links a.active{ color:#fff; }
.nav-links a.active::after{
  content:""; position:absolute; left:14px; right:14px; bottom:4px; height:2px; background:var(--red); border-radius:2px;
}
.nav-phone{
  display:inline-flex; align-items:center; gap:9px; font-family:var(--f-display); font-weight:600;
  color:#fff; padding:11px 20px; border-radius:var(--r); background:var(--red); font-size:1.02rem;
  box-shadow:var(--shadow-red); transition:transform .3s var(--ease-out), background .25s; white-space:nowrap;
}
.nav-phone svg{ width:18px; height:18px; }
.nav-phone:hover{ background:var(--red-600); transform:translateY(-2px); }
.burger{ display:none; width:46px; height:46px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06); border-radius:11px; position:relative; }
.burger span{ position:absolute; left:12px; right:12px; height:2px; background:#fff; border-radius:2px; transition:transform .35s var(--ease), opacity .2s; }
.burger span:nth-child(1){ top:16px; } .burger span:nth-child(2){ top:22px; } .burger span:nth-child(3){ top:28px; }
body.menu-open .burger span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity:0; }
body.menu-open .burger span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

@media (max-width:900px){
  .nav-links{ display:none; }
  .burger{ display:block; }
  .nav{ gap:14px; }
}
@media (max-width:520px){
  .nav-phone{ display:none; } /* обаждането е през FAB бутона и менюто */
}

/* Mobile menu */
.mobile-menu{
  position:fixed; inset:0; z-index:55; background:var(--ink);
  padding:100px var(--gutter) 40px; display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .45s var(--ease); visibility:hidden;
}
body.menu-open .mobile-menu{ transform:translateX(0); visibility:visible; }
.mobile-menu a.m-link{
  font-family:var(--f-head); font-weight:600; font-size:1.5rem; color:#fff; padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.09); display:flex; justify-content:space-between; align-items:center;
}
.mobile-menu a.m-link span{ color:var(--red); }
.mobile-menu .m-cta{ margin-top:auto; padding-top:28px; display:grid; gap:12px; }

/* ---------- Hero ---------- */
.hero{ position:relative; isolation:isolate; min-height:min(92vh, 860px); display:flex; align-items:flex-end; color:#fff; margin-top:-76px; padding-top:76px; overflow:hidden; }
.hero__bg{
  position:absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(180deg, rgba(11,11,14,.80) 0%, rgba(11,11,14,.60) 40%, rgba(11,11,14,.70) 72%, rgba(11,11,14,.96) 100%),
    linear-gradient(90deg, rgba(11,11,14,.72) 0%, rgba(11,11,14,.30) 45%, rgba(11,11,14,0) 78%),
    url("../img/hero-1280.webp");
  background-size:cover, cover, cover;
  background-position:center, center, center 28%;
  background-repeat:no-repeat;
}
.hero__inner{ position:relative; z-index:2; }
.hero__content{ animation:heroIn .9s var(--ease-out) both; }
@keyframes heroIn{ from{ opacity:0; transform:translateY(24px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){ .hero__content{ animation:none; } }
.hero__inner{ padding-block:clamp(48px,8vw,110px); width:100%; }
.hero__eyebrow{ margin-bottom:22px; }
.hero h1{ color:#fff; max-width:16ch; }
.hero h1 em{ font-style:normal; color:var(--red); }
.hero__sub{ margin-top:24px; max-width:52ch; font-size:clamp(1.05rem,1.6vw,1.32rem); color:rgba(255,255,255,.86); line-height:1.6; }
.hero__cta{ margin-top:38px; display:flex; flex-wrap:wrap; gap:14px; }
.hero__trust{
  margin-top:46px; display:flex; flex-wrap:wrap; gap:14px 34px; padding-top:30px;
  border-top:1px solid rgba(255,255,255,.16);
}
.hero__trust li{ display:flex; align-items:center; gap:11px; font-size:.98rem; color:rgba(255,255,255,.9); }
.hero__trust svg{ width:22px; height:22px; color:var(--amber); flex:none; }
.hero__scroll{ position:absolute; right:var(--gutter); bottom:28px; display:flex; flex-direction:column; align-items:center; gap:10px; color:rgba(255,255,255,.6); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; }
.hero__scroll span{ width:1px; height:44px; background:linear-gradient(rgba(255,255,255,.5), transparent); }
@media (max-width:640px){ .hero__scroll{ display:none; } }

/* ---------- Stat bar ---------- */
.statbar{ background:var(--ink); color:#fff; }
.statbar__grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ padding:clamp(30px,4vw,52px) clamp(18px,3vw,40px); border-right:1px solid rgba(255,255,255,.09); }
.stat:last-child{ border-right:none; }
.stat b{ font-family:var(--f-display); font-weight:700; font-size:clamp(2.2rem,4vw,3.4rem); display:block; line-height:1; color:#fff; }
.stat b i{ font-style:normal; color:var(--red); }
.stat span{ margin-top:10px; display:block; color:rgba(255,255,255,.66); font-size:.94rem; }
@media (max-width:760px){ .statbar__grid{ grid-template-columns:repeat(2,1fr); } .stat:nth-child(2){ border-right:none; } .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid rgba(255,255,255,.09); } }

/* ---------- Services ---------- */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.svc-card{
  position:relative; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:34px 30px 30px; overflow:hidden; transition:transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
}
.svc-card::before{ content:""; position:absolute; left:0; top:0; height:3px; width:0; background:var(--red); transition:width .5s var(--ease-out); }
.svc-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.svc-card:hover::before{ width:100%; }
.svc-ic{ width:60px; height:60px; border-radius:15px; background:linear-gradient(140deg,var(--ink),var(--ink-3)); display:grid; place-items:center; margin-bottom:22px; }
.svc-ic svg{ width:30px; height:30px; color:var(--red); }
.svc-card h3{ font-size:1.3rem; margin-bottom:10px; }
.svc-card p{ color:var(--text-2); font-size:.98rem; }
.svc-card .svc-num{ position:absolute; top:26px; right:28px; font-family:var(--f-display); font-weight:700; font-size:1.05rem; color:var(--line-2); }
.svc-more{ margin-top:18px; display:inline-flex; align-items:center; gap:8px; font-family:var(--f-head); font-weight:600; font-size:.92rem; color:var(--red); }
.svc-more svg{ width:16px; height:16px; transition:transform .3s; }
.svc-card:hover .svc-more svg{ transform:translateX(5px); }
@media (max-width:940px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .svc-grid{ grid-template-columns:1fr; } }

/* ---------- Split / feature ---------- */
.split{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(34px,5vw,72px); align-items:center; }
.split--reverse .split__media{ order:2; }
.split__media{ position:relative; }
.split__media img{ width:100%; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); aspect-ratio:4/3; object-fit:cover; }
.split__badge{
  position:absolute; bottom:-24px; left:-24px; background:var(--red); color:#fff; border-radius:var(--r);
  padding:20px 24px; box-shadow:var(--shadow-red); max-width:230px;
}
.split__badge b{ font-family:var(--f-display); font-size:2rem; font-weight:700; display:block; line-height:1; }
.split__badge span{ font-size:.9rem; opacity:.92; margin-top:6px; display:block; }
.feature-list{ margin-top:28px; display:grid; gap:16px; }
.feature-list li{ display:flex; gap:15px; align-items:flex-start; }
.feature-list .fi{ width:40px; height:40px; border-radius:11px; background:var(--bg-warm); display:grid; place-items:center; flex:none; }
.feature-list .fi svg{ width:20px; height:20px; color:var(--red); }
.feature-list h4{ font-family:var(--f-head); font-size:1.05rem; font-weight:600; color:var(--ink); margin-bottom:3px; }
.feature-list p{ color:var(--text-2); font-size:.95rem; }
@media (max-width:860px){ .split{ grid-template-columns:1fr; } .split--reverse .split__media{ order:0; } .split__badge{ left:16px; bottom:-20px; } }

/* ---------- Process ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; counter-reset:step; }
.step{ position:relative; padding-top:30px; }
.step::before{
  counter-increment:step; content:"0" counter(step);
  font-family:var(--f-display); font-weight:700; font-size:3.2rem; color:var(--line-2); line-height:.8; display:block; margin-bottom:16px;
  transition:color .3s;
}
.step:hover::before{ color:var(--red); }
.step h3{ font-size:1.2rem; margin-bottom:8px; }
.step p{ color:var(--text-2); font-size:.95rem; }
.step__line{ position:absolute; top:8px; left:0; right:0; height:2px; background:var(--line); }
@media (max-width:860px){ .steps{ grid-template-columns:repeat(2,1fr); gap:30px 24px; } }
@media (max-width:460px){ .steps{ grid-template-columns:1fr; } }

/* ---------- Gallery / projects ---------- */
.gal{ display:grid; grid-template-columns:repeat(12,1fr); gap:16px; grid-auto-flow:dense; }
.gal figure{ position:relative; margin:0; border-radius:var(--r); overflow:hidden; cursor:pointer; background:var(--ink-2); }
.gal figure img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease-out); }
.gal figure:hover img{ transform:scale(1.06); }
.gal figure::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(13,13,16,.82)); opacity:.9; transition:opacity .4s; }
.gal figcaption{ position:absolute; left:18px; right:18px; bottom:16px; z-index:2; color:#fff; transform:translateY(6px); opacity:0; transition:transform .4s var(--ease-out), opacity .4s; }
.gal figure:hover figcaption{ transform:translateY(0); opacity:1; }
.gal figcaption b{ font-family:var(--f-head); font-weight:600; font-size:1.02rem; display:block; }
.gal figcaption span{ font-size:.84rem; color:rgba(255,255,255,.75); }
.gal .plus{ position:absolute; top:14px; right:14px; z-index:2; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.16); backdrop-filter:blur(4px); display:grid; place-items:center; opacity:0; transform:scale(.8); transition:.4s var(--ease-out); }
.gal figure:hover .plus{ opacity:1; transform:scale(1); }
.gal .plus svg{ width:18px; height:18px; color:#fff; }
.g-tag{ position:absolute; top:14px; left:14px; z-index:2; font-family:var(--f-display); font-weight:600; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; background:var(--red); color:#fff; padding:5px 11px; border-radius:6px; }
.g-tag--before{ background:var(--ink); }
/* spans */
.g-w6{ grid-column:span 6; } .g-w4{ grid-column:span 4; } .g-w8{ grid-column:span 8; } .g-w3{ grid-column:span 3; } .g-w5{ grid-column:span 5; } .g-w7{ grid-column:span 7; }
.g-tall{ grid-row:span 2; }
.gal figure{ min-height:230px; }
@media (max-width:900px){
  .gal{ grid-template-columns:repeat(6,1fr); }
  .g-w6,.g-w8,.g-w7,.g-w5{ grid-column:span 6; } .g-w4,.g-w3{ grid-column:span 3; } .g-tall{ grid-row:span 1; }
}
@media (max-width:560px){ .gal{ grid-template-columns:1fr; } .gal figure{ grid-column:span 1 !important; min-height:220px; } }

/* Lightbox */
.lb{ position:fixed; inset:0; z-index:90; background:rgba(8,8,10,.94); display:none; align-items:center; justify-content:center; padding:24px; }
.lb.open{ display:flex; }
.lb img{ max-width:92vw; max-height:82vh; border-radius:10px; box-shadow:var(--shadow-lg); }
.lb__cap{ position:absolute; bottom:22px; left:0; right:0; text-align:center; color:#fff; font-size:.96rem; }
.lb__x,.lb__nav{ position:absolute; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff; width:52px; height:52px; border-radius:50%; display:grid; place-items:center; transition:background .2s; }
.lb__x:hover,.lb__nav:hover{ background:rgba(255,255,255,.26); }
.lb__x{ top:22px; right:22px; } .lb__x svg{ width:22px; height:22px; }
.lb__nav svg{ width:26px; height:26px; }
.lb__prev{ left:20px; top:50%; transform:translateY(-50%); } .lb__next{ right:20px; top:50%; transform:translateY(-50%); }
@media (max-width:640px){ .lb__nav{ width:44px; height:44px; } .lb__prev{ left:8px; } .lb__next{ right:8px; } }

/* ---------- Why / values ---------- */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:32px 28px; transition:transform .4s var(--ease-out), box-shadow .4s; }
.why-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.why-card .wi{ width:54px; height:54px; border-radius:14px; background:var(--red); display:grid; place-items:center; margin-bottom:20px; box-shadow:var(--shadow-red); }
.why-card .wi svg{ width:27px; height:27px; color:#fff; }
.why-card h3{ font-size:1.2rem; margin-bottom:9px; }
.why-card p{ color:var(--text-2); font-size:.97rem; }
@media (max-width:860px){ .why-grid{ grid-template-columns:1fr; } }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; background:var(--ink); color:#fff; border-radius:var(--r-xl); padding:clamp(44px,6vw,80px) clamp(28px,5vw,72px); overflow:hidden; }
.cta-band::before{ content:""; position:absolute; right:-80px; top:-80px; width:340px; height:340px; background:radial-gradient(circle, rgba(218,41,28,.35), transparent 70%); }
.cta-band__inner{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:34px; flex-wrap:wrap; }
.cta-band h2{ color:#fff; max-width:18ch; }
.cta-band p{ color:rgba(255,255,255,.72); margin-top:14px; max-width:46ch; }
.cta-band__actions{ display:flex; flex-direction:column; gap:12px; min-width:230px; }
.cta-phone-lg{ font-family:var(--f-display); font-weight:700; font-size:1.7rem; color:#fff; display:flex; align-items:center; gap:12px; }
.cta-phone-lg svg{ width:26px; height:26px; color:var(--red); }

/* ---------- FAQ ---------- */
.faq{ max-width:820px; margin-inline:auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:24px 46px 24px 0; position:relative; font-family:var(--f-head); font-weight:600; font-size:clamp(1.05rem,1.6vw,1.22rem); color:var(--ink); }
.faq-q::after{ content:""; position:absolute; right:6px; top:50%; width:14px; height:14px; margin-top:-7px; background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DA291C' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); transition:transform .3s; }
.faq-item.open .faq-q::after{ transform:rotate(135deg); }
.faq-a{ overflow:hidden; max-height:0; transition:max-height .4s var(--ease); }
.faq-a p{ padding:0 46px 24px 0; color:var(--text-2); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(30px,4vw,56px); align-items:start; }
.info-card{ background:var(--ink); color:#fff; border-radius:var(--r-lg); padding:clamp(30px,4vw,44px); }
.info-card h3{ color:#fff; font-size:1.5rem; margin-bottom:6px; }
.info-card>p{ color:rgba(255,255,255,.66); margin-bottom:26px; }
.info-row{ display:flex; gap:16px; align-items:flex-start; padding:18px 0; border-top:1px solid rgba(255,255,255,.1); }
.info-row .ii{ width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,.08); display:grid; place-items:center; flex:none; }
.info-row .ii svg{ width:22px; height:22px; color:var(--red); }
.info-row b{ display:block; font-family:var(--f-head); font-weight:600; color:#fff; font-size:1.08rem; }
.info-row span{ color:rgba(255,255,255,.66); font-size:.94rem; }
.info-row a{ color:#fff; }
.info-row a:hover{ color:var(--amber); }
.form{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(28px,4vw,42px); box-shadow:var(--shadow-md); }
.form h3{ font-size:1.4rem; margin-bottom:6px; }
.form>p{ color:var(--text-2); margin-bottom:24px; font-size:.96rem; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--f-head); font-weight:600; font-size:.9rem; margin-bottom:8px; color:var(--ink); }
.field label .req{ color:var(--red); }
.field input,.field textarea,.field select{
  width:100%; padding:14px 16px; border:1px solid var(--line-2); border-radius:var(--r-sm);
  font-family:inherit; font-size:1rem; color:var(--text); background:var(--bg); transition:border-color .2s, box-shadow .2s;
}
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--red); box-shadow:0 0 0 3px rgba(218,41,28,.14); background:#fff; }
.field textarea{ resize:vertical; min-height:120px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note{ font-size:.84rem; color:var(--muted); margin-top:6px; }
.form .btn{ margin-top:6px; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ background:var(--ink); color:#fff; padding-top:calc(76px + clamp(40px,6vw,80px)); padding-bottom:clamp(40px,6vw,80px); margin-top:-76px; position:relative; overflow:hidden; }
.page-hero::before{ content:""; position:absolute; right:-60px; top:-60px; width:300px; height:300px; background:radial-gradient(circle,rgba(218,41,28,.28),transparent 70%); }
.page-hero__inner{ position:relative; }
.page-hero h1{ color:#fff; max-width:20ch; }
.page-hero p{ color:rgba(255,255,255,.75); margin-top:18px; max-width:56ch; font-size:clamp(1.02rem,1.5vw,1.2rem); }
.crumbs{ display:flex; gap:8px; align-items:center; font-size:.86rem; color:rgba(255,255,255,.55); margin-bottom:22px; font-family:var(--f-head); }
.crumbs a:hover{ color:#fff; } .crumbs span{ color:var(--red); }

/* ---------- Service detail rows ---------- */
.svc-detail{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(30px,4vw,64px); align-items:center; padding-block:clamp(40px,5vw,64px); border-bottom:1px solid var(--line); }
.svc-detail:last-child{ border-bottom:none; }
.svc-detail--rev .svc-detail__media{ order:2; }
.svc-detail__media img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--r-lg); box-shadow:var(--shadow-md); }
.svc-detail__n{ font-family:var(--f-display); font-weight:700; color:var(--red); font-size:1rem; letter-spacing:.1em; }
.svc-detail h2{ font-size:clamp(1.6rem,2.6vw,2.2rem); margin:8px 0 14px; }
.svc-detail p{ color:var(--text-2); }
.svc-detail ul{ margin-top:18px; display:grid; gap:11px; }
.svc-detail ul li{ display:flex; gap:11px; align-items:flex-start; color:var(--text); font-size:.97rem; }
.svc-detail ul li svg{ width:20px; height:20px; color:var(--red); flex:none; margin-top:2px; }
@media (max-width:820px){ .svc-detail{ grid-template-columns:1fr; gap:26px; } .svc-detail--rev .svc-detail__media{ order:0; } }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.7); padding-top:clamp(56px,7vw,84px); }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .brand{ margin-bottom:20px; }
.footer-brand p{ font-size:.95rem; max-width:34ch; }
.footer-col h4{ font-family:var(--f-head); color:#fff; font-size:1rem; margin-bottom:18px; font-weight:600; }
.footer-col a,.footer-col li{ display:block; padding:7px 0; font-size:.95rem; color:rgba(255,255,255,.66); transition:color .2s; }
.footer-col a:hover{ color:#fff; }
.footer-contact a{ display:flex; gap:11px; align-items:center; }
.footer-contact svg{ width:18px; height:18px; color:var(--red); flex:none; }
.footer-bottom{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding:26px 0; font-size:.86rem; color:rgba(255,255,255,.5); }
.footer-bottom a:hover{ color:#fff; }
@media (max-width:860px){ .footer-top{ grid-template-columns:1fr 1fr; gap:32px; } }
@media (max-width:520px){ .footer-top{ grid-template-columns:1fr; } }

/* ---------- Floating mobile call ---------- */
.fab-call{ position:fixed; right:16px; bottom:16px; z-index:50; display:none; align-items:center; gap:10px; background:var(--red); color:#fff; padding:14px 20px; border-radius:50px; box-shadow:var(--shadow-red); font-family:var(--f-display); font-weight:600; }
.fab-call svg{ width:20px; height:20px; }
@media (max-width:760px){ .fab-call{ display:inline-flex; } }

/* ---------- Reveal animation ---------- */
[data-reveal]{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in{ opacity:1; transform:none; }
[data-reveal].d1{ transition-delay:.08s; } [data-reveal].d2{ transition-delay:.16s; } [data-reveal].d3{ transition-delay:.24s; } [data-reveal].d4{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1 !important; transform:none !important; } }

/* ---------- Utility ---------- */
.bg-warm{ background:var(--bg-warm); }
.bg-ink{ background:var(--ink); color:#fff; }
.mt-0{ margin-top:0; }
.divider-top{ border-top:1px solid var(--line); }
.nav-links a.active,.mobile-menu a.m-link.active{ }
