/* ============================================================
   NEETO: warm paper + safety orange + charcoal, bento style
   Fonts: Poppins (headings) / Open Sans (body)
   ============================================================ */

:root {
  --brand:       #EA580C;
  --brand-deep:  #C2410C;
  --brand-soft:  #FFEDD5;
  --ink:         #1C1917;
  --ink-2:       #44403C;
  --muted:       #78716C;
  --paper:       #FAF7F2;
  --card:        #FFFFFF;
  --line:        #E8E0D4;
  --dark:        #211D1A;
  --dark-2:      #2C2724;
  --on-dark:     #FAF7F2;
  --on-dark-mut: #C9C2BA;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-1: 0 1px 2px rgba(28,25,23,.05), 0 4px 16px rgba(28,25,23,.06);
  --shadow-2: 0 2px 4px rgba(28,25,23,.06), 0 12px 32px rgba(28,25,23,.10);
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); }
a:hover { color: var(--brand); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }

.ic { width: 24px; height: 24px; flex: none; }
.ic-sm { width: 17px; height: 17px; }
.ic-big { width: 40px; height: 40px; }
.ic-hero { width: 56px; height: 56px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(234,88,12,.32); }
.btn-primary:hover { background: var(--brand-deep); color: #fff; box-shadow: 0 10px 24px rgba(234,88,12,.4); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { background: #000; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: #fff; color: var(--brand-deep); }
.btn-light:hover { color: var(--brand-deep); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Announcement bar ---------- */
.announce { background: var(--dark); color: var(--on-dark); font-size: 13.5px; }
.announce-in { display: flex; align-items: center; gap: 10px; padding-top: 9px; padding-bottom: 9px; }
.announce p { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.announce-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex: none;
  box-shadow: 0 0 0 0 rgba(234,88,12,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(234,88,12,.55); }
  70% { box-shadow: 0 0 0 8px rgba(234,88,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,88,12,0); }
}
.announce-link {
  margin-left: auto; color: #fff; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.announce-link:hover { color: var(--brand); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(28,25,23,.06); }
.header-in { display: flex; align-items: center; gap: 18px; padding-top: 14px; padding-bottom: 14px; }
.brand { flex-shrink: 0; display: inline-flex; }
.brand img { flex: none; max-width: none; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.main-nav li { position: relative; }
.main-nav a:not(.btn) {
  display: inline-block; padding: 9px 14px; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-family: var(--font-head);
  font-weight: 500; font-size: 15px; transition: background .15s ease, color .15s ease;
}
.main-nav a:not(.btn):hover { background: var(--brand-soft); color: var(--brand-deep); }
.main-nav a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.main-nav a[aria-current="page"]:hover { background: var(--ink); color: var(--paper); }
.nav-contact-item { margin-left: 8px; }
.nav-cta { display: none; }

.has-dd { display: flex; align-items: center; }
.dd-toggle {
  background: none; border: 0; padding: 4px; margin-left: -8px; cursor: pointer;
  color: var(--ink); display: inline-flex; border-radius: 50%;
  transition: transform .18s ease;
}
.has-dd:hover .dd-toggle, .has-dd.dd-open .dd-toggle { transform: rotate(180deg); color: var(--brand-deep); }
.dd {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 170px;
  list-style: none; margin: 0; padding: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dd:hover .dd, .has-dd:focus-within .dd, .has-dd.dd-open .dd {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dd a { display: block; width: 100%; }

.nav-burger {
  display: none; background: none; border: 2px solid var(--ink); border-radius: 12px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); margin-left: auto;
}
.nav-burger .ic-close { display: none; }
body.nav-open .nav-burger .ic-menu { display: none; }
body.nav-open .nav-burger .ic-close { display: block; }

@media (max-width: 919px) {
  .nav-burger { display: inline-flex; }
  .nav-cta { display: inline-flex; margin-left: auto; padding: 10px 18px; }
  .nav-burger { margin-left: 0; }
  .nav-contact-item { display: none; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(28,25,23,.12);
    display: none; padding: 10px 20px 22px;
  }
  body.nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav li { width: 100%; }
  .main-nav a:not(.btn) { display: block; padding: 13px 14px; font-size: 16.5px; border-radius: var(--r-sm); }
  .has-dd { display: block; }
  .has-dd > a { display: inline-block !important; width: calc(100% - 52px); }
  .dd-toggle { width: 44px; height: 44px; margin: 0; justify-content: center; align-items: center; }
  .dd {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; border: 0; box-shadow: none; background: var(--brand-soft);
    margin: 4px 0 8px; padding: 6px;
  }
  .has-dd:hover .dd { display: none; }
  .has-dd.dd-open .dd, .has-dd:focus-within.dd-open .dd { display: block; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 80px); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 85% 15%, rgba(234,88,12,.09), transparent 45%);
}
.hero-grid { display: grid; gap: 44px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 15px; font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-1); margin-bottom: 20px;
}
.hero-badge .ic { color: var(--brand); }
.hero h1 { font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--brand); position: relative; }
.hero-sub { font-size: clamp(16.5px, 1.6vw, 19px); color: var(--ink-2); max-width: 54ch; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 24px; }
.hero-ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.hero-ticks li { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.hero-ticks .ic { color: var(--brand); }

.hero-bento {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "main main" "a b" "c d";
  max-width: 460px; margin: 0 auto; width: 100%;
}
.hb-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hb-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-2); }
.hb-card .ic-big { color: var(--brand); }
.hb-main {
  grid-area: main; background: var(--dark); color: var(--on-dark);
  border-color: var(--dark); padding: 28px; gap: 14px;
}
.hb-main .ic-hero { color: var(--brand); }
.hb-main p { margin: 0; font-size: 21px; line-height: 1.3; font-weight: 700; }
.hb-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: .14em; font-weight: 700;
  color: #7CFC9B; background: rgba(124,252,155,.08);
  border: 1px solid rgba(124,252,155,.25); border-radius: 999px; padding: 5px 12px;
}
.hb-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #7CFC9B; animation: pulse 1.6s infinite; }
.hb-a { grid-area: a; } .hb-b { grid-area: b; } .hb-c { grid-area: c; } .hb-d { grid-area: d; }

@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .hero-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "main a" "main b" "c d";
  }
  .hb-main { justify-content: center; }
}

/* ---------- Section heads ---------- */
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-deep); background: var(--brand-soft);
  padding: 6px 14px; border-radius: 999px; margin: 0 0 14px;
}
.kicker-light { background: rgba(255,255,255,.16); color: #fff; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head h2, .quote-copy h2, .coverage-copy h2 { font-size: clamp(27px, 3.4vw, 40px); font-weight: 700; }
.section-sub { color: var(--ink-2); font-size: 17px; }

/* ---------- 4 Points ---------- */
.points { padding-top: 0; }
.points-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.point-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.point-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.point-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--brand-soft); color: var(--brand-deep); margin-bottom: 16px;
}
.point-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.point-card p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ---------- What we do ---------- */
.whatwedo { background: var(--card); border-block: 1px solid var(--line); }
.svc-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 4px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: #F3C9A8; }
.svc-featured { background: var(--dark); border-color: var(--dark); }
.svc-featured h3 { color: var(--on-dark); }
.svc-featured p { color: var(--on-dark-mut); }
.svc-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--brand); color: #fff; margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(234,88,12,.3);
}
.svc-card h3 { font-size: 20px; }
.svc-card p { color: var(--ink-2); font-size: 15.2px; flex: 1; }
.svc-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--brand-deep); text-decoration: none; margin-top: 6px;
}
.svc-featured .svc-more { color: #FDBA74; }
.svc-more:hover { gap: 11px; color: var(--brand); }
@media (min-width: 920px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- How it works ---------- */
.steps-grid {
  list-style: none; margin: 0; padding: 0; counter-reset: step;
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.step-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; position: relative; box-shadow: var(--shadow-1);
}
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.6px var(--brand);
  display: block; margin-bottom: 14px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ---------- Stats ---------- */
.stats-wrap { padding-top: 0; }
.stats-band {
  background: var(--dark); border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 5vw, 64px);
  display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  text-align: center; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(234,88,12,.22), transparent 42%),
              radial-gradient(circle at 90% 110%, rgba(234,88,12,.16), transparent 42%);
  pointer-events: none;
}
.stat { position: relative; }
.stat-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(40px, 5vw, 58px); line-height: 1.05; color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--on-dark-mut); font-size: 15px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.rev-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.rev-card {
  margin: 0; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px; position: relative;
  box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 12px;
}
.rev-quote {
  position: absolute; top: 22px; right: 24px; color: var(--brand-soft);
}
.rev-quote .ic { width: 34px; height: 34px; }
.rev-stars { display: inline-flex; gap: 3px; color: var(--brand); }
.rev-stars .ic-star { width: 18px; height: 18px; fill: var(--brand); stroke: var(--brand); }
.rev-card p { margin: 0; font-size: 15.5px; color: var(--ink-2); flex: 1; }
.rev-card footer { font-size: 14.5px; color: var(--muted); }
.rev-card footer strong { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* ---------- Coverage ---------- */
.coverage { background: var(--card); border-block: 1px solid var(--line); }
.coverage-grid { display: grid; gap: 40px; align-items: center; }
.coverage-copy .btn { margin-top: 6px; }
.area-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.area-chips li {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.area-chips .ic { color: var(--brand); }
.chip-more { background: var(--brand-soft); border-color: #F3C9A8; }
.chip-more a { text-decoration: none; font-weight: 700; }
.area-chips-page li { font-size: 15px; padding: 10px 18px; background: var(--card); }
@media (min-width: 920px) {
  .coverage-grid { grid-template-columns: .9fr 1.1fr; }
}

/* ---------- Free quote band ---------- */
.quote-band {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand) 55%, #F97316);
  color: #fff; padding: clamp(56px, 7vw, 88px) 0;
}
.quote-in { display: grid; gap: 28px; align-items: center; }
.quote-copy h2 { color: #fff; margin-bottom: 12px; }
.quote-sub { color: rgba(255,255,255,.9); font-size: 17px; max-width: 56ch; margin: 0; }
.quote-actions { display: flex; flex-wrap: wrap; gap: 13px; }
@media (min-width: 920px) {
  .quote-in { grid-template-columns: 1.3fr auto; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-mut); font-size: 15px; }
.footer-grid {
  display: grid; gap: 36px; padding-top: clamp(48px, 6vw, 72px); padding-bottom: 44px;
}
.f-brand p { margin: 18px 0 0; max-width: 42ch; }
.site-footer h3 {
  color: var(--on-dark); font-size: 15px; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--on-dark-mut); text-decoration: none; transition: color .15s ease; }
.site-footer a:hover { color: var(--brand); }
.f-contact li a, .f-contact li span { display: inline-flex; align-items: center; gap: 9px; }
.f-contact .ic { color: var(--brand); }
.footer-base { border-top: 1px solid rgba(250,247,242,.12); padding: 18px 0; font-size: 13.5px; }
.footer-base-in { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.footer-base p { margin: 0; }
.designed { color: var(--on-dark); font-family: var(--font-head); font-weight: 600; }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float .ic { width: 28px; height: 28px; }

/* ---------- Inner pages ---------- */
.page-hero {
  padding: clamp(48px, 6vw, 76px) 0 clamp(20px, 3vw, 36px);
  background: radial-gradient(circle at 85% 0%, rgba(234,88,12,.08), transparent 45%);
}
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; }
.page-hero .section-sub { max-width: 62ch; }

/* About */
.about-grid { display: grid; gap: 40px; }
.about-copy p { color: var(--ink-2); }
.check-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15.5px; }
.check-list .ic { color: var(--brand); }
.check-list.cols { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 22px; }
.about-side { display: grid; gap: 14px; align-content: start; }
.mini-point {
  display: flex; gap: 16px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-1);
}
.mini-point .point-ic { width: 46px; height: 46px; margin: 0; flex: none; }
.mini-point h3 { font-size: 16.5px; margin-bottom: 4px; }
.mini-point p { margin: 0; font-size: 14px; color: var(--ink-2); }
@media (min-width: 920px) { .about-grid { grid-template-columns: 1.1fr .9fr; } }

/* FAQ */
.faq-wrap { max-width: 760px; display: grid; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-1); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 19px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 16.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { transition: transform .2s ease; color: var(--brand); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--ink-2); }

/* Gallery */
.gal-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.gal-tile { margin: 0; }
.gal-ph {
  aspect-ratio: 4 / 3; border-radius: var(--r-lg);
  background: repeating-linear-gradient(45deg, #F3EDE3, #F3EDE3 12px, #EFE8DC 12px, #EFE8DC 24px);
  border: 1px dashed #D8CCB8;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--muted); font-size: 13.5px; font-weight: 600;
}
.gal-ph .ic-big { color: #C7B9A2; }
.gal-tile figcaption { padding: 12px 6px 0; font-size: 14.5px; color: var(--ink-2); }
.gal-tile figcaption strong { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* Offers */
.offers-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.offer-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.offer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 14px;
}
.offer-card h2 { font-size: 23px; margin: 6px 0 2px; }
.offer-card p { color: var(--ink-2); flex: 1; }
.offers-small { margin-top: 26px; font-size: 13.5px; color: var(--muted); max-width: 70ch; }

/* Services detail */
.svc-detail-list { display: grid; gap: 20px; }
.svc-detail {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-1);
  scroll-margin-top: 110px;
}
.svc-detail-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.svc-detail-head .svc-ic { margin: 0; }
.svc-detail h2 { margin: 0; font-size: clamp(22px, 2.6vw, 28px); }
.svc-detail > p { color: var(--ink-2); max-width: 74ch; }

/* Contact */
.contact-grid { display: grid; gap: 28px; }
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-1);
}
.form-row { display: grid; gap: 0 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 14.5px; margin-bottom: 7px;
}
.req { color: var(--brand); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(234,88,12,.16);
}
.form-note { font-size: 13.5px; color: var(--muted); margin: 4px 0 18px; }
.form-error {
  background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5;
  border-radius: var(--r-sm); padding: 12px 16px; font-weight: 600; font-size: 14.5px;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ic-big { color: var(--brand); width: 52px; height: 52px; margin: 0 auto 14px; }
.form-success h2 { font-size: 26px; }
.form-success .btn { margin-top: 12px; }

.contact-side { display: grid; gap: 16px; align-content: start; }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-1);
}
.contact-card h2 { font-size: 18px; margin-bottom: 14px; }
.contact-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact-card li a, .contact-card li span { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact-card li a:hover { color: var(--brand-deep); }
.contact-card .ic { color: var(--brand); }
.contact-card-accent { background: var(--dark); border-color: var(--dark); }
.contact-card-accent h2 { color: var(--on-dark); }
.mini-steps { margin: 0; padding-left: 20px; color: var(--on-dark-mut); display: grid; gap: 9px; font-size: 15px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.25fr .75fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Custom pages (prose) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 1.6em; }
.prose h3 { font-size: clamp(19px, 2.2vw, 23px); margin-top: 1.4em; }
.prose p { color: var(--ink-2); font-size: 16.5px; }
.prose ul { color: var(--ink-2); padding-left: 22px; display: grid; gap: 8px; margin: 0 0 1.2em; }
.prose li::marker { color: var(--brand); }

/* ---------- Gallery photos ---------- */
.gal-img { aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; background: #EFE8DC; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.post-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.post-thumb { display: block; aspect-ratio: 16 / 9; background: var(--brand-soft); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-ph { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--brand); }
.post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta { color: var(--muted); font-size: 13.5px; font-weight: 600; margin: 0; }
.post-body h2 { font-size: 20px; margin: 0; }
.post-body h2 a { color: var(--ink); text-decoration: none; }
.post-body h2 a:hover { color: var(--brand-deep); }
.post-excerpt { color: var(--ink-2); font-size: 15px; margin: 0; flex: 1; }
.post-hero-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 26px; }
.post-hero-img img { width: 100%; display: block; }
.post-back { margin-top: 34px; }
.ic-flip { transform: scaleX(-1); }
.kicker-link { color: inherit; text-decoration: none; }
.kicker-link:hover { color: var(--brand); }
.page-hero .post-meta { margin-top: 4px; }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.pkg-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.pkg-card h2 { font-size: 22px; margin: 4px 0 0; }
.pkg-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 14px;
}
.pkg-price { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--brand); margin: 0; line-height: 1; }
.pkg-feats { list-style: none; margin: 4px 0 6px; padding: 0; display: grid; gap: 9px; flex: 1; }
.pkg-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.8px; color: var(--ink-2); }
.pkg-feats .ic { color: var(--brand); margin-top: 2px; }
.pkg-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.pkg-actions .btn { justify-content: center; }
.pkg-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--ink-2); text-decoration: none;
}
.pkg-wa:hover { color: #1faf54; }
.pkg-wa .ic { color: #25D366; }
.pkg-featured { background: var(--dark); border-color: var(--dark); position: relative; }
.pkg-featured h2 { color: var(--on-dark); }
.pkg-featured .pkg-feats li { color: var(--on-dark-mut); }
.pkg-featured .pkg-badge { background: var(--brand); color: #fff; }
.pkg-featured .pkg-wa { color: var(--on-dark-mut); }
.pkg-featured .pkg-wa:hover { color: #7CFC9B; }

/* ---------- Chat assistant ---------- */
.chat-widget { position: fixed; left: 18px; bottom: 18px; z-index: 95; }
.chat-fab {
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(234,88,12,.45);
  transition: transform .18s ease, background .18s ease;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab .ic { width: 26px; height: 26px; }
.chat-fab .ic-chat-close { display: none; }
.chat-open .chat-fab .ic:not(.ic-chat-close) { display: none; }
.chat-open .chat-fab .ic-chat-close { display: block; }
.chat-panel {
  position: absolute; left: 0; bottom: 70px;
  width: min(340px, calc(100vw - 36px)); height: 440px; max-height: calc(100vh - 120px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); display: flex; flex-direction: column; overflow: hidden;
}
.chat-head {
  display: flex; align-items: center; gap: 11px;
  background: var(--dark); color: var(--on-dark); padding: 14px 16px;
}
.chat-head-ic {
  width: 34px; height: 34px; border-radius: 50%; background: var(--brand);
  display: flex; align-items: center; justify-content: center; color: #fff; flex: none;
}
.chat-head strong { display: block; font-family: var(--font-head); font-size: 14.5px; line-height: 1.2; }
.chat-head span { font-size: 12px; color: #7CFC9B; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg {
  max-width: 85%; padding: 9px 13px; border-radius: 14px;
  font-size: 14px; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word;
}
.chat-bot { background: var(--paper); border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-user { background: var(--brand); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-typing { color: var(--muted); letter-spacing: 2px; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 8px; }
.chat-chip {
  border: 1px solid var(--brand); background: var(--brand-soft); color: var(--brand-deep);
  font: inherit; font-size: 12.5px; font-weight: 600; border-radius: 999px;
  padding: 6px 12px; cursor: pointer; transition: background .15s ease;
}
.chat-chip:hover { background: var(--brand); color: #fff; }
.chat-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); }
.chat-form input {
  flex: 1; font: inherit; font-size: 14px; padding: 9px 13px;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper);
}
.chat-form input:focus { outline: none; border-color: var(--brand); }
.chat-form button {
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center;
}
.chat-form button:hover { background: var(--brand-deep); }
@media (max-width: 640px) {
  .chat-panel { height: 400px; }
}

/* ---------- Chat assistant: right side, teaser, WhatsApp in panel ---------- */
.chat-widget { left: auto; right: 18px; }
.chat-panel { left: auto; right: 0; }
.chat-fab { position: relative; }
.chat-dot {
  position: absolute; top: 0; right: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: #E11D48; border: 2.5px solid var(--paper);
  animation: pulse 2s infinite;
}
.chat-teaser {
  position: absolute; right: 0; bottom: 72px; width: 235px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: 13px 16px;
}
.chat-teaser p { margin: 0; font-size: 13.5px; line-height: 1.45; color: var(--ink-2); cursor: pointer; padding-right: 8px; }
.chat-teaser strong { color: var(--ink); font-family: var(--font-head); }
.chat-teaser-x {
  position: absolute; top: 4px; right: 7px; background: none; border: 0;
  cursor: pointer; color: var(--muted); font-size: 17px; line-height: 1; padding: 3px;
}
.chat-teaser-x:hover { color: var(--ink); }
.chat-head-wa {
  margin-left: auto; width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease;
}
.chat-head-wa:hover { color: #fff; transform: scale(1.08); }

/* ============================================================
   NAVBAR REDESIGN + SITE TRANSITIONS (2026-07-18)
   ============================================================ */

/* scroll progress bar */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand) 60%, #F97316);
  z-index: 200; border-radius: 0 3px 3px 0;
  transition: width .12s linear; pointer-events: none;
}

/* header shrink on scroll */
.header-in { transition: padding .3s ease; }
.brand img { transition: transform .3s ease; }
.site-header.scrolled { background: rgba(250,247,242,.97); box-shadow: 0 6px 26px rgba(28,25,23,.09); }
.site-header.scrolled .header-in { padding-top: 9px; padding-bottom: 9px; }
.site-header.scrolled .brand img { transform: scale(.92); }

/* ---- desktop nav: sliding underline + refined dropdown ---- */
@media (min-width: 920px) {
  .main-nav ul { gap: 2px; }
  .main-nav a:not(.btn) {
    position: relative; background: transparent; padding: 8px 15px;
    transition: color .2s ease;
  }
  .main-nav a:not(.btn)::after {
    content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
    background: var(--brand); border-radius: 2px;
    transform: scaleX(0); transform-origin: center;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }
  .main-nav a:not(.btn):hover { background: transparent; color: var(--brand-deep); }
  .main-nav li:hover > a:not(.btn)::after,
  .main-nav a:not(.btn):focus-visible::after { transform: scaleX(1); }
  .main-nav a[aria-current="page"] { background: transparent; color: var(--brand-deep); }
  .main-nav a[aria-current="page"]:hover { background: transparent; color: var(--brand-deep); }
  .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

  .dd { min-width: 195px; border-radius: 15px; padding: 10px; }
  .dd::before {
    content: ""; position: absolute; top: -6px; left: 26px; width: 12px; height: 12px;
    background: var(--card); border-left: 1px solid var(--line); border-top: 1px solid var(--line);
    transform: rotate(45deg);
  }
  .dd a {
    position: relative; border-radius: 10px; padding: 9px 13px; font-weight: 500;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
  }
  .dd a:hover { background: var(--brand-soft); color: var(--brand-deep); padding-left: 18px; }
}

/* ---- mobile nav: smooth slide + staggered links ---- */
@media (max-width: 919px) {
  .main-nav {
    display: block; opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
    padding: 14px 20px 24px; border-radius: 0 0 var(--r-md) var(--r-md);
    box-shadow: 0 26px 46px rgba(28, 25, 23, .17);
  }
  body.nav-open .main-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav li {
    opacity: 0; transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease;
  }
  body.nav-open .main-nav li { opacity: 1; transform: none; }
  body.nav-open .main-nav li:nth-child(1) { transition-delay: .04s; }
  body.nav-open .main-nav li:nth-child(2) { transition-delay: .08s; }
  body.nav-open .main-nav li:nth-child(3) { transition-delay: .12s; }
  body.nav-open .main-nav li:nth-child(4) { transition-delay: .16s; }
  body.nav-open .main-nav li:nth-child(5) { transition-delay: .20s; }
  body.nav-open .main-nav li:nth-child(6) { transition-delay: .24s; }
  body.nav-open .main-nav li:nth-child(7) { transition-delay: .28s; }
  .main-nav a:not(.btn) { border-radius: 12px; }
  .nav-burger { transition: transform .2s ease, border-color .2s ease, color .2s ease; }
  .nav-burger:active { transform: scale(.92); }
  body.nav-open .nav-burger { border-color: var(--brand); color: var(--brand-deep); }
}

/* ---- page entrance + leave transitions (JS enhanced, safe without JS) ---- */
.page-enter { transition: opacity .55s ease, transform .55s ease; }
.js .page-enter { opacity: 0; transform: translateY(12px); }
.js body.ready .page-enter { opacity: 1; transform: none; }
.js body.leaving .page-enter {
  opacity: 0; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

/* ---- image micro interactions ---- */
.gal-img img, .post-thumb img { transition: transform .5s cubic-bezier(.2, .6, .2, 1); }
.gal-tile:hover .gal-img img, .post-card:hover .post-thumb img { transform: scale(1.06); }

/* FIX: chat panel must honour the closed state. The explicit display:flex on
   .chat-panel was overriding the [hidden] attribute, so it never closed. */
.chat-panel[hidden] { display: none !important; }

/* ===== Reviews page ===== */
.review-layout { display: grid; gap: 34px; align-items: start; }
@media (min-width: 900px) { .review-layout { grid-template-columns: 1.4fr .9fr; gap: 44px; } }
.review-form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-1);
  position: sticky; top: 92px;
}
.review-form-card h2 { margin-bottom: 16px; }
.star-pick { border: 0; margin: 4px 0 18px; padding: 0; }
.star-pick legend { font-weight: 600; font-family: var(--font-head); margin-bottom: 8px; padding: 0; }
.star-row { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-row input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.star-row label { color: #D8CFC0; cursor: pointer; line-height: 0; transition: color .12s ease; }
.star-row label .ic { width: 32px; height: 32px; }
.star-row input:checked ~ label { color: var(--brand); }
.star-row:hover input:checked ~ label { color: #D8CFC0; }
.star-row label:hover, .star-row label:hover ~ label { color: var(--brand) !important; }
.star-row input:focus-visible ~ label { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 3px; }
.review-cta { margin-top: 20px; }

/* ============================================================
   clickable chat links (navbar styles moved to navbars.css, 2026-07-21)
   ============================================================ */
/* clickable links inside chat bubbles */
.chat-link { word-break: break-word; text-decoration: underline; }
.chat-msg.chat-user .chat-link { color: #fff; }
.chat-msg.chat-bot .chat-link { color: var(--brand-deep); font-weight: 600; }

/* ===== Gallery lightbox (photo expansion) 2026-07-21 ===== */
button.gal-img { display: block; width: 100%; padding: 0; border: 0; background: #EFE8DC; cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,17,15,.9); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox-fig { margin: 0; max-width: 92vw; max-height: 92vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-fig img { max-width: 92vw; max-height: 84vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-fig figcaption { color: #fff; margin-top: 14px; font-family: var(--font-head); font-size: 16px; text-align: center; }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,.28); }
