/* ===== LuxView360 – Stylesheet ===== */

:root {
  --grey: #444343;
  --grey-soft: #6b6a6a;
  --bg: #ffffff;
  --bg-alt: #f6f5f4;
  --border: #e4e2e0;
  --gold: #a9895f;
  --white: #ffffff;
  --radius: 10px;
  --max-width: 1400px;
  --shadow: 0 10px 30px rgba(68, 67, 67, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--grey);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 16px; color: var(--grey-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--grey);
  color: var(--white);
}
.btn-primary:hover { background: #2f2e2e; }

.btn-outline {
  background: transparent;
  color: var(--grey);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--grey); }

/* ===== Header ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--grey);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img { height: 60px; width: auto; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a.active,
nav.main-nav a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}
.lang-switch a { color: #ffffff !important; }
.lang-switch a.active { text-decoration: underline; text-underline-offset: 3px; }
.lang-switch a:hover { color: var(--gold) !important; }
.lang-switch span { color: #ffffff; }

.site-header .btn-primary {
  background: var(--white);
  color: var(--grey);
}
.site-header .btn-primary:hover { background: var(--bg-alt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

.nav-wrap.open nav.main-nav a { color: var(--grey); }

/* ===== Hero ===== */
.hero {
  padding: 90px 0 80px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grey);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--grey);
}
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== Stat panel (visual alternative to logo placement) ===== */
.stat-panel {
  background: var(--grey);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  display: grid;
  gap: 28px;
  aspect-ratio: 4/3;
  align-content: center;
}
.stat-panel .stat strong {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.stat-panel .stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9c7c5;
}
.stat-panel hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}

/* ===== Quote card (visual alternative to logo placement) ===== */
.quote-card {
  background: var(--bg-alt);
  border-left: 4px solid var(--grey);
  border-radius: var(--radius);
  padding: 44px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-card .mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.quote-card .quote-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 18px;
}
.quote-card .quote-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--grey-soft);
  margin-bottom: 0;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
}

.hero-actions { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }

/* ===== Sections ===== */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grey);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid var(--grey);
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 10px;
}
.step .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 8px;
  display: block;
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--grey);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #d7d5d3; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--white); color: var(--grey); }
.cta-band .btn-primary:hover { background: var(--bg-alt); }

/* ===== Reference cards ===== */
.ref-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--white);
}
.ref-embed {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border: none;
}
.ref-body { padding: 30px 32px; }

/* ===== List with checks ===== */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
  color: var(--grey-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.check-list.muted li::before { background: var(--border); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.fit-grid .card h3 { font-size: 1rem; margin-bottom: 16px; }

/* ===== Contact form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

form.contact-form {
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-size: 0.88rem; font-weight: 600; color: var(--grey); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--grey);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: auto; margin-top: 4px; }
.checkbox-row label { font-weight: 400; font-size: 0.88rem; color: var(--grey-soft); }

.contact-info .card { margin-bottom: 20px; }

/* ===== Footer ===== */
footer.site-footer {
  border-top: none;
  padding: 44px 0;
  background: var(--grey);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }
.footer-links a { font-size: 0.9rem; color: #d9d7d5; }
.footer-links a:hover { color: var(--gold); }
.copyright { font-size: 0.88rem; color: #b7b5b3; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 66px 0 56px;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grey);
}
.page-hero .container { max-width: 720px; }

/* ===== Legal ===== */
.legal-content h3 { margin-top: 34px; }
.legal-content p, .legal-content li { color: var(--grey-soft); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-panel, .quote-card { aspect-ratio: auto; }
}

@media (max-width: 720px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap.open nav.main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }
  .nav-wrap.open nav.main-nav ul {
    flex-direction: column;
    gap: 16px;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .footer-wrap { flex-direction: column; text-align: center; }
}
