/* ============================================
   Luxorion — Shared Stylesheet
   Palette: Black / White / Grey — Minimal
   ============================================ */

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

/* ── Variables ── */
:root {
  --navy:       #333333;
  --blue:       #333333;
  --light:      #f5f5f5;   /* off-white section backgrounds  */
  --silver:     #888888;   /* muted/secondary text            */
  --white:      #ffffff;   /* primary background — white      */
  --text-dark:  #333333;   /* primary text — charcoal         */
  --text-body:  #666666;   /* body text — mid-gray            */
  --blue-dark:  #1a1a1a;   /* button hover                   */
  --border:     #e0e0e0;   /* borders — light gray            */
  --shadow-sm:  rgba(0, 0, 0, 0.05);
  --shadow-md:  rgba(0, 0, 0, 0.10);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }

p { color: var(--text-body); }


/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}
.btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-1px);
}

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

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


/* ════════════════════════════
   LAYOUT UTILITIES
════════════════════════════ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow,
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 0.9rem;
}

.section-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}


/* ════════════════════════════
   NAVIGATION
════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* Remove the blue span tint on the logo */
.nav-logo span {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  padding: 0.35rem 0;
  margin: 0 1.1rem;
  border-bottom: 1.5px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}


/* ════════════════════════════
   FOOTER
════════════════════════════ */
.site-footer {
  background: #000;
  border-top: none;
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.footer-brand .nav-logo span {
  color: var(--text-dark);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  color: var(--text-body);
}

.footer-col h4 {
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  color: var(--silver);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text-dark);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--text-body);
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--silver);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--silver);
  margin: 0;
}


/* ════════════════════════════
   PROMO ANNOUNCEMENT BAR
════════════════════════════ */
.promo-bar {
  background: #000;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.65rem 0;
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  max-height: 60px;
}

.promo-bar.promo-hide {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.promo-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-dark);
  flex-shrink: 0;
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.promo-msg {
  font-size: 0.84rem;
  color: var(--text-body);
  text-align: center;
  transition: opacity 0.4s ease;
}

.promo-msg strong {
  color: var(--text-dark);
}

.promo-msg a {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.35rem;
  white-space: nowrap;
}

.promo-msg a:hover {
  opacity: 0.65;
}

.promo-close {
  position: absolute;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.1rem 0.3rem;
  transition: color var(--transition);
}

.promo-close:hover {
  color: var(--text-dark);
}


/* ════════════════════════════
   STATS STRIP
════════════════════════════ */
.stats-strip {
  background: linear-gradient(to bottom, #000 0%, #000 70%, #ffffff 100%);
  border-top: none;
  border-bottom: none;
  padding: 2.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.35rem;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
}


/* ════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════ */

/* Fade up (default) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from right */
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hero entrance — CSS animation on page load (no scroll needed) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anim-1 { animation: fadeUp 0.65s ease 0.1s both; }
.hero-anim-2 { animation: fadeUp 0.65s ease 0.3s both; }
.hero-anim-3 { animation: fadeUp 0.65s ease 0.5s both; }
.hero-anim-4 { animation: fadeUp 0.65s ease 0.65s both; }


/* ════════════════════════════
   HOME — HERO
════════════════════════════ */
.hero {
  background: #000000;
  border-bottom: none;
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#moleculeCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.18em;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero .btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}
.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-outline:hover {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ════════════════════════════
   HOME — HIGHLIGHTS
════════════════════════════ */
.highlights-section {
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  border-color: #aaaaaa;
  box-shadow: 0 4px 16px var(--shadow-sm);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.highlight-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.highlight-card p {
  font-size: 0.92rem;
  line-height: 1.75;
}


/* ════════════════════════════
   HOME — TESTIMONIALS
════════════════════════════ */
.testimonials-section {
  background: #000;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: #aaaaaa;
}

.stars {
  color: var(--text-dark);
  font-size: 0.8rem;
  display: flex;
  gap: 0.2rem;
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--silver);
}


/* ════════════════════════════
   HOME — CTA BANNER
════════════════════════════ */
.cta-banner {
  background: #000;
  border-top: none;
  border-bottom: none;
  padding: 5.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.cta-banner .btn-primary:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}


/* ════════════════════════════
   PAGE BANNER (inner pages)
════════════════════════════ */
.page-banner {
  background: linear-gradient(to bottom, #000 0%, #0a0a0a 60%, #f0f0f0 90%, #fff 100%);
  border-bottom: none;
  padding: 4.5rem 0;
  text-align: center;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255,255,255,0.9);
}

.breadcrumb i {
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
}


/* ════════════════════════════
   ABOUT PAGE
════════════════════════════ */
.about-story {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(100%);
}

.about-text .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

/* Why Choose Us */
.why-us {
  background: #000;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.why-card:hover {
  border-color: #aaaaaa;
}

.why-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dark);
  font-size: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Team section */
.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.team-card:hover {
  border-color: #aaaaaa;
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%);
}

.team-card-body {
  padding: 1.5rem;
}

.team-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card p {
  font-size: 0.87rem;
  line-height: 1.65;
}


/* ════════════════════════════
   SERVICES PAGE
════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: #aaaaaa;
  box-shadow: 0 4px 16px var(--shadow-sm);
}

.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.service-card .service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
}

.service-card .service-link:hover {
  gap: 0.6rem;
  text-decoration-color: var(--text-dark);
}

.services-cta {
  background: #000;
  padding: 5.5rem 0;
  text-align: center;
}

.services-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.services-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2rem;
}


/* ════════════════════════════
   GALLERY PAGE
════════════════════════════ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}

.gallery-item:hover {
  border-color: #aaaaaa;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
  filter: grayscale(60%);
  transform: scale(1.02);
}

.gallery-caption {
  padding: 1rem 1.1rem;
}

.gallery-caption h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.gallery-caption p {
  font-size: 0.78rem;
  color: var(--silver);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-img {
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  filter: grayscale(100%);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.lightbox-close:hover {
  color: var(--white);
}


/* ════════════════════════════
   CONTACT PAGE
════════════════════════════ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-form-wrap h3 {
  margin-bottom: 0.4rem;
}

.contact-form-wrap > p {
  font-size: 0.93rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--text-dark);
}

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

.form-feedback {
  display: none;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Contact info sidebar */
.contact-info-wrap h3 {
  margin-bottom: 0.4rem;
}

.contact-info-wrap > p {
  font-size: 0.93rem;
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.contact-info-item h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  color: var(--silver);
  font-weight: 600;
}

.contact-info-item p {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Map */
.map-section {
  background: var(--light);
  padding: 4rem 0;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(100%);
}


/* ════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════ */
@media (max-width: 992px) {
  .highlights-grid,
  .testimonials-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image img {
    height: 320px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1.5rem;
    margin: 0;
    border-bottom: none;
    border-left: 2px solid transparent;
    color: var(--text-body);
  }

  .nav-links a.active,
  .nav-links a:hover {
    border-bottom-color: transparent;
    border-left-color: var(--text-dark);
    color: var(--text-dark);
  }

  .nav-toggle {
    display: block;
  }

  .section {
    padding: 3.5rem 0;
  }

  .highlights-grid,
  .testimonials-grid,
  .services-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner,
  .services-cta {
    padding: 3.5rem 0;
  }

  .page-banner {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .hero-actions .btn {
    min-width: 180px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .promo-msg {
    font-size: 0.78rem;
  }
  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
}


/* ════════════════════════════
   DARK-THEME OVERRIDES
   Colours for elements on black / near-black backgrounds
════════════════════════════ */

/* ── Nav (dark) ── */
.site-header .nav-logo        { color: #fff; }
.site-header .nav-logo span   { color: #fff; }
.site-header .nav-toggle      { color: rgba(255,255,255,0.75); }
.nav-links a                  { color: rgba(255,255,255,0.5); }
.nav-links a:hover,
.nav-links a.active           { color: #fff; border-bottom-color: rgba(255,255,255,0.8); }

/* ── Promo bar text ── */
.promo-pulse                  { background: rgba(255,255,255,0.75); }
.promo-msg                    { color: rgba(255,255,255,0.65); }
.promo-msg strong             { color: #fff; }
.promo-msg a                  { color: #fff; text-decoration-color: rgba(255,255,255,0.3); }
.promo-close                  { color: rgba(255,255,255,0.3); }
.promo-close:hover            { color: #fff; }

/* ── Stats strip (dark → white gradient; numbers white) ── */
.stats-strip .stat-number     { color: #fff; }
.stats-strip .stat-suffix     { color: #fff; }
.stats-strip .stat-item p     { color: rgba(255,255,255,0.45); }

/* ── Testimonials section ── */
.testimonials-section .section-header h2     { color: #fff; }
.testimonials-section .section-header p      { color: rgba(255,255,255,0.65); }
.testimonials-section .section-header .eyebrow { color: rgba(255,255,255,0.38); }
.testimonials-section .testimonial-card      { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.testimonials-section .testimonial-card:hover { border-color: rgba(255,255,255,0.22); }
.testimonials-section .testimonial-card p    { color: rgba(255,255,255,0.7); }
.testimonials-section .testimonial-author strong { color: #fff; }
.testimonials-section .testimonial-author span   { color: rgba(255,255,255,0.42); }
.testimonials-section .stars                 { color: rgba(255,255,255,0.85); opacity: 1; }

/* ── Why Us section ── */
.why-us .section-header h2     { color: #fff; }
.why-us .section-header p      { color: rgba(255,255,255,0.65); }
.why-us .section-header .eyebrow { color: rgba(255,255,255,0.38); }
.why-us .why-card              { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.why-us .why-card:hover        { border-color: rgba(255,255,255,0.24); box-shadow: none; }
.why-us .why-card h3           { color: #fff; }
.why-us .why-card p            { color: rgba(255,255,255,0.65); }
.why-us .why-icon              { color: rgba(255,255,255,0.72); }

/* ── Services CTA ── */
.services-cta .btn-primary      { background: #fff; color: #000; border-color: #fff; }
.services-cta .btn-primary:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); }

/* ── Footer ── */
.site-footer .nav-logo          { color: #fff; }
.site-footer .nav-logo span     { color: #fff; }
.site-footer .footer-brand p    { color: rgba(255,255,255,0.48); }
.site-footer .footer-col h4     { color: rgba(255,255,255,0.38); }
.site-footer .footer-col ul li a { color: rgba(255,255,255,0.48); }
.site-footer .footer-col ul li a:hover { color: #fff; }
.site-footer .footer-contact-item { color: rgba(255,255,255,0.48); }
.site-footer .footer-contact-item i { color: rgba(255,255,255,0.3); }
.site-footer .footer-bottom     { border-top-color: rgba(255,255,255,0.08); }
.site-footer .footer-bottom p   { color: rgba(255,255,255,0.28); }

/* ── Mobile nav dropdown (dark) ── */
@media (max-width: 768px) {
  .nav-links {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links a {
    color: rgba(255,255,255,0.55);
    border-left: 2px solid transparent;
  }
  .nav-links a.active,
  .nav-links a:hover {
    color: #fff;
    border-left-color: #fff;
    border-bottom-color: transparent;
  }
}


/* ════════════════════════════
   SECTION-DARK UTILITY
   Apply to any section that needs a full-black background with white content
════════════════════════════ */
.section-dark                           { background: #000; }
.section-dark h2, .section-dark h3      { color: #fff; }
.section-dark p                         { color: rgba(255,255,255,0.65); }
.section-dark .eyebrow                  { color: rgba(255,255,255,0.38); }
.section-dark .section-header p         { color: rgba(255,255,255,0.65); }
.section-dark .service-card             { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section-dark .service-card:hover       { border-color: rgba(255,255,255,0.26); box-shadow: 0 4px 20px rgba(255,255,255,0.03); }
.section-dark .service-icon             { color: rgba(255,255,255,0.72); }
.section-dark .service-link             { color: rgba(255,255,255,0.82); text-decoration-color: rgba(255,255,255,0.18); }
.section-dark .service-link:hover       { text-decoration-color: rgba(255,255,255,0.7); }
.section-dark .highlight-card          { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.section-dark .highlight-card:hover    { border-color: rgba(255,255,255,0.26); }
.section-dark .highlight-icon          { color: rgba(255,255,255,0.72); }


/* ════════════════════════════
   PER-PAGE GRADIENT DIRECTIONS
   Each inner page gets a unique gradient angle on its banner
════════════════════════════ */
body.page-about   .page-banner { background: linear-gradient(135deg, #000 0%, #0d0d0d 55%, #f0f0f0 88%, #fff 100%); }
body.page-services .page-banner { background: linear-gradient(to right, #000 0%, #0d0d0d 55%, #f0f0f0 88%, #fff 100%); }
body.page-gallery  .page-banner { background: linear-gradient(to left,  #000 0%, #0d0d0d 55%, #f0f0f0 88%, #fff 100%); }
body.page-contact  .page-banner { background: linear-gradient(225deg,   #000 0%, #0d0d0d 55%, #f0f0f0 88%, #fff 100%); }


/* ════════════════════════════
   HOME — ABOUT SPLIT SECTION
   Left half (image): black  |  Right half (text): off-white
════════════════════════════ */
.section-home-about {
  padding: 4rem 0;
  background: linear-gradient(to right, #000 0%, #111 42%, #f5f5f5 56%, #f5f5f5 100%);
}
@media (max-width: 992px) {
  .section-home-about {
    background: linear-gradient(to bottom, #111 0%, #f5f5f5 50%);
  }
}


/* ════════════════════════════
   GALLERY PAGE — subtle diagonal tint
════════════════════════════ */
body.page-gallery .gallery-section {
  background: linear-gradient(135deg, #f4f4f4 0%, #fff 45%, #f4f4f4 100%);
}


/* ════════════════════════════
   CONTACT PAGE — dark map section
════════════════════════════ */
body.page-contact .map-section {
  background: #000;
}
body.page-contact .map-section .section-header h2  { color: #fff; }
body.page-contact .map-section .section-header p   { color: rgba(255,255,255,0.65); }
body.page-contact .map-section .eyebrow            { color: rgba(255,255,255,0.38); }
body.page-contact .map-wrapper                     { border-color: rgba(255,255,255,0.1); }
