@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   SUMMIT LIGHTING NC — MAIN STYLESHEET
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-primary:    #ffffff;
  --bg-secondary:  #f0f5fb;
  --bg-card:       #ffffff;
  --bg-card-hover: #edf3ff;

  /* Blue — primary accent (buttons, links, interactive) */
  --gold:          #1a4a8c;
  --gold-light:    #2e6ae6;
  --gold-dark:     #0f2d68;
  --gold-gradient: linear-gradient(135deg, #1a4a8c 0%, #2e6ae6 100%);
  --gold-bg:       rgba(37, 99, 235, 0.07);
  --gold-border:   rgba(37, 99, 235, 0.20);

  /* Yellow — hint/highlight accent (underlines, stats, emphasis) */
  --yellow:        #d4a843;
  --yellow-light:  #f0c85a;
  --yellow-gradient: linear-gradient(135deg, #d4a843 0%, #f0c85a 100%);
  --yellow-bg:     rgba(212,168,67,0.10);
  --yellow-border: rgba(212,168,67,0.30);

  /* Dark navy — for footer, dark sections, page heroes */
  --navy:          #0f2645;

  /* Text */
  --text-primary:  #0f1923;
  --text-secondary:#374151;
  --text-muted:    #6b7280;
  --border:        #dde4ee;

  --nav-h:         90px;
  --pad-section:   90px;
  --max-w:         1200px;
  --radius:        4px;
  --radius-lg:     8px;
  --ease:          all 0.3s ease;
  --shadow:        0 8px 40px rgba(15,36,68,0.10);
  --shadow-gold:   0 4px 24px rgba(37,99,235,0.18);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-secondary); margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }

.gold-text  { color: var(--yellow); }
.lead       { font-size: 1.15rem; line-height: 1.8; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37,99,235,0.35);
}
.btn-outline {
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: #444; }

/* ── Site Header / Nav ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 20px rgba(15,36,68,0.08);
}
/* Homepage — transparent until scrolled so hero video shows through */
.hero-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-header:not(.scrolled) .nav-menu > li > a { color: rgba(255,255,255,0.88); }
.hero-header:not(.scrolled) .nav-menu > li > a:hover,
.hero-header:not(.scrolled) .nav-menu > li > a.active { color: #ffffff; }
.hero-header:not(.scrolled) .nav-phone { color: #ffffff; border-color: rgba(255,255,255,0.6); }
.hero-header:not(.scrolled) .nav-phone:hover { background: var(--yellow); border-color: var(--yellow); color: #ffffff; }
.hero-header:not(.scrolled) .nav-toggle span { background: #ffffff; }
.hero-header:not(.scrolled) .logo-text { color: #ffffff; }
.hero-header:not(.scrolled) .logo-accent { color: var(--yellow-light); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.logo-accent {
  color: var(--yellow);
}
.site-logo { margin-left: 16px; gap: 12px; }
.site-logo:hover .logo-img { opacity: 0.82; }
.footer-brand .logo-img { height: 48px; }
.footer-brand .site-logo { margin-left: 0; }
.footer-brand .logo-text { color: #ffffff; }
.footer-brand .logo-accent { color: var(--yellow-light); }

/* Desktop nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: var(--ease);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7em;
  opacity: 0.6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: var(--ease);
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: var(--gold-bg);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  border: 2px solid var(--yellow);
  border-radius: 50px;
  padding: 7px 18px;
  transition: var(--ease);
  white-space: nowrap;
}
.nav-phone::before {
  content: '📞 ';
  font-size: 0.78rem;
}
.nav-phone:hover {
  background: var(--yellow);
  color: #ffffff;
  border-color: var(--yellow);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--ease);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  background: linear-gradient(180deg, var(--navy) 0%, #1a4a8c 100%);
}
.hero::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%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Video background */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 60, 0.48);
  z-index: 1;
}
.hero::before { z-index: 2; }

/* Inner page hero (shorter) */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 24px 100px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a8c 60%, #0f2d68 100%);
  text-align: center;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow-gradient);
}
.page-hero h1 { color: #ffffff; margin-bottom: 16px; font-size: clamp(1.9rem, 4.5vw, 3rem); }
.page-hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.48); }
.page-hero .breadcrumb a:hover { color: var(--yellow); }

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: var(--pad-section) 0;
}
.section--alt { background: var(--bg-secondary); }
.section--dark { background: var(--navy); }
.section--dark .section-title { color: #ffffff; }
.section--dark .section-desc { color: rgba(255,255,255,0.68); }
.section--dark .section-label { color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-title {
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 72px; height: 3px;
  background: var(--yellow-gradient);
  border-radius: 2px;
}
.section-header--center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 0;
}
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── Service Cards Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,36,68,0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow-gradient);
  opacity: 1;
  transition: var(--ease);
  z-index: 3;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; background: linear-gradient(90deg, var(--yellow), var(--gold-light)); }
.service-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card:hover .service-card-media { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 60, 0.64);
  z-index: 1;
  transition: background 0.3s ease;
}
.service-card:hover .service-card-overlay { background: rgba(10, 25, 60, 0.46); }
.service-card-body {
  position: relative;
  z-index: 2;
}
.service-card--photo {
  min-height: 280px;
  border-color: rgba(15,36,68,0.12);
}
.service-card--photo:hover { background: var(--bg-card); border-color: var(--gold-border); }
.service-card.service-card--photo h3 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.service-card.service-card--photo p { color: #ffffff; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(15,36,68,0.08);
}
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link::after { content: '→'; }
.service-card .card-link:hover { gap: 10px; }

/* ── Two-Column Content ──────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }
.content-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.content-visual-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 60%, rgba(37,99,235,0.12) 0%, transparent 60%),
              linear-gradient(135deg, #e8f0fb 0%, #dde8f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-visual-inner span {
  font-size: 4rem;
  opacity: 0.4;
}
.content-text h2 { margin-bottom: 20px; }
.content-text .lead { margin-bottom: 20px; }
.content-text p { font-size: 0.97rem; }

/* ── Photo Stack (staggered 3-image column) ──────────────────── */
.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}
.photo-stack-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(15,36,68,0.18);
  line-height: 0;
  flex: 1;
}
.photo-stack-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-stack-item:hover img { transform: scale(1.04); }
.photo-stack-item:nth-child(1) { margin-right: 36px; }
.photo-stack-item:nth-child(2) { margin-left: 18px; margin-right: 18px; }
.photo-stack-item:nth-child(3) { margin-left: 36px; }

/* ── Neighborhood Pills ───────────────────────────────────────── */
.neighborhood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.neighborhood-pill {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Features / Benefits List ────────────────────────────────── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2px;
}
.feature-item-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.feature-item-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  padding: 48px 0;
}
.stats-strip .stat-label { color: rgba(255,255,255,0.52); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Team ────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
  box-shadow: 0 2px 16px rgba(15,36,68,0.07);
}
.team-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-secondary);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }
.team-info {
  padding: 28px 28px 32px;
}
.team-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.team-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ── Process Steps ───────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(15,36,68,0.06);
  transition: var(--ease);
  border-top: 3px solid var(--yellow);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
  border-top-color: var(--yellow);
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
.process-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 16px;
  transition: var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  transition: var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-bg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a8c 100%);
  border-top: 1px solid var(--yellow-border);
  border-bottom: 1px solid var(--yellow-border);
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 { color: #ffffff; margin-bottom: 12px; }
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phone {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--yellow);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.cta-phone a { color: inherit; }
.cta-phone a:hover { color: var(--yellow-light); }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--ease);
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--gold-border); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.gallery-item:nth-child(6n+1) .gallery-placeholder { background: #dde8f5; }
.gallery-item:nth-child(6n+2) .gallery-placeholder { background: #e4eef8; }
.gallery-item:nth-child(6n+3) .gallery-placeholder { background: #d8e6f2; }
.gallery-item:nth-child(6n+4) .gallery-placeholder { background: #e0ebf6; }
.gallery-item:nth-child(6n+5) .gallery-placeholder { background: #dce9f4; }
.gallery-item:nth-child(6n+6) .gallery-placeholder { background: #e6eef8; }
.gallery-placeholder span { font-size: 2.5rem; opacity: 0.35; }
.gallery-placeholder p { font-size: 0.78rem; color: var(--text-muted); text-align: center; padding: 0 12px; }
.gallery-item:nth-child(1), .gallery-item:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.gallery-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover > img { transform: scale(1.05); }
.content-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 0.97rem; color: var(--text-secondary); margin: 0; }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrapper h3 { margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--gold-bg);
}
.form-group select option { background: #ffffff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 15px; font-size: 0.9rem; }

/* ── Service Areas ───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.area-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--ease);
}
.area-tag:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-bg);
}

/* ── Testimonials ────────────────────────────────────────────── */
/* ── Reviews Slider ─── */
.reviews-slider-outer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.slider-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text-primary);
  font-size: 2rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 2px 8px rgba(15,36,68,0.10);
  padding: 0;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: #ffffff; }
.slider-arrow:disabled { opacity: 0.28; cursor: default; transform: none !important; box-shadow: none; }
.slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: var(--ease); padding: 0;
}
.slider-dot.active { background: var(--yellow); width: 24px; border-radius: 4px; }
.reviews-google-link { text-align: center; margin-top: 36px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 0 2px 12px rgba(15,36,68,0.06);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--yellow-border);
  line-height: 1;
}
.stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong { display: block; color: var(--text-primary); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: none;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .site-logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 300px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--ease);
}
.social-link svg { flex-shrink: 0; }
.social-link:hover {
  color: #ffffff;
  border-color: var(--yellow);
  background: rgba(212,168,67,0.12);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  transition: var(--ease);
}
.footer-nav li a:hover { color: var(--yellow-light); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--yellow); }

/* ── Inline Content Rich Text ────────────────────────────────── */
.rich-content h2, .rich-content h3 { margin: 40px 0 16px; }
.rich-content h2:first-child, .rich-content h3:first-child { margin-top: 0; }
.rich-content h3 {
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
  color: var(--text-primary);
}
.rich-content p { margin-bottom: 18px; font-size: 0.98rem; color: var(--text-secondary); line-height: 1.85; }
.rich-content ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
.rich-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.rich-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.55rem;
  top: 12px;
}

/* ── Notice / Info Boxes ─────────────────────────────────────── */
.info-box {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}
.info-box p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.info-box strong { color: var(--gold); }

/* ── Location page specifics ─────────────────────────────────── */
.location-map-placeholder {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--yellow); }
.mt-0 { margin-top: 0; }
.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-0 { margin-bottom: 0; }
.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; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Feature Cards Grid (bistro / service details) ───────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--ease);
  box-shadow: 0 2px 12px rgba(15,36,68,0.06);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.feature-card--photo {
  min-height: 260px;
  padding: 0;
  border-color: rgba(15,36,68,0.12);
}
.feature-card--photo .feature-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.feature-card--photo:hover .feature-card-media { transform: scale(1.06); }
.feature-card--photo .feature-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 60, 0.60);
  z-index: 1;
  transition: background 0.3s ease;
}
.feature-card--photo:hover .feature-card-overlay { background: rgba(10, 25, 60, 0.44); }
.feature-card--photo .feature-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.feature-card--photo h3 { color: var(--yellow-light); text-shadow: 0 2px 8px rgba(0,0,0,0.35); margin-bottom: 8px; }
.feature-card--photo p { color: rgba(255,255,255,0.88); font-size: 0.88rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-section: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .logo-img { height: 38px; }
  .logo-text { font-size: 1rem; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  /* Mobile nav menu */
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 24px;
    gap: 0;
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu > li > a {
    padding: 13px 24px;
    font-size: 0.92rem;
    color: var(--text-primary);
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #f8f9fa;
    border: none;
    border-top: 1px solid var(--border);
    padding: 4px 0;
    box-shadow: none;
    transition: none !important;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a {
    padding: 11px 24px 11px 40px;
    font-size: 0.85rem;
    color: var(--text-secondary) !important;
  }
}
@media (max-width: 640px) {
  :root { --pad-section: 56px; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
