/* =====================================================
   ARCHITECT9 — Heavyweight Editorial Design System
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&display=swap');

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

:root {
  --ink:      #0c0b09;       /* near-black */
  --ink-2:    #1a1815;       /* secondary dark */
  --paper:    #f5f3ef;       /* warm off-white */
  --white:    #fdfcfa;
  --ember:    #c94828;       /* accent — deep ember red */
  --ember-dk: #9e3519;
  --ember-lt: #f4e8e4;
  --gold:     #D4A91F;
  --green:    #2a6347;
  --mist:     #e8e4dd;       /* light gray */
  --stone:    #8a8278;       /* mid gray */
  --slate:    #3d3a35;       /* dark gray */

  --font:   'Inter', system-ui, sans-serif;
  --serif:  'Playfair Display', Georgia, serif;
  --mono:   'Courier New', Courier, monospace;
  --r:      0px;             /* sharp corners — architectural */
  --tr:     .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
input, select, textarea, button { font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  border-radius: 0;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ember);
  border-color: var(--ember);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-ember {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
}
.btn-ember:hover {
  background: var(--ember-dk);
  border-color: var(--ember-dk);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  font-weight: 900;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-sm  { padding: 9px 20px; font-size: 10.5px; }
.btn-lg  { padding: 17px 40px; font-size: 12px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -.5px;
}
.logo-icon { font-size: 20px; color: var(--ember); }
.logo:hover .logo-text { color: var(--ember); }
.logo .logo-text { transition: color var(--tr); }

.main-nav { display: flex; gap: 0; flex: 1; }
.main-nav a {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all var(--tr);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.header-cta .btn {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
  font-size: 10.5px;
  padding: 10px 22px;
}
.header-cta .btn:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 680px;
  background: #111 center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* No overlay — hero image fully visible */
.hero::after { display: none; }
.hero-overlay { display: none; }
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  max-width: 760px;
}
.hero-text {
  background: rgba(0,0,0,.52);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: 4px solid #F5C518;
  padding: 36px 40px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F5C518;
  padding: 0;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 18px rgba(245,197,24,0.55);
}
.hero-chip::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #F5C518, #E8A800);
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
}
.hero-inner h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -2.5px;
}
.hero-inner h1 em {
  background: linear-gradient(135deg, #FFD700 0%, #FFF5A0 30%, #E8A800 60%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  filter: drop-shadow(0 0 14px rgba(255,215,0,0.45));
}
.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 44px;
  max-width: 480px;
  font-weight: 400;
  line-height: 1.75;
}

/* hero search */
.hs-wrap {
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
  overflow: hidden;
  border: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.hs-input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 16px 18px;
  border: none;
  border-right: 1.5px solid var(--mist);
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
}
.hs-input::placeholder { color: var(--stone); }
.hs-select {
  flex: 1 1 130px;
  min-width: 0;
  padding: 16px 12px;
  border: none;
  border-right: 1.5px solid var(--mist);
  outline: none;
  background: var(--white);
  font-size: 13.5px;
  color: var(--slate);
  cursor: pointer;
  font-weight: 600;
}
.hs-btn {
  border-radius: 0;
  border: none;
  padding: 16px 32px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex: 1 0 100%;
  width: 100%;
  background: linear-gradient(135deg, #C89010 0%, #FFD700 35%, #F5C518 55%, #E8A800 80%, #B87C10 100%);
  color: #000;
  cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 2px 18px rgba(200,144,16,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.hs-btn:hover {
  background: linear-gradient(135deg, #B87C10 0%, #E8A800 40%, #FFD700 60%, #C89010 100%);
  color: #000;
  box-shadow: 0 4px 28px rgba(200,144,16,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}
.hero-tags > span { color: rgba(255,255,255,.35); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-tags a {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--tr);
}
.hero-tags a:hover { background: var(--gd); border-color: var(--gd); color: #000; }

/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, #B87C10 0%, #E8A800 25%, #FFD700 50%, #F5C518 65%, #E8A800 80%, #B07010 100%);
  padding: 0;
  border-top: none;
  box-shadow: 0 4px 24px rgba(184,124,16,0.4), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.15);
}
.stat-n { color: #000 !important; text-shadow: 0 1px 0 rgba(255,255,255,0.35) !important; }
.stat-l { color: rgba(0,0,0,.65) !important; font-weight: 700 !important; }
.stat + .stat::before { background: rgba(0,0,0,.15) !important; }
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 28px 32px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-l {
  font-size: 10.5px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════ */
.section     { padding: 96px 0; }
.bg-light    { background: var(--paper); }
.bg-dark     { background: var(--ink-2); }

.sec-hd      { text-align: center; margin-bottom: 64px; }
.sec-hd h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--ink);
}
.sec-hd p {
  color: var(--stone);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
}
.sec-hd.light h2 { color: var(--white); }
.sec-hd.light p  { color: rgba(255,255,255,.45); }

/* eyebrow label above section headings */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.sec-label::before,
.sec-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ember);
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--ember);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.view-all:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ═══════════════════════════════════════════════════
   STYLE GRID — clean text tiles, no icons
═══════════════════════════════════════════════════ */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
}
.style-card {
  background: var(--white);
  border: none;
  border-top: 3px solid var(--mist);
  padding: 28px 18px 24px;
  text-align: center;
  align-items: center;
  transition: all var(--tr);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.style-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gd);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.style-card:hover { background: #fdf9ee; border-top-color: #FFD700; box-shadow: 0 8px 32px rgba(0,0,0,.10); }
.style-card:hover::before { transform: scaleX(1); }
.style-card:hover .style-name { color: #000; }
.style-card:hover .style-icon {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 28px rgba(184,124,16,0.6), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.15);
}
.style-icon {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #C89010 0%, #FFD700 40%, #F5C518 58%, #E8A800 75%, #B87C10 100%);
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(184,124,16,0.45), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.15);
  font-size: 22px;
  color: #3a2800;
  transition: all var(--tr);
  flex-shrink: 0;
}
.style-name  {
  font-weight: 900;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ink);
  line-height: 1.2;
  transition: color var(--tr);
}
.style-cnt   {
  font-size: 11px;
  color: var(--gd-dk);
  font-weight: 700;
  letter-spacing: .3px;
}

/* ═══════════════════════════════════════════════════
   DESIGNS GRID
═══════════════════════════════════════════════════ */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

/* ═══════════════════════════════════════════════════
   DESIGN CARD — the workhorse
═══════════════════════════════════════════════════ */
.design-card {
  background: var(--white);
  overflow: hidden;
  border: none;
  transition: all var(--tr);
  position: relative;
}
.design-card:hover {
  box-shadow: 0 28px 70px rgba(12,11,9,.18);
  transform: translateY(-6px);
  z-index: 2;
}
.card-img-link { display: block; }
.card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.design-card:hover .card-img img { transform: scale(1.06); }

.badge {
  position: absolute;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  top: 12px;
}
.badge-vastu   { left: 0; background: var(--green); color: var(--white); }
.badge-featured { right: 0; background: var(--gold); color: var(--white); }

.card-hover-label {
  position: absolute;
  inset: 0;
  background: rgba(12,11,9,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--tr);
}
.design-card:hover .card-hover-label { opacity: 1; }

.card-body { padding: 20px 22px 22px; }
.card-style-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.card-style {
  font-size: 9.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.card-plan-id {
  font-size: 10px;
  font-weight: 700;
  color: var(--stone);
  letter-spacing: .5px;
  font-family: var(--mono);
}
.card-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.card-title a:hover { color: var(--ember); }

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 11.5px;
  color: var(--slate);
  margin-bottom: 10px;
  border-top: 1px solid var(--mist);
  border-left: 1px solid var(--mist);
}
.card-specs span {
  background: var(--paper);
  padding: 6px 10px;
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  font-weight: 700;
  font-size: 11px;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 10px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}
.tag {
  background: var(--ember-lt);
  color: var(--ember);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--mist);
}
.card-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.5px;
}

/* ═══════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2px;
}
.feature-card {
  background: var(--paper);
  padding: 40px 32px;
  transition: all var(--tr);
  border-left: 3px solid transparent;
}
.feature-card:hover {
  background: var(--ink);
  border-left-color: var(--ember);
  color: var(--white);
}
.feature-card:hover p { color: rgba(255,255,255,.55); }
.feature-icon { font-size: 36px; margin-bottom: 18px; }
.feature-card h3 { font-weight: 900; margin-bottom: 10px; font-size: 17px; letter-spacing: -.2px; }
.feature-card p  { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   DIRECTION
═══════════════════════════════════════════════════ */
.dir-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.dir-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 44px 24px;
  text-align: center;
  transition: all var(--tr);
  cursor: pointer;
}
.dir-card:hover {
  background: var(--ember);
  border-color: var(--ember);
  transform: translateY(-4px);
}
.dir-compass { font-size: 44px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.dir-label { color: var(--white); font-weight: 900; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; }
.dir-sub   { color: rgba(255,255,255,.45); font-size: 11.5px; margin-top: 6px; }

/* ═══════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 2px; }
.step-card  {
  text-align: left;
  padding: 40px 32px;
  background: var(--white);
  transition: all var(--tr);
  position: relative;
}
.step-card:hover { background: var(--ink); color: var(--white); }
.step-card:hover p { color: rgba(255,255,255,.5); }
.step-num   {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 900;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -3px;
  transition: color var(--tr);
}
.step-card:hover .step-num { color: var(--ember); }
.step-card h3 { font-weight: 900; margin-bottom: 8px; font-size: 16px; }
.step-card p  { font-size: 13.5px; color: var(--stone); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════ */
.cta-section { background: var(--ink); padding: 110px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--ember);
  opacity: .07;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -2px;
  line-height: 1.05;
}
.cta-inner p {
  color: rgba(255,255,255,.5);
  font-size: 17px;
  margin-bottom: 44px;
  max-width: 500px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════════ */
.page-banner {
  background: var(--ink);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 400px; height: 400px;
  background: var(--ember);
  opacity: .05;
  border-radius: 50%;
  transform: translate(40%, 40%);
}
.page-banner h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  line-height: 1.05;
  position: relative;
}
.page-banner p {
  color: rgba(255,255,255,.45);
  font-size: 16px;
  position: relative;
}

/* ═══════════════════════════════════════════════════
   DESIGNS PAGE (sidebar + results)
═══════════════════════════════════════════════════ */
.designs-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  padding: 40px 0 80px;
  align-items: start;
}
.filter-sidebar {
  background: var(--white);
  border: none;
  border-top: 3px solid var(--ember);
  padding: 24px;
  position: sticky;
  top: 86px;
  box-shadow: 0 4px 24px rgba(12,11,9,.07);
}
.filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mist);
}
.filter-top h3 { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; }
.clear-link { font-size: 11px; color: var(--ember); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.clear-link:hover { text-decoration: underline; }

.fg { margin-bottom: 20px; }
.fg > label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.fg input[type=text],
.fg input[type=number],
.fg select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--mist);
  border-radius: 0;
  font-size: 13.5px;
  outline: none;
  color: var(--ink);
  transition: border-color var(--tr);
  background: var(--white);
}
.fg input:focus, .fg select:focus, textarea:focus { border-color: var(--ember); }
.range-row { display: flex; gap: 8px; align-items: center; }
.range-row span { color: var(--stone); font-size: 11.5px; flex-shrink: 0; }
.range-row input { flex: 1; }
.radio-wrap { display: flex; flex-direction: column; gap: 8px; }
.rl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.rl input { accent-color: var(--ember); }
.check-label { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; font-weight: 500; }
.check-label input { accent-color: var(--ember); }
.fg-hint { display: block; font-size: 11px; color: var(--stone); margin-top: 4px; }

.results-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--slate);
}
.results-bar strong { font-family: var(--serif); font-size: 22px; font-weight: 900; color: var(--ink); }
.active-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.atag {
  background: var(--ember-lt);
  color: var(--ember);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.atag a { margin-left: 4px; font-weight: 900; }

.empty-state { text-align: center; padding: 96px 24px; }
.empty-ico   { font-size: 64px; margin-bottom: 20px; opacity: .4; }
.empty-state h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 10px; font-weight: 900; }
.empty-state p  { color: var(--stone); }
.empty-state a  { color: var(--ember); }

/* ═══════════════════════════════════════════════════
   ★★★ PLAN DETAIL PAGE — complete editorial rebuild
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   PLAN DETAIL PAGE — Black × Gold, Horizontal
═══════════════════════════════════════════════════ */

/* Gold palette (detail-page only) */
:root {
  --gd:     #D4A91F;   /* bright metallic gold */
  --gd-dk:  #A07810;   /* dark gold */
  --gd-lt:  #fdf8ee;   /* pale gold tint */
  --gd-bd:  #F0D060;   /* gold border */
  --gd-mid: #f5e9c0;   /* mid gold */
}

.detail-page { padding: 0 0 96px; background: #fff; }
.breadcrumb {
  font-size: 12px;
  color: var(--stone);
  padding: 20px 0 0;
  margin-bottom: 0;
}
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--gd); }

/* ── FULL-WIDTH HERO IMAGE ── */
.detail-hero {
  background: #f8f6f2;
  position: relative;
  margin-bottom: 0;
}

/* Stack layout: image on top, info below */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.detail-gallery-panel {
  position: relative;
  background: #111;
  overflow: hidden;
}

/* Hero image — tall, full-bleed, clearly visible */
.detail-main-img {
  position: relative;
  width: 100%;
  height: 580px;
  cursor: zoom-in;
  overflow: hidden;
}
.detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .6s ease;
}
.detail-main-img:hover img { transform: scale(1.02); }

/* Zoom hint */
.zoom-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  letter-spacing: 1.2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
  z-index: 3;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2);
}
.detail-main-img:hover .zoom-hint { opacity: 1; }

/* Lightbox */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lb-overlay.lb-open { display: flex; }
.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  z-index: 10001;
}
.lb-close:hover { opacity: 1; }
.lb-stage {
  position: relative;
  width: 92vw;
  max-width: 1300px;
  max-height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}
.lb-img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}
.lb-hint {
  color: rgba(255,255,255,.4);
  font-size: 11.5px;
  margin-top: 14px;
  text-align: center;
  letter-spacing: .5px;
}

/* Badges on main image — gold & green */
.detail-badge {
  position: absolute;
  top: 0;
  padding: 7px 18px;
  font-size: 9px;
  font-weight: 900;
  z-index: 4;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.detail-badge.vastu    { left: 0; background: var(--green); color: #fff; }
.detail-badge.featured { right: 0; background: var(--gd); color: #000; }

/* ── HORIZONTAL THUMBNAIL STRIP ── */
.thumbs {
  display: flex;
  gap: 0;
  margin-top: 0;
  border-top: 3px solid #111;
  background: #111;
}
.thumb {
  flex: 1;
  overflow: hidden;
  border-right: 2px solid #111;
  cursor: pointer;
  transition: all var(--tr);
  position: relative;
  opacity: .55;
}
.thumb:last-child { border-right: none; }
.thumb.active,
.thumb:hover { opacity: 1; }
.thumb.active { box-shadow: inset 0 -4px 0 var(--gd); }
.thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.yt-thumb { position: relative; }
.yt-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #000;
  background: var(--gd);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

/* ── INFO PANEL — light, horizontal composition ── */
.detail-info-panel {
  background: #fff;
  border-left: none;
  border-top: 4px solid var(--gd);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.detail-info { flex: 1; }

/* Top identity bar: style tag + title + price in one horizontal row */
.detail-identity {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 40px 48px 32px;
  border-bottom: 1px solid #ece8e0;
}
.detail-identity-left {}
.detail-style-tag {
  display: inline-block;
  background: var(--gd);
  color: #000;
  padding: 4px 14px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.detail-info h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 40px);
  margin-bottom: 10px;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #111;
}
.detail-identity-right { text-align: right; }

/* Plan ID badge */
.detail-plan-id {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin: 0 0 16px;
  background: var(--gd-lt);
  border: 1px solid var(--gd-bd);
  color: #111;
}
.detail-plan-id-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gd-dk);
}
.detail-plan-id strong {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  color: #111;
}

/* Big price — gold */
.detail-price {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 900;
  color: var(--gd-dk);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.detail-price-note {
  font-size: 11.5px;
  color: var(--stone);
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0;
  text-align: right;
}

/* ── SPECS ROW — horizontal, full width ── */
.specs-grid {
  display: grid;
  /* auto-fill so any number of specs fills the row evenly */
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0;
  margin: 0;
  border-bottom: 1px solid #ece8e0;
  border-right: none;
}
.spec {
  text-align: center;
  padding: 28px 16px 24px;
  border-right: 1px solid #ece8e0;
  border-top: 4px solid var(--gd-bd);
  background: #fff;
  transition: background var(--tr);
  position: relative;
}
.spec:last-child { border-right: none; }
.spec:hover { background: var(--gd-lt); }
.spec-ico { display: block; font-size: 22px; margin-bottom: 8px; opacity: .75; }
.spec strong {
  display: block;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 900;
  color: #111;
  letter-spacing: -.5px;
  line-height: 1;
}
.spec span {
  display: block;
  font-size: 9px;
  color: var(--gd-dk);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

/* ── DETAIL BODY: description + actions side by side ── */
.detail-lower {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: start;
}
.detail-lower-left  { padding: 40px 48px; border-right: 1px solid #ece8e0; }
.detail-lower-right { padding: 40px 36px; }

/* Description */
.detail-desc { margin-bottom: 24px; }
.detail-desc h3 {
  font-size: 9px;
  font-weight: 900;
  color: var(--gd-dk);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gd-bd);
  display: inline-block;
}
.detail-desc p { font-size: 15px; color: #3d3a35; line-height: 1.8; }

.detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0; }

/* Action buttons */
.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.detail-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 14px 20px;
}
/* Gold primary CTA */
.detail-actions .btn-primary {
  background: var(--gd);
  border-color: var(--gd);
  color: #000;
  font-weight: 900;
}
.detail-actions .btn-primary:hover {
  background: var(--gd-dk);
  border-color: var(--gd-dk);
  color: #fff;
}

/* Includes box — gold-tinted, not dark */
.includes-box {
  background: var(--gd-lt);
  border: 1px solid var(--gd-bd);
  border-left: 4px solid var(--gd);
  padding: 22px 24px;
  margin-top: 0;
}
.includes-box h4 {
  font-size: 9px;
  font-weight: 900;
  color: var(--gd-dk);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gd-bd);
}
.includes-box ul { display: flex; flex-direction: column; gap: 8px; }
.includes-box li {
  font-size: 13.5px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.includes-box li::before {
  content: '✓';
  color: var(--gd-dk);
  font-weight: 900;
  font-size: 12px;
  background: var(--gd-mid);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Detail page — below the fold sections */
.detail-body { padding: 64px 0 0; }
.related-sec { margin-top: 64px; }
.related-sec h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.sec-rule {
  border: none;
  border-top: 2px solid var(--mist);
  margin: 48px 0;
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-page { padding: 56px 0 48px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req { color: var(--ember); }
textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--mist);
  font-size: 14px;
  outline: none;
  resize: vertical;
  border-radius: 0;
  background: var(--white);
}
.error-box {
  background: #fff5f5;
  border-left: 3px solid #dc2626;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.error-box p { color: #dc2626; font-size: 13.5px; margin-bottom: 4px; font-weight: 600; }

.success-card {
  text-align: center;
  padding: 72px 48px;
  background: var(--paper);
}
.success-ico {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  margin: 0 auto 24px;
}
.success-card h2 { font-family: var(--serif); font-size: 32px; margin-bottom: 12px; font-weight: 900; letter-spacing: -.5px; }
.success-card p  { color: var(--stone); margin-bottom: 28px; }

.info-card {
  background: var(--paper);
  padding: 28px;
  margin-bottom: 20px;
  border-top: 3px solid var(--ember);
}
.info-card h3 {
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--stone);
}
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; font-size: 22px; }
.info-item > span { flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: 9.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--stone); margin-bottom: 3px; font-weight: 900; }
.info-item p { font-size: 14px; color: var(--ink); font-weight: 600; }

.process-list { display: flex; flex-direction: column; gap: 14px; }
.process-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--slate); }
.process-list li span {
  width: 26px;
  height: 26px;
  background: var(--ember);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.trust-card { background: var(--ink); padding: 20px; }
.trust-item {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before { content: '✓'; color: var(--ember); font-size: 11px; }
.trust-item:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════
   OFFICES
═══════════════════════════════════════════════════ */
.offices-section { background: var(--paper); padding: 72px 0 88px; border-top: 1px solid var(--mist); }
.offices-hd { text-align: center; margin-bottom: 48px; }
.offices-hd h2 { font-family: var(--serif); font-size: 38px; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.offices-hd p  { color: var(--stone); font-size: 15px; }
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.office-card {
  background: var(--white);
  overflow: hidden;
  transition: all var(--tr);
}
.office-card:hover { box-shadow: 0 20px 60px rgba(12,11,9,.14); transform: translateY(-4px); z-index: 2; }
.office-map iframe { display: block; width: 100%; height: 220px; border: 0; }
.office-info { padding: 26px; }
.office-city-tag {
  display: inline-block;
  background: var(--ember);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.office-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -.3px;
}
.office-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.office-ico { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.office-detail p { font-size: 13.5px; color: var(--slate); line-height: 1.55; margin: 0; }
.office-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background .15s;
}
.office-directions-btn:hover { background: var(--ember); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.footer-logo span { color: var(--ember); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 290px; }
.footer-badges { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; }
.footer-badges span {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-badges span::before { content: '→'; color: var(--ember); }
.footer-col h4 {
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: 13px; transition: color var(--tr); color: rgba(255,255,255,.5); }
.footer-col a:hover { color: var(--ember); }
.footer-contact-col p { font-size: 13px; margin-bottom: 8px; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════
   FLOATING CONTACT WIDGET
═══════════════════════════════════════════════════ */
#floatWidget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-tooltip {
  background: var(--ink);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  padding: 7px 14px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.float-tooltip.pulse { animation: tooltipPulse 1s ease 2; }
@keyframes tooltipPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-4px) scale(1.04); }
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, opacity .25s ease;
  opacity: 0;
  transform: translateY(16px) scale(.85);
  pointer-events: none;
  border-radius: 0;
}
.float-btn:hover { transform: translateY(-2px) scale(1.08) !important; }
.float-wa   { background: #25d366; }
.float-call { background: var(--ember); }
.float-toggle {
  width: 60px;
  height: 60px;
  background: var(--ember);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 24px rgba(201,72,40,.5);
  transition: transform .25s ease;
  position: relative;
  z-index: 2;
  border-radius: 0;
}
.float-toggle:hover { transform: scale(1.08); }
.float-toggle .ft-close { font-size: 18px; font-weight: 900; }
#floatWidget.widget-open .float-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
#floatWidget.widget-open .float-call { transition-delay: .05s; }
#floatWidget.widget-open .float-wa   { transition-delay: .1s; }
.float-btn::before {
  content: attr(title);
  position: absolute;
  right: 66px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.float-btn:hover::before { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════
   DUAL-RANGE AREA SLIDER
═══════════════════════════════════════════════════ */
.area-slider-wrap { padding-top: 4px; }
.area-slider-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  text-align: center;
  background: var(--paper);
  padding: 6px 12px;
}
.area-slider-label span { color: var(--ember); font-weight: 900; }
.dual-range { position: relative; height: 36px; display: flex; align-items: center; }
.dual-range input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  height: 4px;
  outline: none;
}
.dual-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--ember);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  pointer-events: all;
  cursor: pointer;
  transition: transform .15s;
  border-radius: 0;
}
.dual-range input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.dual-range input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--ember);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  pointer-events: all;
  cursor: pointer;
  border-radius: 0;
}
.range-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mist);
  z-index: 0;
}
.range-fill { position: absolute; height: 100%; background: var(--ember); }

/* ═══════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pg-numbers { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.pg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--mist);
  font-size: 13px;
  font-weight: 800;
  color: var(--slate);
  transition: all var(--tr);
}
.pg-num:hover { border-color: var(--ember); color: var(--ember); }
.pg-num.active { background: var(--ink); border-color: var(--ink); color: var(--white); cursor: default; }
.pg-ellipsis { color: var(--stone); font-size: 14px; padding: 0 4px; }
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1.5px solid var(--mist);
  font-size: 12px;
  font-weight: 800;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--tr);
  white-space: nowrap;
}
.pg-btn:hover { border-color: var(--ink); color: var(--ink); }
.pg-btn.disabled { opacity: .35; pointer-events: none; cursor: default; }
.results-page-info { font-size: 13px; color: var(--stone); margin-left: 8px; }

/* ═══════════════════════════════════════════════════
   AD SLOTS
═══════════════════════════════════════════════════ */
.ad-slot { display: block; width: 100%; text-align: center; line-height: normal; }
.ad-slot img, .ad-slot iframe, .ad-slot ins, .ad-slot > div {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.ad-slot--header_banner   { padding: 8px 0; }
.ad-slot--after_hero      { padding: 24px 0; }
.ad-slot--content_middle  { padding: 24px 0; }
.ad-slot--before_footer   { padding: 16px 0; }
.ad-slot--sidebar_top     { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════
   360° WALKTHROUGH VIEWER
═══════════════════════════════════════════════════ */
.thumb.wt-360 { position: relative; }
.thumb.wt-360 .wt-360-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 2px 6px;
  pointer-events: none;
  line-height: 1.4;
  text-transform: uppercase;
}
.thumb.wt-360 img { filter: brightness(0.9); }
.thumb.wt-360:hover img, .thumb.wt-360.active img { filter: none; }

.wt-viewer-wrap {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  cursor: grab;
  overflow: hidden;
  z-index: 2;
}
.wt-viewer-wrap:active { cursor: grabbing; }
.wt-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,.92);
  z-index: 10;
  gap: 14px;
}
.wt-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--ember);
  border-radius: 50%;
  animation: wtSpin 0.8s linear infinite;
}
@keyframes wtSpin { to { transform: rotate(360deg); } }
.wt-loader-text { color: rgba(255,255,255,.5); font-size: 12.5px; letter-spacing: .5px; }
.wt-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wt-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.6);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  pointer-events: none;
  letter-spacing: .04em;
}
.wt-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ember);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  pointer-events: none;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wt-close-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wt-close-btn:hover { background: var(--ember); }
.wt-fs-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.wt-fs-btn:hover { background: var(--ember); transform: scale(1.1); }
.wt-viewer-wrap:-webkit-full-screen { background: #000; width: 100vw; height: 100vh; }
.wt-viewer-wrap:-moz-full-screen    { background: #000; width: 100vw; height: 100vh; }
.wt-viewer-wrap:fullscreen          { background: #000; width: 100vw; height: 100vh; }
.wt-viewer-wrap:-webkit-full-screen img,
.wt-viewer-wrap:-moz-full-screen img,
.wt-viewer-wrap:fullscreen img { width: 100%; height: 100%; object-fit: contain; }
.wt-viewer-wrap:-webkit-full-screen .wt-fs-btn,
.wt-viewer-wrap:-moz-full-screen .wt-fs-btn,
.wt-viewer-wrap:fullscreen .wt-fs-btn { width: 46px; height: 46px; font-size: 20px; }

/* ═══════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════ */
.page-banner { background: var(--ink); padding: 64px 0 56px; border-bottom: 3px solid var(--ember); }
.page-banner h1 { font-family: var(--serif); font-size: clamp(32px, 4.5vw, 56px); color: var(--white); line-height: 1.05; margin-bottom: 12px; letter-spacing: -1.5px; font-weight: 900; }
.page-banner p  { color: rgba(255,255,255,.45); font-size: 16px; max-width: 560px; }

.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.blog-main   { min-width: 0; }
.blog-sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 24px; }
.post-layout  { display: grid; grid-template-columns: 1fr 280px; gap: 52px; align-items: start; margin-bottom: 80px; }
.post-sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 24px; }

.blog-search-bar { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; align-items: center; }
.blog-search-bar input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border: 1.5px solid var(--mist);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  background: var(--white);
  transition: border-color var(--tr);
  border-radius: 0;
}
.blog-search-bar input:focus { border-color: var(--ember); }
.blog-filter-label { font-size: 13.5px; color: var(--stone); margin-bottom: 28px; line-height: 1.5; }
.blog-filter-label strong, .blog-filter-label em { color: var(--ink); }

.blog-hero-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  background: var(--white);
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 8px 40px rgba(12,11,9,.1);
  transition: box-shadow var(--tr);
}
.blog-hero-card:hover { box-shadow: 0 20px 60px rgba(12,11,9,.18); }
.blog-hero-card .blog-card-img { aspect-ratio: unset; height: 100%; min-height: 320px; }
.blog-hero-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-hero-body .blog-card-title { font-family: var(--serif); font-size: 26px; font-weight: 900; line-height: 1.2; margin-bottom: 16px; letter-spacing: -.5px; }
.blog-hero-body .blog-card-excerpt { font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; }
.blog-hero-body .blog-card-footer { margin-top: auto; }

.blog-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 44px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(12,11,9,.14); z-index: 2; }

.blog-card-img-link { display: block; flex-shrink: 0; }
.blog-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0c0b09 0%, #1a1815 55%, #2a1e14 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.blog-img-ph svg   { opacity: .2; width: 72px; height: auto; }
.blog-img-ph span  { font-size: 9.5px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25); }

.blog-video-overlay {
  position: absolute; inset: 0;
  background: rgba(12,11,9,.55);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.blog-card:hover .blog-video-overlay { background: rgba(12,11,9,.35); }
.yt-play-btn {
  width: 54px; height: 54px;
  background: var(--ember);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.yt-play-btn svg { width: 22px; height: 22px; fill: var(--white); margin-left: 3px; }
.blog-card:hover .yt-play-btn { transform: scale(1.1); }

.blog-video-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--ember); color: var(--white);
  padding: 3px 10px;
  font-size: 9px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.blog-featured-badge {
  position: absolute; top: 0; left: 0;
  background: var(--gold); color: var(--white);
  padding: 4px 14px;
  font-size: 9px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
}

.blog-card-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat-pill {
  background: var(--ember);
  color: var(--white);
  padding: 3px 10px;
  font-size: 9px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  transition: all var(--tr);
}
.blog-cat-pill:hover { background: var(--ember-dk); }
.blog-date { font-size: 11.5px; color: var(--stone); }
.blog-read-time { font-size: 11px; color: var(--stone); margin-left: auto; }

.blog-card-title { font-size: 16px; font-weight: 900; line-height: 1.35; margin-bottom: 10px; color: var(--ink); letter-spacing: -.2px; }
.blog-card-title a { transition: color var(--tr); }
.blog-card-title a:hover { color: var(--ember); }
.blog-card-excerpt {
  font-size: 13.5px; color: var(--stone); line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--paper); margin-top: auto;
}
.blog-author-mini { display: flex; align-items: center; gap: 8px; }
.blog-author-av {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--ink), var(--ember));
  color: var(--white); font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.blog-author { font-size: 12px; color: var(--stone); font-weight: 600; }
.blog-read-more {
  font-size: 10px; font-weight: 900; color: var(--ember);
  letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--tr);
}
.blog-read-more:hover { gap: 8px; }

.blog-widget { background: var(--white); border: none; border-top: 3px solid var(--ember); padding: 26px; }
.widget-title {
  font-size: 9.5px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 2px; color: var(--stone); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--paper);
}
.category-list { display: flex; flex-direction: column; gap: 1px; }
.category-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 12px;
  font-size: 13.5px; font-weight: 600; color: var(--slate);
  transition: all var(--tr);
}
.category-list li a:hover, .category-list li a.active {
  background: var(--ember); color: var(--white); padding-left: 16px;
}
.cat-count {
  background: var(--paper); color: var(--stone);
  font-size: 10px; padding: 2px 8px; font-weight: 800;
}
.category-list li a.active .cat-count,
.category-list li a:hover  .cat-count { background: rgba(255,255,255,.2); color: var(--white); }

.blog-cta-widget { text-align: center; }
.blog-cta-widget .bcta-icon { font-size: 34px; margin-bottom: 14px; }
.blog-cta-widget h4 { font-weight: 900; font-size: 16px; margin-bottom: 8px; line-height: 1.3; letter-spacing: -.2px; }
.blog-cta-widget p  { font-size: 13px; color: var(--stone); margin-bottom: 20px; line-height: 1.65; }
.blog-cta-dark { background: var(--ink); border-top-color: var(--ember); }
.blog-cta-dark h4 { color: var(--white); }
.blog-cta-dark p  { color: rgba(255,255,255,.45); }

.blog-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; flex-wrap: wrap; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--mist);
}

.post-banner { background: var(--ink); padding: 80px 0 0; }
.post-banner-inner { position: relative; z-index: 1; padding: 52px 0; width: 100%; }

.post-cover-wrap {
  margin-bottom: 44px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
  box-shadow: 0 10px 50px rgba(12,11,9,.15);
}
.post-cover-wrap img { display: block; width: 100%; height: auto; max-height: 540px; object-fit: cover; }
.post-cover-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,11,9,.7) 0%, transparent 100%);
  padding: 36px 24px 16px;
  font-size: 11px; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.post-banner .breadcrumb { color: rgba(255,255,255,.4); margin-bottom: 20px; font-size: 12px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.post-banner .breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--tr); }
.post-banner .breadcrumb a:hover { color: var(--white); }
.post-meta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px 16px; color: rgba(255,255,255,.4); font-size: 12px; margin-bottom: 20px;
}
.post-meta-sep { color: rgba(255,255,255,.15); }
.post-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(30px, 5vw, 58px);
  color: var(--white); line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 28px; max-width: 860px;
}
.post-author-row { display: flex; align-items: center; gap: 14px; }
.post-author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), var(--ember));
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--white); flex-shrink: 0;
}
.post-author-row strong { color: var(--white); font-size: 14px; }

.post-video-section { margin-bottom: 44px; }
.post-video-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); margin-bottom: 16px;
}
.post-video-label::before { content: ''; display: block; flex: 1; height: 1px; background: var(--mist); }
.post-video-label::after  { content: ''; display: block; flex: 1; height: 1px; background: var(--mist); }
.yt-embed-wrap {
  position: relative; padding-top: 56.25%;
  overflow: hidden; background: var(--ink);
  box-shadow: 0 12px 40px rgba(12,11,9,.2);
}
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.post-content-wrap { min-width: 0; }
.post-lead {
  font-size: 18.5px; line-height: 1.8; color: var(--slate);
  background: var(--paper);
  border-left: 4px solid var(--ember);
  padding: 20px 26px;
  margin-bottom: 40px;
  font-style: italic;
}
.post-content { font-size: 16.5px; line-height: 1.85; color: var(--ink); }
.post-content h2 {
  font-family: var(--serif); font-weight: 900; font-size: 30px;
  margin: 52px 0 18px; color: var(--ink); letter-spacing: -.5px;
  padding-bottom: 12px; border-bottom: 2px solid var(--mist);
}
.post-content h3 { font-weight: 900; font-size: 21px; margin: 36px 0 14px; color: var(--ink); }
.post-content p  { margin-bottom: 24px; }
.post-content ul, .post-content ol { margin: 0 0 24px 28px; }
.post-content li { margin-bottom: 10px; }
.post-content a  { color: var(--ember); text-decoration: underline; text-underline-offset: 4px; }
.post-content a:hover { color: var(--ember-dk); }
.post-content strong { font-weight: 800; }
.post-content em { font-style: italic; }
.post-content img { margin: 32px 0; max-width: 100%; box-shadow: 0 8px 30px rgba(12,11,9,.12); }
.post-content blockquote {
  border-left: 4px solid var(--ember); padding: 18px 26px;
  margin: 32px 0; background: var(--paper);
  font-style: italic; font-size: 19px; color: var(--slate); line-height: 1.7;
}
.post-article-footer {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px; margin-top: 52px; padding-top: 30px;
  border-top: 2px solid var(--mist);
}
.post-share { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.share-btn {
  padding: 8px 18px;
  font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  transition: opacity var(--tr);
}
.share-btn:hover { opacity: .8; }
.share-wa { background: #25d366; color: #fff; }
.share-fb { background: #1877f2; color: #fff; }
.post-category-tag { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }

.post-author-box {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--paper);
  border-top: 3px solid var(--ember);
  padding: 28px; margin-top: 52px;
}
.pab-avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink), var(--ember));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: var(--white);
}
.pab-name { font-weight: 900; font-size: 17px; margin-bottom: 2px; }
.pab-role { font-size: 9.5px; color: var(--ember); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.pab-bio  { font-size: 13.5px; color: var(--stone); line-height: 1.7; }

.related-posts { border-top: 2px solid var(--mist); padding-top: 72px; }

.blog-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.empty-state { text-align: center; padding: 80px 24px; background: var(--paper); }
.empty-state .empty-ico { font-size: 56px; margin-bottom: 18px; opacity: .4; }
.empty-state h3 { font-family: var(--serif); font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.empty-state p  { color: var(--stone); font-size: 14px; }

.blog-toolbar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 10px 14px;
  background: var(--paper); border: 1.5px solid var(--mist); border-bottom: none;
}
.blog-toolbar button {
  padding: 5px 12px; font-size: 12px; font-weight: 800;
  background: var(--white); border: 1px solid var(--mist);
  cursor: pointer; line-height: 1.4; transition: all var(--tr);
  border-radius: 0;
}
.blog-toolbar button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.blog-toolbar + textarea { border-top-left-radius: 0; border-top-right-radius: 0; }
.toolbar-hint { margin-left: auto; font-size: 11px; color: var(--stone); font-style: italic; }

.yt-preview-box { margin-top: 12px; overflow: hidden; background: var(--ink); display: none; }
.yt-preview-box.active { display: block; }
.yt-preview-box iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-main-img { height: 420px; }
  .detail-identity { padding: 32px 32px 28px; gap: 16px; }
  .detail-price { font-size: 40px; }
  .detail-lower { grid-template-columns: 1fr; }
  .detail-lower-left  { padding: 32px 32px; border-right: none; border-bottom: 1px solid #ece8e0; }
  .detail-lower-right { padding: 28px 32px; }
  .thumbs { position: relative; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-grid-3, .blog-home-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-card { grid-template-columns: 1fr; }
  .blog-hero-card .blog-card-img { min-height: 240px; }
  .blog-hero-body { padding: 28px 24px; }
}
@media (max-width: 900px) {
  .designs-page { grid-template-columns: 240px 1fr; }
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar, .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .office-grid { grid-template-columns: 1fr; }
  .designs-page { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 16px;
    border-bottom: 2px solid var(--ember);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    z-index: 300;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 13px; padding: 12px 14px; }
  .nav-toggle { display: flex; }
  .hs-wrap { flex-direction: column; }
  .hs-select, .hs-btn { border-left: none !important; border-top: 1px solid var(--mist) !important; }
  .form-row { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; }
  .header-cta { display: none; }
  .steps-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .detail-main-img { height: 300px; }
  .detail-identity { flex-direction: column; grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .detail-identity-right { text-align: left; }
  .detail-price { font-size: 36px; }
  .detail-price-note { text-align: left; }
  .detail-lower-left  { padding: 24px 20px; }
  .detail-lower-right { padding: 20px 20px; }
  .hero-inner h1 { letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .designs-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-grid-3, .blog-home-grid { grid-template-columns: 1fr; }
  .post-title { font-size: 30px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-main-img { height: 240px; }
  .detail-price { font-size: 30px; }
}
