@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* ═══════════════════════════
   CSS VARIABLES
═══════════════════════════ */
:root {
  --ink:      #111217;
  --ink2:     #1C1F28;
  --ink3:     #252935;
  --gold:     #C9A84C;
  --gold2:    #DDB96A;
  --gold3:    #EDD090;
  --ivory:    #F9F5EE;
  --ivory2:   #F2EDE3;
  --white:    #FFFFFF;
  --body:     #3A3D48;
  --muted:    #7C7F8E;
  --light:    #B0B3C0;
  --border:   rgba(201,168,76,0.2);
  --nav-h:    72px;
  --radius:   6px;
}

/* ═══════════════════════════
   RESET & BASE
═══════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--body);
  overflow-x: hidden;
  line-height: 1.65;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  z-index: 9999;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 1px;
}
.nav-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(249,245,238,0.35);
}

/* Links — ALL RIGHT SIDE */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(249,245,238,0.68);
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  margin-left: 12px;
  box-shadow: 0 3px 14px rgba(201,168,76,0.4);
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s !important;
  letter-spacing: 1.5px !important;
}
.nav-cta:hover {
  background: var(--gold2) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 22px rgba(201,168,76,0.5) !important;
}

/* Hamburger — mobile only */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-ham span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(249,245,238,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile drawer */
.mob-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--ink);
  border-bottom: 2px solid var(--gold);
  z-index: 9998;
  padding: 14px 24px 22px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(249,245,238,0.72);
  text-decoration: none;
  padding: 13px 16px;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all 0.22s;
}
.mob-nav a:hover,
.mob-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  border-left-color: var(--gold);
}
.mob-cta-link {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-left: none !important;
  border-radius: var(--radius) !important;
  text-align: center;
  margin-top: 8px;
}

/* ═══════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════ */
.page-hero {
  padding: 155px 80px 88px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.08), transparent 65%),
    repeating-linear-gradient(45deg, transparent, transparent 48px, rgba(201,168,76,0.018) 48px, rgba(201,168,76,0.018) 49px);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.page-hero h1 .g { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 15px;
  line-height: 1.82;
  color: rgba(249,245,238,0.58);
  max-width: 520px;
}

/* ═══════════════════════════
   SECTIONS
═══════════════════════════ */
.sec { padding: 96px 80px; }
.sec-ivory  { background: var(--ivory); }
.sec-ivory2 { background: var(--ivory2); }
.sec-white  { background: var(--white); }
.sec-ink    { background: var(--ink); }
.sec-ink2   { background: var(--ink2); }

/* Section label */
.sec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.sec-label.c { justify-content: center; }
.sec-label.c::before { display: none; }

/* Section heading */
.sec-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.sec-h.light { color: var(--white); }
.sec-h .g  { color: var(--gold); font-style: italic; }
.sec-h .o  { -webkit-text-stroke: 1.5px rgba(17,18,23,0.22); color: transparent; }
.sec-h.light .o { -webkit-text-stroke: 1.5px rgba(249,245,238,0.2); color: transparent; }

/* Gold rule */
.rule {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 20px 0 34px;
  border-radius: 2px;
}
.rule.c { margin: 20px auto 34px; }

/* Body copy */
.copy { font-size: 15px; line-height: 1.86; color: var(--muted); }
.copy.light { color: rgba(249,245,238,0.55); }
.copy + .copy { margin-top: 14px; }

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: var(--radius);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 22px rgba(201,168,76,0.38);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-outline-light {
  background: transparent;
  color: rgba(249,245,238,0.82);
  border: 1.5px solid rgba(249,245,238,0.3);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

.btn-ink {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.btn-ink:hover { background: var(--ink2); transform: translateY(-2px); }

/* ═══════════════════════════
   TICKER
═══════════════════════════ */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: tick 34s linear infinite;
}
.ticker-inner span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 30px;
}
.ticker-inner span::before { content: '◆'; margin-right: 30px; opacity: 0.38; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════
   TWO-COL LAYOUT
═══════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.top { align-items: start; }

/* ═══════════════════════════
   PRODUCT CARDS
═══════════════════════════ */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.prod-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.38s;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.13);
}
.prod-card-vis {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 86px;
  position: relative;
  overflow: hidden;
}
.prod-card-vis::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17,18,23,0.3));
}
.prod-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--ink);
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.prod-body { padding: 24px 22px 26px; }
.prod-cat { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.prod-name { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.prod-desc { font-size: 13.5px; line-height: 1.72; color: var(--muted); margin-bottom: 16px; }
.prod-more { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s; }
.prod-more:hover { gap: 10px; }

/* ═══════════════════════════
   FEATURE CARDS
═══════════════════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card {
  padding: 38px 30px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.36s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 14px 38px rgba(0,0,0,0.11); }
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon { font-size: 42px; margin-bottom: 20px; display: block; }
.feat-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.feat-desc { font-size: 14px; line-height: 1.72; color: var(--muted); }

/* ═══════════════════════════
   CHECKLIST
═══════════════════════════ */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.check-item {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 18px;
  border-radius: var(--radius);
  transition: all 0.28s;
}
.check-item.dark {
  background: rgba(249,245,238,0.04);
  border: 1px solid rgba(249,245,238,0.09);
}
.check-item.dark:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); transform: translateX(5px); }
.check-item.light-bg {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
}
.check-item.light-bg:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.check-tick {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.check-txt-dark  { font-size: 13px; font-weight: 600; color: rgba(249,245,238,0.88); }
.check-txt-light { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ═══════════════════════════
   STATS BAR
═══════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); background: var(--ink2); }
.stat {
  padding: 44px 24px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--ink3); }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-s { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--gold2); }
.stat-l { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(249,245,238,0.4); margin-top: 8px; }

/* ═══════════════════════════
   INFO CARD (Contact)
═══════════════════════════ */
.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 26px; background: var(--white);
  border: 1px solid rgba(201,168,76,0.18); border-radius: 9px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: all 0.3s; text-decoration: none; margin-bottom: 14px;
}
.info-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.info-icon {
  width: 50px; height: 50px; border-radius: 9px;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.info-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--light); margin-bottom: 5px; }
.info-val { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.6; }

/* ═══════════════════════════
   BRANCH CARDS
═══════════════════════════ */
.branch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.branch-card {
  background: var(--white);
  border-radius: 10px; padding: 40px 34px;
  border: 1px solid rgba(201,168,76,0.16);
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  position: relative; overflow: hidden; transition: all 0.36s;
}
.branch-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.branch-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.branch-no { position: absolute; bottom: 12px; right: 20px; font-family: 'Cormorant Garamond', serif; font-size: 100px; font-weight: 700; color: rgba(201,168,76,0.055); line-height: 1; pointer-events: none; }
.branch-tag { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.branch-name { font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.branch-addr { font-size: 14px; line-height: 1.8; color: var(--muted); }
.branch-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.22s; }
.branch-link:hover { gap: 10px; }

/* ═══════════════════════════
   PROFILE ROWS
═══════════════════════════ */
.prof-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 24px; margin-bottom: 12px;
  background: rgba(249,245,238,0.04);
  border: 1px solid rgba(249,245,238,0.09);
  border-radius: var(--radius); transition: all 0.28s;
}
.prof-row:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }
.prof-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.prof-lbl { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.prof-val { font-size: 14px; color: rgba(249,245,238,0.78); line-height: 1.55; }

/* ═══════════════════════════
   CTA BAND
═══════════════════════════ */
.cta-band {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 50%, var(--gold) 100%);
  padding: 64px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 32px, rgba(255,255,255,0.042) 32px, rgba(255,255,255,0.042) 33px);
}
.cta-band-txt { position: relative; z-index: 2; }
.cta-band-txt h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,4vw,46px); font-weight: 700; color: var(--ink); line-height: 1.08; margin-bottom: 8px; }
.cta-band-txt p { font-size: 14px; color: rgba(17,18,23,0.66); max-width: 440px; line-height: 1.68; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
footer {
  background: var(--ink);
  padding: 72px 80px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px; padding-bottom: 56px; }
.f-brand-name { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 600; color: var(--gold); margin-bottom: 5px; letter-spacing: 0.5px; }
.f-brand-sub { font-size: 8px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(249,245,238,0.28); margin-bottom: 18px; }
.f-about { font-size: 13px; line-height: 1.8; color: rgba(249,245,238,0.42); max-width: 240px; }
.f-col-title { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a { font-size: 13px; color: rgba(249,245,238,0.44); text-decoration: none; transition: color 0.22s; }
.f-links a:hover { color: var(--gold); }
.f-contact-item { font-size: 12.5px; color: rgba(249,245,238,0.42); line-height: 1.72; margin-bottom: 12px; }
.f-contact-item strong { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(249,245,238,0.7); margin-bottom: 3px; }
.footer-bot {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 11px; color: rgba(249,245,238,0.2); letter-spacing: 0.8px; }
.footer-bot-links { display: flex; gap: 22px; }
.footer-bot-links a { font-size: 11px; color: rgba(249,245,238,0.25); text-decoration: none; transition: color 0.22s; }
.footer-bot-links a:hover { color: var(--gold); }

/* Floating CTA */
.float-btn {
  position: fixed; bottom: 26px; right: 26px; z-index: 9990;
  background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 22px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 26px rgba(201,168,76,0.55);
  display: inline-flex; align-items: center; gap: 7px;
  animation: fglow 3s ease-in-out infinite;
  transition: all 0.3s;
}
.float-btn:hover { background: var(--gold2); transform: translateY(-3px) scale(1.03); }
@keyframes fglow {
  0%,100% { box-shadow: 0 6px 26px rgba(201,168,76,0.55); }
  50%      { box-shadow: 0 8px 36px rgba(201,168,76,0.75); }
}

/* ═══════════════════════════
   ANIMATIONS
═══════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .feat-grid  { grid-template-columns: 1fr 1fr; }
  .prod-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-ham   { display: flex; }

  .page-hero { padding: 115px 22px 64px; }
  .sec       { padding: 60px 22px; }

  .two-col      { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid    { grid-template-columns: 1fr; }
  .prod-grid    { grid-template-columns: 1fr; }
  .check-grid   { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: 1fr 1fr; }
  .branch-grid  { grid-template-columns: 1fr; }
  .cta-band     { padding: 48px 22px; flex-direction: column; }
  footer        { padding: 52px 22px 0; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .f-about      { max-width: 100%; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}
