*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #0F0C0A; font-family: 'DM Sans', sans-serif; color: #fff; overflow-x: hidden; }
::selection { background: rgba(196,164,120,0.3); color: #fff; }
a { text-decoration: none; }

/* --- Fonts --- */
.font-display { font-family: 'Cormorant Garamond', serif; }
.font-body { font-family: 'DM Sans', sans-serif; }

/* --- Colors --- */
.gold { color: #C4A478; }
.gold-italic { color: #C4A478; font-style: italic; font-weight: 400; }

/* --- Animations --- */
@keyframes mistRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all 1.2s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.3s; }
.fade-in.d2 { transition-delay: 0.5s; }
.fade-in.d3 { transition-delay: 0.7s; }
.fade-in.d4 { transition-delay: 0.9s; }
.fade-in.d5 { transition-delay: 1.2s; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
.nav.scrolled {
  padding: 12px 20px;
  background: rgba(15,12,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,164,120,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 8px; margin: 16px 32px; }
.nav-logo span { font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 4px; color: #C4A478; font-weight: 600; }
.nav-links { display: flex; gap: 16px; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.3s; display: none;
}
.nav-link:hover { color: #C4A478; }
.btn-outline {
  background: transparent; border: 1px solid #C4A478; color: #C4A478;
  padding: 10px 24px; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s;
}
.btn-outline:hover { background: #C4A478; color: #0F0C0A; }

/* --- Buttons --- */
.btn-primary {
  background: #C4A478; color: #0F0C0A; border: none;
  padding: 16px 40px; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: #D4B488; transform: translateY(-2px); }
.btn-primary-lg { padding: 16px 36px; font-size: 13px; }
.btn-ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 40px; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s;
}
.btn-ghost:hover { border-color: rgba(196,164,120,0.5); color: #C4A478; }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url('images/Hero_Background.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 1;
}
.hero-overlay1 { display: none; }
.hero-overlay2 { display: none; }
.hero-inner { max-width: 1400px; margin: 0 auto; padding: 120px 20px 60px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero-content { min-width: 0; }
.hero-video { position: relative; aspect-ratio: 16 / 11; background: rgba(196,164,120,0.04); border: 1px solid rgba(196,164,120,0.15); display: flex; align-items: center; justify-content: center; overflow: hidden; max-width: 480px; cursor: pointer; }
.hero-video-play { width: 84px; height: 84px; border-radius: 50%; background: rgba(196,164,120,0.15); border: 2px solid rgba(196,164,120,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
.hero-video:hover .hero-video-play { background: rgba(196,164,120,0.25); border-color: #C4A478; transform: scale(1.08); }
.hero-video-play:hover { background: rgba(196,164,120,0.25); border-color: #C4A478; transform: scale(1.08); }
.hero-video-play svg { margin-left: 3px; }
.hero-video-label { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; white-space: nowrap; }
.hero-video-player { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.hero-video-overlay { display: flex; flex-direction: column; align-items: center; justify-content: center; position: absolute; inset: 0; }
.hero-video.playing .hero-video-overlay { display: none; }
.hero-video.playing .hero-video-player { display: block; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(196,164,120,0.3); padding: 8px 20px;
  margin-bottom: 32px; background: rgba(196,164,120,0.05);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #6DBF6D; }
.hero-badge span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 72px); font-weight: 300; line-height: 1.05; max-width: 800px; margin: 0 0 32px 0; }
.hero-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 0 48px 0; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.hero-badge-item { border-left: 1px solid rgba(196,164,120,0.3); padding-left: 16px; }
.hero-badge-item strong { font-size: 13px; color: #C4A478; letter-spacing: 1px; font-weight: 600; display: block; }
.hero-badge-item span { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; display: block; }

/* --- Mist Particles --- */
.mist-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mist-particle {
  position: absolute; bottom: -10px; border-radius: 50%; background: rgba(255,255,255,0.6);
}

/* --- Stats Bar --- */
.stats-bar { background: #C4A478; display: grid; grid-template-columns: repeat(2, 1fr); }
.stat-item { padding: 24px 16px; text-align: center; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(15,12,10,0.1); }
.stat-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: #0F0C0A; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(15,12,10,0.6); margin-top: 6px; }

/* --- Sections Common --- */
.section { padding: 80px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #C4A478; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; line-height: 1.2; margin-top: 16px; }
.section-title-lg { font-size: 32px; }
.section-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-top: 16px; max-width: 540px; }

/* --- Problem Section --- */
.bg-dark { background: #0F0C0A; }
.bg-darker { background: #141110; }
.problem-header { max-width: 680px; margin-bottom: 48px; }
.problem-header p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-top: 20px; }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.card {
  background: rgba(255,255,255,0.03); padding: 36px 24px;
  border-top: 2px solid rgba(196,164,120,0.2); transition: all 0.4s;
}
.card:hover { background: rgba(196,164,120,0.06); border-top-color: #C4A478; }
.card-icon { font-size: 28px; margin-bottom: 20px; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; margin-bottom: 12px; }
.card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); }

/* --- How It Works --- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2px; margin-top: 64px; }
.step-card {
  background: rgba(255,255,255,0.02); padding: 36px 24px; position: relative;
  border-top: 2px solid rgba(196,164,120,0.2); transition: all 0.4s;
}
.step-card:hover { background: rgba(196,164,120,0.06); border-top-color: #C4A478; }
.step-number {
  font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300;
  color: rgba(196,164,120,0.12); position: absolute; top: 16px; right: 24px;
}
.step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 16px; }
.step-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.step-stat { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.step-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: #C4A478; }
.step-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* --- Water Section --- */
.water-section { border-top: 1px solid rgba(196,164,120,0.08); border-bottom: 1px solid rgba(196,164,120,0.08); }
.water-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.water-compare { margin-top: 36px; padding: 24px; background: rgba(196,164,120,0.05); border: 1px solid rgba(196,164,120,0.15); }
.water-compare-title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #C4A478; margin-bottom: 16px; }
.water-bar-row { margin-bottom: 14px; }
.water-bar-row:last-child { margin-bottom: 0; }
.water-bar-labels { display: flex; justify-content: space-between; margin-bottom: 6px; }
.water-bar-labels span { font-size: 12px; color: rgba(255,255,255,0.5); }
.water-bar-labels .highlight { color: #C4A478; font-weight: 600; }
.water-bar-labels .gal { color: rgba(255,255,255,0.35); }
.water-bar-track { height: 4px; background: rgba(255,255,255,0.06); overflow: hidden; }
.water-bar-fill { height: 100%; background: rgba(255,255,255,0.15); transition: width 1.5s ease; }
.water-bar-fill.gold { background: #C4A478; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.feature-card { background: rgba(255,255,255,0.02); padding: 36px 28px; border: 1px solid rgba(255,255,255,0.04); }
.feature-card .icon { font-size: 24px; margin-bottom: 16px; }
.feature-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.4); }

/* --- Pricing --- */
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.price-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 24px; transition: all 0.3s; position: relative; cursor: pointer;
}
.price-card:hover { transform: scale(1.02); }
.price-card.accent { background: rgba(196,164,120,0.08); border: 1px solid rgba(196,164,120,0.25); }
.price-badge {
  position: absolute; top: 0; right: 24px; background: #C4A478; color: #0F0C0A;
  padding: 6px 16px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}
.price-name { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #C4A478; margin-bottom: 8px; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; }
.price-monthly { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.price-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.price-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.price-feature .check { color: #C4A478; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.price-feature span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.price-btn {
  width: 100%; margin-top: 28px; padding: 14px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; transition: all 0.3s;
}
.price-btn-primary { background: #C4A478; color: #0F0C0A; border: none; font-weight: 600; }
.price-btn-ghost { background: transparent; color: #C4A478; border: 1px solid rgba(196,164,120,0.3); }
.pricing-footer { text-align: center; margin-top: 32px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* --- VeilCare --- */
.veilcare-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.veilcare-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(196,164,120,0.08); border: 1px solid rgba(196,164,120,0.2); margin-bottom: 24px;
}
.veilcare-badge span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #C4A478; }
.veilcare-schedule { background: rgba(255,255,255,0.02); border: 1px solid rgba(196,164,120,0.12); padding: 28px; }
.schedule-item { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.schedule-item:last-of-type { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.schedule-month { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #C4A478; min-width: 48px; font-weight: 600; padding-top: 2px; }
.schedule-task { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.veilcare-price { margin-top: 28px; padding: 16px; background: rgba(196,164,120,0.06); text-align: center; font-size: 13px; color: #C4A478; }

/* --- Testimonials --- */
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonial-card {
  background: rgba(255,255,255,0.02); padding: 32px 24px;
  border-top: 2px solid rgba(196,164,120,0.15); display: flex; flex-direction: column;
}
.testimonial-stars { color: #C4A478; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.65); font-style: italic; flex: 1; }
.testimonial-author { margin-top: 24px; }
.testimonial-author strong { font-size: 14px; display: block; }
.testimonial-author span { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; display: block; }

/* --- CTA --- */
.cta-section {
  position: relative; padding: 80px 20px; overflow: hidden;
  background: linear-gradient(165deg, #1a1410 0%, #2d1f14 50%, #1a1410 100%);
}
.cta-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(196,164,120,0.06) 0%, transparent 50%); }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; line-height: 1.15; }
.cta-inner p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-top: 20px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 40px; }
.cta-phone { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 20px; }

/* --- Footer --- */
.footer { background: #0A0807; padding: 40px 20px 24px; border-top: 1px solid rgba(196,164,120,0.08); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.3); max-width: 280px; margin-top: 16px; }
.footer-col-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #C4A478; margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.2);
}

/* --- Desktop --- */
@media (min-width: 901px) {
  .nav { padding: 20px 40px; }
  .nav.scrolled { padding: 5px 40px; }
  .nav-logo span { font-size: 22px; letter-spacing: 6px; }
  .nav-links { gap: 32px; }
  .nav-link { display: inline; }
  .nav-phone { display: flex; }
  .hero-inner { padding: 140px 40px 80px; grid-template-columns: 1fr 1.2fr; gap: 60px; }
  .hero-video { max-width: none; }
  .hero-sub { font-size: 18px; }
  .hero-badges { flex-direction: row; gap: 40px; margin-top: 72px; }
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
  .stat-item { padding: 40px 32px; }
  .stat-value { font-size: 36px; }
  .section { padding: 120px 40px; }
  .section-title { font-size: 42px; }
  .section-title-lg { font-size: 48px; }
  .problem-header { margin-bottom: 80px; }
  .cards-grid, .steps-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .card, .step-card { padding: 48px 36px; }
  .water-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; }
  .veilcare-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
  .veilcare-schedule { padding: 40px; }
  .price-card { padding: 48px 36px; }
  .testimonial-card { padding: 40px 32px; }
  .cta-section { padding: 120px 40px; }
  .cta-inner h2 { font-size: 52px; }
  .btn-primary-lg { padding: 18px 48px; font-size: 14px; }
  .footer { padding: 60px 40px 32px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; gap: 0; }
  .modal { padding: 48px 40px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .compare-table { min-width: 720px; }
  .compare-table th, .compare-table td { padding: 16px 20px; font-size: 13px; }
}

/* --- Glow for how-it-works section --- */
.section-glow {
  position: absolute; right: -200px; top: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,164,120,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* --- Design-First Section --- */
.design-first { border-top: 1px solid rgba(196,164,120,0.08); position: relative; overflow: hidden; }
.design-first-glow {
  position: absolute; left: -200px; bottom: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,164,120,0.04) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.design-first-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.design-first-content { position: relative; z-index: 2; }
.design-first-content .section-desc { max-width: 520px; }
.design-first-pullquote {
  margin-top: 32px; padding: 24px 0 24px 24px;
  border-left: 2px solid #C4A478;
  font-family: 'Cormorant Garamond', serif; font-size: 33px; font-weight: 400;
  font-style: italic; color: rgba(255,255,255,0.6); line-height: 1.2;
}
.design-first-visual { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 2px; }
.approach-card {
  padding: 32px 24px; position: relative; transition: all 0.4s;
}
.approach-card.theirs {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
}
.approach-card.ours {
  background: rgba(196,164,120,0.06); border: 1px solid rgba(196,164,120,0.2);
}
.approach-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600;
}
.approach-card.theirs .approach-label { color: rgba(255,255,255,0.3); }
.approach-card.ours .approach-label { color: #C4A478; }
.approach-list { list-style: none; padding: 0; margin: 0; }
.approach-list li {
  font-size: 13px; line-height: 1.5; padding: 8px 0; display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.approach-list li:last-child { border-bottom: none; }
.approach-card.theirs .approach-list li { color: rgba(255,255,255,0.35); }
.approach-card.ours .approach-list li { color: rgba(255,255,255,0.65); }
.approach-icon { flex-shrink: 0; margin-top: 2px; font-size: 12px; }
.approach-card.theirs .approach-icon { color: rgba(255,255,255,0.15); }
.approach-card.ours .approach-icon { color: #C4A478; }
.design-first-footer {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 32px;
}
.design-first-stat {
  border-left: 1px solid rgba(196,164,120,0.3); padding-left: 16px;
}
.design-first-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #C4A478; }
.design-first-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }

@media (min-width: 901px) {
  .design-first-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .design-first-visual { grid-template-columns: 1fr 1fr; gap: 2px; }
  .design-first-pullquote { font-size: 36px; }
  .approach-card { padding: 36px 28px; }
}

/* --- Comparison Table --- */
.compare-header { text-align: center; margin-bottom: 64px; }
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th,
.compare-table td { padding: 12px 14px; text-align: center; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.compare-table th { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 500; padding-bottom: 20px; border-bottom: 1px solid rgba(196,164,120,0.15); }
.compare-table th.highlight-col { color: #C4A478; font-weight: 700; font-size: 12px; }
.compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.6); font-weight: 500; white-space: nowrap; }
.compare-table td.highlight-col { background: rgba(196,164,120,0.04); }
.compare-table th.highlight-col { background: rgba(196,164,120,0.08); border-bottom-color: #C4A478; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-check { color: #C4A478; font-weight: 700; font-size: 15px; }
.compare-x { color: rgba(255,255,255,0.15); font-size: 13px; }
.compare-partial { color: rgba(255,255,255,0.3); font-size: 12px; }
.compare-table-note { text-align: center; margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.2); }

/* --- Nav Phone --- */
.nav-phone { color: #C4A478; font-size: 13px; letter-spacing: 1px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.nav-phone svg { flex-shrink: 0; }

/* --- Modal --- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: #1a1714; border: 1px solid rgba(196,164,120,0.2);
  max-width: 520px; width: 100%;
  padding: 32px 20px;
  position: relative; animation: fadeInUp 0.3s ease;
  max-height: 90vh; overflow-y: auto;
}

.modal-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 28px; cursor: pointer; transition: color 0.2s;
  padding: 8px; line-height: 1;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: #C4A478; }

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; margin-bottom: 8px;
  padding-right: 40px;
}
.modal-sub {
  font-size: 14px; color: rgba(255,255,255,0.4);
  margin-bottom: 24px; line-height: 1.6;
}

/* --- Form Mobile-First --- */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff; padding: 16px;
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  transition: border-color 0.3s; outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  min-height: 48px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(196,164,120,0.5); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-select {
  appearance: none;
  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='%23C4A478' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  padding-right: 40px;
}
.form-select option { background: #1a1714; color: #fff; }

.form-textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }

.form-submit {
  width: 100%; background: #C4A478; color: #0F0C0A;
  border: none; padding: 18px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; transition: background 0.3s;
  margin-top: 8px; min-height: 52px;
  -webkit-appearance: none; border-radius: 0;
}
.form-submit:hover { background: #D4B488; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-footer {
  text-align: center; margin-top: 16px;
  font-size: 11px; color: rgba(255,255,255,0.2);
}

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .check-icon { font-size: 48px; margin-bottom: 16px; color: #C4A478; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* --- Modal & Form: Tablet+ --- */
@media (min-width: 768px) {
  .modal-overlay { padding: 24px; }
  .modal { padding: 48px 40px; max-height: 85vh; }
  .modal-title { font-size: 32px; }
  .modal-sub { margin-bottom: 32px; }
  .form-group { margin-bottom: 20px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit { font-size: 13px; padding: 16px; min-height: auto; }
}

/* --- Design-First Gallery --- */
.design-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.design-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(196,164,120,0.12);
  background: #1a1410;
}
.design-gallery .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85) saturate(1.05);
}
.design-gallery .gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.design-gallery .gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,12,10,0.6) 100%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s;
}
.design-gallery .gallery-item:hover::after { opacity: 0.3; }
.design-gallery .gallery-item.tall { grid-row: span 2; }
.design-gallery .gallery-item.wide { grid-column: span 2; }
@media (min-width: 768px) {
  .design-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px;
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,12,10,0.96);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(196,164,120,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(196,164,120,0.1);
  border: 1px solid rgba(196,164,120,0.4);
  color: #C4A478;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: #C4A478; color: #0F0C0A;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2000; width: calc(100% - 48px); max-width: 680px;
  background: #1a1714; border: 1px solid rgba(196,164,120,0.25);
  padding: 16px 20px; display: none; animation: fadeInUp 0.3s ease;
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; flex: 1; min-width: 200px;
}
.cookie-banner-link { color: #C4A478; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 18px; border: 1px solid rgba(196,164,120,0.4);
  cursor: pointer; transition: all 0.2s; background: transparent; color: rgba(255,255,255,0.6);
}
.cookie-btn-accept { background: #C4A478; border-color: #C4A478; color: #0F0C0A; font-weight: 600; }
.cookie-btn-accept:hover { background: #d4b48a; }
.cookie-btn-decline:hover { border-color: rgba(196,164,120,0.8); color: #fff; }
