/* ============================================================
   KLENOVA HOME SOLUTIONS — styles.css
   Colors: #0A0A0A | #C9A84C | #2C2C2C | #FFFFFF
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0A0A0A;
  --gold:     #C9A84C;
  --gold-lt:  #e2c070;
  --dark:     #2C2C2C;
  --white:    #FFFFFF;
  --gray:     #888888;
  --text-muted: #aaaaaa;
  --section-pad: clamp(3rem, 7vw, 6rem);
  --container: 1200px;
  --radius: 4px;
  --transition: 200ms cubic-bezier(0.25, 0, 0, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-muted); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title { color: var(--white); margin-bottom: 1rem; }
.section-sub   { max-width: 600px; margin-bottom: 2.5rem; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
section { padding: var(--section-pad) 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ── Gold divider ─────────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #ccc;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .active > a { color: var(--gold); }

/* Dropdown */
.nav-links .has-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #111;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.dropdown-menu li a {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  color: #bbb;
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
.has-dropdown:hover .dropdown-menu { display: block; }

/* Nav CTA area */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-lang {
  font-size: 0.8rem;
  font-weight: 600;
  color: #aaa;
  padding: 0.4rem 0.8rem;
  border: 1px solid #444;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-lang:hover { color: var(--white); border-color: #777; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #0f0f0f;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 1rem 0 2rem;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links a { padding: 0.85rem 1.5rem; font-size: 1rem; color: var(--white); }
  .dropdown-menu {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }
  .dropdown-menu li a { padding: 0.5rem 1.5rem; font-size: 0.9rem; }
  .has-dropdown > a::after { content: ''; }
  .nav-actions { gap: 0.5rem; }
  .btn-lang { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .photo-slot { width: 100%; height: 100%; }
.hero-bg .photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 60%,
    rgba(10,10,10,0.5) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #bbb;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-badge-item strong { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.hero-badge-item span  { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── IMAGE PLACEHOLDERS ───────────────────────────────────── */
.photo-slot {
  position: relative;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.4);
  overflow: hidden;
}
.photo-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--transition);
}
.photo-slot img.loaded { opacity: 1; }
.slot-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
  transition: opacity var(--transition);
  background: var(--dark);
}
.slot-label .slot-icon { font-size: 1.5rem; }
.photo-slot.image-loaded .slot-label { opacity: 0; pointer-events: none; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-section { background: #0d0d0d; }
.services-header { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
}
.service-card {
  background: #111;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 250ms ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  background: #141414;
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card h3 { color: var(--white); margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card .card-link:hover { gap: 0.7rem; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-section { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-check {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.why-item h3 { color: var(--white); font-size: 1.05rem; }
.why-item p  { font-size: 0.88rem; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-section { background: #0d0d0d; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 260px;
  gap: 6px;
}
/* Featured image: left column, spans rows 1 & 2 */
.gallery-grid .gallery-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}
/* All slots: cover fill, hover zoom */
.gallery-grid .photo-slot {
  overflow: hidden;
}
.gallery-grid .photo-slot img {
  transition: transform 0.45s cubic-bezier(0.25, 0, 0, 1);
}
.gallery-grid .photo-slot:hover img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px 200px;
  }
  .gallery-grid .gallery-featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 220px);
  }
  .gallery-grid .gallery-featured { grid-column: 1; grid-row: 1; }
}

/* ── BEFORE / AFTER ───────────────────────────────────────── */
.before-after-section { background: #0d0d0d; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ba-item {}
.ba-item .photo-slot { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.ba-label {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.75rem;
  border-radius: 2px;
}
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr; } }

/* ── TEAM ─────────────────────────────────────────────────── */
.team-section { background: var(--black); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 1.5rem;
}
.team-grid .photo-slot { aspect-ratio: 3/4; }
.team-caption { text-align: center; color: #888; font-size: 0.9rem; }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── SERVICE AREAS ────────────────────────────────────────── */
.areas-section { background: #0d0d0d; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  border: 1px solid rgba(201,168,76,0.15);
}
.area-card {
  padding: 1.5rem 1.25rem;
  background: #111;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.08);
  transition: all var(--transition);
}
.area-card:hover { background: #161616; border-color: rgba(201,168,76,0.3); }
.area-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.area-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.area-card p  { font-size: 0.78rem; color: #666; }
.area-card a  { display: block; color: var(--gold); font-size: 0.75rem; font-weight: 600; margin-top: 0.5rem; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-section { background: var(--black); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text  { font-size: 0.9rem; color: #ccc; margin-bottom: 1rem; line-height: 1.7; }
.review-author { font-weight: 600; font-size: 0.85rem; color: var(--white); }
.review-source { font-size: 0.75rem; color: #666; }
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-section { background: #0d0d0d; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info {}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail a { color: #ccc; transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #aaa; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #111;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #141414;
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; }
.form-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: #666; max-width: 260px; margin-bottom: 1.25rem; }
.footer-phone { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--black); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: #666; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: #444; }
.footer-bottom a { color: #666; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: #0d0d0d;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { margin-bottom: 2rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 130px 0 60px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { max-width: 600px; }

/* ── CONTENT SECTIONS ─────────────────────────────────────── */
.content-section { background: var(--black); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .content-grid { grid-template-columns: 1fr; gap: 2rem; } }
.content-body h2 { color: var(--white); margin-bottom: 1rem; }
.content-body p  { margin-bottom: 1rem; }
.content-body ul { margin: 1rem 0; }
.content-body ul li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: #bbb;
}
.content-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.content-photo .photo-slot { aspect-ratio: 4/3; border-radius: var(--radius); }

/* ── CITY / SERVICE LINKS ─────────────────────────────────── */
.links-grid-section { background: #0d0d0d; padding: 4rem 0; }
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.link-card {
  display: block;
  padding: 1.25rem 1rem;
  background: #111;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}
.link-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-2px);
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { padding: 1.75rem; background: #111; border: 1px solid rgba(201,168,76,0.1); border-radius: var(--radius); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.value-card p  { font-size: 0.85rem; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.map-placeholder {
  background: #111;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: #888; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* ============================================================
   HERO VIDEO BACKGROUND + PARALLAX
   ============================================================ */

/* Override old hero-bg styles; hero-media is the new wrapper */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
  will-change: transform;
}

/* overlay sits between video and text */
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  /* override the old gradient overlay */
  background: rgba(0, 0, 0, 0.6) !important;
}

/* hero-content must float above both media + overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ── HERO FADE-IN ANIMATIONS ──────────────────────────────── */
@keyframes khs-fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  animation: khs-fadeInUp 0.7s cubic-bezier(0.25, 0, 0, 1) 0.15s both;
}
.hero h1 {
  animation: khs-fadeInUp 0.8s cubic-bezier(0.25, 0, 0, 1) 0.35s both;
}
.hero-sub {
  animation: khs-fadeInUp 0.8s cubic-bezier(0.25, 0, 0, 1) 0.55s both;
}
.hero-cta {
  animation: khs-fadeInUp 0.8s cubic-bezier(0.25, 0, 0, 1) 0.75s both;
}
.hero-badge {
  animation: khs-fadeInUp 0.8s cubic-bezier(0.25, 0, 0, 1) 0.95s both;
}

/* ── SERVICES CARDS — scroll-in animation ─────────────────── */
.service-card {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  /* transition added when .card-visible class applied */
}
.service-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.55s cubic-bezier(0.25, 0, 0, 1),
              transform 0.55s cubic-bezier(0.25, 0, 0, 1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero-sub, .hero-cta, .hero-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .service-card {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ── SERVICES SHOWCASE (3-column image cards) ─────────────── */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.showcase-card {
  background: #111;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.showcase-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.showcase-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0, 1);
}
.showcase-card:hover .showcase-img img {
  transform: scale(1.06);
}
.showcase-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.showcase-body h3 { color: var(--white); margin-bottom: 0.6rem; }
.showcase-body p  { font-size: 0.9rem; margin-bottom: 1.25rem; }
/* More services pills */
.services-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.service-pill {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #999;
  transition: all var(--transition);
}
.service-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
@media (max-width: 900px) {
  .services-showcase { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .services-showcase { grid-template-columns: 1fr; }
}
