/* ============================================================
   New Kitchens of {{CITY}} — kitchen remodeling site
   Light theme · copper accent · Poppins + Inter
   ============================================================ */

:root {
  --accent: #c67c39;
  --accent-dark: #a9652b;
  --tan: #e9d4be;
  --tan-soft: #f5ece2;
  --ink: #1f1f1f;
  --ink-soft: #555150;
  --line: #e6e4e1;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --bg-dark: #1c1b1a;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 18px 40px -24px rgba(31, 31, 31, 0.35);
  --shadow-sm: 0 10px 24px -18px rgba(31, 31, 31, 0.4);
  --maxw: 1200px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

img, iframe, video { max-width: 100%; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #f3f1ee; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: .25s ease; white-space: nowrap;
}
.btn i { font-size: 13px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--tan-soft); }

/* ---------- Header ---------- */
.topbar {
  background: var(--bg-dark); color: #d9d6d2; font-size: 13.5px;
  font-family: var(--font-head); font-weight: 300;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 10px; padding-bottom: 10px; }
.topbar a { color: #d9d6d2; transition: .2s; }
.topbar a:hover { color: var(--accent); }
.topbar .topbar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar .topbar-info span i { color: var(--accent); margin-right: 7px; }
.topbar .topbar-social { display: flex; gap: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--ink); }
.brand .brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-size: 18px;
}
.brand small { display: block; font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.brand .brand-name { line-height: 1.1; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > li > a {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink);
  border-radius: 100px; transition: .2s;
}
.nav > li > a:hover, .nav > li.current > a { color: var(--accent); }
.nav .has-drop { position: relative; }
.nav .has-drop > a i { font-size: 11px; transition: .25s; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 256px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s;
}
.nav .has-drop:hover .dropdown,
.nav .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .has-drop:hover > a i { transform: rotate(180deg); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px;
  font-size: 14.5px; color: var(--ink); transition: .18s;
}
.dropdown a i { color: var(--accent); width: 18px; text-align: center; }
.dropdown a:hover { background: var(--tan-soft); color: var(--accent-dark); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--ink); cursor: pointer; position: relative; z-index: 80; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--bg-alt); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 84px; }
.hero h1 { font-size: clamp(34px, 5vw, 60px); letter-spacing: -.02em; }
.hero p.lead { color: var(--ink-soft); font-size: 18px; margin: 22px 0 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 42px; }
.hero-stats .num { font-family: var(--font-head); font-weight: 600; font-size: 30px; color: var(--ink); }
.hero-stats .lbl { font-size: 13.5px; color: var(--ink-soft); }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 560px; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; background: #fff; border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero-badge .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--tan-soft); color: var(--accent); display: grid; place-items: center; font-size: 18px; }
.hero-badge strong { font-family: var(--font-head); display: block; font-size: 15px; }
.hero-badge span { font-size: 12.5px; color: var(--ink-soft); }

/* page hero (inner pages) */
.page-hero { background: var(--bg-dark); color: #fff; padding: 84px 0 76px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 50px); }
.page-hero .crumbs { margin-top: 16px; font-size: 14.5px; color: #c7c3bd; font-family: var(--font-head); }
.page-hero .crumbs a:hover { color: var(--accent); }
.page-hero .crumbs i { font-size: 10px; margin: 0 10px; color: var(--accent); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); width: 100%; height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.about-media .exp-badge {
  position: absolute; right: -18px; bottom: -18px; background: var(--accent); color: #fff;
  border-radius: 18px; padding: 22px 26px; text-align: center; box-shadow: var(--shadow);
}
.about-media .exp-badge b { font-family: var(--font-head); font-size: 34px; display: block; line-height: 1; }
.about-media .exp-badge span { font-size: 13px; }
.about-body h2 { font-size: clamp(26px, 3.6vw, 40px); }
.about-body p { color: var(--ink-soft); margin-top: 18px; font-size: 16.5px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin: 26px 0 30px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; font-family: var(--font-head); font-size: 15px; }
.about-points li i { color: var(--accent); margin-top: 3px; }

/* ---------- Cards grid (services) ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.s-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: .28s; box-shadow: var(--shadow-sm);
}
.s-card:hover { transform: translateY(-6px); border-color: var(--tan); }
.s-card .s-img { height: 190px; overflow: hidden; }
.s-card .s-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.s-card:hover .s-img img { transform: scale(1.06); }
.s-card .s-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.s-card .s-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--tan-soft); color: var(--accent); display: grid; place-items: center; font-size: 19px; margin: -50px 0 16px; position: relative; border: 4px solid #fff; }
.s-card h3 { font-size: 19px; }
.s-card p { color: var(--ink-soft); font-size: 14.5px; margin: 10px 0 18px; flex: 1; }
.s-card .s-link { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; }
.s-card .s-link i { transition: .25s; }
.s-card:hover .s-link i { transform: translateX(4px); }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { display: grid; gap: 22px; }
.why-item { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.why-item .ico { flex: none; width: 54px; height: 54px; border-radius: 14px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 22px; }
.why-item h3 { font-size: 18px; }
.why-item p { color: var(--ink-soft); font-size: 14.5px; margin-top: 6px; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); height: 520px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.stat-float {
  position: absolute; left: -18px; top: 36px; background: #fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow); text-align: center;
}
.stat-float b { font-family: var(--font-head); font-size: 30px; color: var(--accent); display: block; }
.stat-float span { font-size: 13px; color: var(--ink-soft); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { text-align: center; padding: 30px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm); }
.section--alt .step { background: #fff; }
.step .num { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--tan-soft); color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 20px; display: grid; place-items: center; }
.step h3 { font-size: 18px; }
.step p { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery a { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.gallery img { width: 100%; height: 280px; object-fit: cover; transition: .5s; }
.gallery a:hover img { transform: scale(1.07); }
.gallery a::after { content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 26px; background: rgba(31,31,31,.35); opacity: 0; transition: .3s; }
.gallery a:hover::after { opacity: 1; }
.gallery .wide { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.t-card .quote { font-size: 40px; font-family: Georgia, serif; color: var(--tan); line-height: .6; }
.t-card .stars { color: var(--accent); margin: 14px 0 12px; font-size: 14px; }
.t-card p { color: var(--ink-soft); font-size: 15px; }
.t-card .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.t-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--tan-soft); color: var(--accent); display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; }
.t-card .who b { font-family: var(--font-head); font-size: 15px; display: block; }
.t-card .who span { font-size: 13px; color: var(--ink-soft); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ba-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ba-card img { width: 100%; height: 420px; object-fit: cover; }
.ba-card .tag { position: absolute; top: 18px; left: 18px; background: rgba(28,27,26,.82); color: #fff; font-family: var(--font-head); font-weight: 500; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; }
.ba-card.after .tag { background: var(--accent); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.b-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .25s; }
.b-card:hover { transform: translateY(-5px); }
.b-card .b-img { height: 200px; overflow: hidden; }
.b-card .b-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.b-card:hover .b-img img { transform: scale(1.06); }
.b-card .b-body { padding: 24px; }
.b-card .b-date { font-family: var(--font-head); font-size: 12.5px; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; }
.b-card h3 { font-size: 18px; margin: 10px 0 14px; }
.b-card .s-link { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--accent); color: #fff; border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); max-width: 640px; }
.cta-strip p { color: rgba(255,255,255,.9); margin-top: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-info .ci { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.contact-info .ci .ico { flex: none; width: 50px; height: 50px; border-radius: 12px; background: var(--tan-soft); color: var(--accent); display: grid; place-items: center; font-size: 19px; }
.contact-info .ci b { font-family: var(--font-head); font-size: 16px; }
.contact-info .ci p { color: var(--ink-soft); font-size: 14.5px; margin-top: 4px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { font-family: var(--font-head); font-size: 13.5px; font-weight: 500; display: block; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; background: var(--bg-alt); color: var(--ink); transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #c4c0bb; padding: 76px 0 0; }
.site-footer .f-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--accent); }
.site-footer p { font-size: 14.5px; margin-top: 18px; color: #a9a49e; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul li a { color: #b6b1ab; font-size: 14.5px; transition: .2s; }
.site-footer ul li a:hover { color: var(--accent); padding-left: 4px; }
.site-footer .f-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; margin-bottom: 14px; }
.site-footer .f-contact li i { color: var(--accent); margin-top: 4px; }
.f-social { display: flex; gap: 12px; margin-top: 22px; }
.f-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); color: #d7d3ce; display: grid; place-items: center; transition: .22s; }
.f-social a:hover { background: var(--accent); color: #fff; }
.f-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13.5px; color: #8f8a84; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.f-bottom a:hover { color: var(--accent); }

/* ---------- Rich text (inner pages) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin: 38px 0 16px; }
.prose h3 { font-size: 21px; margin: 28px 0 12px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.prose ul.ticks { margin: 8px 0 20px; display: grid; gap: 10px; }
.prose ul.ticks li { display: flex; gap: 12px; color: var(--ink-soft); }
.prose ul.ticks li i { color: var(--accent); margin-top: 5px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius-lg); height: 460px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }

/* ---------- Form status ---------- */
.form-status { margin-top: 14px; font-family: var(--font-head); font-size: 14px; font-weight: 500; text-align: center; min-height: 1px; }
.form-status.ok { color: #2e7d4f; }
.form-status.err { color: #c0392b; }

/* ---------- Lightbox modal ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 28px;
  background: rgba(20, 19, 18, .9); backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 86vh; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 30px 70px -20px rgba(0,0,0,.7); object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: none; font-size: 30px; line-height: 1;
  cursor: pointer; transition: .2s; display: grid; place-items: center;
}
.lightbox-close:hover { background: var(--accent); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: none; font-size: 18px; cursor: pointer; transition: .2s;
  display: grid; place-items: center;
}
.lightbox-nav:hover { background: var(--accent); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

/* ============================================================
   RESPONSIVE — large desktop (default) ▸ small desktop ▸ tablet ▸ mobile
   ============================================================ */

/* ----- Small desktop / large tablet (≤1200px) ----- */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-media img, .about-media img, .why-media img { height: 480px; }
}

/* ----- Tablet (≤960px): hamburger nav, stacked layouts ----- */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .nav-toggle { display: block; }
  .header-cta { gap: 10px; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(340px, 88vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 92px 20px 40px; box-shadow: var(--shadow); transform: translateX(100%);
    transition: transform .3s ease; overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; z-index: 55;
  }
  .nav.open { transform: none; }
  .nav > li > a { padding: 14px 16px; font-size: 16px; border-radius: 12px; }
  .nav > li > a:hover { background: var(--tan-soft); }
  .nav .has-drop { position: static; }
  .nav .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--tan); border-radius: 0;
    margin: 2px 0 6px 16px; padding: 0; min-width: 0; display: none;
  }
  .nav .has-drop.open .dropdown { display: block; }
  .nav .has-drop.open > a i { transform: rotate(180deg); }

  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
  .hero-media { order: -1; }
  .hero-media img { height: 380px; }
  .about-grid, .why-grid, .contact-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .about-media img, .why-media img, .split img { height: 420px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .t-grid, .blog-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-card img { height: 360px; }
  .site-footer .f-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip { padding: 44px; }
  .section-head { margin-bottom: 40px; }
}

/* ----- Mobile (≤600px) ----- */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .topbar { display: none; }
  .site-header .container { height: 66px; }
  .brand { font-size: 17px; }
  .brand .brand-mark { width: 38px; height: 38px; }
  .header-cta .btn--primary { display: none; }

  .cards, .steps, .t-grid, .blog-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .wide { grid-column: span 1; }
  .gallery img { height: 240px; }

  .hero-media img { height: 300px; }
  .hero-stats { gap: 22px; flex-wrap: wrap; margin-top: 32px; }
  .hero-stats .num { font-size: 26px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }

  /* keep floating badges inside the viewport */
  .hero-badge { left: 12px; right: 12px; bottom: 14px; padding: 12px 14px; }
  .about-media .exp-badge { right: 10px; bottom: -14px; padding: 16px 18px; }
  .about-media .exp-badge b { font-size: 28px; }
  .why-media .stat-float { left: 10px; top: 10px; padding: 14px 16px; }

  .about-points { grid-template-columns: 1fr; }
  .about-media img, .why-media img, .split img, .ba-card img { height: 320px; }

  .site-footer { padding-top: 56px; }
  .site-footer .f-grid { grid-template-columns: 1fr; gap: 30px; }
  .f-bottom { flex-direction: column; gap: 6px; text-align: center; justify-content: center; }

  .cta-strip { padding: 32px 24px; text-align: center; justify-content: center; }
  .contact-form { padding: 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 56px; }
  .map-embed iframe { height: 320px; }

  .lightbox { padding: 16px; }
  .lightbox-close { top: 12px; right: 14px; width: 42px; height: 42px; font-size: 26px; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
