﻿:root {
  --charcoal: #151515;
  --off-white: #f5f3ee;
  --deep-forest: #3b8a6b;
  --gold: #b89a5d;
  --muted: #6b6b6b;
  --max-width: 1240px;
  --radius: 8px;
  color-scheme: light;
}

html {
  color-scheme: light;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b89a5d;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: relative;
  top: 0;
  width: 100%;
  background: rgba(245, 243, 238, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: opacity, transform;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link {
  color: var(--charcoal);
  opacity: 0.7;
}

.nav-link.is-active,
.nav-link:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  gap: 8px;
}

.nav-toggle-icon {
  width: 16px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

.nav-toggle-icon::before {
  top: 0;
}

.nav-toggle-icon span {
  top: 4px;
}

.nav-toggle-icon::after {
  bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--deep-forest);
  color: #fff;
}

.btn-secondary {
  border-color: var(--deep-forest);
  color: var(--deep-forest);
  background: transparent;
}

.hero .btn-primary {
  background: var(--gold);
  color: #111;
  border-color: transparent;
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: #efede7;
}

.range-architecture .section-lead {
  max-width: 640px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.range-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.range-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.range-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.range-tier {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--charcoal);
}

.range-note {
  text-align: right;
}

.range-clarifier {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 0 24px;
}

.tier-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.tier-row {
  display: grid;
  grid-template-columns: minmax(150px, 190px) repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.tier-row--head {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 24px;
}

.tier-row--head .tier-cell {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.tier-label {
  display: grid;
  gap: 6px;
}

.tier-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
}

.tier-summary {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.tier-detail {
  display: grid;
  gap: 6px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 20px;
}

.tier-family-label {
  display: none;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.tier-desc {
  font-size: 0.95rem;
  color: var(--charcoal);
}

 

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 32px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 46, 35, 0.82), rgba(0, 0, 0, 0.3));
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 120px 0;
  display: grid;
  gap: 24px;
  text-align: center;
  justify-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #2a6b57;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(42, 107, 87, 0.22);
  color: #cfe7dd;
  border: 1px solid rgba(42, 107, 87, 0.5);
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.hero-sub {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-row {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
  flex-wrap: wrap;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(9, 13, 16, 0.64);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.review-badge__brand,
.review-badge__label,
.review-badge__intro {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-badge__brand {
  color: rgba(255, 255, 255, 0.82);
}

.review-badge__intro {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
}

.review-badge__stars {
  color: #d7c29a;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.review-badge__label {
  color: rgba(255, 255, 255, 0.68);
}

.review-badge--hero {
  margin-top: 18px;
  gap: 14px;
}

.review-badge--configurator {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(12, 17, 22, 0.72);
  border-color: rgba(215, 194, 154, 0.22);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #161a1f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.review-source__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-source__icon-image {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.review-source__name {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.review-source__stars {
  color: #f0d8a0;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-shadow: 0 0 12px rgba(240, 216, 160, 0.12);
}

.review-source--compact {
  gap: 6px;
  padding: 8px 11px;
}

.review-source--compact .review-source__stars {
  font-size: 0.82rem;
}

.review-source--google .review-source__icon {
  background: #161a1f;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.review-source--yell .review-source__icon {
  background: #ffd400;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.brand-bar {
  padding: 48px 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
  opacity: 0.7;
}

.logo-row img {
  max-height: 42px;
  margin: 0 auto;
}

.card-grid,
.model-grid,
.step-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.align-right {
  text-align: right;
}

.align-right .section-lead {
  margin-left: auto;
}

.align-right .card-grid {
  text-align: left;
}

.card,
.model-card,
.step,
.gallery-item,
.testimonial {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.configurator-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.configurator-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.configurator-overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 24px;
  display: grid;
  gap: 12px;
  width: 100%;
  text-align: center;
  justify-items: center;
}

.configurator-overlay h2 {
  margin: 0;
}

.model-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.model-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .model-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .model-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }
}

.model-thumb,
.image-block {
  background: #d8d6cf;
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.image-block--half.image-block--large {
  width: 100%;
  height: 360px;
}

.image-block--half.image-block--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-thumb img,
.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-block--half {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.image-block--half img {
  height: auto;
  object-fit: contain;
}

.home-quote-image {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  margin-top: 0;
}

.home-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}


.checklist {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.checklist-cta {
  margin-top: 24px;
}

.step-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step span {
  display: inline-block;
  color: #2a6b57;
  font-weight: 600;
  margin-bottom: 12px;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonial {
  text-align: left;
  display: grid;
  gap: 16px;
}

.testimonial img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-media-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: #101417;
}

.testimonial-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.testimonial-media.is-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-media img,
.testimonial-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-media-dots {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.testimonial-media-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
}

.testimonial-media-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.faq {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
}

.final-cta .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 40px;
  z-index: 50;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-widget.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-widget.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.chat-toggle {
  background: var(--deep-forest);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chat-wave {
  font-size: 1rem;
  line-height: 1;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: none;
}

.chat-widget.is-open .chat-panel {
  display: block;
}

.chat-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  border: 1px solid rgba(184, 154, 93, 0.25);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0;
}

.chat-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.chat-success {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(59, 138, 107, 0.12);
  border: 1px solid rgba(59, 138, 107, 0.35);
}

.chat-success.is-hidden {
  display: none;
}

.chat-error {
  background: rgba(94, 32, 32, 0.25);
  border: 1px solid rgba(94, 32, 32, 0.5);
  color: #f0d9d9;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.chat-lead {
  color: var(--muted);
  font-size: 0.9rem;
}

.chat-form label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #faf9f6;
  padding: 12px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-form input:focus,
.chat-form textarea:focus {
  outline: none;
  border-color: rgba(15, 46, 35, 0.6);
  box-shadow: 0 0 0 3px rgba(15, 46, 35, 0.12);
  background: #fff;
}

.chat-form button.btn-primary {
  width: 100%;
  border-radius: 12px;
}

.chat-form textarea {
  resize: vertical;
  min-height: 96px;
}

.chat-form {
  display: grid;
  gap: 12px;
}

.chat-form.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .chat-panel {
    width: min(92vw, 360px);
  }
}

@media (max-width: 600px) {
  .chat-widget {
    right: 12px;
    left: 12px;
  }

  .chat-toggle {
    width: 100%;
    justify-content: center;
  }

  .chat-panel {
    right: 0;
    width: calc(100vw - 24px);
    max-width: 100%;
    box-sizing: border-box;
    max-height: calc(100vh - 120px);
    overflow: hidden;
  }

  .chat-body {
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .chat-form input,
  .chat-form textarea {
    width: 100%;
  }
}

.form {
  display: grid;
  gap: 16px;
}

.contact-page .section-title {
  letter-spacing: 0.08em;
}

.contact-form {
  --contact-ink: #e2e6e9;
  --contact-muted: #8e959b;
  --contact-border: rgba(255, 255, 255, 0.08);
  --contact-glow: rgba(255, 255, 255, 0.08);
  --contact-panel: rgba(12, 16, 18, 0.85);
  --contact-panel-2: rgba(16, 20, 22, 0.75);
  background: linear-gradient(135deg, rgba(16, 20, 22, 0.95), rgba(9, 11, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 45%),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-grid--compact {
  gap: 14px;
}

.contact-form label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--contact-muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--contact-panel);
  color: var(--contact-ink);
  border: 1px solid var(--contact-border);
  border-radius: 14px;
  font-family: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  font-size: 1rem;
  padding: 14px 16px;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form select option {
  background: #0f1315;
  color: #e2e6e9;
  font-family: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  font-weight: 500;
}

.contact-form select option[disabled] {
  color: #6b7176;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9aa1a6 50%),
    linear-gradient(135deg, #9aa1a6 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px), 100% 0;
  background-size: 6px 6px, 6px 6px, 2.5em 2.5em;
  background-repeat: no-repeat;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  background: var(--contact-panel-2);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(154, 161, 166, 0.6);
  box-shadow: 0 0 0 3px rgba(154, 161, 166, 0.2);
  transform: translateY(-1px);
}

.contact-form-section {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, rgba(14, 18, 20, 0.85), rgba(8, 10, 11, 0.95));
  display: grid;
  gap: 18px;
}

.contact-form-section__head h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfd5d9;
}

.contact-form-section__head p {
  margin: 6px 0 0;
}

.contact-upload {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(12, 16, 18, 0.8);
}

.contact-upload input[type="file"] {
  padding: 10px 0;
  border: none;
  background: transparent;
  font-family: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
}

.contact-upload__hint {
  font-size: 0.75rem;
  color: var(--contact-muted);
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-submit {
  justify-self: start;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(19, 28, 26, 0.45);
}

.contact-page .container.split {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  align-items: start;
}

.contact-page .configurator-card {
  margin-top: clamp(48px, 12vh, 200px);
  background-size: cover;
  background-position: center top;
  min-height: 520px;
  aspect-ratio: 3 / 4;
}

@media (max-width: 900px) {
  .contact-form {
    padding: 22px;
  }

  .contact-page .container.split {
    grid-template-columns: 1fr;
  }

  .contact-page .configurator-card {
    margin-top: 24px;
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-page {
    overflow-x: hidden;
  }

  .contact-page.section {
    padding: 72px 0;
  }

  .contact-page .container {
    padding: 0 16px;
  }

  .contact-page .container.split {
    width: 100%;
    overflow-x: hidden;
  }

  .contact-page .container.split > div {
    min-width: 0;
  }

  .contact-form,
  .contact-page .configurator-card {
    width: 100%;
    max-width: 100%;
  }

  .contact-form {
    padding: 20px;
    border-radius: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
  }

  .contact-form label {
    letter-spacing: 0.06em;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  background: #fff1f1;
  border: 1px solid rgba(120, 20, 20, 0.18);
  color: #7a1e1e;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.form-hint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
}

select {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
  background: #fff;
}

input[type="password"] {
  font-family: "Segoe UI", "Segoe UI Symbol", Tahoma, Geneva, Verdana, Arial, sans-serif !important;
  font-variant-ligatures: none;
}

.site-footer {
  padding: 48px 0 24px;
  background: #111111;
  color: #f0f0f0;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
}

.muted {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.section-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .page-hero .container.split {
    display: grid;
    gap: 20px;
  }

  .page-hero .section-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.15;
  }

  .page-hero .section-lead {
    font-size: 1rem;
  }

  .page-hero .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero .button-row .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero .section-meta {
    gap: 0;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    display: block;
  }

  .page-hero .section-meta span {
    background: none;
    border: 0;
    padding: 0;
    line-height: 1.2;
    display: inline;
  }

  .page-hero .section-meta span::before {
    content: none;
  }
}

.landscape-band {
  background: radial-gradient(circle at top, rgba(26, 58, 45, 0.35), rgba(14, 17, 20, 0.98));
}

.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

.landscape-card-grid {
  align-items: stretch;
}

.landscape-card {
  border: 1px solid rgba(26, 58, 45, 0.4);
  background: linear-gradient(180deg, rgba(12, 20, 18, 0.96), rgba(8, 12, 14, 0.96));
  --landscape-card-overlay: 0.1;
}

.landscape-slab {
  background: linear-gradient(120deg, rgba(14, 17, 20, 0.98) 0%, rgba(18, 23, 26, 0.98) 55%, rgba(12, 32, 26, 0.98) 100%);
}

.landscape-snapshot {
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.98), rgba(20, 24, 26, 0.98));
}

.landscape-media-grid .card {
  overflow: hidden;
}

.landscape-media-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.landscape-steps {
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.98), rgba(12, 18, 20, 0.98));
}

.landscape-slab--parallax {
  position: relative;
  --landscape-slab-tint: 0.7;
  --landscape-slab-dark: 0.7;
  --landscape-slab-highlight: 0.28;
  --landscape-slab-vignette: 0.8;
  background-image:
    linear-gradient(135deg, rgba(10, 20, 16, var(--landscape-slab-tint)), rgba(12, 32, 24, var(--landscape-slab-tint))),
    linear-gradient(0deg, rgba(0, 0, 0, var(--landscape-slab-dark)), rgba(0, 0, 0, var(--landscape-slab-dark))),
    url("/assets/images/landscaping/grandform_parallax_scroll_affect.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.landscape-slab--parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(38, 94, 70, var(--landscape-slab-highlight)), rgba(0, 0, 0, var(--landscape-slab-vignette)));
  pointer-events: none;
}

@media (max-width: 768px) {
  .landscape-card {
    --landscape-card-overlay: 0.14;
  }

  .landscape-slab--parallax {
    --landscape-slab-tint: 0.64;
    --landscape-slab-dark: 0.62;
    --landscape-slab-highlight: 0.24;
    --landscape-slab-vignette: 0.76;
    background-attachment: scroll;
    background-position: center;
  }
}

.landscape-slab--parallax .container {
  position: relative;
  z-index: 1;
}

.landscape-slab-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landscape-slab-content .checklist {
  margin: 24px auto 0;
  max-width: 560px;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.landscape-slab-content .checklist li {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  position: relative;
  padding-left: 0;
}

.landscape-slab-content .checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%236fa58b'/><path d='M6 10.5l2.2 2.2L14 7.8' fill='none' stroke='%230f1416' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 16px;
}

.landscape-faq {
  background: linear-gradient(180deg, rgba(16, 19, 22, 0.98), rgba(12, 16, 18, 0.98));
}

.page-hero {
  padding-top: clamp(72px, 8vw, 120px);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 20px 40px;
  align-items: start;
}

.admin-sidebar {
  background: #0f2e23;
  color: #f4f0e7;
  border-radius: 18px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
  height: fit-content;
}

.admin-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-brand {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-nav-toggle {
  display: none;
  border: 1px solid rgba(244, 240, 231, 0.4);
  background: transparent;
  color: #f4f0e7;
  border-radius: 999px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  align-items: center;
  gap: 8px;
}

.admin-toggle-icon {
  position: relative;
  width: 14px;
  height: 10px;
  display: inline-block;
}

.admin-toggle-icon::before,
.admin-toggle-icon::after,
.admin-toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.85);
}

.admin-toggle-icon::before {
  top: 0;
}

.admin-toggle-icon::after {
  bottom: 0;
}

.admin-toggle-icon span {
  top: 4px;
}

.admin-nav-panel {
  display: grid;
  gap: 20px;
}

.force-login-banner,
.force-login-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 120, 120, 0.4);
  background: rgba(140, 35, 35, 0.2);
}

.force-login-banner strong,
.force-login-strip strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.force-login-banner p,
.force-login-strip span {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: rgba(244, 240, 231, 0.85);
}

.force-login-return-btn {
  border-color: rgba(255, 120, 120, 0.5);
  background: rgba(164, 38, 38, 0.95);
  color: #fff4f4;
}

.force-login-return-btn:hover {
  background: rgba(186, 46, 46, 0.98);
  color: #ffffff;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(244, 240, 231, 0.6);
  margin-top: 8px;
}

.admin-nav-link {
  color: #f4f0e7;
  opacity: 0.82;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.admin-nav-link.is-danger {
  color: #ff9a9a;
  background: rgba(140, 35, 35, 0.18);
  border: 1px solid rgba(255, 120, 120, 0.25);
}

.admin-nav-link.is-danger:hover,
.admin-nav-link.is-danger.is-active {
  opacity: 1;
  background: rgba(140, 35, 35, 0.28);
  border: 1px solid rgba(255, 120, 120, 0.45);
}

.admin-nav-link.has-soon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.admin-nav-link.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.admin-nav-soon {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(184, 154, 93, 0.22);
  color: rgba(244, 240, 231, 0.9);
  white-space: nowrap;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
  background: rgba(184, 154, 93, 0.2);
  opacity: 1;
}

.admin-signout {
  margin-top: auto;
}

.admin-signout .btn {
  width: 100%;
}

.admin-content {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-content .section-lead {
  margin-bottom: 0;
}

.admin-overview-top {
  display: grid;
  gap: 12px;
}

.admin-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: flex-start;
  column-gap: 16px;
  row-gap: 8px;
}

.admin-page-products .admin-content .admin-header {
  grid-template-columns: minmax(0, 1fr) auto;
  row-gap: 6px;
}

.admin-page-products .admin-content .admin-header > a.btn {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.admin-page-products .admin-content .admin-header .admin-user-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
}

.admin-header .section-title {
  margin: 0 0 4px;
}

.admin-header .section-lead {
  margin: 0;
}

.admin-overview-header {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, auto);
  align-items: end;
  column-gap: 18px;
  row-gap: 12px;
}

.admin-overview-header-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-overview-header-mobile {
  display: none !important;
}

.admin-overview-header-mobile-controls {
  display: grid;
  gap: 12px;
}

.admin-overview-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89a5d;
}

.admin-overview-header-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.admin-overview-range-form {
  margin: 0;
}

.admin-overview-control,
.admin-overview-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-overview-control-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-overview-meta strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-user-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 16px;
  align-items: center;
}

.admin-user-card--subtle {
  padding: 10px 12px;
  gap: 12px;
}

.admin-user-card--subtle .muted {
  font-size: 0.7rem;
  margin: 0;
}

.admin-header > a.btn {
  justify-self: start;
}

.admin-header .admin-user-card {
  justify-self: end;
}

.admin-role {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0ede5;
  color: var(--deep-forest);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.admin-overview-kpis {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-metric-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 8px;
}

.admin-kpi-card {
  position: relative;
  gap: 10px;
  min-height: 138px;
  overflow: hidden;
}

.admin-kpi-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-kpi-card--positive::before {
  background: #71c59f;
}

.admin-kpi-card--warning::before {
  background: #d6b36a;
}

.admin-kpi-card--critical::before {
  background: #d98d7a;
}

.admin-kpi-card--neutral::before {
  background: #5f6b69;
}

.admin-kpi-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-kpi-card-head .muted {
  margin: 0;
}

.admin-kpi-status-value {
  font-size: 1.25rem;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.admin-status-pill.is-positive {
  color: #d7f2e6;
  background: rgba(59, 138, 107, 0.18);
  border-color: rgba(59, 138, 107, 0.36);
}

.admin-status-pill.is-warning {
  color: #f5e6be;
  background: rgba(184, 154, 93, 0.16);
  border-color: rgba(184, 154, 93, 0.36);
}

.admin-status-pill.is-critical {
  color: #f6d4cc;
  background: rgba(170, 76, 58, 0.18);
  border-color: rgba(170, 76, 58, 0.38);
}

.admin-status-pill.is-neutral {
  color: #d0cbc2;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-metric-card h3 {
  font-size: 1.6rem;
  margin: 0;
}

.admin-metric-foot {
  font-size: 0.82rem;
  color: var(--muted);
}

.admin-metric-delta {
  font-weight: 700;
  margin-right: 6px;
}

.admin-metric-delta--positive {
  color: #71c59f;
}

.admin-metric-delta--negative {
  color: #d98d7a;
}

.admin-metric-delta--neutral {
  color: #c7c0b3;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  align-items: start;
}

.admin-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-panel {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 12px;
  min-width: 0;
}

.admin-overview-body {
  display: grid;
  gap: 18px;
  margin-top: 2%;
}

.admin-overview-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-overview-row--full {
  grid-template-columns: 1fr;
}

.admin-overview-row--utility {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-trend-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-overview-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-trend-summary-card {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-trend-summary-card strong {
  font-size: 1.2rem;
  color: #f5f3ee;
}

.admin-alert-list,
.admin-system-list,
.admin-live-list,
.admin-overview-split,
.admin-data-block {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.admin-alert-item,
.admin-system-item,
.admin-live-item,
.admin-mini-table-row {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.admin-alert-item,
.admin-system-item {
  padding: 14px;
}

.admin-alert-item.is-warning {
  background: rgba(184, 154, 93, 0.1);
}

.admin-alert-item.is-critical {
  background: rgba(170, 76, 58, 0.11);
}

.admin-alert-item-head,
.admin-data-block-head,
.admin-system-item-head,
.admin-live-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-alert-item-head,
.admin-system-item-head {
  align-items: flex-start;
}

.admin-empty-state {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 140px;
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.admin-empty-state strong,
.admin-data-block-head h3,
.admin-system-item-head h3,
.admin-alert-item-head strong {
  color: #f5f3ee;
}

.admin-data-block-head h3,
.admin-system-item-head h3 {
  margin: 0;
  font-size: 0.95rem;
}

.admin-mini-table {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-mini-table-head,
.admin-mini-table-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.4fr) minmax(72px, 0.7fr) minmax(120px, 0.9fr) minmax(72px, 0.6fr) minmax(72px, 0.6fr);
  gap: 10px;
  align-items: center;
}

.admin-mini-table-head {
  padding: 0 10px 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-mini-table-row {
  padding: 12px 10px;
  font-size: 0.88rem;
}

.admin-mini-table-head > span,
.admin-mini-table-row > span {
  min-width: 0;
}

.admin-mini-table-label {
  font-weight: 600;
  color: #f5f3ee;
}

.admin-share-meter {
  width: 100%;
  max-width: 64px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  margin-right: 8px;
  overflow: hidden;
  vertical-align: middle;
  flex-shrink: 1;
}

.admin-share-meter-bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b8a6b, #b89a5d);
}

.admin-mini-table-row em {
  font-style: normal;
  color: #d7d1c5;
}

.admin-live-hero {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(59, 138, 107, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-live-hero strong {
  font-size: 2rem;
  color: #f5f3ee;
}

.admin-live-item {
  padding: 12px 14px;
}

.admin-live-item-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.admin-live-item-main strong {
  display: block;
  color: #f5f3ee;
}

.admin-live-item-main p,
.admin-system-item-head p,
.admin-alert-item p {
  margin: 2px 0 0;
}

.admin-live-seen,
.admin-system-meta {
  color: #d7d1c5;
  font-size: 0.82rem;
  white-space: nowrap;
}

.admin-actions--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-live-monitor {
  display: grid;
  gap: 14px;
}

.admin-live-summary-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-live-summary-card {
  min-height: 120px;
}

.admin-traffic-layout {
  display: grid;
  gap: 14px;
  margin-top: 2%;
}

.admin-traffic-summary-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-traffic-row {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
}

.admin-inline-note {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-traffic-notes {
  display: grid;
  gap: 10px;
}

.admin-traffic-note {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.admin-traffic-note p {
  margin: 0;
  color: #d7d1c5;
}

.admin-live-monitor-panel {
  gap: 14px;
}

.admin-live-monitor-head {
  align-items: flex-start;
}

.admin-live-filterbar {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 12px;
  align-items: end;
}

.admin-live-monitor-error[hidden] {
  display: none;
}

.admin-live-table .admin-live-row td {
  vertical-align: top;
}

.admin-live-cell-main,
.admin-live-source-cell,
.admin-live-time-cell {
  display: grid;
  gap: 4px;
}

.admin-live-source-cell strong,
.admin-live-time-cell strong {
  color: #f5f3ee;
}

.admin-empty-state--compact {
  min-height: auto;
}

.admin-mini-table-head--pages,
.admin-mini-table-row--pages {
  grid-template-columns: minmax(160px, 1.6fr) minmax(72px, 0.7fr) minmax(120px, 0.9fr);
}

.admin-mini-table-head--pages-conversion,
.admin-mini-table-row--pages-conversion {
  grid-template-columns: minmax(160px, 1.5fr) minmax(72px, 0.7fr) minmax(72px, 0.7fr) minmax(72px, 0.7fr);
}

.admin-mini-table-head--channels,
.admin-mini-table-row--channels {
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(0, 0.65fr)
    minmax(0, 0.95fr)
    minmax(0, 0.55fr)
    minmax(0, 0.55fr);
}

.admin-mini-table-head--traffic-campaigns,
.admin-mini-table-row--traffic-campaigns,
.admin-mini-table-head--utm,
.admin-mini-table-row--utm {
  grid-template-columns:
    minmax(140px, 1.3fr)
    minmax(100px, 0.9fr)
    minmax(100px, 0.9fr)
    minmax(72px, 0.6fr)
    minmax(72px, 0.6fr)
    minmax(72px, 0.6fr);
}

.admin-wrap-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-error-text {
  line-height: 1.5;
}

.admin-error-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: 4.5em;
}

.admin-error-toggle {
  justify-self: start;
}

.admin-panel--wide {
  grid-column: 1 / -1;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.admin-panel-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-panel-head h2 {
  font-size: 1.1rem;
  margin: 0;
}

.admin-panel-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.admin-chart {
  border-radius: 14px;
  background: #f4f2ec;
  min-height: 180px;
  display: grid;
  align-items: end;
  gap: 10px;
  padding: 18px;
}

.admin-chart--large {
  grid-template-columns: repeat(10, 1fr);
  min-height: 220px;
}

.chart-bar {
  width: 100%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(160deg, #123d30, #b89a5d);
}

.admin-chart--donut {
  position: relative;
  min-height: 200px;
  align-items: center;
  justify-items: center;
}

.admin-traffic-trend {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(59, 138, 107, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(10, 15, 16, 0.96), rgba(15, 21, 22, 0.98));
  border: 1px solid rgba(216, 197, 158, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.admin-traffic-trend-svg {
  width: 100%;
  height: 280px;
  overflow: visible;
}

.admin-traffic-trend-grid,
.admin-traffic-trend-baseline {
  stroke: rgba(233, 225, 209, 0.12);
  stroke-width: 1;
}

.admin-traffic-trend-area {
  fill: rgba(59, 138, 107, 0.22);
}

.admin-traffic-trend-line {
  fill: none;
  stroke: #d8c59e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(216, 197, 158, 0.18));
}

.admin-traffic-trend-dot {
  fill: #f5f3ee;
  stroke: #b89a5d;
  stroke-width: 2.5;
}

.admin-traffic-trend-axis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
  gap: 8px;
}

.admin-traffic-trend-tick {
  display: grid;
  gap: 2px;
  color: #e6ded1;
}

.admin-traffic-trend-tick strong {
  font-size: 0.98rem;
  color: #f5f3ee;
}

.admin-traffic-trend-tick span {
  font-size: 0.76rem;
  color: #a9a39a;
}

.donut-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(#123d30 0 58%, #d9d2c3 58% 78%, #b89a5d 78% 100%);
}

.donut-center {
  position: absolute;
  text-align: center;
  background: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  align-content: center;
  gap: 2px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.admin-legend {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.legend-dot.is-primary {
  background: #123d30;
}

.legend-dot.is-muted {
  background: #d9d2c3;
}

.legend-dot.is-accent {
  background: #b89a5d;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
}

.admin-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #f0ede5;
  color: var(--deep-forest);
  padding: 6px 10px;
  border-radius: 999px;
}

.admin-pill--warning {
  background: rgba(185, 121, 54, 0.16);
  color: #b97936;
}

.admin-actions {
  display: grid;
  gap: 10px;
}

.admin-actions .btn {
  width: 100%;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.admin-image-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  font-size: 0.78rem;
}

.admin-image-preview {
  width: 100%;
  padding-top: 70%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #e4e0d6;
}

.admin-image-meta {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-image-remove {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-forest);
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 0 10px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 8px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: middle;
}

.admin-table th:last-child,
.admin-table td:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-table th {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
}

.admin-table td.admin-table-actions {
  padding-right: 0;
}

.admin-action-group {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.admin-table th:last-child,
.admin-table td:last-child {
  text-align: right;
  padding-right: 0;
}

.admin-action-group form {
  margin: 0;
}

.admin-product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #e4e0d6;
  flex-shrink: 0;
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.72rem;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form-section {
  display: grid;
  gap: 12px;
}

.admin-section-title {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-panel-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.admin-contact-detail-panel {
  gap: 18px;
}

.admin-contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-contact-meta-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.admin-contact-meta-item strong {
  font-size: 1.03rem;
  line-height: 1.35;
}

.admin-contact-notes {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 14px;
  padding: 14px;
}

.admin-contact-notes-body {
  margin: 6px 0 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ece7dc;
}

.admin-contact-images-wrap {
  margin-top: 6px;
}

.admin-contact-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
  gap: 14px;
  margin-top: 8px;
}

.admin-contact-image-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.admin-contact-image {
  width: 280px;
  height: 280px;
  object-fit: contain;
  display: block;
  background: #0b1013;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
}

.admin-alert {
  border-radius: 14px;
  padding: 6px 10px;
  font-size: 0.92rem;
  line-height: 1.4;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.admin-alert ul {
  margin-top: 8px;
  padding-left: 20px;
}

.admin-alert.is-success {
  border: 1px solid rgba(23, 92, 67, 0.25);
  color: #155c43;
  background: #f0faf5;
}

.admin-alert.is-error {
  border: 1px solid rgba(122, 30, 30, 0.2);
  color: #7a1e1e;
  background: #fff1f1;
}

.form-alert {
  border-radius: 12px;
  padding: 10px 12px;
  margin: 12px 0 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  font-size: 0.92rem;
}

.form-alert ul {
  margin-top: 8px;
  padding-left: 20px;
}

.form-alert.is-error {
  border: 1px solid rgba(122, 30, 30, 0.2);
  color: #7a1e1e;
  background: #fff1f1;
}

.form-alert.is-success {
  border: 1px solid rgba(23, 92, 67, 0.25);
  color: #155c43;
  background: #f0faf5;
}

.gallery-grid {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-item {
  padding: 0;
  height: 220px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.gallery-item.wide {
  grid-column: span 3;
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--deep-forest);
}

.model-price {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tier-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.model-range {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 6px;
}

.range-pricing {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  gap: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.model-card .range-pricing {
  margin-top: 6px;
  margin-bottom: 16px;
}

.model-card p {
  margin-bottom: 14px;
}

.model-card .text-link {
  display: inline-block;
  margin-top: 6px;
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.usage-section .section-head {
  margin-bottom: 24px;
}

.usage-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 470px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.usage-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}

.usage-slide.is-active {
  opacity: 1;
}

.usage-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 12, 10, 0.65), rgba(10, 12, 10, 0.2)),
    rgba(0, 0, 0, 0.3);
}

.usage-overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: clamp(28px, 6vw, 48px);
  max-width: 520px;
  margin: 0 auto;
  min-height: 100%;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  justify-items: center;
}

.usage-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #2a6b57;
}

.usage-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(42, 107, 87, 0.38);
  color: #cfe7dd;
  border: 1px solid rgba(42, 107, 87, 0.5);
}

.usage-overlay h3 {
  font-size: 1.6rem;
  margin: 0;
}

.usage-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.2s ease;
}

.usage-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.usage-prev {
  left: 16px;
}

.usage-next {
  right: 16px;
}

.usage-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.usage-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
}

.usage-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .usage-slider {
    min-height: 510px;
  }

  .usage-overlay {
    max-width: 100%;
  }

  .usage-nav {
    width: 36px;
    height: 36px;
    display: none;
  }
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-hero {
  border-radius: 16px;
  overflow: hidden;
  background: #e4e0d6;
  min-height: 280px;
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
}

.product-thumb {
  border-radius: 12px;
  overflow: hidden;
  background: #e4e0d6;
  min-height: 90px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 154, 93, 0.2);
}

.product-info .section-title {
  margin-top: 8px;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.2rem;
  color: var(--deep-forest);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.product-description {
  margin-bottom: 24px;
  color: var(--muted);
  white-space: pre-line;
}

.product-perk {
  margin-top: 6px;
  margin-bottom: 12px;
  color: var(--deep-forest);
  font-weight: 600;
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.checkout-summary h2,
.checkout-form h2 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.checkout-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.checkout-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.checkout-form form {
  display: grid;
  gap: 10px;
}

.checkout-section {
  display: grid;
  gap: 12px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.checkout-section h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.checkout-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  width: fit-content;
  justify-self: start;
}

.checkout-checkbox input[type="checkbox"] {
  margin: 0;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.customer-dashboard .section-head {
  align-items: center;
}

.customer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.customer-card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 10px;
}


.customer-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.customer-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.customer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.customer-table th,
.customer-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.customer-table th:last-child,
.customer-table td:last-child {
  text-align: right;
}

.customer-table th {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--muted);
}

.customer-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #f0ede5;
  color: var(--deep-forest);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
}

@media (max-width: 900px) {
  .customer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .customer-dashboard .section-head {
    align-items: flex-start;
  }

  .customer-dashboard .section-head form {
    align-self: flex-start;
  }
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}

.auth-modal.is-open {
  display: flex;
}

.auth-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 8, 0.45);
}

.auth-modal__dialog {
  position: relative;
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: grid;
  gap: 16px;
}

.email-preview-modal .auth-modal__dialog {
  width: min(860px, 94vw);
  height: min(92vh, 980px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #101416 0%, #151b1d 100%);
  color: #eef1ed;
  border: 1px solid rgba(184, 154, 93, 0.26);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.email-preview-modal .auth-modal__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  color: #d6d1c5;
}

.email-preview-modal .auth-modal__overlay {
  background: rgba(8, 10, 11, 0.7);
}

.email-preview-modal .auth-modal__header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184, 154, 93, 0.16);
}

.email-preview-modal .auth-modal__header h2 {
  color: #caa96a;
}

.email-preview-modal .auth-modal__close {
  color: #e8dfcf;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(184, 154, 93, 0.22);
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.email-preview-modal .auth-modal__close:hover {
  background: rgba(184, 154, 93, 0.12);
  border-color: rgba(184, 154, 93, 0.4);
  color: #f4ead6;
}

.email-preview-modal .muted {
  color: #9ea8a2;
}

.home-quote-modal .auth-modal__dialog {
  width: min(560px, 92vw);
  background: linear-gradient(165deg, #0f1418 0%, #1a2326 100%);
  color: #eef1ed;
  border: 1px solid rgba(184, 154, 93, 0.3);
}

.home-quote-modal__content {
  display: grid;
  gap: 14px;
}

.home-quote-modal__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b89a5d;
  font-size: 0.72rem;
}

.home-quote-modal__lead {
  margin: 0;
  color: #d7ddd7;
}

.home-quote-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-quote-modal__actions .btn {
  min-width: 190px;
}

.email-preview-modal .email-preview-subject {
  color: #f3ede2;
  word-break: break-word;
}

.email-preview-modal .email-preview-body {
  background: linear-gradient(180deg, #0d1214 0%, #12181a 100%);
  border: 1px solid rgba(184, 154, 93, 0.18);
  border-radius: 12px;
  padding: 16px;
  flex: 1;
  min-height: 0;
  overflow: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

body.theme-dark .auth-modal__dialog {
  background: #0e1114;
  color: #eef1ed;
  border: 1px solid rgba(184, 154, 93, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

body.theme-dark .email-preview-modal .email-preview-subject {
  color: #e7dfd0;
}

body.theme-dark .auth-modal__header h2 {
  color: #b89a5d;
}

body.theme-dark .auth-modal__close {
  color: #d7d0c2;
}

body.theme-dark .auth-tabs {
  background: #12171a;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 4px;
}

body.theme-dark .auth-tab {
  color: #c8c1b4;
  border-radius: 999px;
  background: #0e1114;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .auth-tab.is-active {
  background: #3b8a6b;
  color: #f8f5ed;
  border-color: #3b8a6b;
  box-shadow: 0 0 0 1px rgba(59, 138, 107, 0.45);
}

body.theme-dark .auth-form label {
  color: #c8c1b4;
}

body.theme-dark .auth-form input {
  background: #0b0f0e;
  color: #f0eadc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
}

body.theme-dark .auth-form input:focus {
  border-color: rgba(59, 138, 107, 0.6);
  box-shadow: 0 0 0 2px rgba(59, 138, 107, 0.25);
}

body.theme-dark .auth-alert {
  background: rgba(120, 20, 20, 0.2);
  border: 1px solid rgba(184, 60, 60, 0.4);
  color: #f2b9b9;
}

.auth-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-modal__header h2 {
  font-size: 1.2rem;
  margin: 0;
}

.auth-modal__close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.auth-tab {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f4f2ec;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.auth-tab.is-active {
  background: var(--deep-forest);
  color: #fff;
  border-color: transparent;
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.auth-alert {
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff1f1;
  color: #7a1e1e;
  border: 1px solid rgba(122, 30, 30, 0.2);
}

.price-tip-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 180;
}

.price-tip-modal.is-open {
  display: flex;
}

.price-tip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.price-tip-card {
  position: relative;
  z-index: 1;
  background: #0e1114;
  color: #eef1ed;
  border: 1px solid rgba(184, 154, 93, 0.35);
  border-radius: 16px;
  padding: 20px 22px;
  width: min(420px, 90vw);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 10px;
}

.price-tip-card p {
  color: #d1d5cf;
}

.price-tip-eyebrow {
  color: #b89a5d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.price-tip-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #e7e1d6;
  cursor: pointer;
}

.price-tip-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-size: 0.7rem;
  margin: 0;
}

.price-tip-text {
  margin: 0;
  color: var(--charcoal);
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 190;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 10, 0.7);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  background: #0e1114;
  color: #eef1ed;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(184, 154, 93, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #e7e1d6;
  font-size: 1.4rem;
  cursor: pointer;
}

.video-modal__media {
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-video-btn {
  width: fit-content;
}

.range-note-line {
  font-size: 0.78rem;
  color: var(--muted);
  margin: -6px 0 14px;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .trust-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-badge {
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 18px;
  }

  .review-badge--configurator {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .site-header.is-open .nav-panel {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .quote-reveal-section + .quote-reveal-section {
    margin-top: 16px;
  }

  .quote-booking-panel {
    gap: 14px;
    margin-top: 22px;
  }

  .quote-booking-section,
  .quote-reveal-next-step,
  .quote-modal-price--reveal {
    padding: 14px;
    border-radius: 16px;
  }

  .quote-booking-location-fields {
    grid-template-columns: 1fr;
  }

  .quote-booking-group {
    display: grid;
    align-items: stretch;
  }

  .quote-booking-slot-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .quote-booking-slot {
    min-height: 58px;
    width: 100%;
  }

  .align-right {
    text-align: left;
  }

  .align-right .section-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .range-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .range-note {
    text-align: left;
  }

  .range-card {
    padding: 22px;
  }

  .tier-row--head {
    display: none;
  }

  .tier-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .tier-detail {
    border-left: none;
    padding-left: 0;
  }

  .tier-family-label {
    display: inline-flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero-inner {
    padding: 96px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-block--half {
    width: 100%;
  }

  .chat-widget {
    right: 16px;
    bottom: 32px;
  }

  .admin-shell {
    grid-template-columns: 1fr;
    padding: 16px 14px 32px;
  }

  .admin-sidebar {
    position: static;
    padding: 16px;
    gap: 16px;
  }

  .admin-nav-toggle {
    display: inline-flex;
  }

  .admin-nav-panel {
    display: none;
  }

  .admin-sidebar.is-open .admin-nav-panel {
    display: grid;
  }

  .admin-nav {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 4px;
  }

  .admin-header {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .admin-user-card {
    display: none;
  }

  .admin-user-card--subtle {
    display: flex;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-contact-meta-grid {
    grid-template-columns: 1fr;
  }

  .admin-contact-images-grid {
    grid-template-columns: 1fr;
  }

  .admin-contact-image {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .admin-table-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

/* Admin header spacing override */
.admin-page .admin-content .admin-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 16px;
  row-gap: 6px;
  margin-bottom: 0;
}

.admin-page .admin-content .admin-header.admin-overview-header {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, auto) !important;
  align-items: end;
  row-gap: 12px;
}

.admin-page .admin-content .admin-header > a.btn {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.admin-page .admin-content .admin-header .admin-user-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: start;
}

.admin-page .admin-content {
  gap: 8px;
}

.admin-header--stacked {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

.admin-header-left {
  display: grid;
  gap: 4px;
}

.admin-header-left .section-lead {
  margin-bottom: 0;
}

.admin-header-action {
  margin-top: 0;
}

.admin-page-products .admin-panel {
  margin-top: 4px;
}

.admin-header--stacked {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

.admin-header-left {
  display: grid;
  gap: 6px;
}

.admin-header-action {
  margin-top: 2px;
}

.admin-page-products .admin-content {
  gap: 6px;
}

@media (max-width: 1240px) {
  .admin-overview-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-overview-row,
  .admin-overview-row--utility,
  .admin-traffic-row {
    grid-template-columns: 1fr;
  }

  .admin-traffic-summary-strip,
  .admin-live-summary-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-live-filterbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-page-dashboard .admin-content .admin-header.admin-overview-header.admin-overview-header--desktop,
  .admin-page-traffic .admin-content .admin-header.admin-overview-header.admin-overview-header--desktop,
  .admin-page-live-visitors .admin-content .admin-header.admin-overview-header.admin-overview-header--desktop {
    display: none !important;
  }

  .admin-page-dashboard .admin-overview-header-mobile,
  .admin-page-traffic .admin-overview-header-mobile,
  .admin-page-live-visitors .admin-overview-header-mobile {
    display: grid !important;
    gap: 14px;
  }

  .admin-page-dashboard .admin-overview-header-mobile .section-title,
  .admin-page-traffic .admin-overview-header-mobile .section-title,
  .admin-page-live-visitors .admin-overview-header-mobile .section-title {
    font-size: 2rem;
    line-height: 0.96;
    margin: 0;
  }

  .admin-page-dashboard .admin-overview-header-mobile .section-lead,
  .admin-page-traffic .admin-overview-header-mobile .section-lead,
  .admin-page-live-visitors .admin-overview-header-mobile .section-lead {
    font-size: 0.98rem;
    line-height: 1.45;
    margin: 0;
    max-width: none;
  }

  .admin-page-dashboard .admin-overview-header-mobile .admin-overview-range-form,
  .admin-page-dashboard .admin-overview-header-mobile .btn,
  .admin-page-dashboard .admin-overview-header-mobile .admin-overview-meta,
  .admin-page-dashboard .admin-overview-header-mobile .admin-user-card--subtle,
  .admin-page-traffic .admin-overview-header-mobile .admin-overview-range-form,
  .admin-page-traffic .admin-overview-header-mobile .btn,
  .admin-page-traffic .admin-overview-header-mobile .admin-overview-meta,
  .admin-page-traffic .admin-overview-header-mobile .admin-user-card--subtle,
  .admin-page-live-visitors .admin-overview-header-mobile .btn,
  .admin-page-live-visitors .admin-overview-header-mobile .admin-overview-meta,
  .admin-page-live-visitors .admin-overview-header-mobile .admin-user-card--subtle {
    width: 100%;
  }

  .admin-page-dashboard .admin-overview-header-mobile .admin-overview-control select,
  .admin-page-dashboard .admin-overview-header-mobile .admin-overview-control input,
  .admin-page-traffic .admin-overview-header-mobile .admin-overview-control select,
  .admin-page-traffic .admin-overview-header-mobile .admin-overview-control input,
  .admin-page-live-visitors .admin-overview-header-mobile .admin-overview-control select,
  .admin-page-live-visitors .admin-overview-header-mobile .admin-overview-control input {
    width: 100%;
  }

  .admin-page-dashboard .admin-overview-header-mobile .admin-user-card--subtle,
  .admin-page-traffic .admin-overview-header-mobile .admin-user-card--subtle,
  .admin-page-live-visitors .admin-overview-header-mobile .admin-user-card--subtle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .admin-page .admin-content .admin-header.admin-overview-header {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 16px;
  }

  .admin-page .admin-content .admin-header.admin-overview-header .section-title {
    font-size: 2rem;
    line-height: 0.96;
    margin: 0;
  }

  .admin-page .admin-content .admin-header.admin-overview-header .section-lead {
    font-size: 0.98rem;
    line-height: 1.45;
    margin: 0;
    max-width: none;
  }

  .admin-overview-header-controls {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .admin-overview-range-form,
  .admin-overview-header-controls .btn,
  .admin-overview-meta,
  .admin-user-card--subtle {
    width: 100%;
  }

  .admin-overview-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-trend-summary,
  .admin-overview-highlight-strip,
  .admin-actions--grid,
  .admin-traffic-summary-strip {
    grid-template-columns: 1fr;
  }

  .admin-live-filterbar,
  .admin-live-summary-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-page-dashboard .admin-overview-header-mobile .section-title,
  .admin-page-traffic .admin-overview-header-mobile .section-title {
    font-size: 1.95rem;
    line-height: 0.95;
  }

  .admin-page-dashboard .admin-overview-header-mobile .section-lead,
  .admin-page-traffic .admin-overview-header-mobile .section-lead {
    font-size: 0.95rem;
  }

  .admin-page .admin-content .admin-header.admin-overview-header .section-title {
    font-size: 1.95rem;
    line-height: 0.95;
    margin: 0;
  }

  .admin-page .admin-content .admin-header.admin-overview-header .section-lead {
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0;
    max-width: none;
  }

  .admin-overview-control select,
  .admin-overview-control input {
    width: 100%;
  }

  .admin-overview-meta strong {
    line-height: 1.35;
  }

  .admin-user-card--subtle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .admin-panel-head,
  .admin-panel-actions,
  .admin-data-block-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-overview-kpis {
    grid-template-columns: 1fr;
  }

  .admin-mini-table-head {
    display: none;
  }

  .admin-chart,
  .admin-traffic-trend {
    padding: 14px;
    gap: 12px;
  }

  .admin-chart {
    min-height: 150px;
  }

  .admin-chart--large {
    min-height: 190px;
  }

  .admin-traffic-trend-svg {
    height: 220px;
  }

  .admin-traffic-trend-line {
    stroke-width: 2.5;
  }

  .admin-traffic-trend-dot {
    stroke-width: 2;
  }

  .admin-traffic-trend-axis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .admin-traffic-trend-tick {
    gap: 4px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .admin-traffic-trend-tick strong {
    font-size: 0.95rem;
    line-height: 1;
  }

  .admin-traffic-trend-tick span {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .admin-mini-table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .admin-mini-table-row > span {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .admin-mini-table-row > span::before {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .admin-mini-table-row > span:nth-child(1)::before {
    content: "Source";
  }

  .admin-mini-table--campaigns .admin-mini-table-row > span:nth-child(1)::before {
    content: "Campaign";
  }

  .admin-mini-table-row > span:nth-child(2)::before {
    content: "Visits";
  }

  .admin-mini-table--campaigns .admin-mini-table-row > span:nth-child(2)::before {
    content: "Source / Medium";
  }

  .admin-mini-table-row > span:nth-child(3)::before {
    content: "Share";
  }

  .admin-mini-table--campaigns .admin-mini-table-row > span:nth-child(3)::before {
    content: "Visits";
  }

  .admin-mini-table-row > span:nth-child(4)::before {
    content: "Leads";
  }

  .admin-mini-table-row > span:nth-child(5)::before {
    content: "CVR";
  }

  .admin-mini-table--pages .admin-mini-table-row > span:nth-child(1)::before {
    content: "Page";
  }

  .admin-mini-table--pages .admin-mini-table-row > span:nth-child(2)::before {
    content: "Visits";
  }

  .admin-mini-table--pages .admin-mini-table-row > span:nth-child(3)::before {
    content: "Share";
  }

  .admin-mini-table--pages-conversion .admin-mini-table-row > span:nth-child(1)::before {
    content: "Page";
  }

  .admin-mini-table--pages-conversion .admin-mini-table-row > span:nth-child(2)::before {
    content: "Visits";
  }

  .admin-mini-table--pages-conversion .admin-mini-table-row > span:nth-child(3)::before {
    content: "Leads";
  }

  .admin-mini-table--pages-conversion .admin-mini-table-row > span:nth-child(4)::before {
    content: "CVR";
  }

  .admin-mini-table--channels .admin-mini-table-row > span:nth-child(1)::before {
    content: "Channel";
  }

  .admin-mini-table--channels .admin-mini-table-row > span:nth-child(2)::before {
    content: "Visits";
  }

  .admin-mini-table--channels .admin-mini-table-row > span:nth-child(3)::before {
    content: "Share";
  }

  .admin-mini-table--channels .admin-mini-table-row > span:nth-child(4)::before {
    content: "Leads";
  }

  .admin-mini-table--channels .admin-mini-table-row > span:nth-child(5)::before {
    content: "CVR";
  }

  .admin-mini-table--traffic-campaigns .admin-mini-table-row > span:nth-child(1)::before {
    content: "Campaign";
  }

  .admin-mini-table--traffic-campaigns .admin-mini-table-row > span:nth-child(2)::before {
    content: "Source";
  }

  .admin-mini-table--traffic-campaigns .admin-mini-table-row > span:nth-child(3)::before {
    content: "Medium";
  }

  .admin-mini-table--traffic-campaigns .admin-mini-table-row > span:nth-child(4)::before {
    content: "Visits";
  }

  .admin-mini-table--traffic-campaigns .admin-mini-table-row > span:nth-child(5)::before {
    content: "Leads";
  }

  .admin-mini-table--traffic-campaigns .admin-mini-table-row > span:nth-child(6)::before {
    content: "CVR";
  }

  .admin-mini-table--utm .admin-mini-table-row > span:nth-child(1)::before {
    content: "Source";
  }

  .admin-mini-table--utm .admin-mini-table-row > span:nth-child(2)::before {
    content: "Medium";
  }

  .admin-mini-table--utm .admin-mini-table-row > span:nth-child(3)::before {
    content: "Campaign";
  }

  .admin-mini-table--utm .admin-mini-table-row > span:nth-child(4)::before {
    content: "Visits";
  }

  .admin-mini-table--utm .admin-mini-table-row > span:nth-child(5)::before {
    content: "Leads";
  }

  .admin-mini-table--utm .admin-mini-table-row > span:nth-child(6)::before {
    content: "CVR";
  }

  .admin-live-item,
  .admin-system-item-head,
  .admin-alert-item-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-live-seen {
    white-space: normal;
  }

  .admin-live-table thead {
    display: none;
  }

  .admin-live-table,
  .admin-live-table tbody,
  .admin-live-table tr,
  .admin-live-table td {
    display: block;
    width: 100%;
  }

  .admin-live-table tr {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 12px;
    margin-bottom: 10px;
  }

  .admin-live-table td {
    border: none;
    padding: 6px 0;
  }

  .admin-live-table td::before {
    content: attr(data-label);
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .admin-page-dashboard .admin-overview-header-mobile .section-title,
  .admin-page-traffic .admin-overview-header-mobile .section-title {
    font-size: 1.7rem;
  }

  .admin-page .admin-content .admin-header.admin-overview-header .section-title {
    font-size: 1.7rem;
  }

  .admin-metric-card,
  .admin-panel {
    padding: 14px;
  }

  .admin-trend-summary-card,
  .admin-kpi-card {
    min-height: auto;
  }

  .admin-traffic-trend-svg {
    height: 200px;
  }

  .admin-traffic-trend-axis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.theme-dark {
  color-scheme: dark;
  background: #161a1f;
  color: #f0eadc;
}

body.theme-dark .site-header {
  background: rgba(10, 13, 13, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-dark .nav-link {
  color: #d4d0c6;
}

body.theme-dark .nav-link.is-active {
  color: #5aa48f;
}

body.theme-dark .section-alt {
  background: #0e1114;
}

body.theme-dark .card,
body.theme-dark .model-card,
body.theme-dark .range-card,
body.theme-dark .step,
body.theme-dark .gallery-item,
body.theme-dark .testimonial,
body.theme-dark .faq-item,
body.theme-dark .form,
body.theme-dark .checkout-card,
body.theme-dark .auth-form,
body.theme-dark .chat-panel {
  background: #14191a;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.theme-dark .model-thumb,
body.theme-dark .image-block,
body.theme-dark .usage-slide,
body.theme-dark .configurator-card {
  background-color: #0b0f0e;
}

body.theme-dark .btn-secondary {
  border-color: #6a8f7f;
  color: #d7e7de;
}

body.theme-dark .btn-primary {\r\n  background: #3b8a6b;\r\n  color: #f8f5ed;\r\n  border-color: transparent;\r\n}

body.theme-dark .hero .btn-primary {\r\n  background: #3b8a6b;\r\n  color: #f8f5ed;\r\n  border-color: transparent;\r\n}

body.theme-dark .hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
}

body.theme-dark .section-lead,
body.theme-dark .checklist,
body.theme-dark .model-card p,
body.theme-dark .faq-item p,
body.theme-dark .chat-lead {
  color: #a9a39a;
}

body.theme-dark input,
body.theme-dark textarea,
body.theme-dark select {
  background: #0b0f0e;
  color: #f0eadc;
  border-color: rgba(255, 255, 255, 0.15);
}

body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder {
  color: #8b857d;
}

body.theme-dark .form-alert {
  background: rgba(26, 61, 49, 0.2);
  border-color: rgba(26, 61, 49, 0.4);
  color: #e9e3d6;
}

body.theme-dark .form-alert.is-error {
  background: rgba(94, 32, 32, 0.25);
  border-color: rgba(94, 32, 32, 0.5);
  color: #f0d9d9;
}

body.theme-dark .site-footer {
  background: #0a0d0c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-dark .footer-links a {
  color: #cfc7b8;
}


/* Home page animations */
.home-animations .home-animate {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.home-animations .home-animate.anim-left {
  transform: translate3d(-32px, 0, 0);
}

.home-animations .home-animate.anim-right {
  transform: translate3d(32px, 0, 0);
}

.home-animations .home-animate.anim-top {
  transform: translate3d(0, -32px, 0);
}

.home-animations .home-animate.anim-bottom {
  transform: translate3d(0, 32px, 0);
}

.home-animations .home-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  .home-animations .home-animate:not(.is-visible) {
    transform: translate3d(0, 24px, 0) !important;
  }
}


/* Home page hover zoom */
.home-page .model-thumb img,
.home-page .gallery-item img,
.home-page .image-block img,
.home-page .testimonial img {
  transition: transform 0.5s ease;
  will-change: transform;
}

.home-page .model-card:hover .model-thumb img,
.home-page .gallery-item:hover img,
.home-page .image-block:hover img,
.home-page .testimonial:hover img {
  transform: scale(1.04);
}


/* CTA hover glow */
.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--deep-forest);
  box-shadow: 0 0 0 2px rgba(59, 138, 107, 0.45), 0 0 24px rgba(59, 138, 107, 0.4);
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  box-shadow: 0 0 0 2px rgba(59, 138, 107, 0.35), 0 0 28px rgba(59, 138, 107, 0.4);
}

/* Hero CTA glow */
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 154, 93, 0.6), 0 0 28px rgba(184, 154, 93, 0.45);
}

body.theme-dark .btn-primary:hover,
body.theme-dark .btn-primary:focus-visible {
  border-color: #3b8a6b;
  box-shadow: 0 0 0 2px rgba(59, 138, 107, 0.45), 0 0 24px rgba(59, 138, 107, 0.4);
}

body.theme-dark .hero .btn-primary:hover,
body.theme-dark .hero .btn-primary:focus-visible {
  border-color: #b89a5d;
  box-shadow: 0 0 0 2px rgba(184, 154, 93, 0.6), 0 0 28px rgba(184, 154, 93, 0.45);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 154, 93, 0.6), 0 0 24px rgba(184, 154, 93, 0.35);
}

/* Usage CTA size */
.usage-overlay .btn {
  padding: 10px 18px;
  font-size: 0.76rem;
}

/* Model CTA size */
.model-actions .btn {
  padding: 10px 18px;
  font-size: 0.76rem;
}

.model-actions .btn-secondary:hover,
.model-actions .btn-secondary:focus-visible {
  background: var(--deep-forest);
  color: #f8f5ed;
  border-color: var(--deep-forest);
  box-shadow: 0 0 0 2px rgba(59, 138, 107, 0.35), 0 0 24px rgba(59, 138, 107, 0.3);
}

body.theme-dark .chat-header {
  background: #101518;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .chat-title {
  color: #d7d0c2;
}

body.theme-dark .chat-close {
  color: #d7d0c2;
}

body.theme-dark .chat-form label {
  color: #a9a39a;
}

body.theme-dark .chat-form input,
body.theme-dark .chat-form textarea {
  background: #0b0f0e;
  color: #f0eadc;
  border-color: rgba(184, 154, 93, 0.18);
}

body.theme-dark .chat-form input:focus,
body.theme-dark .chat-form textarea:focus {
  background: #0b0f0e;
  color: #f0eadc;
  border-color: rgba(184, 154, 93, 0.48);
  box-shadow: 0 0 0 3px rgba(59, 138, 107, 0.18);
}

body.theme-dark .chat-form input::placeholder,
body.theme-dark .chat-form textarea::placeholder,
body.theme-dark .contact-form input::placeholder,
body.theme-dark .contact-form textarea::placeholder {
  color: rgba(240, 234, 220, 0.5);
}

body.theme-dark .chat-form textarea:-webkit-autofill,
body.theme-dark .chat-form textarea:-webkit-autofill:hover,
body.theme-dark .chat-form textarea:-webkit-autofill:focus,
body.theme-dark .chat-form input:-webkit-autofill,
body.theme-dark .chat-form input:-webkit-autofill:hover,
body.theme-dark .chat-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f0eadc;
  caret-color: #f0eadc;
  border: 1px solid rgba(184, 154, 93, 0.18);
  -webkit-box-shadow: 0 0 0px 1000px #0b0f0e inset;
  box-shadow: 0 0 0px 1000px #0b0f0e inset;
  transition: background-color 5000s ease-in-out 0s;
}

body.theme-dark .contact-form input:-webkit-autofill,
body.theme-dark .contact-form input:-webkit-autofill:hover,
body.theme-dark .contact-form input:-webkit-autofill:focus,
body.theme-dark .contact-form textarea:-webkit-autofill,
body.theme-dark .contact-form textarea:-webkit-autofill:hover,
body.theme-dark .contact-form textarea:-webkit-autofill:focus,
body.theme-dark .contact-form select:-webkit-autofill,
body.theme-dark .contact-form select:-webkit-autofill:hover,
body.theme-dark .contact-form select:-webkit-autofill:focus {
  -webkit-text-fill-color: #e2e6e9;
  caret-color: #e2e6e9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: 0 0 0px 1000px #0f1315 inset;
  box-shadow: 0 0 0px 1000px #0f1315 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Preloader overlay */
.preloader {
  position: fixed;
  inset: 0;
  background: #0e1114;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.preloader-mark {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}

.preloader-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(184, 154, 93, 0.25);
  border-top-color: #b89a5d;
  border-right-color: rgba(59, 138, 107, 0.6);
  animation: preloader-spin 1.4s linear infinite;
}

  .preloader-logo {\r\n  overflow: hidden;\r\n  border-radius: 50%;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: #12171a;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);\r\n  border: 1px solid rgba(184, 154, 93, 0.45);
}

 .preloader-logo img {\r\n  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.preloader-caption {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #a9a39a;
}

@keyframes preloader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Section badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 138, 107, 0.25);
  color: #d7e7de;
  border: 1px solid rgba(59, 138, 107, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.section-badge:hover {
  background: rgba(59, 138, 107, 0.35);
}

body.theme-dark .btn-secondary:hover,
body.theme-dark .btn-secondary:focus-visible {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 154, 93, 0.6), 0 0 24px rgba(184, 154, 93, 0.35);
}
\r\n
body.theme-dark .hero .btn-secondary:hover,
body.theme-dark .hero .btn-secondary:focus-visible {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 154, 93, 0.6), 0 0 24px rgba(184, 154, 93, 0.35);
}

/* Dark theme mobile nav */
@media (max-width: 768px) {
  body.theme-dark .nav-panel {
    background: #0e1114;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }

  body.theme-dark .nav-link {
    color: #d7d0c2;
  }

  body.theme-dark .nav-link.is-active {
    color: #3b8a6b;
  }

  body.theme-dark .nav-toggle {
    background: #101418;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e6ded1;
  }
}

body.theme-dark .nav-toggle-icon,
body.theme-dark .nav-toggle-icon::before,
body.theme-dark .nav-toggle-icon::after {
  background: #fff;
}

body.theme-dark .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Footer refresh */
.site-footer {
  padding: 64px 0 28px;
  background: #0a0d0c;
  color: #e6ded1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.footer-brand {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-note {
  color: #b9b2a5;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: #d7d0c2;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  fill: #3b8a6b;
  flex-shrink: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h3,
.footer-socials h3,
.footer-certifications h3 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9c9588;
  margin-bottom: 8px;
}

.footer-links a {
  color: #d7d0c2;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #3b8a6b;
}

.footer-socials .social-links {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(59, 138, 107, 0.5);
  background: rgba(59, 138, 107, 0.12);
  color: #e6ded1;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cert-grid {
  display: grid;
  gap: 10px;
}

.cert-badge {
  padding: 10px 12px;
  border-radius: 10px;
  background: #12171a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d7d0c2;
}

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  text-align: center;
  color: #9c9588;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

body.theme-dark .faq-item:hover summary {
  color: var(--gold);
}

body.theme-dark .faq-item:hover summary::after {
  color: var(--gold);
}

.cert-grid img {
  width: 120px;
  max-width: 100%;
  border-radius: 12px;
  background: #12171a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.footer-socials--inline {
  display: flex;
  align-items: center;
}

.footer-socials--inline .social-links {
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer alignment overrides */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
}

.footer-socials--inline {
  margin-left: auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer mobile tweaks */
@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }
  .footer-links,
  .footer-branding,
  .footer-certifications {
    align-items: center;
    justify-items: center;
  }
  .footer-links a {
    justify-self: center;
  }
  .footer-contact {
    justify-items: center;
  }
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 140px));
    justify-content: center;
  }
  .footer-socials--inline {
    justify-content: center;
    width: 100%;
  }
  .footer-socials--inline .social-links {
    justify-content: center;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Page animations */
.page-animations .page-animate {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.page-animations .page-animate.anim-left {
  transform: translate3d(-32px, 0, 0);
}

.page-animations .page-animate.anim-right {
  transform: translate3d(32px, 0, 0);
}

.page-animations .page-animate.anim-bottom {
  transform: translate3d(0, 32px, 0);
}

.page-animations .page-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  .page-animations .page-animate:not(.is-visible) {
    transform: translate3d(0, 24px, 0) !important;
  }
}

/* Garden Rooms hover zoom */
body.page-animations .model-card:hover .model-thumb img,
body.page-animations .image-block:hover img,
body.page-animations .card:hover img {
  transform: scale(1.04);
}

body.page-animations .model-thumb img,
body.page-animations .image-block img,
body.page-animations .card img {
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Orangeries + Gallery hover zoom */
body.page-animations .image-block:hover img,
body.page-animations .gallery-item:hover img {
  transform: scale(1.04);
}

body.page-animations .image-block img,
body.page-animations .gallery-item img {
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Page hover zoom */
body.page-hover-zoom .model-thumb img,
body.page-hover-zoom .image-block img,
body.page-hover-zoom .card img,
body.page-hover-zoom .gallery-item img {
  transition: transform 0.5s ease;
  will-change: transform;
}

body.page-hover-zoom .model-card:hover .model-thumb img,
body.page-hover-zoom .image-block:hover img,
body.page-hover-zoom .card:hover img,
body.page-hover-zoom .gallery-item:hover img {
  transform: scale(1.04);
}

/* Admin/Customer dark theme */
body.is-admin,
body.is-customer {
  background: #161a1f;
  color: #f0eadc;
}

body.is-admin .admin-content,
body.is-admin .admin-shell,
body.is-customer .customer-dashboard {
  background: transparent;
}

body.is-admin .admin-user-card,
body.is-admin .admin-metric-card,
body.is-admin .admin-panel,
body.is-admin .admin-image-card,
body.is-admin .admin-alert,
body.is-customer .customer-card,
body.is-customer .customer-table {
  background: #14191a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

body.is-admin .admin-table {
  background: transparent;
  border: none;
}

body.is-admin .admin-panel-tag,
body.is-admin .admin-metric-foot,
body.is-admin .admin-overview-control-label,
body.is-admin .admin-content .section-lead,
body.is-admin .admin-header .section-lead,
body.is-admin .admin-panel-head .muted,
body.is-customer .customer-dashboard .section-head p,
body.is-customer .customer-card p {
  color: #a9a39a;
}

body.is-admin .admin-role {
  background: rgba(59, 138, 107, 0.18);
  color: #d7e7de;
  border: 1px solid rgba(59, 138, 107, 0.4);
}

body.is-admin .admin-overview-meta strong,
body.is-admin .admin-kpi-card h3,
body.is-admin .admin-kpi-status-value,
body.is-admin .admin-live-hero strong,
body.is-admin .admin-trend-summary-card strong,
body.is-admin .admin-mini-table-label,
body.is-admin .admin-header .section-title {
  color: #f5f3ee;
}

body.is-admin .admin-empty-state strong,
body.is-admin .admin-data-block-head h3,
body.is-admin .admin-system-item-head h3,
body.is-admin .admin-alert-item-head strong,
body.is-admin .admin-live-item-main strong {
  color: #f5f3ee;
}

body.is-admin .admin-alert-item,
body.is-admin .admin-system-item,
body.is-admin .admin-live-item,
body.is-admin .admin-mini-table-row,
body.is-admin .admin-trend-summary-card,
body.is-admin .admin-empty-state,
body.is-admin .admin-live-hero {
  border-color: rgba(255, 255, 255, 0.08);
}

body.is-admin .admin-kpi-card--positive {
  background:
    linear-gradient(180deg, rgba(59, 138, 107, 0.12), rgba(20, 25, 26, 0.98)),
    #14191a;
}

body.is-admin .admin-kpi-card--warning {
  background:
    linear-gradient(180deg, rgba(184, 154, 93, 0.12), rgba(20, 25, 26, 0.98)),
    #14191a;
}

body.is-admin .admin-kpi-card--critical {
  background:
    linear-gradient(180deg, rgba(170, 76, 58, 0.14), rgba(20, 25, 26, 0.98)),
    #14191a;
}

body.is-admin .admin-kpi-card--neutral {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(20, 25, 26, 0.98)),
    #14191a;
}

body.is-admin .admin-table th,
body.is-admin .admin-table td,
body.is-customer .customer-table th,
body.is-customer .customer-table td {
  color: #e6ded1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.is-admin input,
body.is-admin textarea,
body.is-admin select,
body.is-customer input,
body.is-customer textarea,
body.is-customer select {
  background: #0b0f0e;
  color: #f0eadc;
  border-color: rgba(255, 255, 255, 0.15);
}

body.is-admin input::placeholder,
body.is-admin textarea::placeholder,
body.is-customer input::placeholder,
body.is-customer textarea::placeholder {
  color: #8b857d;
}

body.is-admin .admin-pill,
body.is-customer .customer-pill {
  background: rgba(184, 154, 93, 0.18);
  color: #e6ded1;
  border: 1px solid rgba(184, 154, 93, 0.35);
}

body.is-admin .admin-table-wrap,
body.is-customer .customer-table-wrap {
  background: #14191a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Login pages dark header + cards */
body.login-dark .site-header {
  background: #0e1114;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.configurator-page {
  --cfg-panel: #141b1f;
  --cfg-panel-2: #182228;
  --cfg-border: rgba(255, 255, 255, 0.12);
  --cfg-ink: #d4d6da;
  --cfg-muted: #a8a093;
  --cfg-accent: #3b8a6b;
  --cfg-warm: #b89a5d;
  padding-bottom: 90px;
}

.configurator-page .container {
  max-width: 1400px;
  padding-left: clamp(24px, 3.2vw, 56px);
  padding-right: clamp(24px, 3.2vw, 56px);
}

.configurator-hero {
  margin-bottom: 34px;
}

.configurator-range-shell {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.configurator-range-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.configurator-range-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(150deg, #111920, #152029);
  color: #e2e8ec;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.configurator-range-btn:hover,
.configurator-range-btn:focus-visible {
  border-color: rgba(184, 154, 93, 0.65);
}

.configurator-range-btn.is-active {
  border-color: rgba(184, 154, 93, 0.95);
  background: linear-gradient(150deg, rgba(184, 154, 93, 0.42), rgba(17, 25, 32, 0.96));
  color: #fff6e3;
  box-shadow: 0 10px 24px rgba(8, 14, 19, 0.36), inset 0 0 0 1px rgba(184, 154, 93, 0.24);
}

.configurator-range-icon {
  margin-right: 6px;
  font-size: 0.85rem;
  line-height: 1;
  vertical-align: -1px;
}

.configurator-range-summary {
  border: 1px solid var(--cfg-border);
  border-radius: 16px;
  padding: 14px;
  background: radial-gradient(circle at top right, rgba(184, 154, 93, 0.16), rgba(184, 154, 93, 0) 40%), #141b1f;
}

.configurator-range-summary h2 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.configurator-range-summary p {
  margin: 0;
  color: var(--cfg-muted);
  line-height: 1.5;
}

.configurator-range-pricing {
  display: none;
}

.configurator-range-pricing-chip {
  border: 1px solid rgba(59, 138, 107, 0.35);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: #dff2e8;
  background: rgba(59, 138, 107, 0.18);
}

.configurator-range-more {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #10171c;
  color: #dce5de;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.configurator-range-compare-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  border: none;
  background: transparent;
  color: #c9d4de;
  padding: 0;
  font-size: 0.76rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.configurator-range-compare {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  background: rgba(9, 13, 17, 0.35);
}

.configurator-range-compare.is-hidden {
  display: none;
}

.configurator-range-compare h3 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9e2dc;
}

.configurator-range-compare-grid {
  display: grid;
  gap: 6px;
}

.configurator-range-compare-row {
  display: grid;
  grid-template-columns: 170px repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

.configurator-range-compare-row strong {
  font-size: 0.68rem;
  color: #f0eadf;
  letter-spacing: 0.05em;
}

.configurator-range-compare-row--head strong,
.configurator-range-compare-head {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e6dbc3;
}

.configurator-range-compare-row span {
  font-size: 0.72rem;
  color: #ccd5ce;
  line-height: 1.35;
}

.configurator-range-compare-cell {
  display: block;
}

.configurator-range-compare-cell-label,
.configurator-range-compare-cell-value {
  display: block;
}

.configurator-range-compare-cell-label {
  display: none;
  font-style: normal;
}

.configurator-range-spec {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  background: rgba(9, 13, 17, 0.35);
}

.configurator-range-spec.is-hidden {
  display: none;
}

.configurator-range-spec-intro {
  margin: 0 0 8px;
  color: #ced8d1;
  font-size: 0.77rem;
  line-height: 1.45;
}

.configurator-range-spec ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}

.configurator-range-spec li {
  color: #ccd5ce;
  font-size: 0.8rem;
  line-height: 1.35;
}

.configurator-page .section-title {
  letter-spacing: 0.03em;
}

.configurator-layout {
  display: grid;
  grid-template-columns: minmax(240px, 26%) minmax(0, 50%) minmax(240px, 26%);
  gap: 16px;
  align-items: start;
}

.configurator-panel,
.configurator-summary,
.configurator-drawing-shell {
  background: var(--cfg-panel);
  border: 1px solid var(--cfg-border);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: var(--cfg-ink);
}

.configurator-panel,
.configurator-summary {
  padding: 18px 16px;
}

.configurator-panel h2,
.configurator-summary h2,
.configurator-drawing-header h2 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 0.14em;
}

.configurator-control {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.configurator-control label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cfg-muted);
}

.stepper-control {
  display: grid;
  gap: 8px;
  background: #10171c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
}

.stepper-main {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
}

.stepper-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0f1519;
  color: var(--cfg-ink);
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.stepper-btn:hover,
.stepper-btn:focus-visible {
  border-color: var(--cfg-accent);
  background: #162028;
  box-shadow: 0 0 0 3px rgba(59, 138, 107, 0.2);
}

.stepper-btn:active {
  transform: translateY(1px);
}

.stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stepper-value-wrap {
  text-align: center;
}

.stepper-value {
  font-size: clamp(28px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.1;
}

.stepper-sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 214, 218, 0.62);
  text-align: center;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.segment-btn,
.chip-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #10171c;
  color: var(--cfg-ink);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.chip-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.chip-row-presets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chip-btn-preset {
  font-size: 0.72rem;
}

.segment-btn.is-active,
.chip-btn.is-active {
  border-color: var(--cfg-accent);
  background: rgba(59, 138, 107, 0.2);
  color: #edf7f2;
}

.segment-btn:disabled,
.chip-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(212, 214, 218, 0.45);
}

.segment-btn:active,
.chip-btn:active {
  transform: translateY(1px);
}

.configurator-control.is-disabled .chip-row {
  opacity: 0.5;
  pointer-events: none;
}

.configurator-drawing-shell {
  padding: 30px;
  background: linear-gradient(145deg, #151f24, #121a1f);
}

.configurator-footprint {
  margin-bottom: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2eadf;
  border: 1px solid rgba(184, 154, 93, 0.38);
  background: rgba(184, 154, 93, 0.1);
}

.configurator-drawing-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--cfg-ink);
}

.plan-expand-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111920;
  color: var(--cfg-ink);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.plan-expand-btn:hover,
.plan-expand-btn:focus-visible {
  border-color: var(--cfg-warm);
  background: #18232b;
}

.configurator-drawing {
  background: #0b1115;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

.configurator-drawing.is-redraw svg {
  animation: cfg-fade-in 220ms ease;
}

.configurator-drawing svg {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
}

.cfg-bg {
  fill: #f3f2ee;
}

.cfg-wall {
  fill: #24323a;
}

.cfg-hole {
  fill: #f3f2ee;
}

.cfg-cut {
  fill: #f3f2ee;
}

.cfg-outline {
  stroke: #111a20;
  stroke-width: 1.4;
}

.cfg-door {
  stroke: #3b8a6b;
  stroke-width: 2.6;
}

.cfg-window {
  stroke: #25576d;
  stroke-width: 2.6;
}

.cfg-window-active {
  animation: cfg-pulse 230ms ease;
}

.cfg-dim,
.cfg-ext {
  stroke: #56616a;
  stroke-width: 1.1;
  marker-start: url(#cfg-arrow);
  marker-end: url(#cfg-arrow);
}

.cfg-ext {
  marker-start: none;
  marker-end: none;
}

.cfg-arrow-shape {
  fill: #56616a;
}

.cfg-dim-text,
.cfg-span,
.cfg-wall-label {
  fill: #1a232a;
  font-family: "Inter", sans-serif;
}

.cfg-dim-text {
  font-size: 11px;
  text-anchor: middle;
}

.cfg-dim-text-vertical {
  writing-mode: vertical-rl;
  text-anchor: start;
}

.cfg-span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cfg-wall-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.plan-guidance {
  margin-top: 12px;
  color: rgba(212, 214, 218, 0.58);
  font-size: 0.72rem;
  line-height: 1.5;
}

.output-group {
  margin-bottom: 24px;
}

.output-group h3 {
  font-size: 0.7rem;
  color: var(--cfg-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.configurator-summary-list {
  display: grid;
  gap: 12px;
}

.configurator-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.configurator-summary-list div:last-child {
  border-bottom: none;
}

.configurator-summary-list dt {
  color: var(--cfg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.summary-helper-text {
  display: block;
  margin-top: 3px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.65rem;
  color: rgba(212, 214, 218, 0.62);
  line-height: 1.35;
}

.configurator-summary-list dd {
  font-weight: 600;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.summary-value-emphasis {
  color: #f0efe7;
  font-size: 1.15rem;
  font-weight: 700;
}

.configurator-summary-list dd.is-updating,
.configurator-footprint.is-updating,
.mobile-sticky-meta.is-updating {
  opacity: 0.65;
  transform: translateY(1px);
}

.output-details {
  border-top: none;
  padding-top: 10px;
}

.output-details > summary {
  display: block;
  cursor: pointer;
  margin-bottom: 10px;
  color: var(--cfg-ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #111920;
}

.output-details > summary::-webkit-details-marker {
  display: none;
}

.output-details:not([open]) .output-group {
  display: none;
}

.configurator-indicators {
  display: grid;
  gap: 12px;
}

.indicator-chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--cfg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.indicator-chip.is-hidden {
  display: none;
}

.indicator-chip strong {
  color: #dfe8e3;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.indicator-chip.is-active {
  border-color: rgba(59, 138, 107, 0.8);
  color: #e7f6ef;
  background: rgba(59, 138, 107, 0.24);
}

.indicator-chip--warning.is-active {
  border-color: rgba(184, 154, 93, 0.85);
  background: rgba(184, 154, 93, 0.26);
  color: #fff5df;
}

.indicator-chip--warning.is-active strong {
  color: #fff3d5;
}

.indicator-chip--warning.is-active .indicator-helper {
  color: #f2dfbb;
}

.indicator-chip--success.is-active {
  border-color: rgba(59, 138, 107, 0.85);
  background: rgba(59, 138, 107, 0.24);
  color: #e7f6ef;
}

.indicator-chip--success.is-active strong {
  color: #e7f6ef;
}

.indicator-chip--success.is-active .indicator-helper {
  color: #cbe7da;
}

.indicator-helper {
  font-size: 0.66rem;
  color: var(--cfg-muted);
  max-width: 230px;
  line-height: 1.35;
}

.indicator-more {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 16, 20, 0.55);
  color: #dce5de;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.configurator-summary-cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}

.configurator-summary-cta .btn {
  width: 100%;
  border-radius: 12px;
}

.configurator-summary-cta-note {
  margin: 8px 4px 0;
  font-size: 0.72rem;
  color: rgba(212, 214, 218, 0.72);
  line-height: 1.4;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.plan-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.plan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.plan-modal-dialog {
  position: relative;
  max-width: 94vw;
  max-height: 90vh;
  margin: 3vh auto;
  background: #111a20;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
}

.plan-modal-inner {
  overflow: auto;
  max-height: 90vh;
  padding: 22px;
}

.plan-modal-inner svg {
  min-width: 980px;
  width: 100%;
  height: auto;
  display: block;
}

.plan-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(13, 21, 25, 0.9);
  color: #fff;
  cursor: pointer;
}

.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  background: rgba(15, 21, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 16px;
  display: none;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "meta actions"
    "range actions";
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky-meta {
  grid-area: meta;
  margin: 0;
  color: #efe7da;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  white-space: pre-line;
  line-height: 1.2;
  align-self: end;
}

.mobile-sticky-range {
  grid-area: range;
  margin: 0;
  color: #b8c8bf;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
  align-self: start;
}

.mobile-sticky-actions {
  grid-area: actions;
  display: grid;
  gap: 3px;
  align-self: center;
}

.mobile-sticky-actions small {
  font-size: 0.62rem;
  color: rgba(212, 214, 218, 0.72);
  text-align: center;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.quote-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.quote-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-width: 560px;
  max-height: calc(100vh - 32px);
  margin: 0;
  background: radial-gradient(circle at top right, rgba(56, 122, 97, 0.16), rgba(56, 122, 97, 0) 34%), #121b20;
  border: 1px solid rgba(214, 191, 139, 0.24);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.quote-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 16, 20, 0.88);
  color: #fff;
  cursor: pointer;
}

.quote-modal-dialog h2 {
  margin-bottom: 8px;
}

.quote-modal-step {
  display: none;
  opacity: 0;
}

.quote-modal-step.is-active {
  display: block;
  opacity: 1;
  animation: quote-step-in 220ms ease;
}

.quote-reveal-eyebrow {
  margin: 0 0 8px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fb9a6;
}

.quote-modal-lead {
  color: var(--cfg-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.quote-modal-meta {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184, 154, 93, 0.45);
  background: rgba(184, 154, 93, 0.1);
  color: #f2eadf;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.quote-modal-price {
  margin-bottom: 14px;
  display: grid;
  gap: 4px;
}

.quote-modal-price span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--cfg-muted);
}

.quote-modal-price strong {
  font-size: 1.7rem;
  line-height: 1.1;
  color: #f6efe1;
  letter-spacing: 0.01em;
}

.quote-modal-price--reveal {
  border: 1px solid rgba(214, 191, 139, 0.32);
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(140deg, rgba(214, 191, 139, 0.08), rgba(214, 191, 139, 0.02));
  margin-bottom: 12px;
}

.quote-modal-price--reveal strong {
  font-size: clamp(2rem, 4.4vw, 2.55rem);
  font-weight: 700;
  text-shadow: 0 0 24px rgba(214, 191, 139, 0.16);
}

.quote-reveal-price-line {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.quote-reveal-currency {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7cfbe;
  font-weight: 600;
}

.quote-modal-price small {
  font-size: 0.7rem;
  color: rgba(212, 214, 218, 0.72);
  line-height: 1.35;
}

.quote-modal-form {
  display: grid;
  gap: 12px;
}

.quote-modal-form label {
  display: grid;
  gap: 6px;
  color: var(--cfg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.quote-modal-form input,
.quote-modal-form textarea,
.quote-modal-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0e1418;
  color: var(--cfg-ink);
  padding: 10px 12px;
}

.quote-modal-form input:hover,
.quote-modal-form input:focus,
.quote-modal-form textarea:hover,
.quote-modal-form textarea:focus,
.quote-modal-form select:hover,
.quote-modal-form select:focus {
  background: #0e1418;
  color: var(--cfg-ink);
  border-color: rgba(214, 191, 139, 0.38);
  box-shadow: 0 0 0 2px rgba(214, 191, 139, 0.08);
  outline: none;
}

.quote-modal-form input:-webkit-autofill,
.quote-modal-form input:-webkit-autofill:hover,
.quote-modal-form input:-webkit-autofill:focus,
.quote-modal-form textarea:-webkit-autofill,
.quote-modal-form textarea:-webkit-autofill:hover,
.quote-modal-form textarea:-webkit-autofill:focus,
.quote-modal-form select:-webkit-autofill,
.quote-modal-form select:-webkit-autofill:hover,
.quote-modal-form select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cfg-ink);
  caret-color: var(--cfg-ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 0 0 1000px #0e1418 inset;
  box-shadow: 0 0 0 1000px #0e1418 inset;
  transition: background-color 9999s ease-out 0s, color 9999s ease-out 0s;
}

.quote-modal-form textarea {
  resize: vertical;
  min-height: 90px;
}

.quote-modal-form select {
  min-height: 44px;
}

.quote-modal-form .btn {
  width: 100%;
  min-height: 46px;
}

.quote-reveal-done {
  margin-bottom: 8px;
}

.quote-modal-form .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.quote-modal-trust {
  margin: -2px 2px 0;
  font-size: 0.71rem;
  color: rgba(212, 214, 218, 0.75);
  line-height: 1.35;
}

.quote-modal-error {
  border: 1px solid rgba(184, 92, 92, 0.5);
  background: rgba(184, 92, 92, 0.2);
  color: #f5dede;
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 0.85rem;
}

.quote-modal-success {
  border: 1px solid rgba(59, 138, 107, 0.55);
  background: rgba(59, 138, 107, 0.2);
  color: #def4ea;
  border-radius: 10px;
  padding: 12px;
}

.quote-modal-form.is-hidden,
.quote-modal-error.is-hidden,
.quote-modal-success.is-hidden {
  display: none;
}

.quote-progress {
  display: grid;
  gap: 12px;
}

.quote-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.quote-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7f63 0%, #4ea182 100%);
  transition: width 0.12s linear;
}

.quote-progress-status {
  margin: 0;
  color: #dfe6e0;
  font-size: 0.86rem;
}

.quote-progress-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.quote-progress-checks li {
  color: rgba(212, 214, 218, 0.72);
  font-size: 0.78rem;
  position: relative;
  padding-left: 22px;
}

.quote-progress-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(212, 214, 218, 0.35);
}

.quote-progress-checks li.is-complete {
  color: #dff2e8;
}

.quote-progress-checks li.is-complete::before {
  color: #4ea182;
}

.quote-reveal-section {
  display: grid;
  gap: 12px;
}

.quote-reveal-section + .quote-reveal-section {
  margin-top: 18px;
}

.quote-reveal-section--hero {
  gap: 10px;
}

.quote-reveal-section--price {
  margin-top: 22px;
}

.quote-modal-price--reveal {
  padding: 22px 24px;
  border-radius: 18px;
  border-color: rgba(184, 154, 93, 0.34);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(16, 26, 27, 0.78));
}

.quote-modal-price--reveal > span {
  letter-spacing: 0.14em;
}

.quote-modal-price--reveal small {
  color: rgba(232, 234, 238, 0.6);
}

.quote-booking-panel {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.quote-booking-panel [data-survey-booking-state].is-hidden {
  display: none;
}

.quote-booking-panel [data-survey-booking-state] {
  display: grid;
  gap: 16px;
}

.quote-booking-section {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.quote-booking-section--intro,
.quote-booking-section--summary,
.quote-booking-section--cta {
  background: rgba(255, 255, 255, 0.025);
}

.quote-booking-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d7c29a;
}

.quote-booking-copy {
  margin: 0;
  color: rgba(232, 234, 238, 0.82);
  line-height: 1.5;
}

.quote-booking-subheading {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 234, 238, 0.72);
}

.quote-booking-status-note {
  margin: 0;
  color: rgba(232, 234, 238, 0.82);
}

.quote-booking-skeleton {
  display: grid;
  gap: 10px;
  margin: 4px 0 2px;
}

.quote-booking-skeleton span {
  display: block;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  background-size: 220% 100%;
  animation: quote-booking-skeleton 1.2s ease-in-out infinite;
}

.quote-booking-highlight {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(184, 154, 93, 0.32);
  background: linear-gradient(145deg, rgba(184, 154, 93, 0.16), rgba(32, 52, 46, 0.42));
  box-shadow: 0 18px 34px rgba(5, 15, 14, 0.22);
}

.quote-booking-highlight.is-hidden,
.quote-booking-more.is-hidden,
.quote-booking-calendar-link.is-hidden,
.quote-booking-scarcity.is-hidden {
  display: none;
}

.quote-booking-highlight-label {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d7c29a;
}

.quote-booking-highlight-time {
  margin: 0;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.35;
}

.quote-booking-highlight-btn,
.quote-booking-more,
.quote-booking-calendar-link {
  min-height: 46px;
}

.quote-booking-scarcity {
  margin: 0;
  padding: 6px 2px 0;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: rgba(244, 229, 194, 0.74);
  font-size: 0.79rem;
  line-height: 1.45;
}

.quote-booking-section--slots {
  gap: 14px;
}

.quote-booking-location-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1.8fr) minmax(140px, 0.8fr);
}

.quote-booking-field {
  display: grid;
  gap: 6px;
}

.quote-booking-field span {
  font-size: 0.8rem;
  color: rgba(232, 234, 238, 0.82);
}

.quote-booking-field input {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 18, 19, 0.88);
  color: #edf1ee;
  padding: 0 14px;
}

.quote-booking-field input::placeholder {
  color: rgba(232, 234, 238, 0.46);
}

.quote-booking-field input:focus {
  outline: none;
  border-color: rgba(95, 169, 136, 0.82);
  box-shadow: 0 0 0 3px rgba(52, 118, 93, 0.18);
}

.quote-booking-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(148px, 340px);
  align-items: start;
  gap: 16px 24px;
  padding: 6px 0;
}

.quote-booking-group + .quote-booking-group {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-booking-group-copy {
  display: grid;
  gap: 6px;
  align-content: start;
}

.quote-booking-group-label {
  margin: 0;
  color: #f6f3ec;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  min-width: 0;
}

.quote-booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 12px;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
}

.quote-booking-slot {
  min-height: 50px;
  min-width: 0;
  padding: 0 18px;
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: center;
  border-radius: 14px;
  border: 1px solid rgba(95, 169, 136, 0.45);
  background: rgba(15, 26, 28, 0.88);
  color: #edf1ee;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.quote-booking-slot-time {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.quote-booking-slot-status {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 234, 238, 0.58);
}

.quote-booking-slot:hover,
.quote-booking-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(95, 169, 136, 0.82);
  background: rgba(25, 43, 41, 0.96);
  box-shadow: 0 10px 24px rgba(4, 12, 13, 0.28);
}

.quote-booking-slot.is-active {
  border-color: rgba(95, 169, 136, 0.95);
  background: linear-gradient(135deg, rgba(52, 118, 93, 0.96), rgba(38, 84, 69, 0.96));
  color: #fff;
  box-shadow: 0 12px 26px rgba(13, 34, 31, 0.36);
}

.quote-booking-slot.is-disabled,
.quote-booking-slot:disabled {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
  color: rgba(232, 234, 238, 0.34);
  cursor: default;
  box-shadow: none;
  opacity: 0.82;
}

.quote-booking-slot.is-disabled:hover,
.quote-booking-slot.is-disabled:focus-visible,
.quote-booking-slot:disabled:hover,
.quote-booking-slot:disabled:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.quote-booking-selection-summary {
  margin: 0;
  font-size: 0.98rem;
  color: #f2efe7;
  font-weight: 600;
  line-height: 1.5;
}

.quote-booking-trust {
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.quote-booking-trust p,
.quote-booking-fallback {
  margin: 0;
  color: rgba(232, 234, 238, 0.82);
  line-height: 1.45;
}

.quote-booking-fallback a {
  color: #fff;
}

.quote-booking-submit-btn {
  min-height: 54px;
  box-shadow: 0 16px 30px rgba(13, 45, 34, 0.34);
}

.quote-modal-meta--reveal {
  margin-bottom: 10px;
}

.quote-reveal-done {
  width: 100%;
  margin-top: 12px;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(232, 234, 238, 0.78);
  box-shadow: none;
}

.quote-reveal-done:hover,
.quote-reveal-done:focus-visible {
  filter: brightness(1.05);
}

.quote-threshold-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.quote-threshold-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-threshold-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.quote-threshold-dialog {
  position: relative;
  width: min(560px, calc(100vw - 24px));
  margin: 0;
  background: #121b20;
  border: 1px solid rgba(184, 154, 93, 0.45);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.quote-threshold-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 16, 20, 0.88);
  color: #fff;
  cursor: pointer;
}

.quote-threshold-eyebrow {
  margin: 0 0 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d7c29a;
}

.quote-threshold-dialog h3 {
  margin: 0 0 10px;
}

.quote-threshold-dialog p {
  margin: 0;
  color: rgba(212, 214, 218, 0.84);
}

.quote-threshold-more {
  margin-top: 14px;
}

.quote-threshold-more-content {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.quote-threshold-more-content.is-hidden {
  display: none;
}

@keyframes quote-booking-skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes quote-step-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .configurator-page .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .configurator-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .configurator-range-selector {
    grid-template-columns: minmax(0, 1fr);
  }

  .configurator-range-compare-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .configurator-range-compare-row--head {
    display: none;
  }

  .configurator-range-compare-row strong {
    font-size: 0.76rem;
    letter-spacing: 0.07em;
  }

  .configurator-range-compare-row span {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .configurator-range-compare-cell {
    display: grid;
    grid-template-columns: minmax(0, 112px) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .configurator-range-compare-cell-label {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e6dbc3;
    padding-top: 2px;
  }

  .configurator-range-compare-cell-value {
    color: #d7dfd8;
  }

  .configurator-range-compare-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .configurator-range-compare-row:first-child {
    padding-top: 0;
  }

  .configurator-drawing-shell {
    order: 1;
  }

  .configurator-panel {
    order: 2;
  }

  .configurator-summary {
    order: 3;
  }

  .output-details > summary {
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
    color: var(--cfg-ink);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #111920;
  }

  .output-details {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .output-details:not([open]) .output-group {
    display: none;
  }

  .configurator-drawing {
    cursor: zoom-in;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .mobile-sticky-cta .btn {
    min-height: 48px;
    padding: 12px 16px;
  }

  .quote-modal-dialog {
    margin: 0;
    max-width: none;
    width: min(560px, calc(100vw - 24px));
  }
}

@media (max-width: 620px) {
  .configurator-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .configurator-drawing-header h2 {
    margin-top: 10%;
  }

  .stepper-control {
    padding: 12px;
  }

  .chip-row-presets {
    grid-template-columns: minmax(0, 1fr);
  }

  .plan-expand-btn {
    font-size: 0.62rem;
    padding: 7px 10px;
  }

  .mobile-sticky-meta {
    font-size: 0.64rem;
  }

  .mobile-sticky-range {
    font-size: 0.56rem;
  }

  .quote-modal {
    align-items: center;
    padding: 12px;
  }

  .quote-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 18px 14px;
  }

  .quote-booking-group {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 2px 0;
  }

  .quote-booking-group + .quote-booking-group {
    margin-top: 2px;
    padding-top: 14px;
  }

  .quote-booking-slot-grid {
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    gap: 10px;
  }

  .quote-booking-group-label {
    font-size: 0.98rem;
  }

  .quote-booking-slot {
    min-height: 48px;
  }

  .quote-booking-slot-time {
    font-size: 0.92rem;
  }

  .quote-booking-location-fields {
    grid-template-columns: 1fr;
  }
}

@keyframes cfg-fade-in {
  from {
    opacity: 0.72;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cfg-pulse {
  from {
    stroke-width: 4;
    opacity: 0.6;
  }
  to {
    stroke-width: 2.6;
    opacity: 1;
  }
}

body.login-dark .nav-link {
  color: #d7d0c2;
}

body.login-dark .nav-link.is-active {
  color: #3b8a6b;
}

body.login-dark .form {
  background: #14191a !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.is-customer .site-header {
  background: #0e1114;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.is-customer .nav-link {
  color: #d7d0c2;
}

body.is-customer .nav-link.is-active {
  color: #3b8a6b;
}

body.is-admin .site-header {
  background: #0e1114;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.is-admin .nav-link {
  color: #d7d0c2;
}

body.is-admin .nav-link.is-active {
  color: #3b8a6b;
}
