﻿:root {
  --charcoal: #ece7dd;
  --off-white: #0e1114;
  --deep-forest: #3b8a6b;
  --gold: #c8a66a;
  --muted: #a1a7ad;
  --surface: #161a1f;
  --surface-2: #1d2228;
  --surface-3: #242b33;
  --deep-forest-hover: #46a07b;
  --gold-hover: #d6b57a;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --max-width: 1240px;
  --radius: 8px;
  color-scheme: dark;
}

html {
  color-scheme: dark;
}

* {
  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 {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-ring {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.preloader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--gold);
  border-right-color: var(--deep-forest);
  animation: preloader-spin 1.2s linear infinite;
}

.preloader-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.preloader-preview {
  background: var(--surface);
}

.preloader-demo {
  min-height: 60vh;
  display: grid;
  place-items: center;
  gap: 18px;
}

.preloader-caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

h1, h2, h3 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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(14, 17, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  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.35);
  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: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link {
  color: var(--charcoal);
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link.is-active,
.nav-link:hover {
  opacity: 1;
  color: var(--deep-forest);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  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-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--deep-forest);
  color: #fff;
  box-shadow: 0 0 18px rgba(59, 138, 107, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--deep-forest-hover);
  box-shadow: 0 0 28px rgba(59, 138, 107, 0.55);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--border-strong);
  color: var(--charcoal);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--deep-forest);
  color: var(--deep-forest);
  background: rgba(59, 138, 107, 0.08);
  transform: translateY(-1px);
}

.hero .btn-primary {
  background: var(--deep-forest);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 22px rgba(59, 138, 107, 0.4);
}

.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: var(--surface);
}

.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: var(--surface-2);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.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: var(--surface-2);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.tier-row--head {
  background: transparent;
  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 var(--border-soft);
  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: var(--gold);
}

.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: 18px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
  flex-wrap: wrap;
}

.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;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-dot:hover {
  border-color: var(--gold-hover);
  transform: scale(1.1);
}

.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: var(--surface-2);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.model-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.model-thumb,
.image-block {
  background: #2a3037;
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.model-thumb img,
.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-block--half {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.image-block--half img {
  height: auto;
  object-fit: contain;
}

.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: var(--gold);
  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);
  transition: transform 0.35s ease;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-soft);
}

.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;
  transition: color 0.2s ease;
}

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

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

.faq-item summary:hover {
  color: var(--gold-hover);
}

.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;
  background: transparent;
  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: 12px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 18px rgba(59, 138, 107, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  background: var(--deep-forest-hover);
  box-shadow: 0 0 26px rgba(59, 138, 107, 0.5);
  transform: translateY(-1px);
}

.chat-wave {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.chat-label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 320px;
  background: var(--surface-2);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-soft);
  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(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.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-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 var(--border-soft);
  background: var(--surface-3);
  padding: 12px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--charcoal);
}

.chat-form input:focus,
.chat-form textarea:focus {
  outline: none;
  border-color: rgba(59, 138, 107, 0.6);
  box-shadow: 0 0 0 3px rgba(59, 138, 107, 0.2);
  background: var(--surface-2);
}

.chat-form button.btn-primary {
  width: 100%;
  border-radius: 12px;
}

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

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

@media (max-width: 768px) {
  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

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

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  font-family: "Inter", sans-serif;
  background: var(--surface-3);
  color: var(--charcoal);
}

.site-footer {
  padding: 48px 0 24px;
  background: #0b0d10;
  color: #f2efe7;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
  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);
}

.page-hero {
  padding-top: clamp(72px, 8vw, 120px);
}

.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;
  transition: transform 0.35s ease;
}

.model-card:hover .model-thumb img,
.model-card:hover .image-block img,
.image-block:hover img,
.gallery-item:hover img,
.testimonial:hover img {
  transform: scale(1.04);
}

.gallery-item.wide {
  grid-column: span 3;
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--deep-forest);
  transition: color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.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;
}

.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;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: none;
  }

  .site-header.is-open .nav-panel {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .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;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}












