/* ==========================================================================
   Genstone & Tombco — Hi-fi site styles
   "Apple meets luxury memorial craftsmanship"
   ========================================================================== */

:root {
  /* Brand palette */
  --red: #E1271E;
  --red-deep: #B81C15;
  --ink: #141414;
  --gold: #FFD400;
  --gold-soft: #F2CC2E;
  --white: #FBFAF6;
  --berry: #C2185B;
  --char-warm: #1F1D1A;
  --char-stone: #3A3631;
  --stone-gray: #6E6962;
  --stone-warm: #B8B2A8;
  --ivory-stone: #ECE8DF;
  --ivory: #F4F1EA;

  --line: rgba(110,105,98,0.18);
  --line-strong: rgba(110,105,98,0.3);
  --shadow-sm: 0 2px 10px -6px rgba(31,29,26,0.25);
  --shadow-md: 0 16px 40px -24px rgba(31,29,26,0.4);
  --shadow-lg: 0 30px 70px -30px rgba(31,29,26,0.5);

  --sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --sect: clamp(72px, 11vw, 140px);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--char-stone);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.display { font-size: clamp(40px, 6.2vw, 74px); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; }
h2.sect-title { font-size: clamp(30px, 4.2vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.01em; }
.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; color: var(--char-stone); }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center::before { display: none; }
.muted { color: var(--stone-gray); }
.serif-accent { font-style: italic; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: var(--sect); padding-bottom: var(--sect); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  padding: 15px 28px; border-radius: 999px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1; text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 24px -12px rgba(225,39,30,0.6); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(225,39,30,0.55); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px -14px rgba(255,212,0,0.7); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-ghost.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-wa { background: transparent; color: #1aab52; border: 1.5px solid #25D366; box-shadow: none; padding: 10px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.btn-wa:hover { background: rgba(37,211,102,0.06); border-color: #1aab52; color: #1aab52; transform: translateY(-2px); }
.btn-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
/* Solid WhatsApp button with text — prominent hero/contact action */
.btn-wa-text { background: #25D366; color: #fff; border: none; box-shadow: 0 10px 24px -12px rgba(37,211,102,0.65); gap: 9px; }
.btn-wa-text:hover { background: #1aab52; color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37,211,102,0.6); }
.btn-wa-text svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(0) scale(0.99); }
.btn:focus-visible { outline: 3px solid rgba(225,39,30,0.4); outline-offset: 2px; }

.link-arrow { font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; transition: gap .2s var(--ease); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover { gap: 12px; color: var(--red); }

/* ---------- Pills / chips ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  color: var(--char-stone);
}
.pill .star { color: var(--gold); }
.tab-chip {
  font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); color: var(--stone-gray); transition: all .2s var(--ease); white-space: nowrap;
}
.tab-chip:hover { color: var(--ink); border-color: var(--line-strong); }
.tab-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Photo slots ---------- */
image-slot { display: block; background: var(--ivory-stone); }
.slot-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ivory-stone); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 18px var(--pad); max-width: 1440px; margin: 0 auto; }
.brand-logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--white); transition: color .3s var(--ease); }
.brand-logo .mark { width: 12px; height: 12px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.brand-logo small { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--stone-warm); margin-top: 2px; }
.brand-logo .stack { line-height: 1.1; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all .3s var(--ease); }
.nav-mobile { display: none; }

/* scrolled state -> solid ivory */
.nav.scrolled { background: rgba(244,241,234,0.86); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.logo-scrolled { display: none !important; }
.nav.scrolled .logo-default { display: none !important; }
.nav.scrolled .logo-scrolled { display: block !important; }
.nav.scrolled .brand-logo { color: var(--ink); }
.nav.scrolled .brand-logo small { color: var(--stone-gray); }
.nav.scrolled .nav-links a { color: var(--char-stone); }
.nav.scrolled .nav-links a:hover { color: var(--ink); }
.nav.scrolled .nav-burger span { background: var(--ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; background: var(--char-warm); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media image-slot, .hero-media .hero-img { width: 100%; height: 100%; }
.hero-media .hero-img { object-fit: cover; object-position: center; display: block; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.62) 0%, rgba(20,20,20,0.34) 42%, rgba(20,20,20,0.5) 72%, rgba(20,20,20,0.92) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--pad) clamp(56px, 8vh, 96px); }
.hero-content { max-width: 760px; }
.hero .pill { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.92); backdrop-filter: blur(6px); margin-bottom: 26px; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: clamp(17px, 1.8vw, 21px); color: rgba(255,255,255,0.85); max-width: 560px; line-height: 1.6; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.6); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll svg { width: 18px; height: 18px; animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust { background: var(--white); }
.trust-oneliner { text-align: center; font-size: clamp(18px, 2.2vw, 24px); color: var(--stone-gray); padding: clamp(32px, 5vw, 52px) 0; margin: 0; line-height: 1.5; }
.trust-oneliner strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   JOURNEY
   ========================================================================== */
.journey { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; position: relative; }
.steps::before { content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--stone-warm) 0 6px, transparent 6px 12px); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step .ring { width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--red); position: relative; transition: all .3s var(--ease); }
.step .ring svg { width: 26px; height: 26px; }
.step .ring .idx { position: absolute; top: -8px; right: -4px; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step:hover .ring { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--stone-gray); line-height: 1.55; }
.journey-cta { text-align: center; margin-top: clamp(44px, 6vw, 64px); }

/* ==========================================================================
   RANGES
   ========================================================================== */
.ranges { background: var(--ivory); }
.range-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.range-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.range-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.range-card .photo { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.range-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.range-card .photo image-slot { width: 100%; height: 100%; }
.range-card .tag { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(20,20,20,0.7); color: #fff; backdrop-filter: blur(4px); }
.range-card .tag.exec { background: var(--gold); color: var(--ink); }
.range-body {
  padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1;
  color: inherit; text-decoration: none; cursor: pointer;
  transition: background .2s var(--ease);
}
.range-body:hover { background: var(--ivory); }
.range-body:hover .link-arrow { gap: 12px; color: var(--red); }
.range-body:focus-visible { outline: 3px solid rgba(225,39,30,0.35); outline-offset: -3px; }
.range-body h3 { margin: 0; }
.range-body p { font-size: 15px; color: var(--stone-gray); line-height: 1.55; }
.range-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.range-price { font-size: 13px; color: var(--stone-gray); }
.range-price b { display: block; font-size: 21px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.ranges-foot { text-align: center; margin-top: 44px; }

/* ==========================================================================
   FEATURED (dark editorial)
   ========================================================================== */
.featured { background: var(--char-warm); color: rgba(255,255,255,0.86); }
.featured h2 { color: var(--white); }
.featured .eyebrow { color: var(--gold); }
.featured .eyebrow::before { background: var(--gold); }
.featured-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.featured-copy h2 { margin: 18px 0 20px; }
.featured-copy p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.featured-media { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 14px; }
.featured-media .big { grid-column: 1 / 4; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.featured-media .small { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.featured-media image-slot { width: 100%; height: 100%; }

/* ==========================================================================
   PAYMENT
   ========================================================================== */
.payment { background: var(--white); }
.pay-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.pay-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pay-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; transition: all .25s var(--ease); }
.pay-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.pay-card .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,212,0,0.16); color: #9a8200; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pay-card .ico svg { width: 22px; height: 22px; }
.pay-card h3 { font-size: 17px; margin-bottom: 7px; }
.pay-card p { font-size: 14px; color: var(--stone-gray); line-height: 1.5; }
.calc { background: var(--char-warm); color: #fff; border-radius: var(--radius); padding: clamp(26px, 3vw, 36px); position: sticky; top: 100px; }
.calc .eyebrow { color: var(--gold); }
.calc .eyebrow::before { background: var(--gold); }
.calc h3 { color: #fff; margin: 14px 0 22px; font-size: 22px; }
.calc-row { margin-bottom: 22px; }
.calc-row label { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; margin-bottom: 12px; font-weight: 500; }
.calc-row label b { color: var(--gold); font-size: 15px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.18); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--red); border: 3px solid var(--char-warm); box-shadow: 0 0 0 1px var(--red); cursor: pointer; transition: transform .15s var(--ease); }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--red); border: 3px solid var(--char-warm); cursor: pointer; }
.calc-result { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; margin-top: 6px; display: flex; align-items: flex-end; justify-content: space-between; }
.calc-result .small { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.calc-result .amount { font-size: clamp(32px, 4vw, 44px); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-top: 6px; }
.calc-result .amount span { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 500; }
.calc .btn { margin-top: 22px; }
.calc .note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 14px; text-align: center; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why { background: var(--ivory); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: all .3s var(--ease); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card .ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(225,39,30,0.09); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card .ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--stone-gray); line-height: 1.6; }

/* Delivery band */
.delivery-band { background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delivery-inner { display: flex; align-items: center; gap: 24px; padding: clamp(28px, 4vw, 44px) 0; flex-wrap: wrap; }
.delivery-icon { flex-shrink: 0; width: 64px; height: 64px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.delivery-text { flex: 1; font-size: clamp(17px, 2vw, 21px); color: var(--stone-gray); margin: 0; line-height: 1.6; min-width: 200px; }
.delivery-text strong { color: var(--ink); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.testi-feature { background: var(--ivory-stone); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.testi-feature .stars, .testi-card .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.testi-feature .stars svg, .testi-card .stars svg { width: 18px; height: 18px; }
.testi-feature blockquote { font-size: clamp(20px, 2.3vw, 27px); line-height: 1.45; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.testi-col { display: flex; flex-direction: column; gap: 24px; }
.testi-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; flex: 1; }
.testi-card blockquote { font-size: 16px; line-height: 1.6; color: var(--char-stone); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-author image-slot, .testi-author .ph { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; background: var(--stone-warm); }
.testi-author .name { font-weight: 700; color: var(--ink); font-size: 15px; }
.testi-author .place { font-size: 13px; color: var(--stone-gray); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--ivory); }
.gallery-head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.masonry { columns: 4; column-gap: 16px; }
.masonry .tile { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; background: var(--ivory-stone); }
.masonry .tile image-slot { width: 100%; }
.masonry .tile .loc { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 14px 12px; background: linear-gradient(transparent, rgba(20,20,20,0.75)); color: #fff; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); }
.masonry .tile .loc svg { width: 14px; height: 14px; }
.masonry .tile:hover .loc { opacity: 1; transform: translateY(0); }
.masonry .tile.hide { display: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,20,20,0.92); display: none; align-items: center; justify-content: center; padding: 5vh 5vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-slot { max-width: 80vw; max-height: 80vh; }
.lightbox-close { position: absolute; top: 24px; right: 28px; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ==========================================================================
   SHOWROOMS
   ========================================================================== */
.showrooms { background: var(--white); }
.show-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: stretch; }
.show-list { display: flex; flex-direction: column; gap: 16px; }
.show-card { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: all .25s var(--ease); }
.show-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.show-card[data-showroom-id] { cursor: pointer; }
.show-card[data-showroom-id]:focus-visible { outline: 3px solid rgba(225,39,30,.22); outline-offset: 3px; }
.show-card.active { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,39,30,.1), var(--shadow-sm); }
.show-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.show-card h3 { font-size: 19px; }
.show-card .status { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.show-card .status.open { background: rgba(31,138,90,0.12); color: #1F8A5A; }
.show-card .status.closed { background: rgba(110,105,98,0.14); color: var(--stone-gray); }
.show-card .info { font-size: 14px; color: var(--stone-gray); line-height: 1.7; margin-bottom: 16px; }
.show-card .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.show-map { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--ivory-stone); min-height: 460px; }
.show-map image-slot { width: 100%; height: 100%; }
.show-map .map-pin { position: absolute; width: 32px; height: 32px; border-radius: 50% 50% 50% 0; background: var(--red); transform: rotate(-45deg); box-shadow: var(--shadow-md); border: 2px solid #fff; }
.show-map .map-pin::after { content: ''; position: absolute; inset: 8px; border-radius: 50%; background: #fff; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--ivory); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
.contact-copy h2 { margin-bottom: 20px; }
.contact-copy .lead { margin-bottom: 28px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-detail .row { display: flex; align-items: center; gap: 14px; }
.contact-detail .row .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-detail .row .ico svg { width: 20px; height: 20px; }
.contact-detail .row .t { font-size: 12px; color: var(--stone-gray); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail .row .v { font-weight: 600; color: var(--ink); font-size: 15px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm); }
.form-card .eyebrow { margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--char-stone); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--ivory);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,39,30,0.12); background: var(--white); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--stone-gray); text-align: center; margin-top: 16px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding-top: clamp(56px, 7vw, 88px); }
.footer .brand-logo { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-about p { font-size: 14px; line-height: 1.7; margin: 18px 0 22px; max-width: 300px; }
.footer-news { display: flex; gap: 8px; margin-bottom: 22px; }
.footer-news input { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); color: #fff; font-family: var(--sans); font-size: 14px; }
.footer-news input::placeholder { color: rgba(255,255,255,0.4); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .2s var(--ease); }
.socials a:hover { background: var(--red); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding: 26px 0; }
.footer-bottom .legal { font-size: 13px; color: rgba(255,255,255,0.45); }
.pay-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-badge { font-size: 11px; font-weight: 600; padding: 7px 13px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }

/* ==========================================================================
   FLOATING WHATSAPP + STICKY MOBILE CTA
   ========================================================================== */
.fab-wa { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid #25D366; box-shadow: 0 4px 16px -4px rgba(37,211,102,0.3); display: flex; align-items: center; justify-content: center; color: #25D366; transition: transform .2s var(--ease); }
.fab-wa:hover { transform: scale(1.08); background: rgba(37,211,102,0.06); }
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa .ping { position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0.3; animation: ping 2.4s var(--ease) infinite; z-index: -1; }
@keyframes ping { 0%{transform:scale(1);opacity:.5} 70%,100%{transform:scale(1.7);opacity:0} }

.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 88; display: none; gap: 10px; padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom)); background: rgba(251,250,246,0.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.mobile-cta .btn { flex: 1; }

/* ==========================================================================
   IMAGE LOADER SHIMMER
   ========================================================================== */
@keyframes img-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.img-loading {
  position: relative;
}
.img-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--ivory-stone) 25%, #e5dfd5 50%, var(--ivory-stone) 75%);
  background-size: 200% 100%;
  animation: img-shimmer 1.4s ease-in-out infinite;
  pointer-events: none;
  transition: opacity .3s ease;
}
.img-loaded::before {
  opacity: 0;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .range-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .featured-grid { grid-template-columns: 1fr; }
  .pay-layout { grid-template-columns: 1fr; }
  .calc { position: static; }
  .testi-grid, .show-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
/* Nav collapses to burger earlier than the layout stacks */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 760px) {
  :root { --sect: 64px; }
  .brand-logo img { height: 72px !important; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-burger { display: block; }
  .nav-mobile { position: fixed; inset: 0; background: var(--ink); z-index: 99; display: flex; flex-direction: column; padding: 90px var(--pad) 40px; gap: 6px; transform: translateX(100%); transition: transform .35s var(--ease); }
  .nav-mobile.open { transform: none; }
  .nav-mobile a { color: #fff; font-size: 22px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-mobile .btn { margin-top: 20px; }
  .hero-scroll { display: none; }
  .steps { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 68px minmax(0, 1fr); grid-template-areas: "icon title" "icon copy"; column-gap: 16px; row-gap: 6px; align-items: start; text-align: left; }
  .step .ring { grid-area: icon; margin: 0; }
  .step h3 { grid-area: title; margin-bottom: 0; }
  .step p { grid-area: copy; }
  .range-grid, .why-grid, .pay-options { grid-template-columns: 1fr; }
  .masonry { columns: 2; column-gap: 12px; }
  .masonry .tile { margin-bottom: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .mobile-cta { display: flex; }
  .fab-wa { bottom: 84px; width: 54px; height: 54px; }
  .fab-wa svg { width: 26px; height: 26px; }
  body { padding-bottom: 0; }
  .featured-media { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 420px) {
  .masonry { columns: 1; }
  .hero-actions .btn { flex: 1; }
}

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

/* ==========================================================================
   RANGES INNER PAGE
   ========================================================================== */

/* --- Page hero (dark, compact) --- */
.ranges-inner-hero {
  background: var(--char-warm) url('/tombco/hero-ranges.webp') center center / cover no-repeat;
  padding: calc(var(--sect) + 72px) 0 clamp(52px, 7vw, 88px);
  position: relative;
}
.ranges-inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.75);
}
.ranges-inner-hero .eyebrow { color: var(--gold); }
.ranges-inner-hero .eyebrow::before { background: var(--gold); }
.ranges-inner-hero h1 { color: var(--white); font-size: clamp(30px, 4.2vw, 54px); margin: 18px 0 18px; }
.ranges-inner-hero .lead { color: rgba(255,255,255,0.72); max-width: 600px; }

/* --- Sticky filter bar --- */
.ranges-filters-bar {
  background: rgba(244,241,234,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  position: sticky;
  top: 84px;
  z-index: 50;
  transition: box-shadow .3s var(--ease);
}
.ranges-filters-bar.shadow { box-shadow: var(--shadow-sm); }
.filters-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.filters-chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* --- Editorial rows (Section 02) --- */
.editorial-section { background: var(--ivory); }
.editorial-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.editorial-row {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.editorial-row:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.editorial-row-img {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--ivory-stone);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.editorial-row-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.editorial-row:hover .editorial-row-img img { transform: scale(1.04); }
.editorial-row-img image-slot { width: 100%; height: 100%; }
.cat-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(20,20,20,0.72); color: #fff; backdrop-filter: blur(4px);
}
.cat-badge.exec { background: var(--gold); color: var(--ink); }
.editorial-row-body { display: flex; flex-direction: column; gap: 12px; padding: clamp(16px, 2vw, 24px); flex: 1; }
.editorial-row-body .price-row { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.editorial-row-body h2 { font-size: clamp(18px, 1.6vw, 22px); margin: 0; }
.editorial-price {
  font-size: 12px; color: var(--stone-gray); font-weight: 500; white-space: nowrap;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; display: inline-flex; align-items: center; gap: 6px;
}
.editorial-price b { font-size: 15px; color: var(--ink); font-weight: 700; }
.editorial-row-body > p { font-size: 14px; color: var(--stone-gray); line-height: 1.65; }
.editorial-feature-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.editorial-feature-chips .chip {
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--ivory); border: 1px solid var(--line); color: var(--char-stone);
}
.editorial-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: auto; padding-top: 8px; }
.compare-btn {
  font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 11px 20px; border-radius: 999px;
  border: 1.5px dashed var(--line-strong);
  background: transparent; color: var(--stone-gray);
  transition: all .2s var(--ease); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.compare-btn:hover { border-color: var(--red); color: var(--red); border-style: solid; }
.compare-btn.active { border-style: solid; border-color: var(--red); color: var(--red); background: rgba(225,39,30,0.07); }

/* --- Compare tray (sticky bottom) --- */
.compare-tray {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 89;
  background: var(--char-warm); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px var(--pad) calc(14px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 16px;
  transform: translateY(100%); transition: transform .35s var(--ease);
}
.compare-tray.active { transform: none; }
.compare-tray-slots { display: flex; gap: 10px; }
.compare-slot {
  width: 52px; height: 52px; border-radius: 10px;
  border: 1.5px dashed rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 22px; overflow: hidden;
  position: relative; flex-shrink: 0;
}
.compare-slot img { width: 100%; height: 100%; object-fit: cover; }
.slot-remove {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,20,20,0.65); color: #fff; font-size: 16px; font-weight: 700;
  opacity: 0; transition: opacity .2s var(--ease); cursor: pointer;
  border: none; font-family: var(--sans);
}
.compare-slot:hover .slot-remove { opacity: 1; }
.compare-tray-label { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; line-height: 1.4; }
.compare-tray-label strong { color: #fff; display: block; font-size: 16px; }
.compare-tray-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.compare-tray-close { background: none; border: none; color: rgba(255,255,255,0.45); cursor: pointer; font-size: 24px; padding: 6px; line-height: 1; transition: color .2s; }
.compare-tray-close:hover { color: #fff; }

/* --- Tier comparison (Section 03) --- */
.compare-section { background: var(--white); }
.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: clamp(36px, 5vw, 52px); align-items: start;
}
.tier-card {
  background: var(--ivory); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.tier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tier-card.featured { border-color: var(--red); border-width: 2px; background: var(--white); }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.tier-name { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.tier-price-label {
  font-size: 13px; color: var(--stone-gray); font-weight: 500;
  background: var(--ivory-stone); border-radius: 999px;
  padding: 7px 16px; display: inline-flex; align-items: center;
  align-self: flex-start; margin-bottom: 20px; gap: 4px;
}
.tier-price-label b { font-size: 17px; color: var(--ink); }
.tier-divider { height: 1px; background: var(--line); margin-bottom: 16px; }
.tier-features { display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 24px; }
.tier-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--char-stone); line-height: 1.45; }
.tier-feature .fi {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.tier-feature.included .fi { background: rgba(31,138,90,0.14); color: #1F8A5A; }
.tier-feature.excluded .fi { background: rgba(110,105,98,0.14); color: var(--stone-gray); }
.tier-feature.excluded .ft { color: var(--stone-gray); }
.tier-card .btn { justify-content: center; }

/* --- Help me choose (Section 04) --- */
.choose-section { background: var(--ivory); }
.choose-band {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 4vw, 52px); align-items: center;
}
.choose-body { display: flex; flex-direction: column; gap: 14px; }
.choose-body h2 { font-size: clamp(26px, 3vw, 40px); }
.choose-body .lead { max-width: 540px; }
.choose-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 6px; }
.choose-img {
  width: clamp(180px, 26vw, 320px); aspect-ratio: 4/3;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--ivory-stone); flex-shrink: 0;
}
.choose-img image-slot { width: 100%; height: 100%; }

/* ==========================================================================
   FAQ ACCORDION (shared)
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item.open { border-color: var(--line-strong); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink);
  transition: background .2s var(--ease);
}
.faq-q:hover { background: var(--ivory); }
.faq-icon { font-size: 22px; color: var(--red); flex-shrink: 0; line-height: 1; transition: transform .3s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; font-size: 15px; color: var(--stone-gray); line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-a-inner { padding-bottom: 22px; }

/* ==========================================================================
   PAYMENT PLANS INNER PAGE
   ========================================================================== */

/* --- Hero section --- */
.pp-hero {
  background: var(--white);
  padding-top: calc(var(--sect) + 72px);
  padding-bottom: var(--sect);
}
.pp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.pp-hero-copy { display: flex; flex-direction: column; }
.pp-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

/* --- Light calculator card --- */
.pp-calc-card {
  background: var(--ivory-stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.pp-calc-row label {
  font-size: 13px; color: var(--char-stone);
  display: flex; justify-content: space-between;
  margin-bottom: 12px; font-weight: 500;
}
.pp-calc-row label b { color: var(--red); font-size: 15px; }
.pp-calc-row input[type="range"] { background: var(--stone-warm); }
.pp-calc-row input[type="range"]::-webkit-slider-thumb { border-color: var(--ivory-stone); }
.pp-calc-row input[type="range"]::-moz-range-thumb { border-color: var(--ivory-stone); }
.pp-calc-result {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 22px; margin-top: 6px; gap: 12px;
}
.pp-calc-label { font-size: 12px; color: var(--stone-gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.pp-calc-amount {
  font-size: clamp(32px, 4vw, 44px); font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1;
}
.pp-calc-amount span { font-size: 16px; color: var(--stone-gray); font-weight: 500; }
.pp-calc-note { font-size: 12px; color: var(--stone-gray); margin-top: 14px; text-align: center; }

/* --- Payment option cards --- */
.pp-options-section { background: var(--ivory); }
.pp-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(36px, 5vw, 52px);
}
.pp-option-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pp-option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pp-option-card--gold { border-color: rgba(255,212,0,0.4); background: linear-gradient(135deg, var(--white), #fffce8); }
.pp-option-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,212,0,0.16); color: #9a7f00;
  display: flex; align-items: center; justify-content: center;
}
.pp-option-icon svg { width: 26px; height: 26px; }
.pp-option-icon--gold { background: rgba(255,212,0,0.28); }
.pp-option-card h3 { font-size: 19px; margin: 0; }
.pp-option-card > p { font-size: 14px; color: var(--stone-gray); line-height: 1.6; margin: 0; }
.pp-option-divider { height: 1px; background: var(--line); }
.pp-option-terms {
  list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.pp-option-terms li {
  font-size: 13px; color: var(--char-stone); padding-left: 18px; position: relative; line-height: 1.45;
}
.pp-option-terms li::before { content: '—'; position: absolute; left: 0; color: var(--gold-soft); font-weight: 700; }

/* --- How it works steps --- */
.pp-how-section { background: var(--white); }
.pp-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-bottom: 0;
}
.pp-step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pp-step-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); position: relative;
  transition: all .3s var(--ease);
}
.pp-step-ring svg { width: 28px; height: 28px; }
.pp-step-ring .idx {
  position: absolute; top: -8px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pp-step:hover .pp-step-ring { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pp-step h3 { font-size: 18px; margin: 0; }
.pp-step p { font-size: 14px; color: var(--stone-gray); line-height: 1.55; max-width: 240px; margin: 0; }
.pp-step-connector {
  width: 2px; height: 2px; align-self: center; margin-top: -32px;
  border-top: 2px dashed var(--stone-warm); width: 100%; height: 0;
}

/* --- Closing CTA band --- */
.pp-cta-band {
  background: var(--char-warm);
  padding: clamp(64px, 9vw, 110px) 0;
}
.pp-cta-inner { display: flex; flex-direction: column; align-items: center; }
.pp-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --- Responsive additions --- */
@media (max-width: 1080px) {
  .pp-option-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pp-hero-grid { grid-template-columns: 1fr; }
  .pp-steps {
    grid-template-columns: auto 1fr;
    gap: 0 16px; row-gap: 0;
  }
  .pp-step { flex-direction: row; text-align: left; align-items: flex-start; grid-column: 2; }
  .pp-step-ring { flex-shrink: 0; width: 60px; height: 60px; grid-column: 1; }
  .pp-step-connector { display: none; }
  .pp-option-grid { grid-template-columns: 1fr; }
  .pp-calc-result { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pp-calc-result .btn { width: 100%; justify-content: center; }
  .faq-q { font-size: 15px; padding: 16px 18px; }
  .faq-a-inner { padding: 0 18px; }
  .faq-item.open .faq-a-inner { padding-bottom: 16px; }
}

/* --- Ranges page responsive additions --- */
@media (max-width: 1080px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .editorial-rows { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .ranges-filters-bar { top: 0; position: static; }
  .editorial-rows { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .choose-band { grid-template-columns: 1fr; }
  .choose-img { width: 100%; }
  .compare-tray-slots { display: none; }
  .compare-tray-label { display: none; }
  .compare-tray { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* ==========================================================================
   SHOWROOMS INNER PAGE
   ========================================================================== */

/* --- Page hero (dark, same pattern as ranges) --- */
.sr-hero {
  background: var(--char-warm) url('/tombco/hero-showrooms.webp') center center / cover no-repeat;
  padding: calc(var(--sect) + 72px) 0 clamp(52px, 7vw, 88px);
  position: relative;
}
.sr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.55);
}
.sr-hero .eyebrow { color: var(--gold); }
.sr-hero .eyebrow::before { background: var(--gold); }
.sr-hero h1 { color: var(--white); font-size: clamp(30px, 4.2vw, 56px); margin: 18px 0 18px; }
.sr-hero .lead { color: rgba(255, 255, 255, 0.72); max-width: 580px; }

/* --- Finder section --- */
.sr-finder-section { background: var(--ivory); }
.sr-finder-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.sr-finder-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sr-search-wrap { position: relative; }
.sr-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--stone-gray); pointer-events: none; }
.sr-search {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  padding: 11px 16px 11px 38px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  width: 220px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.sr-search:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,39,30,.1); }

/* Mobile toggle */
.sr-mob-toggle { display: none; gap: 0; margin-bottom: 16px; }
.sr-tog-btn {
  font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 10px 24px; border: 1.5px solid var(--line); background: var(--white);
  color: var(--stone-gray); flex: 1; transition: all .2s var(--ease);
}
.sr-tog-btn:first-child { border-radius: 999px 0 0 999px; }
.sr-tog-btn:last-child  { border-radius: 0 999px 999px 0; border-left: none; }
.sr-tog-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Body split */
.sr-body { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: start; }

/* Showroom card list */
.sr-list {
  display: flex; flex-direction: column; gap: 12px;
  max-height: 640px; overflow-y: auto; padding-right: 6px; scroll-behavior: smooth;
}
.sr-list::-webkit-scrollbar { width: 4px; }
.sr-list::-webkit-scrollbar-track { background: transparent; }
.sr-list::-webkit-scrollbar-thumb { background: var(--stone-warm); border-radius: 999px; }

.sr-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 20px; cursor: pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.sr-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.sr-card.active { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,39,30,.1); transform: none; }

.sr-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.sr-card-name { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 5px; }
.sr-card-addr { font-size: 13px; color: var(--stone-gray); display: flex; align-items: flex-start; gap: 5px; line-height: 1.45; margin: 0; }

.sr-status { font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.sr-status--open   { background: rgba(31,138,90,.12);  color: #1F8A5A; }
.sr-status--closed { background: rgba(110,105,98,.14); color: var(--stone-gray); }
.sr-status--loading { background: var(--ivory-stone); color: var(--stone-gray); }

.sr-card-hours {
  display: grid; grid-template-columns: auto 1fr; gap: 3px 16px;
  font-size: 13px; color: var(--stone-gray); margin-bottom: 12px;
}
.sr-card-hours span:nth-child(odd)  { font-weight: 600; color: var(--char-stone); }
.sr-card-hours span:nth-child(even) { }

.sr-card-phone { font-size: 13px; color: var(--stone-gray); margin: 0 0 14px; display: flex; align-items: center; gap: 6px; }

.sr-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.sr-card-actions .btn svg { width: 15px; height: 15px; }

/* Map panel */
.sr-map-wrap {
  position: sticky; top: 104px;
  border-radius: var(--radius); overflow: hidden;
  height: 640px; background: var(--ivory-stone);
}
.sr-map-fullscreen { height: 70vw; max-height: 520px; }

/* --- Showroom detail section --- */
.sr-detail-section { background: var(--white); }
.sr-detail-header { margin-bottom: clamp(28px, 4vw, 44px); }
.sr-detail-panel { display: none; }
.sr-detail-panel.active { display: block; }

.sr-detail-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 52px); align-items: start;
}
.sr-gallery { display: flex; flex-direction: column; gap: 10px; }
.sr-gallery-big {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: var(--ivory-stone);
}
.sr-gallery-big image-slot,
.sr-gallery-big .sr-gallery-img { width: 100%; height: 100%; }
.sr-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sr-thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; background: var(--ivory-stone); }
.sr-thumb image-slot,
.sr-thumb .sr-gallery-img { width: 100%; height: 100%; }
.sr-gallery-img { display: block; object-fit: cover; }

.sr-info { display: flex; flex-direction: column; gap: 20px; }

.sr-hours-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px;
}
.sr-hours-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-gray); margin-bottom: 12px; }
.sr-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.sr-hours-row--last { border-bottom: none; }
.sr-hours-val { font-weight: 600; color: var(--ink); }
.sr-hours-closed { color: var(--stone-gray); font-weight: 500; }

.sr-info-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.sr-info-actions .btn svg { width: 16px; height: 16px; }

/* --- Visit band (Section 03) --- */
.sr-visit-section { background: var(--ivory); }
.sr-visit-band {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(32px, 4vw, 52px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 5vw, 60px); align-items: center;
}
.sr-visit-img {
  width: clamp(180px, 24vw, 300px); aspect-ratio: 4/3;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--ivory-stone); flex-shrink: 0;
}
.sr-visit-img image-slot { width: 100%; height: 100%; }
.sr-visit-body { display: flex; flex-direction: column; gap: 0; }
.sr-visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.sr-visit-actions .btn svg { width: 17px; height: 17px; }

/* --- Responsive --- */
@media (max-width: 980px) {
  .sr-body { grid-template-columns: 1fr; }
  .sr-map-wrap { position: static; height: 380px; }
  .sr-mob-toggle { display: flex; }
  .sr-finder-controls { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .sr-detail-grid { grid-template-columns: 1fr; }
  .sr-visit-band { grid-template-columns: 1fr; }
  .sr-visit-img { width: 100%; }
  .sr-finder-top { flex-direction: column; align-items: flex-start; }
  .sr-search { width: 100%; }
  .sr-finder-controls { width: 100%; }
  .sr-search-wrap { flex: 1; }
  .sr-list { max-height: none; overflow-y: visible; padding-right: 0; }
}

/* ==========================================================================
   SPECIAL OFFERS
   ========================================================================== */
.specials { background: var(--white); padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(28px, 4vw, 48px); }
.specials-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: center;
}
.specials-copy .eyebrow { display: flex; margin-bottom: 10px; }
.specials-copy .sect-title { margin-bottom: 14px; }
.specials-copy .lead { margin: 0; }
.specials-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.specials-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.specials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(.4,0,.2,1);
}
.specials-track .special-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
}
.carousel-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, opacity .2s;
  padding: 0;
}
.carousel-btn:hover:not(:disabled) { background: var(--red); color: #fff; }
.carousel-btn:disabled { opacity: 0.28; cursor: not-allowed; }
@media (max-width: 900px) {
  .specials-layout { grid-template-columns: 1fr; gap: 28px; }
  .specials-track .special-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 560px) {
  .specials-track .special-card { flex: 0 0 100%; }
}
.special-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--red);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.special-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.special-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.special-photo image-slot { width: 100%; height: 100%; }
.special-photo .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20,20,20,0.7);
  color: #fff;
  backdrop-filter: blur(4px);
}
.special-photo .tag.exec { background: var(--gold); color: var(--ink); }
.special-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.special-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.special-title-row h3 { margin: 0; flex: 1 1 auto; }
.special-label {
  flex-shrink: 0;
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.special-label--block { display: block; align-self: flex-start; }
.special-label--img { position: absolute; bottom: 14px; left: 14px; z-index: 4; }
.special-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.special-body h3 { margin: 0; font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.01em; }
.special-divider { height: 1px; background: var(--line); margin: 4px 0; }
.special-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-was {
  font-size: 15px;
  font-weight: 700;
  color: var(--stone-gray);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.price-now {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}
.special-poa {
  font-size: 14px;
  color: var(--stone-gray);
  font-style: italic;
}
.special-promo {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.special-cta { margin-top: auto; }
