/* ==========================================================================
   HILL COUNTRY KITCHEN & BATH — "Hill Country Modern"
   Bright, airy design system: crisp white / light oak / Texas sky blue
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Bright core */
  --white: #FFFFFF;
  --paper: #F7FAFC;
  --paper-2: #EFF5F9;
  --paper-3: #E3EDF4;
  --chalk: #FAF7F2;

  /* Light oak / warm woods */
  --oak: #D9BE99;
  --oak-lt: #EBDAC3;
  --oak-dk: #B9976D;
  --oak-deep: #8A6C46;

  /* Texas sky blue */
  --sky: #2E9BD6;
  --sky-lt: #63BCEB;
  --sky-pale: #D6ECF8;
  --sky-dk: #1B7BAE;
  --sky-deep: #135F87;

  /* Supporting */
  --terracotta: #D2703F;
  --sage: #7C9A72;
  --ok: #3E8A5F;
  --warn: #C98A2E;
  --alert: #C0492B;

  /* Ink — high contrast on bright grounds */
  --ink: #16242E;
  --ink-2: #3C5361;
  --ink-3: #5E7683;
  --ink-4: #8AA0AC;
  --line: #D6E3EB;
  --line-2: #E7F0F5;

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --r-sm: 5px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(22, 36, 46, .06);
  --sh-2: 0 4px 16px rgba(22, 36, 46, .07);
  --sh-3: 0 14px 40px rgba(22, 36, 46, .10);
  --sh-4: 0 30px 74px rgba(22, 36, 46, .15);
  --sh-sky: 0 10px 30px rgba(46, 155, 214, .22);

  --maxw: 1260px;
  --gut: clamp(18px, 4vw, 44px);
  --head-h: 74px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--head-h) + 14px); }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

/* Grid and flex children default to min-width:auto, which makes long words and
   fixed-width columns push past the viewport on narrow phones. */
.grid > *, .stat-grid > *, .tier-grid > *, .calc > *, .book-grid > *,
.spec-row > *, .range-row > *, .head-in > *, .cta-in > *,
.area-hero-in > *, .hero-grid > *, .trust-row > *, .area-cards > *,
.admin-stats > *, .gal > *, .vs-row > *, .vs-head > *, .tl-item > * { min-width: 0; }
h1, h2, h3, h4, p, li, td, th, summary { overflow-wrap: break-word; }
::selection { background: var(--sky-pale); color: var(--sky-deep); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 820px; }
.narrower { max-width: 680px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--sky-deep); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-md) 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.021em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: -.006em; }

.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -.01em; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sky-dk);
  display: flex; align-items: center; gap: 11px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--sky); flex: none; border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--sky-lt); }
.eyebrow.on-dark::before { background: var(--sky-lt); }

.lede { font-size: clamp(1.05rem, 1.55vw, 1.24rem); color: var(--ink-2); line-height: 1.68; text-wrap: pretty; }
.muted { color: var(--ink-3); }
.tnum { font-variant-numeric: tabular-nums; }
.nowrap { white-space: nowrap; }

p + p { margin-top: 1.05em; }
.prose p { color: var(--ink-2); text-wrap: pretty; }
.prose h3 { margin: 2.1em 0 .6em; }
.prose > *:first-child { margin-top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .01em;
  padding: 15px 26px; border: 1.5px solid transparent; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn-primary { background: var(--sky); color: #fff; box-shadow: var(--sh-sky); }
.btn-primary:hover { background: var(--sky-dk); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(46,155,214,.32); }
.btn-primary:active { transform: translateY(0); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--sky-deep); transform: translateY(-2px); box-shadow: var(--sh-3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sky); color: var(--sky-dk); background: var(--white); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--sh-2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-3); color: var(--sky-dk); }
.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 11px 19px; font-size: .82rem; }
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--sky-dk); text-decoration: none;
  border-bottom: 1.5px solid var(--sky-pale); padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
}
.textlink:hover { border-color: var(--sky); gap: 11px; }
.textlink::after { content: '→'; transition: transform .2s; }
.textlink:hover::after { transform: translateX(2px); }

/* ---------- Header ---------- */
.site-head { position: sticky; top: 0; z-index: 100; }
.head-bar {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s, background .25s;
}
.site-head.stuck .head-bar { box-shadow: var(--sh-2); background: rgba(255,255,255,.95); }
.head-in { display: flex; align-items: center; gap: 22px; height: var(--head-h); }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-mark {
  width: 40px; height: 40px; flex: none; color: var(--sky-dk);
  background: var(--sky-pale); border-radius: 11px; padding: 5px;
  display: grid; place-items: center;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-mark.lg { width: 52px; height: 52px; border-radius: 14px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.06; }
.brand-txt strong { font-family: var(--font-display); font-size: 1.06rem; font-weight: 800; letter-spacing: -.024em; color: var(--ink); }
.brand-txt em {
  font-style: normal; font-size: .655rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--sky-dk);
}

.nav-main { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.nav-main a {
  font-size: .875rem; font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: 9px 13px; border-radius: var(--r-pill); transition: color .18s, background .18s;
  position: relative;
}
.nav-main a:hover { color: var(--sky-dk); background: var(--paper-2); }
.nav-main a.on { color: var(--sky-deep); font-weight: 600; background: var(--sky-pale); }

.head-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.head-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .875rem; font-weight: 600; color: var(--ink); text-decoration: none;
  padding: 8px 12px; border-radius: var(--r-pill); transition: color .18s, background .18s;
}
.head-phone:hover { color: var(--sky-dk); background: var(--sky-pale); }
.head-phone svg { color: var(--sky-dk); }

.nav-toggle {
  display: none; width: 42px; height: 42px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4.5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: var(--head-h) 0 0; z-index: 99;
  background: rgba(255,255,255,.985); backdrop-filter: blur(10px);
  padding: 26px var(--gut) 40px; overflow-y: auto;
  animation: drawerIn .25s cubic-bezier(.2,.7,.3,1);
}
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav-drawer nav { display: flex; flex-direction: column; gap: 3px; max-width: 460px; margin: 0 auto; }
.nav-drawer a {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  text-decoration: none; padding: 15px 4px; border-bottom: 1px solid var(--line-2); color: var(--ink);
}
.nav-drawer a.btn { border-bottom: none; font-family: var(--font-body); font-size: .95rem; justify-content: center; margin-top: 10px; }
.nav-drawer hr { border: none; border-top: 1px solid var(--line); margin: 16px 0 6px; }
.drawer-phone { color: var(--sky-dk) !important; }

/* ---------- Mobile action bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  display: none; gap: 9px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; border-radius: var(--r-pill); text-decoration: none;
  font-weight: 600; font-size: .92rem;
}
.mb-call { background: var(--paper-2); color: var(--ink); border: 1.5px solid var(--line); }
.mb-quote { background: var(--sky); color: #fff; flex: 1.45 !important; box-shadow: var(--sh-sky); }

/* ---------- Sections ---------- */
section { position: relative; }
.sec { padding: clamp(58px, 8vw, 108px) 0; }
.sec-sm { padding: clamp(42px, 5.5vw, 68px) 0; }
.sec-white { background: var(--white); }
.sec-paper { background: var(--paper); }
.sec-paper2 { background: var(--paper-2); }
.sec-chalk { background: var(--chalk); }
.sec-ink { background: var(--ink); color: var(--paper-2); }
.sec-ink h2, .sec-ink h3, .sec-ink h4 { color: #fff; }
.sec-ink .lede, .sec-ink p { color: #C3D5DF; }
.sec-sky { background: linear-gradient(160deg, var(--sky-deep), var(--sky-dk) 58%, #2589C2); color: #fff; }
.sec-sky h2, .sec-sky h3 { color: #fff; }
.sec-sky p, .sec-sky .lede { color: rgba(255,255,255,.9); }

.sec-head { max-width: 760px; margin-bottom: clamp(32px, 4.5vw, 56px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 + .lede { margin-top: 16px; }

.hairline { height: 1px; background: var(--line); border: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero-grid {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 4vw, 60px);
  align-items: center; padding: clamp(40px, 5.5vw, 76px) 0 clamp(48px, 6vw, 84px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--sky-dk); }
.hero h1 .serif { display: block; }
.hero-sub { font-size: clamp(1.06rem, 1.6vw, 1.26rem); color: var(--ink-2); max-width: 56ch; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.promise {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--sky-pale); border: 1px solid #B4DCF2;
  padding: 11px 18px 11px 14px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.promise-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sky); flex: none; position: relative; }
.promise-dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--sky); opacity: .45; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
.promise span { font-size: .84rem; font-weight: 600; color: var(--sky-deep); letter-spacing: .005em; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-4); aspect-ratio: 4/3.4;
  background: var(--paper-3);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  border-radius: var(--r-xl);
}
.hero-tag {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-radius: var(--r-lg); padding: 14px 17px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: var(--sh-2);
}
.hero-tag-l { display: flex; flex-direction: column; gap: 2px; }
.hero-tag-k { font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.hero-tag-v { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); }
.hero-tag-price { font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; color: var(--sky-dk); }

.float-card {
  position: absolute; background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-3); padding: 15px 18px; z-index: 3;
  border: 1px solid var(--line-2);
}
.float-card.tl { top: -14px; left: -26px; }
.float-card.br { bottom: 46px; right: -24px; }
.fc-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--sky-dk); line-height: 1; }
.fc-lbl { font-size: .705rem; color: var(--ink-3); font-weight: 500; margin-top: 4px; letter-spacing: .02em; }

/* Trust strip under hero */
.trust-strip { border-top: 1px solid var(--line-2); background: var(--paper); }
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-2);
}
.trust-item {
  background: var(--paper); padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 12px;
}
.trust-ic { width: 20px; height: 20px; color: var(--sky-dk); flex: none; margin-top: 2px; }
.trust-item h4 { font-size: .93rem; margin-bottom: 3px; }
.trust-item p { font-size: .81rem; color: var(--ink-3); line-height: 1.5; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 30px);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: #C9E3F2; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: .95rem; }
.card-num {
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  color: var(--sky-dk); background: var(--sky-pale);
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  margin-bottom: 15px;
}

.icard { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-3); text-decoration: none; display: block; box-shadow: var(--sh-2); }
.icard-img { aspect-ratio: 3/2.15; overflow: hidden; }
.icard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.icard:hover .icard-img img { transform: scale(1.045); }
.icard-body { background: #fff; padding: 20px 22px 24px; border: 1px solid var(--line-2); border-top: none; }
.icard-body h3 { margin-bottom: 8px; }
.icard-body p { font-size: .92rem; color: var(--ink-2); }
.icard-price {
  display: inline-flex; align-items: baseline; gap: 6px; margin-top: 14px;
  font-family: var(--font-display); font-weight: 700; color: var(--sky-dk); font-size: 1.06rem;
}
.icard-price small { font-family: var(--font-body); font-size: .74rem; font-weight: 500; color: var(--ink-3); }

/* ---------- Stats ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat {
  background: #fff; padding: clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column; gap: 5px;
}
.stat-v { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--sky-dk); line-height: 1; letter-spacing: -.03em; }
.stat-k { font-size: .885rem; font-weight: 600; color: var(--ink); line-height: 1.32; }
.stat-n { font-size: .745rem; color: var(--ink-3); }
.stat-src { font-size: .69rem; margin-top: 6px; }
.stat-src a { color: var(--ink-4); text-decoration: none; border-bottom: 1px dotted var(--ink-4); }
.stat-src a:hover { color: var(--sky-dk); border-color: var(--sky); }
.sec-ink .stat, .sec-sky .stat { background: rgba(255,255,255,.055); }
.sec-ink .stat-grid, .sec-sky .stat-grid { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.sec-ink .stat-v, .sec-sky .stat-v { color: var(--sky-lt); }
.sec-ink .stat-k, .sec-sky .stat-k { color: #fff; }
.sec-ink .stat-n, .sec-sky .stat-n { color: #9FB8C5; }
.sec-sky .stat-v { color: #fff; }
.sec-sky .stat-n { color: rgba(255,255,255,.72); }
.sec-sky .stat-src a { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.4); }
.sec-sky .stat-src a:hover { color: #fff; border-color: #fff; }

/* ---------- Price tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.tier {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 2.5vw, 30px); position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column; height: 100%;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.tier.feature { border-color: var(--sky); box-shadow: var(--sh-sky); }
.tier-flag {
  position: absolute; top: -12px; left: clamp(22px, 2.5vw, 30px);
  background: var(--sky); color: #fff; font-size: .67rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--r-pill);
}
.tier-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; margin-bottom: 6px; }
.tier-price { font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.15rem); font-weight: 800; color: var(--sky-dk); letter-spacing: -.03em; line-height: 1.1; margin: 12px 0 3px; }
.tier-meta { font-size: .78rem; color: var(--ink-3); margin-bottom: 16px; }
.tier-blurb { font-size: .92rem; color: var(--ink-2); margin-bottom: 18px; }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.tier li { font-size: .875rem; color: var(--ink-2); display: flex; gap: 9px; line-height: 1.45; }
.tier li::before {
  content: ''; width: 15px; height: 15px; flex: none; margin-top: 3px;
  background: var(--sky-pale); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B7BAE' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.tier .tier-foot { margin-top: auto; }
.tier-ex { font-size: .78rem; color: var(--ink-3); border-top: 1px solid var(--line-2); padding-top: 13px; }
.tier-ex strong { color: var(--ink-2); font-weight: 600; }

/* ---------- Spec table / them-vs-us ---------- */
.spec { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.spec-row { display: grid; grid-template-columns: minmax(0, 210px) minmax(0, 1fr); gap: 0; border-bottom: 1px solid var(--line-2); }
.spec-row:last-child { border-bottom: none; }
.spec-k { padding: 15px 20px; background: var(--paper-2); font-weight: 600; font-size: .855rem; color: var(--ink); }
.spec-v { padding: 15px 20px; font-size: .91rem; color: var(--ink-2); }

.vs { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.vs-head { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.vs-head div { padding: 13px 20px; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.vs-head .h-them { color: var(--ink-3); }
.vs-head .h-us { color: var(--sky-deep); background: var(--sky-pale); }
.vs-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line-2); }
.vs-row:last-child { border-bottom: none; }
.vs-row > div { padding: 15px 20px; font-size: .9rem; display: flex; gap: 10px; align-items: flex-start; }
.vs-them { color: var(--ink-3); }
.vs-them::before { content: '✕'; color: var(--alert); font-weight: 700; flex: none; font-size: .82rem; margin-top: 2px; }
.vs-us { color: var(--ink); background: #F6FBFE; border-left: 1px solid var(--line-2); font-weight: 500; }
.vs-us::before { content: '✓'; color: var(--ok); font-weight: 700; flex: none; font-size: .9rem; margin-top: 1px; }

/* ---------- Answer / callout blocks ---------- */
.answer {
  background: linear-gradient(150deg, var(--white), #F4FAFD);
  border: 1px solid #C9E3F2; border-left: 4px solid var(--sky);
  border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 32px);
}
.answer h3 { font-size: clamp(1.1rem, 1.8vw, 1.36rem); margin-bottom: 12px; }
.answer p { color: var(--ink-2); font-size: 1rem; }
.answer strong { color: var(--sky-deep); font-weight: 600; }

.note {
  background: #FFFBF2; border: 1px solid #F0DFBE; border-left: 4px solid var(--warn);
  border-radius: var(--r-md); padding: 17px 20px; font-size: .89rem; color: #6B5426;
}
.note strong { color: #4E3D18; }
.note.correction { background: #F5FBF7; border-color: #C8E6D4; border-left-color: var(--ok); color: #2C5B3E; }
.note.correction strong { color: #1E4530; }

.placeholder-tag {
  display: inline-block; background: #FFF4E5; border: 1px dashed #E0A94C;
  color: #8A5A10; font-size: .77rem; font-weight: 600; padding: 3px 9px; border-radius: var(--r-sm);
  font-family: var(--font-body);
}

/* ---------- Process timeline ---------- */
.timeline { display: grid; gap: 0; counter-reset: step; }
.tl-item {
  display: grid; grid-template-columns: 66px 1fr; gap: 22px;
  padding-bottom: 30px; position: relative;
}
.tl-item:not(:last-child)::before {
  content: ''; position: absolute; left: 32px; top: 52px; bottom: 0;
  width: 2px; background: linear-gradient(var(--sky-pale), var(--line-2));
}
.tl-num {
  width: 66px; height: 66px; border-radius: 50%; background: #fff;
  border: 2px solid var(--sky-pale); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; color: var(--sky-dk);
  position: relative; z-index: 1; box-shadow: var(--sh-1);
}
.tl-body { padding-top: 9px; }
.tl-body h3 { margin-bottom: 7px; }
.tl-body p { color: var(--ink-2); font-size: .95rem; }
.tl-when {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sky-dk); background: var(--sky-pale);
  padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 9px;
}

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(20px, 2.6vw, 36px); align-items: start; }
.calc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 32px); }
.calc-out {
  background: var(--ink); color: #fff; border-radius: var(--r-lg);
  padding: clamp(22px, 2.8vw, 34px); position: sticky; top: calc(var(--head-h) + 18px);
  box-shadow: var(--sh-3);
}
.field { margin-bottom: 24px; }
.field:last-child { margin-bottom: 0; }
.field > label, .field-label {
  display: block; font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 4px;
}
.field-help { font-size: .79rem; color: var(--ink-3); margin-bottom: 11px; }

.seg { display: grid; gap: 8px; }
.seg.c2 { grid-template-columns: 1fr 1fr; }
.seg.c3 { grid-template-columns: repeat(3, 1fr); }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  display: flex; flex-direction: column; gap: 3px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 13px 15px; transition: all .18s; background: #fff;
}
.seg label:hover { border-color: var(--sky-lt); background: #FAFDFF; }
.seg-name { font-weight: 600; font-size: .9rem; color: var(--ink); }
.seg-note { font-size: .755rem; color: var(--ink-3); line-height: 1.4; }
.seg input:checked + label {
  border-color: var(--sky); background: var(--sky-pale); box-shadow: 0 0 0 3px rgba(46,155,214,.13);
}
.seg input:checked + label .seg-name { color: var(--sky-deep); }
.seg input:focus-visible + label { outline: 3px solid var(--sky); outline-offset: 2px; }

.range-row { display: flex; align-items: center; gap: 16px; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; flex: 1;
  height: 6px; border-radius: 3px; background: var(--paper-3); outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 25px; height: 25px; border-radius: 50%;
  background: var(--sky); cursor: pointer; border: 3.5px solid #fff; box-shadow: var(--sh-2);
  transition: transform .15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 25px; height: 25px; border-radius: 50%; background: var(--sky);
  cursor: pointer; border: 3.5px solid #fff; box-shadow: var(--sh-2);
}
.range-val {
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 800; color: var(--sky-dk);
  min-width: 104px; text-align: right; letter-spacing: -.02em;
}
.range-val small { font-family: var(--font-body); font-size: .74rem; font-weight: 500; color: var(--ink-3); }
.range-ticks { display: flex; justify-content: space-between; font-size: .7rem; color: var(--ink-4); margin-top: 7px; }

.checks { display: grid; gap: 8px; }
.check {
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 12px 15px;
  transition: all .18s; background: #fff;
}
.check:hover { border-color: var(--sky-lt); background: #FAFDFF; }
.check input { width: 19px; height: 19px; accent-color: var(--sky); flex: none; margin-top: 1px; cursor: pointer; }
.check-body { flex: 1; }
.check-name { font-size: .885rem; font-weight: 500; color: var(--ink); display: block; line-height: 1.4; }
.check-price { font-size: .755rem; color: var(--ink-3); }
.check:has(input:checked) { border-color: var(--sky); background: var(--sky-pale); }

.out-label { font-size: .7rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--sky-lt); margin-bottom: 14px; }
.out-range {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.035em;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem); line-height: 1.04; color: #fff;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px;
}
.out-range .dash { color: var(--sky-lt); font-weight: 400; }
.out-sub { font-size: .82rem; color: #A9C4D2; margin-top: 12px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.15); }
.out-lines { display: flex; flex-direction: column; gap: 11px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.out-line { display: flex; justify-content: space-between; gap: 14px; font-size: .865rem; }
.out-line span:first-child { color: #A9C4D2; }
.out-line span:last-child { color: #fff; font-weight: 600; text-align: right; }
.out-cta { padding-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.out-fine { font-size: .755rem; color: #8FAAB9; line-height: 1.55; }
.out-inc { padding: 18px 0 0; }
.out-inc h4 { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--sky-lt); margin-bottom: 11px; }
.out-inc ul { list-style: none; display: grid; gap: 7px; }
.out-inc li { font-size: .825rem; color: #C3D5DF; display: flex; gap: 8px; line-height: 1.45; }
.out-inc li::before { content: '✓'; color: var(--sky-lt); flex: none; font-weight: 700; }

/* ---------- Booking calendar ---------- */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 36px); align-items: start; }
.cal { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(18px, 2.2vw, 26px); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; color: var(--ink); display: grid; place-items: center;
  transition: all .18s; font-size: 1rem;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--sky); color: var(--sky-dk); background: var(--sky-pale); }
.cal-nav button:disabled { opacity: .35; cursor: not-allowed; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 7px; }
.cal-dow span { text-align: center; font-size: .68rem; font-weight: 700; color: var(--ink-4); letter-spacing: .08em; text-transform: uppercase; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day {
  aspect-ratio: 1; border: 1.5px solid transparent; border-radius: 10px;
  background: var(--paper-2); cursor: pointer; font-family: var(--font-body);
  font-size: .9rem; font-weight: 600; color: var(--ink); display: grid; place-items: center;
  position: relative; transition: all .18s;
}
.cal-day:hover:not(:disabled) { background: var(--sky-pale); border-color: var(--sky-lt); transform: translateY(-1px); }
.cal-day.sel { background: var(--sky); color: #fff; border-color: var(--sky-dk); box-shadow: var(--sh-sky); }
.cal-day:disabled { background: transparent; color: var(--ink-4); cursor: not-allowed; opacity: .45; }
.cal-day.empty { background: transparent; cursor: default; border: none; }
.cal-day .dot { position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--ok); }
.cal-day.sel .dot { background: #fff; }
.cal-day.full { text-decoration: line-through; }
.cal-legend { display: flex; gap: 18px; margin-top: 16px; font-size: .74rem; color: var(--ink-3); flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.lg-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.lg-dot.none { background: var(--ink-4); }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 8px; margin-top: 6px; }
.slot {
  border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff;
  padding: 12px 8px; cursor: pointer; font-family: var(--font-body); font-size: .855rem;
  font-weight: 600; color: var(--ink); transition: all .18s; text-align: center;
}
.slot:hover:not(:disabled) { border-color: var(--sky); background: var(--sky-pale); color: var(--sky-deep); }
.slot.sel { background: var(--sky); border-color: var(--sky-dk); color: #fff; box-shadow: var(--sh-sky); }
.slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; background: var(--paper-2); }
.slots-empty { font-size: .875rem; color: var(--ink-3); padding: 20px 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 15px; }
.form-grid.c2 { grid-template-columns: 1fr 1fr; }
.inp-wrap { display: flex; flex-direction: column; gap: 6px; }
.inp-wrap label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.inp-wrap .req { color: var(--alert); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: #fff; width: 100%; transition: border-color .18s, box-shadow .18s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(46,155,214,.14);
}
input::placeholder, textarea::placeholder { color: var(--ink-4); }
textarea { resize: vertical; min-height: 108px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235E7683' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
  padding-right: 40px;
}
.form-note { font-size: .78rem; color: var(--ink-3); line-height: 1.55; }
.form-err { font-size: .82rem; color: var(--alert); font-weight: 500; }
.form-msg {
  padding: 15px 18px; border-radius: var(--r-md); font-size: .9rem; font-weight: 500;
  display: none;
}
.form-msg.ok { background: #F0F9F3; border: 1px solid #BEE3CD; color: #256844; display: block; }
.form-msg.bad { background: #FEF2F0; border: 1px solid #F3CDC4; color: #96382B; display: block; }

.success-card {
  background: linear-gradient(150deg, #F2FAF5, #EAF6F0);
  border: 1px solid #BEE3CD; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px);
  text-align: center;
}
.success-ic {
  width: 58px; height: 58px; border-radius: 50%; background: var(--ok); color: #fff;
  display: grid; place-items: center; margin: 0 auto 18px; font-size: 1.7rem;
}
.success-card h3 { color: #1E4530; margin-bottom: 10px; }
.success-card p { color: #2C5B3E; }
.success-detail {
  background: rgba(255,255,255,.75); border-radius: var(--r-md); padding: 16px 20px;
  margin-top: 20px; display: inline-block; text-align: left;
}
.success-detail dl { display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; font-size: .89rem; }
.success-detail dt { color: var(--ink-3); font-weight: 500; }
.success-detail dd { color: var(--ink); font-weight: 600; }

/* ---------- Gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 1; background: var(--paper-3); box-shadow: var(--sh-1);
}
.gal-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gal-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.gal-item:hover img { transform: scale(1.05); }
.gal-cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 13px;
  background: linear-gradient(transparent, rgba(10,22,30,.82));
  color: #fff; font-size: .8rem; font-weight: 500;
  opacity: 0; transform: translateY(6px); transition: all .3s;
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  padding: 19px 44px 19px 0; cursor: pointer; position: relative; list-style: none;
  font-family: var(--font-display); font-size: 1.03rem; font-weight: 600; color: var(--ink);
  transition: color .18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sky-dk); }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E9BD6' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; transition: transform .28s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--sky-deep); }
.faq-a { padding: 0 44px 22px 0; color: var(--ink-2); font-size: .95rem; animation: faqIn .28s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-in { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px, 3vw, 50px); align-items: center; }
.cta-in h2 { margin-bottom: 14px; }
.cta-acts { display: flex; flex-direction: column; gap: 11px; }
.cta-phone {
  display: flex; align-items: center; gap: 13px; padding: 17px 22px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--r-lg); text-decoration: none; transition: all .2s;
}
.cta-phone:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.45); }
.cta-phone-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; color: #fff; flex: none; }
.cta-phone-t { display: flex; flex-direction: column; }
.cta-phone-k { font-size: .69rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.cta-phone-v { font-family: var(--font-display); font-size: 1.16rem; font-weight: 700; color: #fff; }

/* ---------- Area / market pages ---------- */
.area-hero { background: var(--white); border-bottom: 1px solid var(--line-2); }
.area-hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 3.5vw, 54px); align-items: center; padding: clamp(34px, 4.5vw, 64px) 0; }
.area-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); aspect-ratio: 16/11; background: var(--paper-3); }
.area-img img { width: 100%; height: 100%; object-fit: cover; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--ink-3); margin-bottom: 16px; flex-wrap: wrap; }
.crumbs a { color: var(--sky-dk); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--ink-4); }

.zip-pills { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 18px; }
.zip-pill {
  font-size: .8rem; font-weight: 600; color: var(--sky-deep); background: var(--sky-pale);
  border: 1px solid #B4DCF2; padding: 5px 13px; border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
}

.area-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: #C9E3F2; }
.area-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); }
.area-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.area-card:hover .area-card-img img { transform: scale(1.05); }
.area-card-body { padding: 17px 19px 20px; flex: 1; display: flex; flex-direction: column; }
.area-card-body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.area-card-body p { font-size: .85rem; color: var(--ink-2); flex: 1; }
.area-card-stat {
  margin-top: 13px; font-size: .78rem; color: var(--sky-dk); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* ---------- Financing ---------- */
.fin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.fin-table th, .fin-table td { padding: 14px 18px; text-align: left; font-size: .9rem; border-bottom: 1px solid var(--line-2); }
.fin-table th { background: var(--paper-2); font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.fin-table tbody tr:last-child td { border-bottom: none; }
.fin-table tbody tr:hover { background: #FAFDFF; }
.fin-table .amt { font-family: var(--font-display); font-weight: 700; color: var(--sky-dk); font-variant-numeric: tabular-nums; }
.fin-table td.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Admin ---------- */
.admin-wrap { max-width: 1140px; margin: 0 auto; padding: 34px var(--gut) 80px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.astat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 17px 20px; }
.astat-v { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--sky-dk); line-height: 1; }
.astat-k { font-size: .78rem; color: var(--ink-3); margin-top: 5px; }
.atable { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; font-size: .87rem; }
.atable th { background: var(--paper-2); padding: 11px 14px; text-align: left; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.atable td { padding: 12px 14px; border-top: 1px solid var(--line-2); vertical-align: top; }
.atable tr:hover td { background: #FAFDFF; }
.badge {
  display: inline-block; font-size: .7rem; font-weight: 700; padding: 3px 9px;
  border-radius: var(--r-pill); letter-spacing: .04em;
}
.badge-new { background: var(--sky-pale); color: var(--sky-deep); }
.badge-kitchen { background: #FDF0E6; color: #97501F; }
.badge-bath { background: #E9F4FB; color: #135F87; }
.badge-book { background: #EDF7F1; color: #256844; }

/* ---------- Reveal animation ----------
   Only hide content when JS is present to reveal it again. Without the
   html.js hook (script blocked, JS error, no-JS crawler) everything stays
   visible — a marketing page must never depend on JS to show its copy. */
.js .rv { opacity: 0; transform: translateY(18px); }
.js .rv.in { animation: rvIn .7s cubic-bezier(.16,.84,.44,1) forwards; }
@keyframes rvIn { to { opacity: 1; transform: none; } }
.rv-d1 { animation-delay: .07s; }
.rv-d2 { animation-delay: .14s; }
.rv-d3 { animation-delay: .21s; }
.rv-d4 { animation-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
  .js .rv, .js .rv.in { opacity: 1; transform: none; animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-main { display: none; }
  .nav-toggle { display: flex; }
  /* nav-main carried the auto margin; with it hidden the CTAs need it. */
  .head-cta { margin-left: auto; }
  .brand { min-width: 0; }
  .brand-txt { min-width: 0; }
  .brand-txt strong, .brand-txt em { white-space: nowrap; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .float-card.tl, .float-card.br { display: none; }
  .calc { grid-template-columns: 1fr; }
  .calc-out { position: static; }
  .cta-in { grid-template-columns: 1fr; }
  .area-hero-in { grid-template-columns: 1fr; }
  .g4, .stat-grid, .area-cards, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .g3, .tier-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .gal { grid-template-columns: repeat(2, 1fr); }
  .gal-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .head-phone span { display: none; }
  .spec-row { grid-template-columns: 1fr; }
  .spec-k { border-bottom: 1px solid var(--line-2); }
}

@media (max-width: 620px) {
  :root { --head-h: 66px; }
  /* The sticky bottom bar already carries Call + Free Estimate on phones,
     so the header keeps only the brand and the menu toggle. */
  .head-in { gap: 12px; }
  .head-phone, .head-cta .btn { display: none; }
  .g2, .form-grid.c2, .stat-grid, .area-cards, .admin-stats { grid-template-columns: 1fr; }
  .seg.c3 { grid-template-columns: 1fr; }
  .seg.c2 { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .vs-head, .vs-row { grid-template-columns: 1fr; }
  .vs-us { border-left: none; border-top: 1px solid var(--line-2); }
  .hero-cta .btn { width: 100%; }
  .brand-txt em { font-size: .6rem; }
  .tl-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .tl-num { width: 50px; height: 50px; font-size: 1.1rem; }
  .tl-item:not(:last-child)::before { left: 24px; top: 40px; }
  .range-val { min-width: 76px; font-size: 1.05rem; }
  .fin-table th, .fin-table td { padding: 11px 9px; font-size: .82rem; }
  .fin-table th { font-size: .68rem; letter-spacing: .05em; }
  .atable { font-size: .8rem; }
  .atable th, .atable td { padding: 9px 10px; }
}

@media print {
  .site-head, .mobile-bar, .nav-drawer, .cta-band, .site-foot { display: none; }
  body { padding-bottom: 0; }
}
