/* ============================================================
   STOLARIJA VOŽD — Premium Design System
   Palette: Anthracite #111827 / #1F2933 | Gold #C8A96A | Warm White #F7F5F0
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700&family=Figtree:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg:          #111827;
  --bg-2:        #1F2933;
  --bg-3:        #243040;
  --border:      #2d3a4a;
  --border-light:#3a4d61;
  --text:        #F7F5F0;
  --text-2:      #b8b3aa;
  --text-3:      #7a7570;
  --accent:      #C8A96A;
  --accent-dark: #a8874a;
  --accent-light:#d4b87a;
  --white:       #ffffff;
  --black:       #000000;

  --font-head:   'Bricolage Grotesque', sans-serif;
  --font-body:   'Figtree', sans-serif;

  --nav-h:       72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1280px;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   INTRO ANIMATION — Realistic Roller Shutter + Window Zoom
   Stages: shutter lifts (0.4s–1.8s) → window zooms in (1.8s–2.7s)
   → overlay fades (2.7s–3.0s). Once per session via sessionStorage.
   ============================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #080d14;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: introOverlayFade 0.38s ease 2.65s forwards;
}
#intro-overlay.hidden { display: none; }

/* Scene wrapper — this is what zooms toward the viewer */
.intro-scene {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 3 / 4;
  filter: drop-shadow(0 32px 72px rgba(0, 0, 0, 0.85));
  animation: sceneZoomIn 0.92s cubic-bezier(0.4, 0, 0.1, 1) 1.82s forwards;
}

@keyframes sceneZoomIn {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.6); opacity: 0; }
}

/* ---- Anthracite architectural window frame (no horizontal divider) ---- */
.intro-frame {
  position: absolute;
  inset: 0;
  border: 16px solid #18222f;
  box-shadow:
    inset 0 0 0 1px #263348,
    inset 0 2px 0 0 rgba(255,255,255,0.06),
    0 0 0 1px #060a10;
  overflow: hidden;
}
/* Thin gold accent line on frame interior edge */
.intro-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 169, 106, 0.14);
  z-index: 10;
  pointer-events: none;
}

/* ---- Hero preview visible through the window ---- */
/* Shows the actual hero image so user sees real site content behind shutter */
.intro-hero-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../images/hero_sekcija.png') center / cover no-repeat;
}
.intro-hero-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.88) 0%, rgba(17,24,39,0.5) 60%, rgba(17,24,39,0.72) 100%);
}

/* Logo centered inside the hero preview */
.intro-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 20%;
}
.intro-logo-wrap img {
  width: 100%;
  max-width: 160px;
}

/* ---- The Rolling Shutter (Roletna) ---- */
.intro-shutter {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
/* Main shutter body — aluminum lamellen slat pattern */
.intro-shutter::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.07) 0px, rgba(255,255,255,0.07) 1px,
    #2e3c52 1px, #344458 6px,
    #263044 7px, #1e2a3c 10px,
    #263044 11px, #2e3c52 17px,
    rgba(255,255,255,0.04) 17px, rgba(255,255,255,0.04) 18px,
    #0e1620 18px, #0e1620 21px,
    rgba(255,255,255,0.07) 21px
  );
  animation: shutterLift 1.46s cubic-bezier(0.3, 0, 0.1, 1) 0.38s forwards;
}
/* Bottom rail */
.intro-shutter::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 18px;
  background: linear-gradient(to bottom, #1e2a3c 0%, #141e2c 60%, #0e1620 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.06), 0 3px 10px rgba(0,0,0,0.7);
  z-index: 3;
  animation: railLift 1.46s cubic-bezier(0.3, 0, 0.1, 1) 0.38s forwards;
}

@keyframes shutterLift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-102%); }
}
@keyframes railLift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100vh); }
}
@keyframes introOverlayFade {
  from { opacity: 1; pointer-events: all; }
  to   { opacity: 0; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  #intro-overlay { display: none !important; }
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(17, 24, 39, 0.98);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  white-space: nowrap;
  border-radius: var(--radius);
}
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link svg { width: 14px; height: 14px; transition: transform var(--transition); flex-shrink: 0; }
.nav__item.dd-open .nav__link svg { transform: rotate(180deg); }

/* ---- Dropdown / Mega Menu ---- */
/* top: 100% with padding-top removes any hover gap between trigger and panel */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 560px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 24px 24px; /* top padding bridges the gap visually */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,169,106,0.06);
}

/* Invisible hover bridge — fills gap between trigger and dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}

.nav__item.dd-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav__dd-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background var(--transition);
  font-size: 14px;
}
.nav__dd-link:hover { background: var(--bg-3); }
.nav__dd-link-icon {
  width: 32px; height: 32px;
  background: var(--bg-3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
}
.nav__dd-label { font-weight: 500; color: var(--text); line-height: 1.3; }
.nav__dd-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__phone {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.nav__phone:hover { color: var(--text); }
.nav__phone svg { color: var(--accent); width: 14px; height: 14px; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
.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 menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(20px, 4vw, 60px);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav__mobile.open { display: block; }
.nav__mobile-section { margin-bottom: 24px; }
.nav__mobile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.nav__mobile-link {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--text); }
.nav__mobile-cta { margin-top: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
/* Gold primary button — dark text for legibility on gold background */
.btn-primary {
  background: var(--accent);
  color: #111827;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.28);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 169, 106, 0.06);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: transparent;
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--text); background: var(--bg-3); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(36px, 5.5vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2.5vw, 26px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 400;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Section Spacing ---- */
.section { padding: var(--section-pad) 0; }
.section--sm { padding: calc(var(--section-pad) * 0.6) 0; }
.section--lg { padding: calc(var(--section-pad) * 1.4) 0; }
.section--dark { background: var(--bg-2); }
.section--darker { background: var(--bg-3); }
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-header.center { text-align: center; }
.section-header.center .section-header__lead { margin: 0 auto; }
.section-header__lead { max-width: 600px; margin-top: 16px; }

/* ---- Grid Utilities ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ---- Hero — Dark, luxurious, architectural ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.38;
  filter: grayscale(20%) contrast(1.05);
}
/* Multi-layer cinematic overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(17,24,39,0.96) 0%, rgba(17,24,39,0.6) 55%, rgba(17,24,39,0.75) 100%),
    linear-gradient(to top, rgba(17,24,39,0.7) 0%, transparent 50%);
}
/* Subtle gold edge glow — left side */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(200,169,106,0.06) 0%, transparent 55%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
/* Thin gold decorative line above eyebrow */
.hero__content .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__content .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}
.hero__title { margin-bottom: 24px; }
.hero__title .accent { color: var(--accent); }
.hero__subtitle { margin-bottom: 44px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.5;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (smaller) */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(200,169,106,0.06) 0%, transparent 70%);
  z-index: 0;
}
.page-hero__content { position: relative; z-index: 1; max-width: 720px; }
.page-hero__title { margin-bottom: 16px; }
.page-hero__sub { max-width: 560px; }

/* Page hero with real background image */
.page-hero--img {
  background: var(--bg) !important;
  min-height: 380px;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.page-hero--img::before { display: none; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.28;
  filter: grayscale(20%) contrast(1.05);
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(17,24,39,0.65) 60%, rgba(17,24,39,0.85) 100%);
}
.page-hero--img .container { position: relative; z-index: 1; }
.page-hero--img .breadcrumb a { color: rgba(200,169,106,0.75); }
.page-hero--img .breadcrumb a:hover { color: var(--accent); }
.page-hero--img .breadcrumb span { color: var(--text-3); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text-2); }
.breadcrumb__sep { color: var(--border-light); }

/* ---- Cards ---- */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__image img { transform: scale(1.04); }
.card__body { padding: 24px; }
.card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.card__title { font-size: 20px; margin-bottom: 10px; }
.card__text { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card:hover .card__link { gap: 10px; }
.card__link svg { width: 14px; height: 14px; }

/* Feature card */
.feature-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}
.feature-card:hover { border-color: var(--accent); background: var(--bg-3); }
.feature-card__icon {
  width: 48px; height: 48px;
  background: rgba(200, 169, 106, 0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-card__title { font-size: 18px; margin-bottom: 10px; }
.feature-card__text { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ---- Services Grid (homepage) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-item {
  background: var(--bg-2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-item:hover { background: var(--bg-3); }
.service-item__icon {
  width: 40px; height: 40px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.service-item__icon svg { width: 100%; height: 100%; }
.service-item__name { font-size: 15px; font-weight: 600; line-height: 1.3; }
.service-item__desc { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* ---- Divider ---- */
.divider { width: 100%; height: 1px; background: var(--border); margin: 0; }
.divider--accent { background: var(--accent); width: 48px; height: 2px; margin: 20px 0; }

/* ---- Stats / Numbers ---- */
.stat-item { text-align: center; padding: 32px 24px; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-2); font-weight: 500; }

/* ---- Partners/Logos strip ---- */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 40px 0;
}
.partner-logo {
  height: 42px;
  opacity: 0.6;
  filter: grayscale(100%) brightness(2.4);
  transition: opacity var(--transition), filter var(--transition);
  object-fit: contain;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0%) brightness(1); }

/* ---- Price Section ---- */
.price-section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
}
.price-factors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.price-factor {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.price-factor::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: -1px; border-radius: 0; }
.faq-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-3); }
.faq-question svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__title { margin-bottom: 16px; }
.cta-banner__sub { margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Gallery ---- */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-2);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--text-2); color: var(--text); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111827;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-3);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption { font-size: 13px; color: var(--white); font-weight: 500; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover { background: var(--accent); color: #111827; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background var(--transition);
}
.lightbox__nav:hover { background: var(--accent); color: #111827; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 32px); }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(200, 169, 106, 0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.contact-info__value { font-size: 15px; font-weight: 500; color: var(--text); }
.contact-info__value a { transition: color var(--transition); }
.contact-info__value a:hover { color: var(--accent); }

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-label span { color: var(--accent); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: var(--bg-2);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-select option { background: var(--bg-2); color: var(--text); }
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-honeypot { display: none !important; }
.form-error { font-size: 12px; color: #e74c3c; margin-top: 4px; display: none; }
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea { border-color: #e74c3c; }
.form-group.error .form-error { display: block; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}
.form-msg.success { background: rgba(39, 174, 96, 0.12); border: 1px solid rgba(39,174,96,0.3); color: #27ae60; }
.form-msg.error { background: rgba(231, 76, 60, 0.12); border: 1px solid rgba(231,76,60,0.3); color: #e74c3c; }
.form-msg.visible { display: block; }

/* ---- Map ---- */
.map-section { position: relative; }
.map-embed {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(80%) invert(95%) contrast(90%); }
.map-actions { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Footer ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand-logo { height: 36px; width: auto; margin-bottom: 20px; }
.footer__brand-desc { font-size: 14px; color: var(--text-3); line-height: 1.7; max-width: 280px; }
.footer__brand-social { margin-top: 20px; display: flex; gap: 12px; }
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 16px;
  transition: all var(--transition);
}
.footer__social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.footer__bottom a:hover { color: var(--text-2); }
.footer__credit { font-size: 11px; color: var(--text-3); letter-spacing: 0.02em; }
.footer__credit-link { color: #C8A96A; text-decoration: none; transition: opacity 0.2s ease; }
.footer__credit-link:hover { opacity: 0.75; }

/* ---- Inline feature list ---- */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8.5l3.5 3.5 7-7' stroke='%23C8A96A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Highlight box ---- */
.highlight-box {
  background: rgba(200, 169, 106, 0.06);
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

/* ---- Table ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 2px solid var(--border);
}
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-3); }

/* ---- About page ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-split__image::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-item {
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.value-item__title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.value-item__text { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* ---- Sticky phone bar (mobile) ---- */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 12px clamp(20px, 4vw, 60px);
  gap: 12px;
}
.sticky-phone a { flex: 1; }

/* ---- Utility ---- */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-3); }
.text-secondary { color: var(--text-2); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-24 { gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split__image { max-height: 400px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .partners-strip { gap: 28px; }
  .partner-logo { height: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .sticky-phone { display: flex; }
  body { padding-bottom: 72px; }
  .hero { min-height: calc(100svh - 64px); }
  .nav__dropdown { display: none !important; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-filters { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }
  h1 { font-size: clamp(30px, 8vw, 48px); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
