/* ============================================================
   HIVE RENOVATIONS WHISTLER — GLOBAL STYLESHEET
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary:        #3d5f72;
  --primary-dark:   #2d4a5a;
  --primary-light:  #4e7389;
  --accent:         #c4955a;
  --accent-dark:    #a87d45;
  --accent-light:   #d4a96e;
  --dark:           #1a2b33;
  --text:           #2c3e50;
  --text-light:     #6e8090;
  --bg-light:       #f7f5f1;
  --white:          #ffffff;
  --border:         #e1e8ed;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.875rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white p { color: var(--white); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.section-title { font-family: var(--font-heading); margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}
.text-center .section-subtitle { margin: 0 auto; }

.divider {
  width: 52px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 18px 0 32px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,149,90,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 11px 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}
.notice-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: var(--transition);
}

.nav.has-notice { top: 38px; }

.nav.scrolled {
  background: rgba(26,43,51,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1875rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .word1 { font-size: 1.0625rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 800; }
.nav-logo .word2 { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; color: rgba(255,255,255,0.65); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  margin-left: 10px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(196,149,90,0.45);
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 12px 0 20px;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.nav-mobile-menu.open { display: flex; animation: slideDown 0.28s ease forwards; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: var(--accent-light); background: rgba(255,255,255,0.04); }
.nav-mobile-cta {
  margin: 12px 24px 0;
  background: var(--accent);
  color: white !important;
  text-align: center;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}
.nav-mobile-cta:hover { background: var(--accent-dark) !important; color: white !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  max-height: 920px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,43,51,0.88) 0%,
    rgba(61,95,114,0.62) 55%,
    rgba(26,43,51,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 28px 0 8%;
  animation: heroFadeIn 1s ease 0.15s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: heroBounce 2.5s ease infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}
@keyframes heroBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 88px;
  background: var(--dark);
  overflow: hidden;
  margin-top: 70px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  opacity: 0.85;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .section-label { color: var(--accent-light); }
.page-hero .section-label::before { background: var(--accent-light); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.125rem; max-width: 600px; }

/* ===== FEATURES STRIP ===== */
.features-strip { background: var(--bg-light); }

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

.feature-card {
  padding: 56px 40px 52px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}
.feature-card:last-child { border-right: none; }
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { background: var(--white); box-shadow: var(--shadow-md); }

.feature-img-wrap { overflow: hidden; border-radius: var(--radius-md); margin-bottom: 28px; }
.feature-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.feature-card:hover .feature-img { transform: scale(1.04); }

.feature-card h3 { font-size: 1.3125rem; margin-bottom: 12px; line-height: 1.3; }
.feature-card p  { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 20px; }

.feature-link {
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.feature-link:hover { gap: 11px; color: var(--accent-dark); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-img-wrap { overflow: hidden; }
.service-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img { transform: scale(1.06); }
.service-body { padding: 28px 30px 32px; }
.service-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.service-body h3 { font-size: 1.3125rem; margin-bottom: 12px; }
.service-body p  { font-size: 0.9375rem; line-height: 1.78; margin-bottom: 22px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 5px 13px;
  background: rgba(61,95,114,0.07);
  color: var(--primary);
  border-radius: 100px;
  border: 1px solid rgba(61,95,114,0.14);
  letter-spacing: 0.05em;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,90,0.1), transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.why-image { position: relative; }
.why-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.why-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.why-badge .lbl {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 6px;
  line-height: 1.3;
}

.why-content h2 { color: var(--white); margin-bottom: 24px; }
.why-content > p { color: rgba(255,255,255,0.6); margin-bottom: 40px; font-size: 1.0625rem; line-height: 1.8; }

.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(196,149,90,0.12);
  border: 1px solid rgba(196,149,90,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-item h4 { color: var(--white); font-size: 1.0625rem; margin-bottom: 6px; }
.why-item p  { color: rgba(255,255,255,0.5); font-size: 0.9375rem; line-height: 1.65; }

/* ===== STATS BAR ===== */
.stats-section { background: var(--primary); padding: 68px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent-light); }
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: 0.9375rem; color: var(--dark); margin-bottom: 2px; }
.author-title { font-size: 0.8125rem; color: var(--text-light); }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
  margin-top: 56px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,43,51,0.72), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 1rem; }

/* ===== PROCESS SECTION ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--bg-light);
  box-shadow: 0 0 0 2px var(--primary);
  transition: var(--transition);
}
.process-step:hover .process-num { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.process-step h4 { font-size: 1.0625rem; margin-bottom: 10px; }
.process-step p  { font-size: 0.875rem; line-height: 1.72; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); margin-bottom: 20px; position: relative; }
.cta-section > .container > p { color: rgba(255,255,255,0.68); font-size: 1.125rem; max-width: 540px; margin: 0 auto 40px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

.cta-contact-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  flex-wrap: wrap;
  position: relative;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
}
.cta-contact-item svg { color: var(--accent); flex-shrink: 0; }
.cta-contact-item a { color: rgba(255,255,255,0.65); }
.cta-contact-item a:hover { color: var(--accent-light); }

/* ===== SHOWROOM BANNER ===== */
.showroom-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 52px 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.showroom-banner h3 { color: var(--white); font-size: 1.625rem; margin-bottom: 10px; }
.showroom-banner p  { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 480px; }

/* ===== SHOWROOM PAGE ===== */
.showroom-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.showroom-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.showroom-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.showroom-icon {
  width: 72px; height: 72px;
  background: rgba(61,95,114,0.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--primary);
  transition: var(--transition);
}
.showroom-feature:hover .showroom-icon { background: var(--primary); color: var(--white); }
.showroom-feature h3 { font-size: 1.25rem; margin-bottom: 12px; }
.showroom-feature p  { font-size: 0.9375rem; line-height: 1.75; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.how-step {
  padding: 32px 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.how-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.how-step:hover::after { transform: scaleX(1); }
.how-step:hover { box-shadow: var(--shadow-md); }
.how-num {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 700;
  color: rgba(61,95,114,0.1);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h4 { font-size: 1.0625rem; margin-bottom: 10px; }
.how-step p  { font-size: 0.875rem; line-height: 1.75; }

/* ===== STORE ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.cat-img-wrap { overflow: hidden; }
.cat-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .cat-img { transform: scale(1.07); }
.cat-body { padding: 18px; }
.cat-body h4 { font-size: 1rem; margin-bottom: 4px; }
.cat-body p  { font-size: 0.8125rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.prod-img-wrap { overflow: hidden; position: relative; }
.prod-img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .prod-img { transform: scale(1.06); }
.prod-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: white;
  font-size: 0.6875rem; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
  letter-spacing: 0.05em;
}
.prod-body { padding: 20px 22px 24px; }
.prod-cat {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 7px;
}
.prod-body h3 { font-size: 1.125rem; margin-bottom: 8px; }
.prod-body p  { font-size: 0.875rem; line-height: 1.68; margin-bottom: 16px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-cta {
  font-size: 0.8125rem; font-weight: 700;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.prod-cta:hover { gap: 8px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-xl); }
.about-img-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 210px; height: 210px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-content > p { font-size: 1.0625rem; line-height: 1.82; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-value { display: flex; align-items: flex-start; gap: 12px; }
.about-value-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(196,149,90,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.about-value-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.about-value h5 { font-size: 0.9375rem; font-family: var(--font-body); font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.about-value p  { font-size: 0.875rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info > p { font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(61,95,114,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 5px;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 1rem; color: var(--dark); font-weight: 500;
}
.contact-detail-text a:hover { color: var(--accent); }

.hours-box {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.hours-box h5 {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 16px; font-family: var(--font-body);
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--text-light); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9375rem; margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.03em;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(61,95,114,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a8b5bf; }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer-main { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 14px; }
.footer-brand h3 span { color: var(--accent); }
.footer-brand p {
  font-size: 0.9375rem; line-height: 1.78;
  color: rgba(255,255,255,0.5); max-width: 290px; margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent); border-color: var(--accent);
  color: var(--white); transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 20px; font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  color: rgba(255,255,255,0.52); font-size: 0.9375rem;
  transition: var(--transition);
}
.footer-link:hover { color: var(--accent-light); transform: translateX(4px); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,0.52); font-size: 0.9375rem; line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.52); }
.footer-contact-text a:hover { color: var(--accent-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.875rem; color: rgba(255,255,255,0.32); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { font-size: 0.875rem; color: rgba(255,255,255,0.32); transition: var(--transition); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.65); }

/* ===== PROJECT SHOWCASE REVERSE (our-work) ===== */
/* Reverse column order without the fragile direction:rtl hack */
.project-showcase.reverse .project-img-grid { order: -1; }

/* ===== CONTACT QUICK LINKS (override feature-card in non-strip context) ===== */
.quick-links-grid .feature-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: none;
}
.quick-links-grid .feature-card:last-child { border-right: none; }
@media (max-width: 1024px) {
  .quick-links-grid { grid-template-columns: 1fr !important; }
  .quick-links-grid .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .quick-links-grid .feature-card:last-child { border-bottom: none; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 90ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 180ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 270ms; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 0; }
  .nav-link { padding: 8px 10px; font-size: 0.75rem; }
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { max-width: 560px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .showroom-features { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { max-height: none; min-height: 100svh; margin-top: 70px; padding: 50px 0 80px; }
  .hero-content { margin-left: 0; text-align: center; max-width: 100%; padding: 0 20px; }
  .hero-eyebrow { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .cta-contact-strip { flex-direction: column; align-items: center; gap: 18px; }
  .showroom-banner { padding: 32px 24px; flex-direction: column; text-align: center; }
  .why-badge { bottom: 16px; right: 16px; }
  .showroom-features { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item.tall { grid-row: span 1; }
  .page-hero { padding: 130px 0 60px; }
  .nav-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
