/* ===========================
   Cozy Haven Theme • Vastu Shastra for Home
   Warm • Comfortable • Home-like
   Complete style.css
   =========================== */
:root{
  /* Core palette – warm neutrals + soft sage */
  --ink:#241a14;           /* main text – soft deep brown */
  --muted:#6b5c52;         /* muted text */
  --bg:#fbf5ef;            /* warm cream background */
  --panel:#fffaf5;         /* card/surfaces */
  --line:#e6d8cc;          /* subtle divider */

  /* Accents: sage, terracotta, soft gold */
  --primary:#3b7a5b;       /* sage green */
  --primary-700:#285240;   /* deeper sage */
  --primary-ink:#f3faf7;   /* text on primary */

  --accent:#d97757;        /* terracotta accent */
  --accent-600:#b4532a;

  --call:#16a34a;          /* CTA green */
  --wa:#25D366;            /* WhatsApp */

  --chip:#fef3c7;          /* soft wheat chip */
  --ok:#ecfdf5;            /* success bg */
  --ok-line:#bbf7d0;
  --err:#fef2f2;           /* error bg */
  --err-line:#fecaca;

  --shadow:0 18px 40px rgba(120,53,15,.14), 0 4px 10px rgba(15,23,42,.06);
  --ring:0 0 0 4px rgba(59,122,91,.26);
}

/* ===========================
   Base
   =========================== */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font:16px/1.7 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  color:var(--ink);
  /* Background: soft walls + rug pattern + warm window light */
  background:
    /* top-left warm sunlight */
    radial-gradient(1200px 580px at -20% -10%, rgba(254,243,199,0.75) 0%, rgba(254,243,199,0) 58%),
    /* top-right evening glow */
    radial-gradient(900px 460px at 115% -5%, rgba(252,165,165,0.55) 0%, rgba(252,165,165,0) 60%),
    /* bottom center rug warmth */
    radial-gradient(1500px 900px at 50% 120%, rgba(254,226,200,0.85) 0%, rgba(254,226,200,0) 65%),
    /* diagonal cozy wash */
    linear-gradient(135deg,
      rgba(68,64,60,0.12) 0,
      rgba(59,122,91,0.12) 40%,
      rgba(217,119,87,0.10) 80%,
      rgba(120,53,15,0.14) 100%),
    /* subtle woven pattern (like fabric/walls) */
    linear-gradient(90deg,
      rgba(226,211,197,0.4) 1px,
      transparent 1px),
    linear-gradient(0deg,
      rgba(226,211,197,0.4) 1px,
      transparent 1px),
    var(--bg);
  background-size:auto,auto,auto,auto,22px 22px,22px 22px,auto;
  background-blend-mode:soft-light,soft-light,soft-light,normal,soft-light,soft-light,normal;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{
  color:var(--primary);
  text-decoration:none;
  transition:color .15s ease, opacity .15s ease;
}
a:hover{color:var(--accent-600);opacity:.96}
img{max-width:100%;display:block}
:focus-visible{outline:none;box-shadow:var(--ring);border-radius:10px}

/* ===========================
   Buttons & Utilities
   =========================== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 16px;border-radius:999px;border:1px solid transparent;
  cursor:pointer;font-weight:600;letter-spacing:.22px;
  transition:transform .06s ease, opacity .2s ease, box-shadow .2s ease,
             background .2s ease, border-color .2s ease, color .2s ease;
  user-select:none;-webkit-user-select:none;
  background:var(--panel);border:1px solid var(--line);color:var(--ink);
  box-shadow:0 3px 8px rgba(15,23,42,.05);
}
.btn:hover{box-shadow:var(--shadow);transform:translateY(-1px)}
.btn:active{transform:translateY(0);box-shadow:0 2px 4px rgba(87,51,27,.16)}
.btn svg{width:18px;height:18px}

/* Primary – sage green CTA */
.btn--primary{
  background:linear-gradient(180deg, var(--primary), var(--primary-700));
  color:var(--primary-ink);border-color:#0000;
  text-shadow:0 1px 0 rgba(15,23,42,.28);
}
.btn--ghost{
  background:rgba(255,250,245,0.98);
  border:1px solid var(--line);
  color:var(--ink);
}
.btn--small{
  padding:7px 12px;border-radius:999px;
  font-size:14px;border:1px solid var(--line);
}
.btn--call{background:var(--call);color:#ecfdf5;border-color:#0000}
.btn--wa{background:var(--wa);color:#ecfdf3;border-color:#15803d}

/* Terracotta secondary CTA */
.btn--accent{
  background:linear-gradient(180deg, var(--accent), var(--accent-600));
  color:#fff7ed;border-color:#0000;
}

.chip{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--chip);border:1px solid #facc15;border-radius:999px;
  padding:6px 12px;font-size:13px;color:#92400e;
}

.muted{color:var(--muted)}
.elevate{box-shadow:var(--shadow);background:var(--panel);border-radius:20px}

/* ===========================
   Layout Containers
   =========================== */
.page{max-width:1200px;margin:0 auto;padding:16px}
.contain{max-width:1200px;margin:0 auto;padding:0 16px}

/* Flash messages */
.flash{
  margin:12px 0;padding:12px 14px;border-radius:14px;
  border:1px solid transparent;
}
.flash--ok{background:var(--ok);border-color:var(--ok-line)}
.flash--err{background:var(--err);border-color:var(--err-line)}

/* ===========================
   Header (Two Rows)
   =========================== */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(251,245,239,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(135%) blur(14px);
}
.topbar{border-bottom:1px solid var(--line)}
.topbar__inner{
  max-width:1200px;margin:0 auto;padding:10px 16px;
  display:flex;align-items:center;gap:12px;
}
.logo img{
  display:block;height:auto;max-height:56px;width:auto;
  filter:drop-shadow(0 2px 5px rgba(120,53,15,.35));
}
.topbar__cta{display:flex;gap:10px;margin-left:auto}
.menu-toggle{
  display:none;margin-left:8px;border:1px solid var(--line);
  background:rgba(255,250,245,.96);border-radius:999px;padding:10px 12px;
}

/* Navbar – soft shelf bar (like wooden console) */
.navbar{
  background:
    linear-gradient(90deg,
      #b4532a 0 22%,
      #facc15 22% 36%,
      #3b7a5b 36% 100%);
  background-size:100% 3px;
  background-repeat:no-repeat;
  background-position:bottom center;
}
.navbar__list{
  max-width:1200px;margin:0 auto;padding:10px 16px 12px;
  display:flex;gap:8px;list-style:none;flex-wrap:wrap;
}
.navbar__list a{
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(230,216,204,.96);
  color:#3f2a1a;
  background:
    radial-gradient(circle at top left,rgba(255,255,255,1) 0,transparent 60%),
    linear-gradient(180deg,#fffaf5,#f5ebe2);
  box-shadow:0 3px 8px rgba(148,119,93,.18);
}
.navbar__list a:hover{
  border-color:var(--accent);
  background:
    radial-gradient(circle at top right,rgba(254,243,199,.65) 0,transparent 55%),
    linear-gradient(180deg,#fff7ed,#fef3c7);
}
.navbar__list a.active,
.navbar__list a[aria-current="page"]{
  background:linear-gradient(120deg,#3b7a5b,#b4532a);
  color:#fff7ed;
  border-color:#285240;
  box-shadow:0 10px 26px rgba(120,53,15,.55);
}

/* ===========================
   Hero / Banners
   =========================== */
.hero{
  position:relative;border:1px solid var(--line);
  border-radius:26px;overflow:hidden;margin:16px 0 26px;
  background:
    radial-gradient(circle at 0 0,#fef3c7 0,transparent 60%),
    radial-gradient(circle at 100% 35%,#fed7aa 0,transparent 55%),
    radial-gradient(circle at 0 100%,#dcfce7 0,transparent 55%),
    linear-gradient(135deg,#fffaf5,#f5ebe2);
  box-shadow:var(--shadow);
}
.hero__img{
  width:100%;height:300px;object-fit:cover;
  /* Stylised living room silhouette: sofa, rug, and wall */
  background:
    /* floor rug */
    radial-gradient(1200px 400px at 50% 110%, rgba(120,53,15,0.85) 0, transparent 60%),
    /* sofa base */
    linear-gradient(to right,
      transparent 8% 18%,
      rgba(180,101,70,0.90) 18% 82%,
      transparent 82% 92%),
    linear-gradient(to top,
      rgba(180,101,70,0.90) 45% 63%,
      transparent 63% 100%),
    /* back cushions */
    linear-gradient(to right,
      transparent 20% 30%,
      rgba(254,249,195,0.96) 30% 44%,
      rgba(254,226,200,0.96) 44% 60%,
      rgba(254,249,195,0.96) 60% 74%,
      transparent 74% 80%),
    linear-gradient(to top,
      rgba(254,249,195,0.96) 63% 80%,
      transparent 80% 100%),
    /* wall art frames */
    linear-gradient(to right,
      transparent 22% 30%,
      rgba(248,250,252,0.95) 30% 38%,
      transparent 38% 60%,
      rgba(248,250,252,0.95) 60% 68%,
      transparent 68% 80%),
    linear-gradient(to top,
      rgba(148,119,93,0.30) 78% 82%,
      transparent 82% 100%),
    /* wall background */
    linear-gradient(180deg,#fef3c7 0,#fde0c3 40%,#fefce8 100%);
}
.hero__overlay{
  position:absolute;inset:auto 0 0 0;
  background:linear-gradient(180deg,rgba(120,53,15,0) 0,rgba(68,36,20,.94) 100%);
  color:#fefce8;padding:20px 18px;
}
.hero__overlay h1{
  margin:0;font-size:30px;letter-spacing:.22px;
  text-shadow:0 1px 0 rgba(68,36,20,.9);
}

/* ===========================
   Cards / Grids
   =========================== */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
}
.card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px 18px;
  background:
    radial-gradient(circle at top left,rgba(254,243,199,.90) 0,transparent 55%),
    radial-gradient(circle at bottom right,rgba(254,226,200,.85) 0,transparent 55%),
    linear-gradient(180deg,#fffaf5,#f6eee7);
  transition:transform .12s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:var(--primary);
  background:
    radial-gradient(circle at top right,rgba(217,249,157,.40) 0,transparent 60%),
    radial-gradient(circle at bottom left,rgba(56,189,248,.20) 0,transparent 55%),
    linear-gradient(180deg,#fffaf5,#fef3c7);
}
.card h1,.card h2,.card h3{margin:0 0 8px}
.card p{margin:0 0 12px}

.section-head{margin-bottom:12px}
.section-head .muted{color:var(--muted)}

.meta{
  display:flex;gap:10px;margin-top:10px;flex-wrap:wrap;
}
.tag{
  background:#fef3c7;
  border:1px solid #facc15;
  border-radius:999px;
  padding:6px 12px;
  font-size:13px;
  color:#7c2d12;
}

/* ===========================
   Pagination
   =========================== */
.pager{
  display:flex;flex-wrap:wrap;gap:8px;
  margin:18px 0;align-items:center;
}
.pg{
  padding:9px 13px;border:1px solid var(--line);
  border-radius:999px;background:rgba(255,250,245,.97);
  transition:background .15s ease,color .15s ease,border-color .15s ease,
             box-shadow .15s ease,transform .08s ease;
  box-shadow:0 3px 8px rgba(148,119,93,.12);
}
.pg:hover{
  background:#fef3c7;border-color:var(--accent);
  box-shadow:var(--shadow);
  transform:translateY(-1px);
}
.pg.active{
  background:linear-gradient(120deg,#3b7a5b,#b4532a);
  color:#fff7ed;
  border-color:#285240;
}
.pg.disabled{opacity:.45;pointer-events:none}
.dots{padding:8px 6px;color:var(--muted)}

/* ===========================
   Footer
   =========================== */
.site-footer{
  margin-top:28px;border-top:1px solid var(--line);
  background:
    radial-gradient(circle at top,#451a03 0,transparent 60%),
    linear-gradient(180deg,#451a03,#1f1309);
  color:#f9fafb;
}
.footer__grid{
  max-width:1200px;
  margin:0 auto;
  padding:22px 16px;
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.footer__block h3{
  margin:0 0 10px;
  color:#fef3c7;
}
.list{
  list-style:none;margin:0;padding:0;
  display:grid;gap:8px;
}
.footer__cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:12px}
.footer__bottom{
  border-top:1px solid #78350f;padding:14px 16px;text-align:center;
  color:#fbbf77;font-size:14px;
  background:linear-gradient(90deg,#78350f 0 40%,#b4532a 40% 70%,#3b7a5b 70% 100%);
}

/* Footer: socials + quick links */
.socials-block{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-quick-links{
  margin-top:6px;
  font-size:14px;
  color:#fed7aa;
  line-height:1.5;
}
.footer-quick-links a{
  color:#bfdbfe;
  text-decoration:none;
  white-space:nowrap;
}
.footer-quick-links a:hover{
  text-decoration:underline;
}

/* ===========================
   Contact Form
   =========================== */
.contact-form{position:relative}
.contact-form .row{display:grid;gap:12px;margin-bottom:12px}
.contact-form .row--two{grid-template-columns:repeat(2,minmax(0,1fr))}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;padding:12px 12px;
  border:1px solid var(--line);border-radius:14px;
  font:inherit;background:rgba(255,250,245,.98);
  transition:border-color .15s ease,box-shadow .15s ease,
            background .15s ease,transform .05s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;border-color:var(--primary);box-shadow:var(--ring);
}
.contact-form textarea{min-height:120px;resize:vertical}

/* Custom SELECT with chevron */
.contact-form select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  padding-right:44px;
  background:
    rgba(255,250,245,.98)
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b5c52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<polyline points='6 9 12 15 18 9'/></svg>")
    no-repeat right 12px center / 18px 18px;
}
.contact-form select::-ms-expand{display:none}
.contact-form .hp{
  position:absolute;left:-10000px;top:auto;
  width:1px;height:1px;overflow:hidden;
}
.contact-form .row--two > *{min-width:0}

/* ===========================
   Mobile Fixed CTA
   =========================== */
.mobile-cta{
  position:fixed;left:0;right:0;bottom:0;display:none;
  z-index:9999;background:rgba(46,24,12,.96);
  backdrop-filter:saturate(120%) blur(6px);
  border-top:1px solid #451a03;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow:0 -6px 18px rgba(0,0,0,.6);
}
.mobile-cta .mcta-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:49%;height:48px;margin:0;padding:0 14px;
  border-radius:999px;font-weight:800;border:0;text-align:center;
}
.mobile-cta .mcta-call{background:var(--call);color:#ecfdf5}
.mobile-cta .mcta-wa{background:var(--wa);color:#ecfdf3}

/* ===========================
   Subtle Animations
   =========================== */
a, .btn, .card, .pg{
  transition:transform .1s ease,background .15s ease,
             color .15s ease,border-color .15s ease,box-shadow .15s ease;
}
@media (prefers-reduced-motion: reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}

/* ===========================
   Videos
   =========================== */
.videos{margin:22px 0}
.videos h2{margin:0 0 12px;color:var(--ink)}
.video-grid{
  display:grid;gap:14px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.video{
  position:relative;padding-top:56.25%;
  border-radius:18px;overflow:hidden;
  border:1px solid var(--line);background:#1c1917;
  box-shadow:var(--shadow);
}
.video iframe{
  position:absolute;inset:0;width:100%;height:100%;border:0;
}

/* ===========================
   Socials Icons
   =========================== */
.socials{
  display:flex;gap:12px;flex-wrap:wrap;align-items:center;
}
.socials .social{
  width:42px;height:42px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--line);border-radius:14px;
  background:rgba(255,250,245,.98);box-shadow:var(--shadow);
}
.socials .social svg{width:20px;height:20px;fill:var(--primary)}

/* ===========================
   Optional Dark Mode (Cozy Night)
   =========================== */
.dark{
  --ink:#f9fafb;
  --muted:#d6d3d1;
  --bg:#111827;
  --panel:#1c1917;
  --line:#3f2a1e;
  --chip:#78350f;
  --primary:#4ade80;
  --primary-700:#16a34a;
  --primary-ink:#022c22;
  --accent:#fb923c;
  --accent-600:#ea580c;
  --shadow:0 20px 40px rgba(0,0,0,.9), 0 3px 10px rgba(0,0,0,.75);
  --ring:0 0 0 4px rgba(74,222,128,.30);
  background:#111827;
}
.dark body{
  background:
    radial-gradient(1100px 520px at -10% -15%, #020617 0%, rgba(2,6,23,0) 55%),
    radial-gradient(900px 420px at 110% 0%, #111827 0%, rgba(15,23,42,0) 55%),
    linear-gradient(145deg,
      rgba(15,23,42,0.85) 0,
      rgba(30,64,175,0.55) 35%,
      rgba(234,179,8,0.45) 70%,
      rgba(0,0,0,1) 100%),
    #020617;
  background-size:auto,auto,26px 26px,auto;
}
.dark .site-header{
  background:rgba(24,20,18,.96);
  border-color:var(--line);
}
.dark .navbar{
  background:#111827;
}
.dark .navbar__list a{
  color:#f9fafb;
  background:linear-gradient(180deg,#111827,#111827);
  border-color:#3f2a1e;
}
.dark .navbar__list a:hover{
  border-color:#4ade80;
}
.dark .navbar__list a.active{
  background:linear-gradient(120deg,#4ade80,#fb923c);
  color:#111827;border-color:#4ade80;
}
.dark .pg:hover{background:#111827}
.dark .hero{
  background:radial-gradient(circle at top left,#1c1917 0,#111827 60%);
}
.dark .hero__overlay{
  background:linear-gradient(180deg,rgba(15,23,42,0) 0,rgba(0,0,0,.98) 100%);
}

/* ===========================
   Contact Box & Buttons
   =========================== */

.contact-box{
  margin:24px 0;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid #e6d8cc;
  background:linear-gradient(180deg,#fffaf5,#f5ebe2);
  box-shadow:0 12px 32px rgba(120,53,15,0.22);
  color:var(--ink);
}
.contact-box__title{
  margin:0 0 8px;
  font-size:1.1rem;
  font-weight:700;
  color:var(--ink);
}
.contact-box p{
  margin:6px 0;
  font-size:0.95rem;
  color:#5f4b3e;
}
.contact-box__note{
  margin-top:10px;
  font-size:0.88rem;
  color:#7c6b60;
}

/* Variants */
.contact-box--mini{
  background:#fef3c7;
  border-color:#facc15;
}
.contact-box--full{
  background:#1c1917;
  border-color:#3f2a1e;
  color:#fef3c7;
}
.contact-box--full .contact-box__title{color:#ffedd5}
.contact-box--full p{color:#e7e5e4}

/* Action & social rows */
.kb-contact-actions,
.kb-contact-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 6px;
}
.kb-contact-socials{gap:8px}

/* Useful links list */
.kb-contact-links{
  list-style:none;
  padding-left:0;
  margin:6px 0 0;
}
.kb-contact-links li{margin:2px 0}
.kb-contact-links a{
  font-size:0.9rem;
  text-decoration:none;
  color:var(--primary);
}
.kb-contact-links a:hover{text-decoration:underline}
.contact-box--full .kb-contact-links a{color:#bbf7d0}
.kb-contact-links-label{
  margin-top:10px;
  font-size:0.9rem;
}

/* Core kb button */
.kb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:8px 14px;
  font-size:0.9rem;
  font-weight:700;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(120,53,15,0.30);
  transition:transform 0.08s ease,box-shadow 0.12s ease,
             background-color 0.12s ease,color 0.12s ease;
}
.kb-btn__icon{
  width:18px;height:18px;flex-shrink:0;
}
.kb-btn__label{white-space:nowrap}

/* Primary actions */
.kb-btn-call{
  background:var(--call);
  color:#ecfdf5;
  border-color:var(--call);
}
.kb-btn-wa{
  background:var(--wa);
  color:#ecfdf3;
  border-color:#15803d;
}
.kb-btn-email{
  background:var(--primary);
  color:#f3faf7;
  border-color:var(--primary-700);
}

/* Social buttons */
.kb-btn-social{
  background:#f9fafb;
  color:var(--ink);
  border-color:#e6d8cc;
}
.contact-box--full .kb-btn-social{
  background:rgba(15,23,42,0.9);
  color:#fef3c7;
  border-color:rgba(148,119,93,0.7);
}

/* Hover / active */
.kb-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 28px rgba(120,53,15,0.38);
}
.kb-btn:active{
  transform:translateY(0);
  box-shadow:none;
}

/* Small responsive tweak */
@media (max-width:640px){
  .kb-btn{
    width:100%;
    justify-content:center;
  }
  .kb-contact-actions,
  .kb-contact-socials{
    flex-direction:column;
    gap:8px;
  }
}

/* ===========================
   Generic Vastu Highlight Cards
   =========================== */

.vk-card{
  position:relative;
  margin:1.5rem 0;
  padding:1.5rem 1.75rem;
  border-radius:20px;
  background:#f5ebe2;
  border:1px solid rgba(230,216,204,0.95);
  box-shadow:0 18px 40px rgba(148,119,93,0.22);
  overflow:hidden;
}
.vk-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at top left,rgba(254,243,199,0.60),transparent 60%);
  opacity:0.9;
}

/* Online guidance card */
.vk-card--online{
  background:linear-gradient(135deg,#fef9c3 0%,#fffaf5 100%);
  border-color:rgba(250,204,21,0.60);
}
.vk-card--online::before{
  background:radial-gradient(circle at top right,rgba(250,204,21,0.40),transparent 60%);
}

/* On-site home visit card */
.vk-card--onsite{
  background:linear-gradient(135deg,#fed7aa 0%,#fffaf5 100%);
  border-color:rgba(234,179,8,0.65);
}
.vk-card--onsite::before{
  background:radial-gradient(circle at top left,rgba(234,179,8,0.42),transparent 60%);
}

/* Extra highlight card */
.vk-card--highlight{
  background:#dcfce7;
  border-color:#4ade80;
}
.vk-card--highlight::before{
  background:radial-gradient(circle at top center,rgba(74,222,128,0.40),transparent 60%);
}

.vk-card h2,
.vk-card h3{
  margin-top:0;
}
.vk-card p:last-child{margin-bottom:0}

/* ===========================
   Promo CTA Blocks with Contact Button
   =========================== */

.vk-promo-cta{
  margin:2.5rem 0;
  padding:1.75rem 1.75rem 1.9rem;
  border-radius:22px;
  background:linear-gradient(135deg,
    #451a03 0%,
    #b4532a 28%,
    #f59e0b 52%,
    #3b7a5b 85%);
  color:#fef9c3;
  text-align:center;
  box-shadow:0 24px 60px rgba(67,20,7,0.85);
}
.vk-promo-cta h2{
  margin:0 0 0.75rem;
  font-size:1.35rem;
  line-height:1.35;
  font-weight:700;
}
.vk-promo-cta p{
  margin:0 0 1.25rem;
  font-size:0.98rem;
  line-height:1.55;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
}

/* Promo button */
.vk-promo-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.4rem;
  padding:0.75rem 1.75rem;
  border-radius:999px;
  background-color:#fef3c7;
  color:#7c2d12;
  font-weight:600;
  font-size:0.98rem;
  text-decoration:none;
  box-shadow:0 12px 34px rgba(67,20,7,0.65);
  transition:transform 0.12s ease,box-shadow 0.12s ease,
             background-color 0.12s ease,color 0.12s ease;
  border:none;
}
.vk-promo-cta__btn:hover,
.vk-promo-cta__btn:focus-visible{
  transform:translateY(-1px);
  box-shadow:0 18px 46px rgba(67,20,7,0.85);
  background-color:#fde68a;
  color:#451a03;
}
.vk-promo-cta__btn:active{
  transform:translateY(0);
  box-shadow:0 12px 30px rgba(67,20,7,0.70);
}

/* ===========================
   Responsive Tweaks
   =========================== */
@media (max-width:900px){
  .topbar__inner{gap:10px}
  .topbar__cta{order:3;width:100%;justify-content:flex-end}
  .menu-toggle{display:inline-flex}
  .navbar{display:none;background:#1c1917}
  .navbar.open{display:block}
  .navbar__list{flex-direction:column}
  .logo img{max-height:48px}
  .hero__img{height:230px}

  .mobile-cta{display:flex;gap:2%}
  body{padding-bottom:80px}
}

@media (max-width:700px){
  .contact-form .row--two{grid-template-columns:1fr}
}

@media (max-width:640px){
  .vk-card{
    padding:1.25rem 1.25rem;
    border-radius:16px;
  }
  .vk-promo-cta{
    margin:2rem 0;
    padding:1.5rem 1.25rem 1.65rem;
    border-radius:18px;
  }
  .vk-promo-cta h2{font-size:1.15rem}
  .vk-promo-cta__btn{
    width:100%;
    max-width:320px;
  }
}


/* ===========================
   Breadcrumbs
   =========================== */
.breadcrumbs{
  max-width: 1100px;
  margin: 14px auto 0;
  padding: 0 14px;
}
.breadcrumbs ol{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:0;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs li{ display:flex; align-items:center; gap:8px; }
.breadcrumbs li+li:before{
  content:"›";
  opacity:.6;
}
.breadcrumbs a{
  color: var(--muted);
  text-decoration:none;
}
.breadcrumbs a:hover{ text-decoration:underline; }
.breadcrumbs [aria-current="page"] span{ color: var(--ink); font-weight:600; }

/* ===========================
   Homepage CTA + Details + FAQ
   =========================== */
.home-cta{ margin-top: 18px; }
.cta-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cta-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.cta-card h2{ font-size: 18px; margin: 0 0 8px; }
.cta-card p{ margin: 0 0 12px; color: var(--muted); }
.cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.home-details{ margin-top: 18px; }
.details-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.details-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.details-card h3{ margin:0 0 10px; font-size: 16px; }
.bullets{ margin:0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin: 6px 0; }
.steps{ margin:0; padding-left: 18px; color: var(--muted); }
.steps li{ margin: 6px 0; }

.home-faq{ margin-top: 18px; }
.faq-list{ display:grid; gap: 10px; margin-top: 10px; }
.faq{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.faq summary{
  cursor:pointer;
  font-weight: 700;
  color: var(--ink);
}
.faq__a{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 980px){
  .cta-grid, .details-grid{ grid-template-columns: 1fr; }
}


/* Place CTA bar */
.place-cta{ margin-top: 10px; }
.cta-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}
