:root{
  --ink:#13242b;
  --ink-2:#38545e;
  --muted:#6b8189;
  --line:#e3e8ea;
  --bg:#f6f4ef;
  --card:#ffffff;
  --brand:#0e5a6f;
  --brand-dark:#084151;
  --accent:#c7922b;
  --ok:#2b7a4b;
  --warn:#b5431a;
  --radius:10px;
  --radius-lg:16px;
  --shadow-sm:0 1px 2px rgba(19,36,43,.06), 0 1px 1px rgba(19,36,43,.04);
  --shadow:0 4px 14px rgba(19,36,43,.08);
  --shadow-lg:0 20px 40px -12px rgba(19,36,43,.18);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color:var(--ink);
  background:var(--bg);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Source Serif 4', Georgia, serif; color:var(--ink); letter-spacing:-.01em;}
h1{font-size:clamp(2rem, 4.2vw, 3.2rem); line-height:1.1; font-weight:700; margin:0 0 .6em;}
h2{font-size:clamp(1.5rem, 2.8vw, 2.1rem); line-height:1.2; font-weight:700; margin:0 0 .6em;}
h3{font-size:1.25rem; font-weight:700; margin:0 0 .4em;}
p{margin:0 0 1em;}
a{color:var(--brand); text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%; display:block;}

.container{max-width:1140px; margin:0 auto; padding:0 24px;}
.container-narrow{max-width:820px; margin:0 auto; padding:0 24px;}

/* ============ TOP BAR ============ */
.topbar{
  background:var(--ink);
  color:#cfe0e5;
  font-size:14px;
}
.topbar .container{display:flex; justify-content:space-between; align-items:center; padding-top:10px; padding-bottom:10px; gap:16px; flex-wrap:wrap;}
.topbar .ann{display:flex; align-items:center; gap:8px;}
.topbar .dot{width:8px; height:8px; border-radius:50%; background:#4ade80; box-shadow:0 0 0 4px rgba(74,222,128,.18); display:inline-block;}
.topbar a{color:#fff;}

/* ============ HEADER ============ */
header.site{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:40;
  box-shadow:var(--shadow-sm);
}
header.site .container{display:flex; align-items:center; justify-content:space-between; padding-top:16px; padding-bottom:16px; gap:24px;}
.brand{display:flex; align-items:center; gap:14px; line-height:1;}
.brand-wordmark{
  display:flex;
  align-items:baseline;
  gap:10px;
  font-family:'Source Serif 4', serif;
  font-size:26px;
  font-weight:700;
  color:#000;
  letter-spacing:-.01em;
  line-height:1;
}
.brand-oprava{color:#000;}
.brand-geberitu{
  color:#000;
  font-style:normal;
  font-weight:700;
  box-shadow:inset 0 -3px 0 var(--brand);
  line-height:1;
}
.brand-sub{
  display:block;
  font-family:'Source Sans 3', sans-serif;
  color:var(--muted);
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-top:12px;
}
nav.primary{display:flex; gap:28px;}
nav.primary a{color:var(--ink-2); font-weight:500; font-size:15px;}
nav.primary a:hover{color:var(--brand); text-decoration:none;}
.phone-cta{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--brand);
  color:#fff;
  padding:12px 18px;
  border-radius:var(--radius);
  font-weight:600;
  box-shadow:var(--shadow-sm);
  transition:background .15s;
  white-space:nowrap;
}
.phone-cta:hover{background:var(--brand-dark); text-decoration:none; color:#fff;}
.phone-cta svg{width:18px; height:18px; flex-shrink:0;}

@media (max-width: 860px){
  nav.primary{display:none;}
  .brand-name span{display:none;}
}
@media (max-width: 480px){
  .phone-cta{padding:10px 12px; font-size:14px; gap:6px;}
  .phone-cta svg{width:16px; height:16px;}
  header.site .container{gap:12px;}
  .brand-wordmark{font-size:22px;}
  .brand-geberitu{box-shadow:inset 0 -2px 0 var(--brand);}
}

/* ============ HERO ============ */
.hero{
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(246,244,239,1) 100%),
    radial-gradient(1200px 500px at 20% 0%, rgba(14,90,111,.08), transparent 60%),
    var(--bg);
  padding:72px 0 56px;
}
.hero .grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--brand);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
  margin-bottom:18px;
}
.eyebrow .pulse{width:8px; height:8px; border-radius:50%; background:var(--ok);}
.hero h1 strong{color:var(--brand);}
.hero p.lede{
  font-size:1.18rem;
  color:var(--ink-2);
  max-width:52ch;
  margin-bottom:28px;
}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:32px;}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 22px;
  border-radius:var(--radius);
  font-weight:600;
  font-size:16px;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .15s;
}
.btn-primary{background:var(--brand); color:#fff;}
.btn-primary:hover{background:var(--brand-dark); color:#fff; text-decoration:none;}
.btn-ghost{background:#fff; color:var(--ink); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--ink-2); text-decoration:none;}
.btn svg{width:18px; height:18px;}

.hero-proof{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:24px;
  padding-top:24px;
  border-top:1px solid var(--line);
  max-width:480px;
}
.hero-proof div b{display:block; font-family:'Source Serif 4', serif; font-size:1.6rem; color:var(--brand); line-height:1;}
.hero-proof div span{font-size:13px; color:var(--muted);}

.hero-visual{
  position:relative;
  aspect-ratio: 4/5;
  background:#dfe6e8;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.hero-visual .placeholder{
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(45deg,
      #eef1f2 0 14px,
      #e3e8ea 14px 28px);
  display:grid; place-items:center;
  color:var(--muted);
  font-family:ui-monospace, 'Menlo', monospace;
  font-size:13px;
  text-align:center;
}
.badge-overlay{
  position:absolute; bottom:18px; left:18px; right:18px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(8px);
  padding:14px 16px;
  border-radius:12px;
  display:flex; align-items:center; gap:12px;
  box-shadow:var(--shadow);
}
.badge-overlay .seal{
  width:44px; height:44px; border-radius:50%;
  background:var(--accent); color:#fff;
  display:grid; place-items:center; font-weight:700;
  flex-shrink:0;
}
.badge-overlay b{display:block; color:var(--ink);}
.badge-overlay span{font-size:13px; color:var(--muted);}

@media (max-width: 860px){
  .hero{padding:40px 0;}
  .hero .grid{grid-template-columns:1fr; gap:32px;}
  .hero-visual{aspect-ratio:4/3;}
}

/* ============ WHY / TRUST STRIP ============ */
.trust{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:28px 0;
}
.trust .row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
  align-items:center;
}
.trust-item{display:flex; align-items:center; gap:12px;}
.trust-item .icn{
  width:40px; height:40px; border-radius:10px;
  background:rgba(14,90,111,.08);
  color:var(--brand);
  display:grid; place-items:center; flex-shrink:0;
}
.trust-item .icn svg{width:22px; height:22px;}
.trust-item b{display:block; font-size:15px;}
.trust-item span{color:var(--muted); font-size:13px;}
@media (max-width: 760px){
  .trust .row{grid-template-columns:repeat(2,1fr); gap:20px;}
}

/* ============ SECTION BASE ============ */
section.block{padding:72px 0;}
section.block.alt{background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.section-head{margin-bottom:44px; max-width:680px;}
.section-head .eyebrow{margin-bottom:12px;}
.section-head p{color:var(--ink-2); font-size:1.08rem;}

/* ============ SERVICES ============ */
.services{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.svc{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  transition:transform .15s, box-shadow .15s, border-color .15s;
}
.svc:hover{transform:translateY(-2px); box-shadow:var(--shadow); border-color:#cfd8db;}
.svc .svc-icon{
  width:48px; height:48px; border-radius:12px;
  background:var(--brand); color:#fff;
  display:grid; place-items:center;
  margin-bottom:18px;
}
.svc .svc-icon svg{width:26px; height:26px;}
.svc h3{margin-bottom:8px;}
.svc p{color:var(--ink-2); font-size:15px; margin-bottom:14px;}
.svc ul{padding:0; margin:0; list-style:none; font-size:14px; color:var(--ink-2);}
.svc ul li{padding:6px 0; border-top:1px dashed var(--line); display:flex; gap:8px;}
.svc ul li:first-child{border-top:none;}
.svc ul li::before{content:"✓"; color:var(--ok); font-weight:700; flex-shrink:0;}
@media (max-width: 860px){.services{grid-template-columns:1fr;}}

/* ============ PROCESS ============ */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  counter-reset:step;
}
.step{
  background:var(--bg);
  border-radius:var(--radius-lg);
  padding:24px;
  position:relative;
  border:1px solid var(--line);
}
.step .num{
  font-family:'Source Serif 4', serif;
  font-size:2.4rem;
  line-height:1;
  color:var(--brand);
  font-weight:700;
  margin-bottom:8px;
}
.step h3{font-size:1.05rem; margin-bottom:6px;}
.step p{font-size:14px; color:var(--ink-2); margin:0;}
@media (max-width: 860px){.steps{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 480px){.steps{grid-template-columns:1fr;}}

/* ============ BRANDS ============ */
.brands{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.brand-chip{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 16px;
  display:flex; flex-direction:column; gap:4px;
  text-align:left;
  font:inherit; color:inherit;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position:relative;
}
.brand-chip:hover{
  transform:translateY(-2px);
  border-color:var(--brand);
  box-shadow:var(--shadow);
}
.brand-chip:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
}
.brand-chip b{font-size:16px;}
.brand-chip span{font-size:13px; color:var(--muted);}
.brand-chip .arrow{
  position:absolute; top:14px; right:14px;
  width:22px; height:22px; border-radius:50%;
  background:rgba(14,90,111,.08); color:var(--brand);
  display:grid; place-items:center;
  font-size:14px; line-height:1;
  transition:all .18s;
  opacity:0;
}
.brand-chip:hover .arrow, .brand-chip:focus-visible .arrow{opacity:1;}
.brands-hint{
  font-size:13px; color:var(--muted); margin-top:14px;
  display:flex; align-items:center; gap:8px;
}
@media (max-width: 760px){
  .brands{grid-template-columns:repeat(2,1fr);}
  .brand-chip .arrow{opacity:1;}
}

/* ============ BRAND MODAL ============ */
.brand-modal{
  position:fixed; inset:0;
  background:rgba(19,36,43,.55);
  backdrop-filter:blur(4px);
  z-index:100;
  display:grid; place-items:center;
  padding:20px;
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
}
.brand-modal[data-open="true"]{opacity:1; pointer-events:auto;}
.brand-modal-card{
  background:var(--bg);
  border-radius:var(--radius-lg);
  max-width:720px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  box-shadow:var(--shadow-lg);
  transform:translateY(12px);
  transition:transform .2s ease;
}
.brand-modal[data-open="true"] .brand-modal-card{transform:translateY(0);}
.brand-modal-head{
  padding:28px 32px 20px;
  border-bottom:1px solid var(--line);
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:16px;
  position:sticky; top:0;
  background:var(--bg);
  z-index:1;
}
.brand-modal-head h3{
  font-family:'Source Serif 4', serif;
  font-size:1.5rem; font-weight:700; margin:0;
  line-height:1.2;
}
.brand-modal-head .tag{
  display:inline-block;
  font-size:12px; text-transform:uppercase; letter-spacing:.05em;
  color:var(--brand); font-weight:600;
  margin-bottom:6px;
}
.brand-modal-close{
  background:#fff; border:1px solid var(--line);
  width:36px; height:36px; border-radius:50%;
  cursor:pointer; flex-shrink:0;
  display:grid; place-items:center;
  font-size:16px; color:var(--ink-2);
  transition:all .15s;
}
.brand-modal-close:hover{color:var(--ink); border-color:var(--ink-2);}
.brand-modal-body{padding:24px 32px 32px;}
.brand-modal-body p{color:var(--ink-2); font-size:16px; line-height:1.65;}
.brand-modal-body h4{
  font-family:'Source Sans 3', sans-serif;
  font-size:13px; text-transform:uppercase; letter-spacing:.05em;
  color:var(--ink); font-weight:700;
  margin:24px 0 12px;
}
.brand-modal-ident{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 20px;
  display:flex; align-items:center; gap:14px;
  color:var(--ink-2); font-size:14px;
}
.brand-modal-ident .icn{
  width:36px; height:36px; border-radius:8px;
  background:rgba(199,146,43,.12); color:var(--accent);
  display:grid; place-items:center; flex-shrink:0;
}
.brand-modal-buttons{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
}
.brand-btn-ph{
  aspect-ratio:1/1;
  background:
    repeating-linear-gradient(45deg, #eef1f2 0 10px, #e3e8ea 10px 20px);
  border-radius:var(--radius);
  display:grid; place-items:center;
  color:var(--muted);
  font-family:ui-monospace, 'Menlo', monospace;
  font-size:11px; text-align:center;
  padding:10px;
}
.brand-btn-img{
  aspect-ratio:1/1;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.brand-btn-img img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.brand-btn-img:hover{
  transform:translateY(-2px);
  border-color:var(--brand);
  box-shadow:var(--shadow);
}
.brand-modal-cta{
  margin-top:24px;
  background:var(--brand); color:#fff;
  border-radius:var(--radius);
  padding:20px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  flex-wrap:wrap;
}
.brand-modal-cta b{display:block; font-size:16px; margin-bottom:2px;}
.brand-modal-cta small{color:rgba(255,255,255,.75); font-size:13px;}
.brand-modal-cta .btn-primary{background:#fff; color:var(--brand);}
.brand-modal-cta .btn-primary:hover{background:rgba(255,255,255,.92); color:var(--brand);}
@media (max-width: 640px){
  .brand-modal-head, .brand-modal-body{padding-left:22px; padding-right:22px;}
  .brand-modal-buttons{grid-template-columns:repeat(2,1fr);}
}

/* ============ AREAS ============ */
.areas{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:start;
}
.area-zone-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:10px;
}
.area-zone-label--muted{color:var(--muted);}
.area-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.area-tags span{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:100px;
  padding:5px 14px;
  font-size:14px;
  color:var(--ink);
}
.area-tags--muted span{
  background:transparent;
  color:var(--muted);
  border-color:var(--line);
}
.area-card{
  background:var(--ink);
  color:#cfe0e5;
  border-radius:var(--radius-lg);
  padding:32px;
}
.area-card h3{color:#fff; margin-bottom:8px;}
.area-card p{color:#a9bec4; margin-bottom:18px;}
.area-card .phone-cta{width:100%; justify-content:center;}
@media (max-width: 860px){.areas{grid-template-columns:1fr;}}

/* ============ FAQ ============ */
.faq-list{max-width:820px; margin:0 auto;}
details.faq{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin-bottom:10px;
  overflow:hidden;
}
details.faq summary{
  padding:18px 22px;
  font-weight:600;
  cursor:pointer;
  list-style:none;
  display:flex; justify-content:space-between; align-items:center;
  gap:16px;
}
details.faq summary::-webkit-details-marker{display:none;}
details.faq summary::after{
  content:"+";
  font-size:1.4rem;
  color:var(--brand);
  font-weight:400;
  transition:transform .2s;
  flex-shrink:0;
}
details.faq[open] summary::after{content:"−";}
details.faq .ans{padding:0 22px 20px; color:var(--ink-2);}

/* ============ CONTACT / CTA ============ */
.contact-wrap{
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:56px;
  text-align:center;
  box-shadow:var(--shadow-lg);
}
.contact-wrap h2{color:#fff;}
.contact-wrap p{color:rgba(255,255,255,.85); max-width:520px; margin:0 auto 28px;}
.contact-phone{
  font-family:'Source Serif 4', serif;
  font-size:clamp(2rem, 5vw, 2.8rem);
  font-weight:700;
  color:#fff;
  display:inline-block;
  margin-bottom:8px;
  letter-spacing:-.01em;
}
.contact-phone:hover{text-decoration:none; color:#fff;}
.contact-sub{color:rgba(255,255,255,.7); font-size:14px;}
@media (max-width: 640px){.contact-wrap{padding:36px 22px;}}

/* ============ FOOTER ============ */
footer{
  background:var(--ink);
  color:#a9bec4;
  padding:48px 0 24px;
  font-size:14px;
}
footer .grid{display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:32px;}
footer h4{color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.05em; font-family:'Source Sans 3'; margin:0 0 14px;}
footer a{color:#a9bec4;}
footer a:hover{color:#fff;}
footer ul{list-style:none; padding:0; margin:0;}
footer ul li{padding:4px 0;}
footer .legal{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:20px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px;
}
@media (max-width: 760px){footer .grid{grid-template-columns:1fr; gap:28px;}}

/* ============ GALLERY ============ */
.gallery{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  grid-template-rows:repeat(2, minmax(0, 1fr));
  gap:18px;
  min-height:560px;
}
.gallery figure{
  margin:0;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#dfe6e8;
  box-shadow:var(--shadow-sm);
  position:relative;
  isolation:isolate;
}
.gallery figure.feature{grid-row:span 2;}
.gallery img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.gallery figure:hover img{transform:scale(1.04);}
.gallery figure::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(19,36,43,0) 45%, rgba(19,36,43,.78) 100%);
  pointer-events:none;
}
.gallery figcaption{
  position:absolute; left:16px; right:16px; bottom:16px;
  color:#fff; z-index:1;
}
.gallery .tag{
  display:inline-block;
  background:var(--accent); color:#fff;
  padding:4px 10px; border-radius:999px;
  font-size:11px; font-weight:600;
  letter-spacing:.05em; text-transform:uppercase;
  margin-bottom:8px;
}
.gallery .cap-title{
  display:block;
  font-family:'Source Serif 4', serif;
  font-size:18px; font-weight:700;
  line-height:1.25;
  margin-bottom:4px;
}
.gallery figure.feature .cap-title{font-size:22px;}
.gallery .cap-meta{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,.85);
}
.gallery-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin-top:24px;
  padding:22px 26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
}
.gallery-strip div{text-align:center;}
.gallery-strip b{
  display:block;
  font-family:'Source Serif 4', serif;
  font-size:1.4rem; color:var(--brand);
  line-height:1;
}
.gallery-strip span{
  display:block;
  color:var(--muted);
  font-size:12px; margin-top:6px;
  letter-spacing:.03em;
}
@media (max-width: 760px){
  .gallery{grid-template-columns:1fr; grid-template-rows:none; min-height:0;}
  .gallery figure{aspect-ratio:4/3;}
  .gallery figure.feature{grid-row:auto;}
  .gallery-strip{grid-template-columns:repeat(2, 1fr); gap:16px;}
}

/* ============ REVIEWS ============ */
.reviews-head{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  margin-bottom:36px; flex-wrap:wrap;
}
.reviews-score{
  display:flex; align-items:center; gap:16px;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:14px 20px;
}
.reviews-score .big{
  font-family:'Source Serif 4', serif; font-size:2rem; font-weight:700; line-height:1; color:var(--ink);
}
.reviews-score .stars{color:var(--accent); font-size:18px; letter-spacing:2px;}
.stars-rating{
  position:relative; display:inline-block;
  font-size:18px; letter-spacing:2px; line-height:1;
  font-family:Arial, sans-serif;
}
.stars-rating .empty{color:#e1d3ad;}
.stars-rating .filled{
  position:absolute; top:0; left:0;
  color:var(--accent);
  overflow:hidden;
  white-space:nowrap;
  pointer-events:none;
}
.reviews-score small{display:block; color:var(--muted); font-size:13px; margin-top:2px;}
.reviews-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:20px;
}
.review{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:24px;
}
.review-head{display:flex; align-items:center; gap:12px; margin-bottom:12px;}
.avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--brand); color:#fff;
  display:grid; place-items:center; font-weight:700;
  font-family:'Source Serif 4', serif;
  flex-shrink:0;
}
.review-meta b{display:block; font-size:15px;}
.review-meta .stars{color:var(--accent); letter-spacing:1px; font-size:14px;}
.review-meta small{color:var(--muted); font-size:12px; margin-left:8px;}
.review p{color:var(--ink-2); font-size:15px; margin:0;}
@media (max-width: 760px){.reviews-grid{grid-template-columns:1fr;}}

/* ============ STICKY MOBILE CALL ============ */
.sticky-call{display:none;}
@media (max-width: 760px){
  .sticky-call{
    display:flex;
    position:fixed; bottom:0; left:0; right:0;
    background:var(--brand);
    color:#fff;
    padding:12px 16px;
    justify-content:center; align-items:center; gap:10px;
    font-weight:600;
    z-index:50;
    box-shadow:0 -4px 20px rgba(0,0,0,.2);
  }
  .sticky-call:hover{color:#fff; text-decoration:none;}
  body{padding-bottom:60px;}
}
