/* ============================================================
   WOOD FLOORING & MORE LLC — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-darkest: #0a0a0a;
  --bg-dark: #111111;
  --bg-section: #161616;
  --bg-card: #1c1c1c;
  --bg-card-hover: #222222;
  --white: #ffffff;
  --white-87: rgba(255, 255, 255, 0.87);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-06: rgba(255, 255, 255, 0.06);
  --accent: #C9A84C;
  --accent-dark: #a8862d;
  --accent-light: #e8c876;
  --accent-glow: rgba(201, 168, 76, 0.25);
  --accent-border: rgba(201, 168, 76, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 8px 32px rgba(201, 168, 76, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 108px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--white-87);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.accent { color: var(--accent); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--accent-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; padding: 18px; font-size: 1rem; }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-icon { display: flex; align-items: center; }
.logo-text em { color: var(--accent); font-style: normal; }

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
  transition: transform var(--transition), filter var(--transition);
  flex-shrink: 0;
}

.logo-img--footer {
  height: 120px;
  mix-blend-mode: lighten;
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo-name em {
  color: var(--accent);
  font-style: normal;
}

.logo-llc {
  display: inline;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-60);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  padding: 9px 18px;
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  transition: var(--transition);
  background: rgba(201, 168, 76, 0.06);
}

.header-phone:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, #1a1200 0%, #0a0a0a 55%, #000000 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  padding-bottom: 80px;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-logo {
  margin-bottom: 12px;
}

.hero-logo-img {
  width: min(380px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.35));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 50px rgba(201, 168, 76, 0.3)); }
  50%       { filter: drop-shadow(0 0 80px rgba(201, 168, 76, 0.55)); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  background: rgba(201, 168, 76, 0.08);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--white-60);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--white-30);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-60);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
  transition: color var(--transition);
}

.hero-scroll-cue:hover { color: var(--accent); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
.fade-up:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-section); }

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-border), var(--shadow-accent);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: linear-gradient(145deg, #1e1a10, var(--bg-card));
  border-color: var(--accent-border);
}

.service-card--featured::before { opacity: 0.5; }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon-wrap {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.service-icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.service-featured-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.65;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover { gap: 9px; color: var(--accent-light); }


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  position: relative;
  overflow: hidden;
  background: var(--bg-darkest);
  padding: 100px 0;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(60%);
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, rgba(10,10,10,0.6) 50%, var(--bg-darkest) 100%);
}

.why-us .container { position: relative; z-index: 1; }

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

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.why-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.65;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-dark); overflow: hidden; }
.gallery .container { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 10px;
  padding: 0 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Asymmetric grid spans */
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }
.gallery-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 3; grid-row: 2; }

/* Extra row for items 7-8 */
.gallery-item:nth-child(7) { grid-column: 1 / 3; grid-row: 3; }
.gallery-item:nth-child(8) { grid-column: 3 / 5; grid-row: 3; }

.gallery-grid {
  grid-template-rows: 240px 240px 240px;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-section); }

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 24px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--accent-border);
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-87);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--white-60);
  margin-top: 2px;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-dark); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 20px; }

.contact-desc {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: color var(--transition);
}

a.contact-detail-value:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-60);
}

.required { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }

.form-group .select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.select-wrap select option {
  background: #1c1c1c;
  color: var(--white);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--white-60);
  pointer-events: none;
}

.form-note {
  font-size: 0.78rem;
  color: var(--white-30);
  text-align: center;
  margin-top: -4px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
}

.form-success.visible { display: flex; }
.contact-form.hidden { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke-width: 2.5;
}

.form-success h3 { font-size: 1.5rem; color: var(--white); }

.form-success p {
  color: var(--white-60);
  font-size: 0.95rem;
  max-width: 320px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--white-06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: var(--white-60);
  transition: color var(--transition);
}

.social-link:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--accent-border);
}

.social-link:hover svg { color: var(--accent); }

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--white-60);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--white-60);
}

.footer-contact a {
  color: var(--white-60);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--accent); }
.footer-area { color: var(--white-30) !important; font-size: 0.82rem !important; }
.footer-cta { margin-top: 12px; align-self: flex-start; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: var(--white-30); }

.footer-legal a {
  color: var(--white-30);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white-60); }


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.33s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.why-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.why-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.26s; }

.gallery-grid .reveal:nth-child(1) { transition-delay: 0.04s; }
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.19s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.29s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.34s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.39s; }

.testimonials-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.25s; }


/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 3; }
  .gallery-item:nth-child(7) { grid-column: 3; grid-row: 3; }
  .gallery-item:nth-child(8) { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .section { padding: 72px 0; }

  /* Mobile nav drawer */
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-87);
    border-bottom: 1px solid var(--border);
  }

  .nav-link::after { display: none; }

  .header-phone {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }

  .hamburger { display: flex; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.visible { opacity: 1; pointer-events: all; }

  /* Hero */
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* Gallery mobile — simple 2-col */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-rows: 160px;
  }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3 !important; }
  .gallery-item:nth-child(8) { display: block; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding-bottom: 60px; }
  .hero-stat-divider { display: none; }
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.gallery-item { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.lb-active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(88vw, 1100px);
  max-height: 84vh;
}

.lightbox-img {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.85);
  display: block;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.lightbox-img.lb-fade {
  opacity: 0;
  transform: scale(0.95);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  z-index: 9002;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  z-index: 9002;
}

.lightbox-arrow:hover {
  background: rgba(201, 168, 76, 0.28);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
}

.lightbox-arrow--prev {
  left: 16px;
  transform: translateY(-50%);
}

.lightbox-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }

.lightbox-arrow--next {
  right: 16px;
  transform: translateY(-50%);
}

.lightbox-arrow--next:hover { transform: translateY(-50%) translateX(2px); }

.lightbox-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white-60);
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9002;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-arrow--prev { left: 8px; }
  .lightbox-arrow--next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}
