/* ============================================================
   Jangral Enterprises — shared stylesheet
   ============================================================ */
:root {
  --ground: #f2efe8;
  --surface: #fbfaf6;
  --surface-2: #eceadf;
  --ink: #23261f;
  --ink-soft: #565a4c;
  --line: #d8d4c6;
  --accent: #55663b;
  --accent-deep: #3f4d2b;
  --accent-soft: #eef0e4;
  --brass: #a9812f;
  --brass-soft: #f3e9d3;
  --shadow: 0 1px 2px rgba(35,38,31,.06), 0 8px 24px rgba(35,38,31,.06);
  --maxw: 1120px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #171913; --surface: #1f2219; --surface-2: #262a1f;
    --ink: #eceadf; --ink-soft: #a7ab99; --line: #343829;
    --accent: #93a86a; --accent-deep: #7c9152; --accent-soft: #262c1c;
    --brass: #c99f4e; --brass-soft: #2c2717;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 30px rgba(0,0,0,.35);
  }
}
:root[data-theme="light"] {
  --ground: #f2efe8; --surface: #fbfaf6; --surface-2: #eceadf;
  --ink: #23261f; --ink-soft: #565a4c; --line: #d8d4c6;
  --accent: #55663b; --accent-deep: #3f4d2b; --accent-soft: #eef0e4;
  --brass: #a9812f; --brass-soft: #f3e9d3;
  --shadow: 0 1px 2px rgba(35,38,31,.06), 0 8px 24px rgba(35,38,31,.06);
}
:root[data-theme="dark"] {
  --ground: #171913; --surface: #1f2219; --surface-2: #262a1f;
  --ink: #eceadf; --ink-soft: #a7ab99; --line: #343829;
  --accent: #93a86a; --accent-deep: #7c9152; --accent-soft: #262c1c;
  --brass: #c99f4e; --brass-soft: #2c2717;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.12; text-wrap: balance; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--accent); }

/* ---------- NAV ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; }
.brand .mark {
  width: 40px; height: 40px; flex: none; border-radius: 8px; background: #fff;
  display: grid; place-items: center; padding: 3px; border: 1px solid var(--line);
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { font-size: 1.02rem; line-height: 1.05; color: var(--ink); }
.brand .name span { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-cta { text-decoration: none; font-weight: 700; font-size: .9rem; background: var(--accent); color: #fff; padding: 9px 18px; border-radius: 6px; }
.nav-cta:hover { background: var(--accent-deep); }
.theme-btn {
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  width: 38px; height: 38px; border-radius: 6px; cursor: pointer; font-size: 1rem; display: grid; place-items: center;
}
.theme-btn:hover { border-color: var(--accent); }
.nav-right { display: flex; gap: 10px; align-items: center; }
@media (max-width: 860px) { .nav-links { gap: 18px; } .nav-links a { font-size: .85rem; } .nav-cta { display: none; } }
@media (max-width: 560px) { .brand .name span { display: none; } }

/* ---------- PAGE HEADER (sub pages) ---------- */
.page-head { border-bottom: 1px solid var(--line); background: var(--surface); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%),
    repeating-linear-gradient(45deg, transparent 0 22px, color-mix(in srgb, var(--ink) 4%, transparent) 22px 23px);
}
.page-head .wrap { position: relative; z-index: 1; padding: 60px 24px 54px; display: grid; gap: 14px; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.015em; max-width: 18ch; }
.page-head p { color: var(--ink-soft); font-size: 1.1rem; max-width: 60ch; }

/* ---------- HERO (home) ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
    repeating-linear-gradient(45deg, transparent 0 22px, color-mix(in srgb, var(--ink) 4%, transparent) 22px 23px);
}
.hero-inner { position: relative; z-index: 1; padding: 74px 24px 66px; display: grid; gap: 26px; max-width: var(--maxw); margin: 0 auto; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.015em; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { font-size: clamp(1.05rem, 2.2vw, 1.22rem); color: var(--ink-soft); max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 700; font-size: .98rem;
  padding: 13px 24px; border-radius: 7px; transition: transform .12s ease, background .18s ease; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-wa { background: #25d366; color: #06331a; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2px; }
.tag { font-size: .78rem; font-weight: 600; letter-spacing: .04em; background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft); padding: 6px 12px; border-radius: 100px; }

/* ---------- FEATURED CAROUSEL ---------- */
.carousel { position: relative; max-width: var(--maxw); margin: 0 auto; }
.carousel-frame {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--surface-2); box-shadow: var(--shadow); aspect-ratio: 16 / 8;
}
@media (max-width: 640px) { .carousel-frame { aspect-ratio: 4 / 5; } }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .6s ease; display: grid; grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 640px) { .slide { grid-template-columns: 1fr; grid-template-rows: 1fr auto; } }
.slide.active { opacity: 1; visibility: visible; }
.slide .s-photo { background: #fff; overflow: hidden; }
.slide .s-photo img { width: 100%; height: 100%; object-fit: cover; }
.slide .s-text {
  padding: clamp(20px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; gap: 12px;
  background: var(--surface);
}
.slide .s-cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--brass); }
.slide .s-text h3 { font-size: clamp(1.4rem, 3.2vw, 2.2rem); font-weight: 800; letter-spacing: -.01em; }
.slide .s-text p { color: var(--ink-soft); font-size: 1rem; }
.slide .s-text .btn { align-self: flex-start; margin-top: 6px; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, transparent); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; font-size: 1.3rem; line-height: 1;
  backdrop-filter: blur(6px); transition: background .15s ease, transform .15s ease;
}
.car-btn:hover { background: var(--accent); color: #fff; }
.car-btn.prev { left: 14px; } .car-btn.next { right: 14px; }
.car-btn:hover { transform: translateY(-50%) scale(1.06); }
.car-dots { display: flex; gap: 9px; justify-content: center; margin-top: 18px; }
.car-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--line); transition: background .2s ease, transform .2s ease;
}
.car-dots button.active { background: var(--accent); transform: scale(1.35); }

/* ---------- CATEGORY SHORTCUT TILES ---------- */
.cat-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 900px) { .cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 18px 16px; cursor: pointer; text-align: left; font: inherit; color: var(--ink);
  box-shadow: var(--shadow); transition: transform .14s ease, border-color .14s ease;
}
.cat-tile:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.cat-tile .ci { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.cat-tile .ci svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.cat-tile .t-name { font-weight: 700; font-size: 1rem; line-height: 1.15; }
.cat-tile .t-count { font-size: .82rem; color: var(--ink-soft); font-weight: 600; margin-top: auto; }

/* ---------- FILTER BAR ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn {
  font-size: .9rem; font-weight: 600; padding: 9px 17px; border-radius: 100px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-btn .count { opacity: .65; font-weight: 700; margin-left: 4px; font-size: .8em; }
.pcard.hide { display: none; }
.filter-empty { color: var(--ink-soft); padding: 20px 0; display: none; }

/* ---------- SECTION SHELL ---------- */
section { padding: 66px 0; }
.sec-head { display: grid; gap: 12px; max-width: 62ch; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -.01em; }
.sec-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- PRODUCT CARDS (with photos) ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .14s ease, border-color .14s ease;
}
.pcard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.pcard .photo { aspect-ratio: 4 / 3; overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #f1eee5 78%, #ece9de 100%); }
.pcard .photo > img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .3s ease; }
.pcard:hover .photo > img { transform: scale(1.04); }
/* thumbnails overlay the bottom of the photo so all card bodies stay aligned */
.pcard .photo .thumbs { position: absolute; left: 9px; bottom: 9px; z-index: 3; display: flex; gap: 6px; flex-wrap: wrap; }
.pcard .photo .thumbs::before {
  content: ""; position: absolute; left: -9px; right: -9px; bottom: -9px; top: -14px; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
}
.pcard .thumb {
  width: 40px; height: 40px; border-radius: 6px; overflow: hidden; padding: 0; cursor: pointer;
  border: 2px solid rgba(255,255,255,.85); background: var(--surface-2); flex: none;
  box-shadow: 0 2px 6px rgba(0,0,0,.35); transition: border-color .15s ease;
}
.pcard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcard .thumb.active { border-color: var(--accent); }
.pcard .thumb:hover { border-color: #fff; }
.pcard .photo-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: color-mix(in srgb, var(--ink) 78%, transparent); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 4px 9px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 4px; backdrop-filter: blur(4px);
}
.pcard .photo { position: relative; }
.pcard .photo > img { cursor: zoom-in; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 12, 8, .92); backdrop-filter: blur(4px);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lb-stage { position: relative; max-width: min(1000px, 94vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-img {
  max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 10px;
  background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
@media (prefers-reduced-motion: no-preference) { .lb-img { animation: lb-in .22s ease; } }
@keyframes lb-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lb-caption { color: #f2efe8; font-weight: 600; font-size: .98rem; text-align: center; }
.lb-caption .lb-count { color: #a7ab99; font-weight: 500; margin-left: 8px; font-variant-numeric: tabular-nums; }
.lb-close {
  position: absolute; top: -6px; right: -6px; transform: translate(50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: #f2efe8; color: #23261f; font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
}
@media (max-width: 700px) { .lb-close { top: -14px; right: 6px; transform: none; } }
.lb-close:hover { background: #fff; }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 201;
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.8rem; line-height: 1; display: grid; place-items: center;
  transition: background .15s ease;
}
.lb-nav:hover { background: var(--accent); border-color: var(--accent); }
.lb-nav.prev { left: 18px; } .lb-nav.next { right: 18px; }
.lb-nav[hidden] { display: none; }
.lb-thumbs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.lb-thumbs button {
  width: 52px; height: 52px; border-radius: 7px; overflow: hidden; padding: 0; cursor: pointer;
  border: 2px solid transparent; background: #2a2d22; flex: none;
}
.lb-thumbs button.active { border-color: var(--accent); }
.lb-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pcard .body { padding: 16px 22px 24px; display: grid; gap: 8px; flex: 1; }
.pcard .cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--brass); }
.pcard h3 { font-size: 1.12rem; font-weight: 700; }
.pcard p { color: var(--ink-soft); font-size: .94rem; }
.pcard .price { font-weight: 800; color: var(--ink); font-size: 1.02rem; font-variant-numeric: tabular-nums; }
.pcard .price span { font-weight: 600; color: var(--ink-soft); font-size: .8rem; }
.pcard .enquire { margin-top: auto; padding-top: 8px; font-weight: 700; font-size: .9rem; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.pcard .enquire:hover { gap: 10px; }

/* ---------- ICON CARDS (text-only categories) ---------- */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .range-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .range-grid { grid-template-columns: 1fr; } }
.icard { background: var(--surface); border: 1px solid var(--line); border-radius: 11px; padding: 22px 20px; display: grid; gap: 10px; }
.icard .ico { width: 42px; height: 42px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.icard .ico svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.icard h3 { font-size: 1.05rem; font-weight: 700; }
.icard p { color: var(--ink-soft); font-size: .92rem; }

.prod-note { margin-top: 30px; font-size: .95rem; color: var(--ink-soft); background: var(--brass-soft);
  border: 1px solid color-mix(in srgb, var(--brass) 35%, var(--line)); border-radius: 10px; padding: 16px 20px; }
.prod-note strong { color: var(--brass); }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.about-body { display: grid; gap: 18px; color: var(--ink-soft); font-size: 1.05rem; }
.about-body strong { color: var(--ink); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 22px 20px; display: grid; gap: 4px; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- CREDENTIALS / TRUST ---------- */
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 820px) { .creds-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .creds-grid { grid-template-columns: 1fr; } }
.cred {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px;
  display: grid; gap: 6px; box-shadow: var(--shadow);
}
.cred .ci { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 4px; }
.cred .ci svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.cred .k { font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.cred .v { color: var(--ink-soft); font-size: .9rem; }
.cred .v.mono { font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.cred-note { margin-top: 20px; font-size: .88rem; color: var(--ink-soft); }

/* ---------- WHY US ---------- */
.why-band { background: var(--accent-deep); }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .why-band { background: #2b331d; } }
:root[data-theme="dark"] .why-band { background: #2b331d; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { display: grid; gap: 8px; }
.why-item .num { font-size: .74rem; letter-spacing: .2em; font-weight: 700; color: rgba(244,244,234,.6); }
.why-item h3 { font-size: 1.15rem; font-weight: 700; color: #fff; }
.why-item p { font-size: .92rem; color: rgba(244,244,234,.8); }
.why-band .eyebrow { color: #cdd8b0; }
.why-band .sec-head h2 { color: #fff; }
.why-band .sec-head p { color: rgba(244,244,234,.82); }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.person { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.avatar { width: 58px; height: 58px; border-radius: 50%; flex: none; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.3rem; }
.person .who { font-weight: 800; font-size: 1.2rem; }
.person .role { color: var(--ink-soft); font-size: .9rem; }
.contact-lines { display: grid; gap: 2px; margin-bottom: 24px; }
.cline { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); text-decoration: none; }
.cline:last-child { border-bottom: 1px solid var(--line); }
.cline .ci { width: 40px; height: 40px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.cline .ci svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.cline .ct { display: grid; }
.cline .ct .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 600; }
.cline .ct .v { font-weight: 700; font-size: 1.02rem; color: var(--ink); }
a.cline:hover .v { color: var(--accent); }
.contact-actions { display: grid; gap: 12px; }
.contact-actions .btn { justify-content: center; }
.contact-side { display: grid; gap: 22px; }
.contact-side .lede { color: var(--ink-soft); font-size: 1.05rem; }
.addr { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: grid; gap: 6px; }
.addr .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); font-weight: 700; }
.addr .v { color: var(--ink); font-weight: 600; }
.hours { color: var(--ink-soft); font-size: .95rem; }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-inner { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.cta-inner h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; max-width: 20ch; }
.cta-inner .btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 0.8fr; gap: 40px; padding: 52px 24px 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.f-brand .f-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.f-brand .f-logo img { width: 40px; height: 40px; border-radius: 8px; background: #fff; padding: 3px; border: 1px solid var(--line); }
.f-brand .f-logo span { font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.f-brand p { max-width: 42ch; line-height: 1.6; }
.f-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.f-badge { font-size: .74rem; font-weight: 700; letter-spacing: .02em; padding: 5px 11px; border-radius: 100px;
  background: var(--accent-soft); color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent); }
.f-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink); font-weight: 700; margin: 0 0 14px; }
.f-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.f-col a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.f-col a:hover { color: var(--accent); }
.f-col p { line-height: 1.7; margin: 0; }
.f-col .f-wa { color: #1f9d55; }
.f-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding: 20px 24px; font-size: .84rem; }

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