:root {
  /* Christmas palette — evergreen, cranberry, warm glow, frost */
  --midnight: #071018;
  --navy: #0c1828;
  --evergreen: #14532d;
  --evergreen-deep: #0b3d24;
  --evergreen-light: #2d6a4f;
  --cranberry: #9f1239;
  --cranberry-bright: #be123c;
  --red: #b91c3c;
  --red-dark: #7f1d1d;
  --red-light: #fb7185;
  --gold: #f0c14d;
  --gold-soft: #fde68a;
  --gold-glow: #fcd34d;
  --warm-white: #fffbeb;
  --frost: rgba(255, 255, 255, 0.12);
  --snow: rgba(255, 255, 255, 0.08);

  --bg: var(--midnight);
  --bg-card: #0f1f2e;
  --bg-elevated: #152a3d;
  --text: var(--warm-white);
  --text-muted: #b8c9dc;
  --border: rgba(240, 193, 77, 0.18);
  --border-frost: rgba(255, 255, 255, 0.1);
  --glow-gold: rgba(240, 193, 77, 0.45);
  --glow-red: rgba(185, 28, 60, 0.35);
  --glow-green: rgba(45, 106, 79, 0.35);
  --radius: 14px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-festive: 'Mountains of Christmas', 'Playfair Display', Georgia, serif;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(20, 83, 45, 0.35), transparent 55%),
    radial-gradient(circle at 10% 20%, rgba(240, 193, 77, 0.06) 0%, transparent 12%),
    radial-gradient(circle at 90% 15%, rgba(185, 28, 60, 0.07) 0%, transparent 10%),
    radial-gradient(circle at 75% 85%, rgba(45, 106, 79, 0.08) 0%, transparent 15%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Subtle falling snowflakes */
body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(2px 2px at 10% 15%, var(--frost) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 25% 45%, var(--frost) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 25%, var(--frost) 50%, transparent 50%),
    radial-gradient(1px 1px at 55% 65%, var(--frost) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 35%, var(--frost) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 85% 75%, var(--frost) 50%, transparent 50%),
    radial-gradient(1px 1px at 95% 20%, var(--frost) 50%, transparent 50%);
  background-size: 100% 100%;
  animation: snowfall 28s linear infinite;
}

body::after {
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.2;
}

@keyframes snowfall {
  from { transform: translateY(-4%); }
  to { transform: translateY(4%); }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-soft);
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* String lights garland */
.light-garland {
  position: relative;
  height: 28px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(7, 16, 24, 0.95), transparent);
}

.light-garland::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(60, 60, 60, 0.5);
  border-radius: 2px;
}

.light-garland span {
  position: absolute;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: twinkle 2.5s ease-in-out infinite;
}

.light-garland span:nth-child(5n+1) { background: var(--gold); box-shadow: 0 0 12px var(--glow-gold); }
.light-garland span:nth-child(5n+2) { background: var(--warm-white); box-shadow: 0 0 10px rgba(255, 251, 235, 0.6); animation-delay: 0.4s; }
.light-garland span:nth-child(5n+3) { background: var(--cranberry-bright); box-shadow: 0 0 12px var(--glow-red); animation-delay: 0.8s; }
.light-garland span:nth-child(5n+4) { background: var(--evergreen-light); box-shadow: 0 0 10px var(--glow-green); animation-delay: 1.2s; }
.light-garland span:nth-child(5n) { background: var(--gold-soft); box-shadow: 0 0 12px var(--glow-gold); animation-delay: 1.6s; }

@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 16, 24, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 16px var(--glow-gold), 0 0 0 2px rgba(240, 193, 77, 0.25);
}

.nav-desktop {
  display: none;
  gap: 1.25rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--gold-soft);
}

.header-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cranberry-bright) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 2px 20px var(--glow-red), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--cranberry-bright) 100%);
  box-shadow: 0 4px 28px var(--glow-red), 0 0 20px rgba(240, 193, 77, 0.15);
  text-decoration: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 20px rgba(240, 193, 77, 0.03);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  box-shadow: 0 0 20px rgba(240, 193, 77, 0.12);
  text-decoration: none;
}

.btn-glow {
  background: linear-gradient(135deg, var(--evergreen) 0%, var(--evergreen-deep) 100%);
  color: var(--gold-soft);
  border: 1px solid rgba(240, 193, 77, 0.3);
  box-shadow: 0 0 24px var(--glow-green), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
  box-shadow: 0 0 32px var(--glow-gold);
  text-decoration: none;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 0 1rem;
  gap: 0.5rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text-muted);
  padding: 0.5rem 0;
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    gap: 1.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 85% 15%, rgba(240, 193, 77, 0.12), transparent),
    radial-gradient(ellipse 70% 50% at 5% 70%, rgba(20, 83, 45, 0.2), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.5), rgba(185, 28, 60, 0.15));
  border: 1px solid rgba(240, 193, 77, 0.35);
  color: var(--gold-soft);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 0 24px rgba(240, 193, 77, 0.08);
}

.hero-badge::before {
  content: '🎄';
}

.hero-badge-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero h1 .festive {
  font-family: var(--font-festive);
  font-size: 1.08em;
  color: var(--gold);
  text-shadow: 0 0 40px var(--glow-gold);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 30px var(--glow-gold);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(240, 193, 77, 0.12);
  border: 2px solid rgba(240, 193, 77, 0.25);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 16, 24, 0.9) 0%,
    rgba(7, 16, 24, 0.25) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  z-index: 1;
}

.hero-visual-caption p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gold-soft);
}

.hero-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-top: 1rem;
  position: relative;
}

.hero-card::before {
  content: '🎄';
  position: absolute;
  top: -12px;
  right: 1.25rem;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px var(--glow-gold));
}

@media (min-width: 900px) {
  .hero-card {
    margin-top: 0;
  }
}

.hero-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--gold-soft);
}

.hero-card p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.gallery-grid-large {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (min-width: 960px) {
  .gallery-grid:not(.gallery-grid-large) {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .gallery-grid-large .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(7, 16, 24, 0.92));
  font-size: 0.8rem;
  color: var(--gold-soft);
}

.gallery-attribution {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 4.5rem 0;
  position: relative;
}

section:nth-child(even) {
  background: rgba(15, 31, 46, 0.6);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.section-header h2 .festive-accent {
  font-family: var(--font-festive);
  color: var(--gold);
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

.section-ribbon {
  display: inline-block;
  background: linear-gradient(90deg, var(--cranberry-bright), var(--evergreen));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(240, 193, 77, 0.08), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.card:hover {
  border-color: rgba(240, 193, 77, 0.35);
  box-shadow: 0 0 32px rgba(240, 193, 77, 0.08);
}

.card:hover::after {
  opacity: 1;
}

.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-with-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.card-with-image .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Process steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), #c9a030);
  color: var(--midnight);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 16px var(--glow-gold);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Visualize section */
#visualize {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(20, 83, 45, 0.18), transparent),
    rgba(15, 31, 46, 0.65);
}

.visualize-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .visualize-layout {
    grid-template-columns: 340px 1fr;
    align-items: start;
  }
}

.visualize-controls {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.visualize-controls h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--gold-soft);
}

.visualize-steps {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.visualize-steps li {
  margin-bottom: 0.35rem;
}

.viz-upload-zone {
  border: 2px dashed rgba(240, 193, 77, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  background: rgba(240, 193, 77, 0.04);
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 1rem;
}

.viz-upload-zone:hover,
.viz-upload-zone.dragover {
  border-color: var(--gold);
  background: rgba(240, 193, 77, 0.08);
}

.viz-upload-zone.has-photo {
  padding: 0.75rem;
}

.viz-upload-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.viz-upload-zone p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.viz-upload-zone strong {
  color: var(--gold-soft);
}

.viz-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.viz-toolbar .btn {
  font-size: 0.8rem;
  padding: 0.5rem 0.85rem;
}

.viz-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.viz-preview-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow), inset 0 0 60px rgba(240, 193, 77, 0.03);
  min-height: 280px;
}

.viz-preview-wrap.hidden {
  display: none;
}

#viz-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: crosshair;
  touch-action: none;
}

.viz-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Estimator */
#estimator {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20, 83, 45, 0.15), transparent),
    rgba(15, 31, 46, 0.55);
}

.estimator-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .estimator-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.estimator-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

input.input-invalid,
textarea.input-invalid {
  border-color: var(--red-light);
}

.field-error {
  color: var(--red-light);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.form-error {
  margin-bottom: 1rem;
}

.lead-capture {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem 0.25rem;
  margin-bottom: 1.25rem;
  background: rgba(240, 193, 77, 0.04);
}

.lead-capture legend {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 0.35rem;
}

.lead-capture-note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tab {
  flex: 1;
  padding: 0.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.tab.active {
  background: rgba(240, 193, 77, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.estimate-result {
  background: var(--bg-elevated);
  border: 1px solid rgba(240, 193, 77, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 200px;
  box-shadow: inset 0 0 40px rgba(240, 193, 77, 0.04);
}

.estimate-result.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.95rem;
}

.estimate-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.25rem 0 0.5rem;
  text-shadow: 0 0 30px var(--glow-gold);
}

.estimate-detail {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
}

.disclaimer {
  margin-top: 1rem;
  padding: 0.85rem;
  background: rgba(240, 193, 77, 0.06);
  border: 1px solid rgba(240, 193, 77, 0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.status-msg {
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.status-msg.loading {
  color: var(--gold);
}

.status-msg.error {
  color: var(--red-light);
}

.status-msg.success {
  color: #86efac;
}

/* Reviews / credentials */
.reviews-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reviews-note p {
  margin: 0;
  color: var(--text-muted);
}

.credentials-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.credential {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.credential strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Service area */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.area-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
}

.area-tag:hover {
  border-color: rgba(240, 193, 77, 0.35);
  box-shadow: 0 0 16px rgba(240, 193, 77, 0.08);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
}

.contact-method:hover {
  border-color: var(--gold);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  background: rgba(7, 16, 24, 0.9);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cranberry-bright), var(--gold), var(--evergreen-light), var(--gold), var(--cranberry-bright));
}

.site-footer p {
  margin: 0.25rem 0;
}

/* 404 */
.page-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.page-404 h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  margin: 0;
  color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}
