/* ═══════════════════════════════════════════════
   HOBI CARPENTRY — MAIN STYLESHEET
   Luxury Gold Edition
═══════════════════════════════════════════════ */

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --charcoal: #1C1C1C;
  --dark: #111111;
  --gold: #B8975A;
  --gold-light: #D4B07A;
  --gold-pale: #EFE5CF;
  --mid: #6B6560;
  --light-border: #E5DDD0;
  --green: #3A5A40;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }
a { color: inherit; text-decoration: none; }

/* ─── NAVBAR ─────────────────────────────────── */
/* ─── NAV — TWO ROW ──────────────────────────────── */
#navbar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

/* Top utility bar */
.nav-topbar {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(245,240,232,0.35);
  white-space: nowrap;
  overflow: hidden;
}
.nav-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-topbar-sep { color: rgba(255,255,255,0.15); }
.nav-topbar-track {
  font-size: 11px;
  color: rgba(184,151,90,0.65);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-topbar-track:hover, .nav-topbar-track.active { color: var(--gold); }
.nav-topbar-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-topbar-wa:hover { color: #25D366; }
.nav-topbar-wa .wa-dot { width: 6px; height: 6px; }

/* Main nav bar */
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo-sub { font-size: 14px; font-weight: 400; letter-spacing: 1px; color: var(--gold); }
.nav-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(245,240,232,0.6);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 0 11px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

/* Mobile-only nav items */
.nav-mobile-only { display: none; }

/* CTA pill */
.nav-pill-group { display: flex; flex-shrink: 0; margin-left: 8px; }
.nav-pill-quote {
  display: block; background: var(--gold); color: var(--dark) !important;
  padding: 9px 18px; font-weight: 700; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  white-space: nowrap; transition: background 0.15s; flex-shrink: 0;
}
.nav-pill-quote:hover, .nav-pill-quote.active { background: var(--gold-light); }

.nav-wa {
  display: flex; align-items: center; gap: 7px;
  color: rgba(245,240,232,0.55); font-size: 12px;
  white-space: nowrap; flex-shrink: 0; transition: color 0.2s;
  margin-left: 14px;
}
.nav-wa:hover { color: #25D366; }
.wa-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.nav-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 22px; cursor: pointer; padding: 4px; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: 620px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 620px;
}
.hero-left {
  padding: 80px 40px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 16px;
  color: rgba(245,240,232,0.55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(245,240,232,0.2);
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(245,240,232,0.5); }

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 36px;
}
.trust-item {}
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; color: var(--gold); font-weight: 500; line-height: 1; }
.trust-label { font-size: 11px; color: rgba(245,240,232,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.hs { position: absolute; border-radius: 2px; }
.hs1 { width: 200px; height: 200px; background: rgba(184,151,90,0.08); top: 10%; left: 10%; transform: rotate(15deg); }
.hs2 { width: 140px; height: 140px; background: rgba(184,151,90,0.06); bottom: 20%; right: 15%; transform: rotate(-10deg); }
.hs3 { width: 80px; height: 280px; background: rgba(255,255,255,0.04); top: 30%; right: 30%; transform: rotate(5deg); }
.hero-showcase {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,151,90,0.25);
  padding: 32px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.showcase-badge { font-family: 'Cormorant Garamond',serif; font-size: 28px; color: var(--cream); font-weight: 400; margin-bottom: 8px; }
.showcase-text { font-size: 12px; color: rgba(245,240,232,0.5); letter-spacing: 1px; margin-bottom: 20px; }
.showcase-link { color: var(--gold-light); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; border-bottom: 1px solid rgba(184,151,90,0.4); padding-bottom: 2px; }

/* ─── SERVICES BAR ──────────────────────────── */
.services-bar {
  background: var(--gold);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.services-bar-inner {
  display: flex;
  max-width: 1280px;
  width: 100%;
}
.services-bar::-webkit-scrollbar { display: none; }
.svc-item {
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background 0.2s;
  flex-shrink: 0;
}
.svc-item:hover { background: rgba(0,0,0,0.08); }

/* ─── SECTIONS ───────────────────────────────── */
.section {
  padding: 80px 40px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) { .section { padding: 60px 20px; } }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.centered {
  align-items: center;
  text-align: center;
  max-width: 700px;
}
.section-header.space-between {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1280px;
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; line-height: 1.1; color: var(--charcoal); margin-top: 8px; }
.section-title em { font-style: italic; }
.section-subtitle { font-size: 15px; color: var(--mid); line-height: 1.7; margin-top: 14px; max-width: 560px; }
.view-all { color: var(--gold); font-size: 13px; border-bottom: 1px solid var(--gold); padding-bottom: 2px; white-space: nowrap; }

/* ─── PROJECT GRID ───────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.project-card { background: var(--cream); overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.project-card.featured { grid-column: span 2; }
.project-img {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-img img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.project-card.featured .project-img { height: 360px; }
.proj-icon { font-size: 48px; opacity: 0.4; }
.project-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--dark); color: var(--gold);
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px;
}
.project-info { padding: 20px 24px; }
.project-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 4px; color: var(--charcoal); }
.project-detail { font-size: 12px; color: var(--mid); }

/* ─── WHY SECTION ────────────────────────────── */
.section-why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.why-card { border: 1px solid rgba(245,240,232,0.08); padding: 32px 24px; border-radius: 2px; }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(245,240,232,0.5); line-height: 1.65; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.testimonial-card { background: white; padding: 24px; border-radius: 8px; border: 1px solid var(--light-border); box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.tc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tc-avatar { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.tc-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.tc-avatar-initials { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; }
.tc-meta { flex: 1; min-width: 0; }
.tc-name { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.tc-property { font-size: 11px; color: var(--mid); margin-top: 1px; }
.tc-badge-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.tc-google-badge { flex-shrink: 0; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.65; color: var(--charcoal); flex: 1; font-style: italic; }
.tc-date { font-size: 11px; color: #AAA; margin-top: 12px; }
/* Google rating block */
.google-rating-block { text-align: right; }
.grb-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
.grb-score { font-weight: 700; font-size: 15px; color: var(--charcoal); }
.grb-link { font-size: 12px; color: var(--gold); text-decoration: none; display: block; margin-top: 2px; }
.grb-link:hover { text-decoration: underline; }

/* ─── CTA SECTION ────────────────────────────── */
.section-cta { text-align: center; }
.cta-content { max-width: 760px; margin: 0 auto; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 400; color: var(--dark); margin-bottom: 16px; line-height: 1.1; }
.cta-sub { font-size: 17px; color: rgba(28,28,28,0.65); margin-bottom: 40px; }
.btn-dark { background: var(--dark); color: var(--cream); padding: 16px 36px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 2px; display: inline-block; transition: background 0.2s; }
.btn-dark:hover { background: #333; }
.btn-outline-dark { background: transparent; color: var(--dark); padding: 16px 36px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; border: 2px solid var(--dark); border-radius: 2px; display: inline-block; }

/* ─── PAGE HERO ──────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 100px 40px 80px;
  text-align: center;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; color: var(--cream); line-height: 1.05; margin-bottom: 16px; }
.page-title em { font-style: italic; color: var(--gold-light); }
.page-subtitle { font-size: 18px; color: rgba(245,240,232,0.55); max-width: 600px; margin: 0 auto; font-weight: 300; }

/* ─── PAGE HERO WITH BANNER IMAGE ──────────────── */
.page-hero-img {
  position: relative;
  background-image: var(--banner-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 80px 100px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ─── HOME HERO WITH BANNER IMAGE ──────────────── */
.hero-has-banner {
  position: relative;
  display: block;
  min-height: 620px;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,0.78) 0%, rgba(17,17,17,0.38) 60%, rgba(17,17,17,0.18) 100%);
}
.hero-left-banner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 100px 80px;
}

/* ─── FILTER BAR ─────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.filter-btn {
  padding: 10px 24px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--light-border); background: white; color: var(--mid); cursor: pointer;
  border-radius: 2px; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: var(--gold); border-color: var(--dark); }

/* ─── PROJECT DETAIL ─────────────────────────── */
.project-detail-hero { height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.detail-hero-img { width:100%; height:100%; object-fit:cover; }
.detail-hero-placeholder { font-size: 80px; opacity: 0.3; }
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; max-width: 1280px; margin: 0 auto; }
.detail-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; margin-bottom: 20px; line-height: 1.1; }
.detail-desc { color: var(--mid); line-height: 1.75; font-size: 16px; }
.spec-card { background: var(--cream); padding: 32px; border-radius: 2px; }
.spec-item { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--light-border); font-size: 14px; }
.spec-item:last-child { border-bottom: none; }
.spec-label { font-weight: 600; color: var(--mid); font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ─── SERVICES GRID ──────────────────────────── */
.services-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; max-width: 1280px; margin: 0 auto; }
.service-full-card { background: var(--cream); padding: 40px 32px; border-radius: 2px; transition: transform 0.2s; }
.service-full-card:hover { transform: translateY(-4px); }
.sf-icon { font-size: 40px; margin-bottom: 16px; }
.sf-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 10px; }
.sf-desc { color: var(--mid); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.sf-features { list-style: none; margin-bottom: 24px; }
.sf-features li { font-size: 13px; color: var(--mid); padding: 5px 0; border-bottom: 1px solid var(--light-border); }
.sf-features li::before { content: '✓ '; color: var(--gold); }
.sf-cta { color: var(--gold); font-weight: 600; font-size: 13px; border-bottom: 1px solid rgba(184,151,90,0.4); padding-bottom: 2px; }

/* ─── SERVICE DETAIL ─────────────────────────── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1280px; margin: 0 auto; }
.service-detail-desc { color: var(--mid); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.service-specs { list-style: none; }
.service-specs li { padding: 10px 0; border-bottom: 1px solid var(--light-border); font-size: 14px; color: var(--charcoal); }
.service-projects-preview { display: flex; align-items: flex-end; }
.view-all-link { color: var(--gold); font-size: 14px; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ─── SHOWROOM ───────────────────────────────── */
.showroom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 1280px; margin: 0 auto; }
.showroom-details { display: flex; flex-direction: column; gap: 20px; }
.sd-item { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; line-height: 1.6; }
.sd-icon { width: 36px; height: 36px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; border-radius: 2px; flex-shrink: 0; font-size: 16px; }
.map-placeholder { height: 400px; border-radius: 2px; overflow: hidden; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.map-placeholder iframe { width:100%; height:100%; border:0; }
.map-fallback { text-align: center; padding: 40px; }
.showroom-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; text-align: center; max-width: 1280px; margin-left: auto; margin-right: auto; }
.sf-feat { padding: 28px 20px; background: var(--cream); border-radius: 2px; font-size: 14px; font-weight: 600; }
.sf-feat-icon { font-size: 32px; margin-bottom: 10px; }
.sf-feat small { display: block; color: var(--mid); font-size: 12px; font-weight: 400; margin-top: 4px; }

/* ─── CARE+ ──────────────────────────────────── */
.care-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.care-card { background: var(--cream); padding: 36px 32px; border-radius: 2px; }
.care-card.featured-care { border-left: 4px solid var(--gold); }
.care-icon { font-size: 36px; margin-bottom: 14px; }
.care-card h3 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.care-card p { color: var(--mid); font-size: 14px; line-height: 1.65; }

/* ─── PROCESS ────────────────────────────────── */
.process-steps { max-width: 800px; margin: 0 auto; }
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--light-border); }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; color: var(--gold-pale); font-weight: 300; line-height: 1; text-align: center; }
.step-icon { font-size: 28px; margin-bottom: 10px; }
.step-title { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.step-desc { color: var(--mid); font-size: 15px; line-height: 1.7; }

/* ─── ABOUT ──────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1280px; margin: 0 auto; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--light-border); }
.as-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; color: var(--gold); font-weight: 500; }
.as-label { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1280px; margin: 0 auto; }
.value-card { background: var(--cream); padding: 24px; border-radius: 2px; }
.value-card h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.value-card p { color: var(--mid); font-size: 13px; line-height: 1.65; }

/* ─── BLOG ───────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 8px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.blog-card { background: white; border-radius: 2px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.blog-img { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-img img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.blog-category { position: absolute; top: 14px; left: 14px; background: var(--gold); color: white; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; }
.blog-info { padding: 24px; }
.blog-date { font-size: 11px; color: var(--mid); letter-spacing: 0.5px; margin-bottom: 8px; text-transform: uppercase; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; line-height: 1.3; margin-bottom: 10px; color: var(--charcoal); }
.blog-summary { color: var(--mid); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { color: var(--gold); font-size: 12px; font-weight: 600; }
.blog-detail-section { max-width: 1200px; margin: 0 auto; }
.blog-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; max-width: 1280px; margin: 0 auto; }
.blog-detail-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; line-height: 1.1; margin-bottom: 12px; }
.blog-detail-date { font-size: 12px; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; }
.blog-detail-img { width:100%; border-radius:2px; margin-bottom:32px; max-height:400px; object-fit:cover; }
.blog-detail-body { color: var(--mid); line-height: 1.9; font-size: 16px; }
.blog-detail-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--charcoal); margin: 32px 0 12px; }
.blog-detail-body p { margin-bottom: 16px; }
.blog-detail-body ul { margin: 0 0 16px 24px; }
.blog-detail-body li { margin-bottom: 6px; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--cream); padding: 28px; border-radius: 2px; }
.sidebar-card h4 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.sidebar-card p { color: var(--mid); font-size: 13px; line-height: 1.6; }

/* ─── CONTACT ────────────────────────────────── */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; max-width: 1200px; margin: 0 auto; }
.contact-info { color: var(--cream); }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cd-icon { width: 40px; height: 40px; background: rgba(184,151,90,0.12); border: 1px solid rgba(184,151,90,0.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.wa-big-btn { display: flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 16px 24px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; margin-top: 32px; width: fit-content; border-radius: 2px; transition: background 0.2s; }
.wa-big-btn:hover { background: #1ebe5d; }
.map-embed-small, .map-fallback-small { margin-top: 24px; }
.map-embed-small iframe { width:100%; height:200px; border:0; border-radius:2px; }
.map-fallback-small a { color: var(--gold-light); font-size: 14px; }
.contact-form-wrap { background: var(--warm-white); padding: 48px 40px; border-radius: 2px; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; margin-bottom: 6px; }
.form-subtitle { font-size: 13px; color: var(--mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--light-border); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--charcoal); background: white;
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.08);
}
.form-group textarea { height: 100px; resize: none; }
.btn-submit { width:100%; background:var(--gold); color:var(--dark); padding:18px; font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700; letter-spacing:2px; text-transform:uppercase; border:none; border-radius:2px; cursor:pointer; margin-top:8px; transition:background 0.2s; }
.btn-submit:hover { background: var(--gold-light); }
.form-privacy { font-size: 11px; color: var(--mid); text-align: center; margin-top: 12px; }
.form-success { background: #E6F0E9; color: #2A5A32; padding: 16px; border-left: 4px solid var(--gold); border-radius: 2px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }

/* ─── FOOTER ─────────────────────────────────── */
footer { background: #0A0A0A; padding: 72px 40px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--cream); letter-spacing: 3px; margin-bottom: 12px; }
.footer-logo span { color: var(--gold-light); }
.footer-logo-sub { font-size: 16px; font-weight: 400; letter-spacing: 1px; color: var(--gold-light); }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; display: block; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; color: rgba(245,240,232,0.35); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(245,240,232,0.35); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: rgba(245,240,232,0.35); transition: all 0.2s; }
.social-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 13px; color: rgba(245,240,232,0.35); line-height: 1.5; }
.footer-links a { color: rgba(245,240,232,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(245,240,232,0.35); font-size: 12px; color: rgba(245,240,232,0.35); }
.footer-badges { display: flex; gap: 8px; }
.footer-badges span { font-size: 10px; font-weight: 600; letter-spacing: 1px; color: rgba(245,240,232,0.35); border: 1px solid rgba(245,240,232,0.35); padding: 4px 10px; border-radius: 2px; }
.footer-bottom a { color: rgba(245,240,232,0.35); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 72px 40px; }
  .hero-title { font-size: 56px; }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .project-card.featured { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .services-full-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .showroom-grid { grid-template-columns: 1fr; }
  .blog-detail-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
}

@media (max-width: 900px) {
  .nav-topbar { display: none; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 62px; left: 0; right: 0; background: #0D0D0D; padding: 12px 0 20px; gap: 0; z-index: 999; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 28px; font-size: 13px; width: 100%; display: block; border-left: 2px solid transparent; }
  .nav-links a:hover, .nav-links a.active { border-left-color: var(--gold); background: rgba(184,151,90,0.04); }
  .nav-mobile-only { display: block !important; }
  .nav-mobile-cta a { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 12px !important; margin: 12px 24px 0; border-radius: 2px; text-align: center; padding: 13px 20px !important; border-left: none !important; }
  .nav-mobile-cta a:hover { background: var(--gold-light) !important; border-left-color: transparent !important; }
  .nav-toggle { display: block; }
  .nav-pill-group { display: none; }
  .nav-wa { display: none; }
  .nav-inner { height: 58px; padding: 0 20px; position: relative; }
  .nav-logo { font-size: 22px; }
  .blog-sidebar { display: none; }
  .hero-left { padding: 56px 24px; }
  .hero-title { font-size: 44px; }
  .section { padding: 56px 24px; }
  .section-title { font-size: 36px; }
  .page-title { font-size: 44px; }
  .page-hero { padding: 72px 24px 56px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 56px 24px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .showroom-features { grid-template-columns: repeat(2,1fr); }
  .cta-title { font-size: 36px; }
  .contact-form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 24px; }
}

/* ─── QUOTE FLOAT BUTTON ─────────────────────── */
.quote-float {
  position: fixed; bottom: 96px; right: 24px; z-index: 998;
  background: var(--gold); color: var(--dark); border-radius: 24px;
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-decoration: none; box-shadow: 0 4px 20px rgba(184,151,90,0.4);
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.quote-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,151,90,0.5); }
.quote-float-icon { font-size: 16px; }

/* ─── WHATSAPP SMART PANEL ───────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 26px; z-index: 1000;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.2s;
  cursor: pointer; border: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float-badge {
  position: absolute; top: -4px; right: -4px; background: #FF3B30;
  color: white; border-radius: 10px; font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; display: none; align-items: center;
  justify-content: center; padding: 0 4px; font-family: 'DM Sans', sans-serif;
}
.wa-panel {
  position: fixed; bottom: 100px; right: 28px; width: 340px; z-index: 999;
  background: white; border-radius: 16px; box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  overflow: hidden; transform: scale(0.9) translateY(20px);
  opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.wa-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.wa-panel-header {
  background: #075E54; color: white; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.wa-panel-avatar {
  width: 40px; height: 40px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.wa-panel-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; }
.wa-panel-status { font-size: 11px; opacity: 0.75; margin-top: 2px; }
.wa-panel-close {
  margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 18px; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.wa-panel-close:hover { color: white; }
.wa-panel-body { padding: 16px 16px 20px; background: #ECE5DD; }
.wa-panel-intro {
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: #333;
  background: white; padding: 10px 14px; border-radius: 8px; margin-bottom: 12px;
  line-height: 1.5; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.wa-templates { display: flex; flex-direction: column; gap: 8px; }
.wa-tmpl {
  background: white; border: none; border-radius: 8px; padding: 10px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: #075E54;
  text-decoration: none; text-align: left; cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: background 0.15s;
  display: block; font-weight: 500;
}
.wa-tmpl:hover { background: #f0faf5; }
.wa-custom {
  display: block; text-align: center; margin-top: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; color: #075E54;
  text-decoration: none; font-weight: 600; opacity: 0.7;
}
.wa-custom:hover { opacity: 1; }

/* ─── QUOTE WIZARD PAGE ──────────────────────── */
.quote-hero {
  background: var(--dark); color: var(--cream); padding: 80px 40px 60px;
  text-align: center;
}
.quote-wizard-wrap {
  max-width: 680px; margin: 0 auto; padding: 0 20px 60px;
}
.qw-progress {
  background: var(--light-border); border-radius: 4px; height: 5px; margin-bottom: 10px; overflow: hidden;
}
.qw-progress-bar {
  height: 100%; background: var(--gold); border-radius: 4px;
  transition: width 0.4s ease;
}
.qw-step-label {
  font-size: 12px; color: var(--mid); text-align: right; margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.qw-chat {
  background: #F8F8F8; border-radius: 12px; padding: 20px; margin-bottom: 20px;
  max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px;
  scroll-behavior: smooth;
}
.qw-msg { display: flex; gap: 10px; align-items: flex-start; }
.qw-msg.user { flex-direction: row-reverse; }
.qw-avatar {
  width: 34px; height: 34px; background: var(--gold); color: var(--dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600;
  flex-shrink: 0;
}
.qw-bubble {
  background: white; border-radius: 12px 12px 12px 4px; padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.55;
  max-width: 80%; box-shadow: 0 1px 4px rgba(0,0,0,0.08); color: var(--charcoal);
}
.user-bubble {
  background: var(--gold); color: var(--dark); border-radius: 12px 12px 4px 12px;
  font-weight: 600;
}
.qw-step { display: none; }
.qw-step.active { display: block; }
.qw-options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-bottom: 16px;
}
.qw-opt {
  background: white; border: 2px solid var(--light-border); border-radius: 10px;
  padding: 14px 16px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  cursor: pointer; text-align: left; transition: all 0.15s; color: var(--charcoal);
  line-height: 1.4;
}
.qw-opt:hover { border-color: var(--gold); background: #FBF8F2; }
.qw-opt.selected { border-color: var(--gold); background: var(--gold-pale); font-weight: 600; }
.qw-contact-form { background: white; border-radius: 12px; padding: 24px; border: 1px solid var(--light-border); }
.qw-back {
  background: none; border: 1px solid var(--light-border); border-radius: 6px;
  padding: 8px 16px; font-family: 'DM Sans', sans-serif; font-size: 13px;
  cursor: pointer; color: var(--mid); transition: all 0.15s; align-items: center; gap: 6px;
}
.qw-back:hover { border-color: var(--gold); color: var(--gold); }

/* Quote Result Card */
.qw-result-card {
  background: white; border-radius: 16px; border: 1px solid var(--light-border);
  padding: 32px; text-align: center;
}
.qwr-check {
  width: 56px; height: 56px; background: #E6F4EA; color: #2E7D32;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px; font-weight: 700;
}
.qwr-estimate {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600;
  color: var(--gold); margin: 8px 0 4px; line-height: 1.1;
}
.qwr-note {
  font-size: 13px; color: var(--mid); margin: 12px 0 20px; line-height: 1.6;
}
.qwr-summary {
  background: var(--cream); border-radius: 10px; padding: 16px 20px;
  margin-bottom: 24px; text-align: left;
}
.qwr-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  border-bottom: 1px solid var(--light-border);
  font-family: 'DM Sans', sans-serif; font-size: 13px;
}
.qwr-row:last-child { border-bottom: none; }
.qwr-row span { color: var(--mid); }
.qwr-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.qwr-btn-wa {
  background: #25D366; color: white; padding: 14px 24px; border-radius: 8px;
  text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 14px; display: block;
}
.qwr-btn-outline {
  border: 1px solid var(--light-border); color: var(--charcoal); padding: 13px 24px;
  border-radius: 8px; text-decoration: none; font-family: 'DM Sans', sans-serif;
  font-size: 13px; display: block;
}
.qwr-confirm {
  font-size: 12px; color: var(--mid);
}
@media (max-width: 600px) {
  .wa-panel { width: calc(100vw - 32px); right: 16px; }
  .quote-float { display: none; }
  .qw-options { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   FEATURE: EXIT INTENT POPUP
═══════════════════════════════════════════════ */
.exit-overlay {
  position: fixed; inset: 0; background: rgba(17,17,17,0.72);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  padding: 16px;
}
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
  background: white; max-width: 520px; width: 100%; border-radius: 4px;
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translateY(24px); transition: transform 0.3s;
  position: relative;
}
.exit-overlay.show .exit-popup { transform: translateY(0); }
.exit-popup-top {
  background: var(--dark); padding: 36px 40px 28px;
  text-align: center;
}
.exit-popup-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.exit-popup-title {
  font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300;
  color: var(--cream); line-height: 1.15; margin-bottom: 10px;
}
.exit-popup-title em { font-style: italic; color: var(--gold-light); }
.exit-popup-sub { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.6; }
.exit-popup-body { padding: 28px 40px 32px; }
.exit-popup-offer {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px;
  background: var(--cream); border-radius: 4px; padding: 14px 16px;
}
.exit-offer-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.exit-offer-text { font-size: 13px; color: var(--mid); line-height: 1.55; }
.exit-offer-text strong { color: var(--charcoal); display: block; margin-bottom: 3px; font-size: 14px; }
.exit-popup-form { display: flex; flex-direction: column; gap: 12px; }
.exit-popup-form input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-border);
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); box-sizing: border-box; transition: border-color 0.2s;
}
.exit-popup-form input:focus { outline: none; border-color: var(--gold); }
.exit-popup-form button {
  background: var(--gold); color: var(--dark); border: none; padding: 15px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 3px;
  transition: background 0.2s;
}
.exit-popup-form button:hover { background: var(--gold-light); }
.exit-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  color: rgba(245,240,232,0.5); font-size: 22px; cursor: pointer; line-height: 1;
  padding: 4px 8px; transition: color 0.2s;
}
.exit-close:hover { color: var(--cream); }
.exit-no-thanks {
  text-align: center; margin-top: 14px; font-size: 12px; color: #BBB;
  cursor: pointer; text-decoration: underline;
}
.exit-success {
  text-align: center; padding: 32px 40px;
}
.exit-success-icon { font-size: 48px; margin-bottom: 12px; }
.exit-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 8px; color: var(--charcoal); }
.exit-success p { color: var(--mid); font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FEATURE: STICKY BOTTOM BAR
═══════════════════════════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: var(--dark); border-top: 2px solid var(--gold);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.sticky-bar-text { color: var(--cream); }
.sticky-bar-title {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400;
  line-height: 1.2; margin-bottom: 2px;
}
.sticky-bar-title em { font-style: italic; color: var(--gold-light); }
.sticky-bar-sub { font-size: 12px; color: rgba(245,240,232,0.55); }
.sticky-bar-actions { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
.sticky-bar-wa {
  background: #25D366; color: white; padding: 11px 20px; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: background 0.2s;
}
.sticky-bar-wa:hover { background: #1EBE5A; }
.sticky-bar-quote {
  background: var(--gold); color: var(--dark); padding: 11px 20px; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: background 0.2s;
}
.sticky-bar-quote:hover { background: var(--gold-light); }
.sticky-bar-close {
  background: none; border: none; color: rgba(245,240,232,0.4); font-size: 20px;
  cursor: pointer; padding: 4px 8px; transition: color 0.2s; flex-shrink: 0;
}
.sticky-bar-close:hover { color: var(--cream); }
@media (max-width: 768px) {
  .sticky-bar-inner { padding: 12px 16px; gap: 12px; }
  .sticky-bar-text { display: none; }
  .sticky-bar-actions { width: 100%; justify-content: center; }
  .sticky-bar-wa, .sticky-bar-quote { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════
   FEATURE: PRICING PAGE
═══════════════════════════════════════════════ */
.pricing-gate {
  max-width: 520px; margin: 0 auto; padding: 0 20px 80px;
}
.pricing-gate-card {
  background: white; border: 1px solid var(--light-border); border-radius: 8px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.pricing-gate-top {
  background: var(--dark); padding: 36px 40px 28px; text-align: center;
}
.pricing-gate-top .section-eyebrow { color: var(--gold); margin-bottom: 12px; }
.pricing-gate-top h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
  color: var(--cream); line-height: 1.15; margin-bottom: 10px;
}
.pricing-gate-top h2 em { font-style: italic; color: var(--gold-light); }
.pricing-gate-top p { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.6; }
.pricing-gate-perks {
  display: flex; justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap;
}
.pricing-perk {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(245,240,232,0.7); font-weight: 500;
}
.pricing-gate-form { padding: 32px 40px; }
.pricing-gate-form h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 6px;
}
.pricing-gate-form > p { font-size: 13px; color: var(--mid); margin-bottom: 24px; line-height: 1.5; }
.pricing-form-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.pricing-form-fields input, .pricing-form-fields select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-border);
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); box-sizing: border-box; transition: border-color 0.2s;
  background: white; appearance: none;
}
.pricing-form-fields select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.pricing-form-fields input:focus, .pricing-form-fields select:focus { outline: none; border-color: var(--gold); }
.pricing-submit {
  width: 100%; background: var(--gold); color: var(--dark); border: none; padding: 15px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 3px;
  transition: background 0.2s;
}
.pricing-submit:hover { background: var(--gold-light); }
.pricing-privacy-note { font-size: 11px; color: #BBB; text-align: center; margin-top: 12px; }

/* Pricing content (shown after unlock) */
.pricing-content { display: none; }
.pricing-content.unlocked { display: block; }
.pricing-unlock-header {
  text-align: center; padding: 40px 20px 0; margin-bottom: 48px;
}
.pricing-download-bar {
  background: var(--gold-pale); border: 1px solid var(--gold); border-radius: 6px;
  padding: 20px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 48px;
}
.pricing-download-bar p { font-size: 15px; color: var(--charcoal); font-weight: 500; margin: 0; }
.pricing-download-bar small { font-size: 12px; color: var(--mid); display: block; margin-top: 3px; }
.btn-download {
  background: var(--dark); color: var(--gold); padding: 13px 28px; border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: background 0.2s; display: inline-block;
}
.btn-download:hover { background: #333; }
.pricing-table-section { margin-bottom: 56px; }
.pricing-table-title {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
  color: var(--charcoal); margin-bottom: 6px;
}
.pricing-table-title em { font-style: italic; color: var(--gold); }
.pricing-table-sub { font-size: 14px; color: var(--mid); margin-bottom: 24px; }
.pricing-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border-radius: 6px; overflow: hidden;
}
.pricing-table thead tr { background: var(--dark); }
.pricing-table thead th {
  padding: 14px 18px; color: var(--cream); font-weight: 600; font-size: 12px;
  letter-spacing: 0.5px; text-align: left;
}
.pricing-table thead th:first-child { color: var(--gold-light); }
.pricing-table tbody tr { border-bottom: 1px solid var(--light-border); background: white; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--warm-white); }
.pricing-table td { padding: 14px 18px; color: var(--charcoal); vertical-align: top; }
.pricing-table td:first-child { font-weight: 500; }
.pricing-table td.price-cell { color: var(--gold); font-weight: 600; white-space: nowrap; }
.pricing-table td.note-cell { font-size: 12px; color: var(--mid); }
.pricing-note-box {
  background: var(--cream); border-left: 3px solid var(--gold); padding: 16px 20px;
  border-radius: 0 4px 4px 0; font-size: 13px; color: var(--mid);
  line-height: 1.65; margin-top: 16px;
}
.pricing-cta-strip {
  background: var(--dark); border-radius: 6px; padding: 36px 40px;
  text-align: center; margin-top: 56px;
}
.pricing-cta-strip h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300;
  color: var(--cream); margin-bottom: 10px;
}
.pricing-cta-strip h3 em { font-style: italic; color: var(--gold-light); }
.pricing-cta-strip p { color: rgba(245,240,232,0.6); font-size: 14px; margin-bottom: 24px; }
@media (max-width: 768px) {
  .pricing-table { font-size: 13px; }
  .pricing-table td, .pricing-table th { padding: 10px 12px; }
  .pricing-gate-top, .pricing-gate-form { padding: 28px 24px; }
  .pricing-download-bar { flex-direction: column; }
}

/* ═══════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-border);
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 10px 40px;
}
.breadcrumb ol {
  display: flex; align-items: center; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0; gap: 0;
}
.breadcrumb li {
  display: flex; align-items: center;
  font-size: 12px; color: var(--mid);
}
.breadcrumb li a {
  color: var(--mid); text-decoration: none;
  transition: color 0.15s;
  font-weight: 400;
}
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb li[aria-current="page"] {
  color: var(--charcoal); font-weight: 500;
}
.bc-sep {
  margin: 0 8px; color: #CCC; font-size: 11px;
}
@media (max-width: 768px) {
  .breadcrumb-inner { padding: 8px 20px; }
  .breadcrumb li { font-size: 11px; }
}

/* ═══════════════════════════════════════════════
   CUSTOMER PORTAL
═══════════════════════════════════════════════ */
.portal-wrap {
  min-height: 70vh; padding: 60px 20px 80px;
  background: var(--warm-white);
}
.portal-login-card {
  max-width: 440px; margin: 0 auto;
  background: white; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}
.portal-login-top {
  background: var(--dark); padding: 36px 40px 28px; text-align: center;
}
.portal-login-top .section-eyebrow { color: var(--gold); margin-bottom: 12px; }
.portal-login-top h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 34px;
  font-weight: 300; color: var(--cream); line-height: 1.15;
}
.portal-login-top h2 em { font-style: italic; color: var(--gold-light); }
.portal-login-body { padding: 32px 40px; }
.portal-login-body p { font-size: 13px; color: var(--mid); margin-bottom: 24px; line-height: 1.6; }
.portal-form { display: flex; flex-direction: column; gap: 14px; }
.portal-form input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-border);
  border-radius: 4px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); box-sizing: border-box; transition: border-color 0.2s;
}
.portal-form input:focus { outline: none; border-color: var(--gold); }
.portal-form button {
  background: var(--gold); color: var(--dark); border: none;
  padding: 14px; border-radius: 4px; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.portal-form button:hover { background: var(--gold-light); }
.portal-error {
  background: #FFF0F0; border: 1px solid #FFCDD2; color: #C5221F;
  padding: 12px 16px; border-radius: 4px; font-size: 13px; margin-bottom: 16px;
}
.portal-help { font-size: 12px; color: #BBB; text-align: center; margin-top: 16px; line-height: 1.6; }
.portal-help a { color: var(--gold); }

/* Project dashboard */
.portal-dashboard { max-width: 820px; margin: 0 auto; padding-bottom: 60px; }
.portal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.portal-greeting { font-size: 13px; color: var(--mid); margin-bottom: 4px; }
.portal-project-title {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  font-weight: 300; color: var(--charcoal); line-height: 1.15;
}
.portal-project-title em { font-style: italic; color: var(--gold); }
.portal-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.portal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 12px; border-radius: 20px;
  background: var(--cream); color: var(--mid); border: 1px solid var(--light-border);
}
.portal-badge.active { background: #E8F5E9; color: #2E7D32; border-color: #A5D6A7; }

/* Progress timeline */
.portal-timeline { margin-bottom: 40px; }
.portal-timeline-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.pt-stages { display: flex; flex-direction: column; gap: 0; }
.pt-stage {
  display: flex; gap: 0; position: relative;
}
.pt-stage-left {
  display: flex; flex-direction: column; align-items: center;
  width: 48px; flex-shrink: 0;
}
.pt-dot {
  width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--light-border);
  background: white; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; position: relative; z-index: 1;
  transition: all 0.3s;
}
.pt-stage.done .pt-dot { background: var(--gold); border-color: var(--gold); }
.pt-stage.active .pt-dot {
  background: var(--dark); border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,151,90,0.15);
}
.pt-stage.pending .pt-dot { background: white; border-color: #E0E0E0; }
.pt-line {
  width: 2px; flex: 1; min-height: 20px;
  background: var(--light-border); margin: 0;
}
.pt-stage.done .pt-line { background: var(--gold); }
.pt-stage:last-child .pt-line { display: none; }
.pt-stage-right {
  flex: 1; padding: 6px 0 28px 16px;
}
.pt-stage-name {
  font-size: 15px; font-weight: 600; color: var(--charcoal);
  margin-bottom: 3px; line-height: 1.3;
}
.pt-stage.done .pt-stage-name { color: var(--mid); }
.pt-stage.active .pt-stage-name { color: var(--charcoal); }
.pt-stage.pending .pt-stage-name { color: #BBB; }
.pt-stage-desc { font-size: 12px; color: var(--mid); line-height: 1.55; }
.pt-stage.pending .pt-stage-desc { color: #CCC; }
.pt-stage-date { font-size: 11px; color: var(--gold); font-weight: 600; margin-top: 4px; }
.pt-entry { margin-top: 12px; padding-top: 12px; border-top: 1px dashed #E0D9CE; }
.pt-entry:first-child { border-top: none; padding-top: 0; margin-top: 6px; }
.pt-entry-date { font-size: 11px; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.pt-stage-note {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 10px 14px; border-radius: 0 4px 4px 0;
  font-size: 12px; color: var(--mid); margin-top: 10px; line-height: 1.6;
}
.pt-active-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--dark); color: var(--gold);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-left: 8px;
  vertical-align: middle;
}
/* Info cards below timeline */
.portal-info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.portal-info-card {
  background: white; border: 1px solid var(--light-border);
  border-radius: 8px; padding: 20px 24px;
}
.portal-info-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.portal-info-val { font-size: 15px; color: var(--charcoal); font-weight: 500; line-height: 1.4; }
.portal-info-sub { font-size: 12px; color: var(--mid); margin-top: 3px; }
.portal-contact-strip {
  background: var(--dark); border-radius: 8px; padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.portal-contact-strip p { color: rgba(245,240,232,0.65); font-size: 13px; margin-bottom: 4px; }
.portal-contact-strip strong { color: var(--cream); font-size: 15px; }
.portal-contact-actions { display: flex; gap: 10px; }
.portal-logout {
  display: block; text-align: center; margin-top: 24px;
  font-size: 12px; color: var(--mid); text-decoration: none;
}
.portal-logout:hover { color: var(--charcoal); }
@media (max-width: 600px) {
  .portal-login-top, .portal-login-body { padding: 28px 24px; }
  .portal-info-grid { grid-template-columns: 1fr; }
  .portal-project-title { font-size: 28px; }
}

/* Portal additions */
.portal-signout-btn {
  font-size: 12px; color: var(--mid); text-decoration: none;
  padding: 8px 14px; border: 1px solid var(--light-border);
  border-radius: 4px; white-space: nowrap; transition: all 0.15s;
  flex-shrink: 0;
}
.portal-signout-btn:hover { color: var(--charcoal); border-color: var(--charcoal); }
.portal-progress-wrap {
  margin-bottom: 36px;
}
.portal-progress-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 10px;
}
.portal-progress-pct { color: var(--gold); font-size: 14px; }
.portal-progress-track {
  background: var(--light-border); border-radius: 6px; height: 8px; overflow: hidden;
}
.portal-progress-fill {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  height: 100%; border-radius: 6px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ═══════════════════════════════════════════════
   PORTAL STAGE MEDIA
═══════════════════════════════════════════════ */
.pt-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.pt-media-item {
  border-radius: 8px; overflow: hidden;
  background: var(--cream); border: 1px solid var(--light-border);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  display: block; text-decoration: none;
}
.pt-media-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.pt-media-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.pt-media-caption {
  font-size: 11px; color: var(--mid); padding: 6px 10px 8px;
  line-height: 1.4; background: white;
}
.pt-media-video video {
  width: 100%; aspect-ratio: 16/9; display: block; background: #000;
}
.pt-media-video { cursor: default; }
.pt-media-video:hover { transform: none; }
.pt-media-pdf {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 20px 12px; text-align: center;
  min-height: 100px; background: white; cursor: pointer;
}
.pt-pdf-icon { font-size: 32px; margin-bottom: 6px; }
.pt-media-pdf .pt-media-caption {
  background: none; padding: 0; color: var(--charcoal); font-weight: 500;
}
@media (max-width: 600px) {
  .pt-media-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════
   HOBI CARE+ — FULL PAGE REDESIGN
   Sections: Hero badges · Why · Coverage · Pricing · FAQ · Subscribe · CTA
═══════════════════════════════════════════════════════════ */

/* ── Why Care+ ─────────────────────────────────────────── */
.cp-why-bg { background: var(--warm-white); width: 100%; }
.cp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.cp-why-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cp-why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.cp-why-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.cp-why-card h4 { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.cp-why-card p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ── Coverage section ──────────────────────────────────── */
.cp-coverage-bg {
  background: #F7F2E8;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  width: 100%;
}
.cp-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.cp-cov-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cp-cov-col-title.covered     { color: #2D6A4F; }
.cp-cov-col-title.not-covered { color: #C5221F; }
.cp-cov-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cp-cov-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--mid); line-height: 1.5;
}
.cp-cov-list li::before { flex-shrink: 0; margin-top: 2px; font-size: 12px; font-weight: 700; }
.cp-cov-list.covered    li::before { content: '✓'; color: #2D6A4F; }
.cp-cov-list.not-covered li::before { content: '✕'; color: #C5221F; }

/* ── Pricing section ───────────────────────────────────── */
/* pricing section uses default white background */

/* Duration switcher */
.cp-dur-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 0 48px;
}
.cp-dur-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.5px;
}
.cp-dur-tabs {
  display: inline-flex;
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: 6px;
  padding: 4px;
  gap: 2px;
}
.cp-dur-tab {
  padding: 9px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  color: var(--mid);
  transition: all 0.18s;
  font-family: 'DM Sans', sans-serif;
  position: relative;
}
.cp-dur-tab.active {
  background: white;
  color: var(--charcoal);
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* Plan cards grid */
.cp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 56px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.cp-card {
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--light-border);
  background: white;
  transition: box-shadow 0.22s, transform 0.22s;
  overflow: visible;
}
.cp-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.cp-card-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184,151,90,0.22);
  transform: translateY(-8px);
}
.cp-card-featured:hover { transform: translateY(-12px); }

/* Badge */
.cp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.cp-badge-gold { background: var(--gold); color: var(--dark); }
.cp-badge-dark { background: var(--charcoal); color: var(--gold); }

/* Card header */
.cp-card-head { padding: 32px 26px 20px; border-bottom: 1px solid var(--light-border); }
.cp-card-featured .cp-card-head { border-bottom-color: rgba(184,151,90,0.2); }
.cp-plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.cp-plan-tagline { font-size: 12.5px; color: var(--mid); line-height: 1.5; min-height: 36px; }

/* Prices block — one price per duration, JS toggles visibility */
.cp-prices {
  display: flex;
  padding: 20px 26px 0;
  gap: 0;
  position: relative;
}
.cp-price-cell {
  display: none;
  flex-direction: column;
  width: 100%;
}
.cp-price-cell.cp-price-active { display: flex; }
.cp-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -1.5px;
}
.cp-card-featured .cp-price-amount { color: var(--gold); }
.cp-price-dur {
  font-size: 12px;
  color: var(--mid);
  margin-top: 5px;
  font-weight: 500;
}
.cp-price-note {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px 16px;
  font-size: 11.5px;
  color: var(--mid);
}
.cp-pn-icon { color: var(--gold); font-size: 13px; }
.cp-divider { height: 1px; background: var(--light-border); margin: 0 26px; }
.cp-card-featured .cp-divider { background: rgba(184,151,90,0.2); }

/* Benefits */
.cp-benefits {
  list-style: none;
  padding: 20px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cpb-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.45;
}
.cpb-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 9px; font-weight: 700;
}
/* Tier-specific check colours */
.cp-card:nth-child(1) .cpb-check { background: var(--cream); color: var(--mid); }
.cp-card:nth-child(2) .cpb-check { background: #EFE5CF; color: #8A6E35; }
.cp-card:nth-child(3) .cpb-check { background: var(--charcoal); color: var(--gold); }

.cp-cover-note {
  padding: 0 26px 14px;
  font-size: 11.5px;
  color: var(--mid);
  font-style: italic;
  line-height: 1.5;
  border-bottom: 1px solid var(--light-border);
  margin-bottom: 2px;
}

/* Card CTA */
.cp-cta-btn {
  display: block;
  margin: 14px 22px 22px;
  padding: 13px 20px;
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}
.cp-cta-gold    { background: var(--gold); color: var(--dark); }
.cp-cta-gold:hover { background: var(--gold-light); }
.cp-cta-outline { border: 1.5px solid var(--light-border); color: var(--charcoal); background: transparent; }
.cp-cta-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Pricing note */
.cp-pricing-note {
  background: #F7F2E8;
  border: 1px solid rgba(184,151,90,0.3);
  border-radius: 8px;
  padding: 22px 26px;
  max-width: 900px;
  margin: 0 auto;
}
.cp-pn-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.cp-pricing-note p {
  font-size: 13px; color: var(--mid); line-height: 1.65;
}
.cp-pn-sub { margin-top: 8px !important; font-style: italic; }

/* ── Comparison table ──────────────────────────────────── */
.cp-compare-bg {
  background: var(--warm-white);
  border-top: 1px solid var(--light-border);
  width: 100%;
}
.cp-compare-wrap { overflow-x: auto; max-width: 1280px; margin: 0 auto; }
.cp-compare-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.cp-compare-table thead th {
  padding: 14px 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; text-align: center;
  background: var(--dark); color: rgba(245,240,232,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cp-compare-table thead th.cct-feat-head { text-align: left; }
.cp-compare-table thead th.cct-featured { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700; letter-spacing: 1.5px; }
.cp-compare-table tbody tr:nth-child(odd) td  { background: white; }
.cp-compare-table tbody tr:nth-child(even) td { background: var(--warm-white); }
.cp-compare-table tbody tr:hover td { background: #F7F2E8; }
.cp-compare-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--light-border);
  color: var(--mid);
  text-align: center;
  vertical-align: middle;
}
.cct-feat  { text-align: left !important; color: var(--charcoal) !important; font-weight: 500; }
.cct-featured {
  background: rgba(184,151,90,0.05) !important;
  border-left: 1px solid rgba(184,151,90,0.2) !important;
  border-right: 1px solid rgba(184,151,90,0.2) !important;
  color: var(--charcoal) !important;
  font-weight: 500;
}
.cct-yes { color: #2D6A4F; font-weight: 700; }
.cct-no  { color: var(--mid); opacity: 0.4; }
.cct-val { color: var(--charcoal); font-weight: 500; font-size: 12px; }

/* ── FAQ section ───────────────────────────────────────── */
/* FAQ uses .section default padding and white background */
.cp-faq-border { border-top: 1px solid var(--light-border); width: 100%; }
.cp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.cp-compare-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--mid);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.cp-faq-item {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.cp-faq-q {
  padding: 18px 20px;
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none;
}
.cp-faq-arrow {
  color: var(--gold); font-size: 20px; flex-shrink: 0;
  transition: transform 0.2s; font-weight: 300; line-height: 1;
}
.cp-faq-item.open .cp-faq-arrow { transform: rotate(45deg); }
.cp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.cp-faq-item.open .cp-faq-a { max-height: 240px; }
.cp-faq-a-inner {
  padding: 14px 20px 18px;
  font-size: 13px; color: var(--mid); line-height: 1.7;
  border-top: 1px solid var(--light-border);
}

/* ── Subscribe form ────────────────────────────────────── */
.cp-form-bg {
  background: var(--dark);
  width: 100%;
}
.cp-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.cp-form-left {}
.cp-form-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.cp-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.cp-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 400; color: rgba(184,151,90,0.3);
  line-height: 1; flex-shrink: 0; width: 48px;
}
.cp-step-title { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.cp-step-text  { font-size: 13px; color: rgba(245,240,232,0.45); line-height: 1.65; }
.cp-form-right {
  background: white;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* CTA section */
.cp-cta-bg {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.cp-cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(184,151,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cp-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cp-cta-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 400;
  color: rgba(184,151,90,0.06);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 8px;
  pointer-events: none;
  white-space: nowrap;
}
.cp-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.cp-cta-body {
  font-size: 15px;
  color: rgba(245,240,232,0.45);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cp-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Shared form inputs (light bg context) ─────────────── */
.form-label-pub {
  display: block; font-size: 11px; font-weight: 700; color: var(--charcoal);
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px;
}
.form-input-pub {
  width: 100%; border: 1.5px solid var(--light-border); border-radius: 4px;
  padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); background: var(--warm-white);
  transition: border-color 0.15s; appearance: none;
}
.form-input-pub:focus { outline: none; border-color: var(--gold); background: white; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success-banner {
  background: #EAF5EA; border: 1px solid #B2D9B2; color: #2D6A2D;
  padding: 14px 18px; border-radius: 6px; font-size: 13.5px;
  margin-bottom: 20px; line-height: 1.5;
}

/* ══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cp-why-grid   { grid-template-columns: repeat(2, 1fr); }
  .cp-cards      { grid-template-columns: 1fr; gap: 28px; }
  .cp-card-featured { transform: none; }
  .cp-card-featured:hover { transform: translateY(-4px); }
  .cp-coverage-grid { grid-template-columns: 1fr; gap: 32px; }
  .cp-form-wrap  { grid-template-columns: 1fr; gap: 40px; }
  .cp-faq-grid   { grid-template-columns: 1fr; }
  .cp-form-left  { display: none; }
  .cp-form-right { border-radius: 0; padding: 32px 24px; box-shadow: none; }
}
@media (max-width: 768px) {
  .cp-dur-switcher { flex-direction: column; gap: 8px; align-items: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cp-price-amount { font-size: 36px; }
  .cp-cta-deco { font-size: 72px; }
}
