/* ============================================================
   SAVOIR FAIRE CUSTOM CATERING — STYLESHEET
   Dark luxury theme: navy/charcoal + purple + mauve + gold
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --purple: #4A0E4E;
  --purple-light: #6B1A70;
  --mauve: #C48CB0;
  --mauve-light: #D4A5C4;
  --dark: #1A1A2E;
  --dark-lighter: #222240;
  --dark-card: #252545;
  --dark-deep: #12121F;
  --cream: #F5F0EB;
  --cream-dim: #D5D0CB;
  --gold: #C9A96E;
  --gold-light: #DFC08A;
  --gold-dark: #A8893E;
  --white: #FFFFFF;
  --text: #C8C4BE;
  --text-light: #9B978F;

  --font-display: 'Great Vibes', cursive;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --nav-height: 80px;
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.2);
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- UTILITIES ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.script-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-lg { padding: 18px 42px; font-size: 0.95rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,46,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  height: var(--nav-height);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(18,18,31,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 500;
}
.nav-phone:hover { color: var(--gold); }
.phone-icon { margin-right: 4px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(18,18,31,0.65);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero-title span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.08em;
  text-transform: none;
  display: block;
  color: var(--cream);
  margin-top: 4px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--mauve-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.hero-desc {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%; z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-deep);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 32px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1.2;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(201,169,110,0.2);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .section-label { margin-bottom: 4px; }
.about-content .section-title { margin-bottom: 12px; }
.about-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--mauve);
  margin-bottom: 24px;
}
.about-content p {
  margin-bottom: 16px;
  color: var(--text);
}
.about-content .btn { margin-top: 12px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--dark-deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.08);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,0.2);
}
.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(18,18,31,0.6));
}
.service-content { padding: 28px; }
.service-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.service-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link span { transition: transform var(--transition); }
.service-link:hover span { transform: translateX(4px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--dark); }
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  color: var(--text-light);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,18,31,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
}
.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-item.hidden {
  display: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--dark-deep);
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74,14,78,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonial-track { position: relative; min-height: 280px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.testimonial-quote { text-align: center; margin-bottom: 32px; }
.quote-icon {
  width: 40px; height: 40px;
  margin: 0 auto 20px;
  display: block;
}
.testimonial-quote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--mauve-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--gold);
}
.author-info { text-align: left; }
.author-info strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--gold);
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.testimonial-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.testimonial-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.testimonial-dots {
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  transition: all var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-section { background: var(--dark); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.08);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,0.15);
}
.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-date {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 3px;
}
.blog-content { padding: 24px; }
.blog-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-link span { transition: transform var(--transition); }
.blog-link:hover span { transform: translateX(4px); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--mauve) 50%, var(--gold) 100%);
  opacity: 0.9;
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-content .cta-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-deep);
  padding-top: 80px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer-logo .logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--cream);
}
.footer-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.footer h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-services a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--gold); }

.footer-contact ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.footer-contact svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact a { color: var(--text-light); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   MOBILE CTA BAR
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark-deep);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 12px 16px;
  gap: 12px;
}
.mobile-cta-btn {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-cta-btn svg { width: 18px; height: 18px; }
.mobile-cta-btn.call {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,169,110,0.3);
}
.mobile-cta-btn.quote {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INTERIOR PAGE STYLES
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,18,31,0.88) 0%, rgba(74,14,78,0.5) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero-content .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-light);
}
.page-hero-content .breadcrumb a { color: var(--gold); }
.page-hero-content .breadcrumb a:hover { text-decoration: underline; }

/* About page */
.about-full { padding: 100px 0; }
.about-story {
  max-width: 800px;
  margin: 0 auto;
}
.about-story h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 24px;
}
.about-story p {
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.8;
}
.about-story .highlight {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--mauve);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,169,110,0.08);
}
.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Services page */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-detail-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.service-detail-content p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}
.service-detail-content ul {
  margin-bottom: 24px;
}
.service-detail-content li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Gallery */
.gallery-section { background: var(--dark-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--dark-lighter);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.92);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 50px; height: 50px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 22px; height: 22px;
  color: var(--gold);
}
.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(201,169,110,0.08);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit { margin-top: 8px; }

/* Blog page */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Map embed placeholder */
.map-embed {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: var(--dark-card);
  border: 1px solid rgba(201,169,110,0.08);
}
.map-embed iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.5) brightness(0.8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid .blog-card:last-child { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links,
  .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0; bottom: 0;
    background: #0a0a14;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 40px 24px;
    gap: 0;
    z-index: 1002;
    animation: menuSlide 0.3s ease;
  }
  .navbar:has(.nav-links.open) {
    background: #0a0a14;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }
  .nav-links.open a {
    font-size: 1.1rem;
  }
  .nav-links.open .nav-mobile-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,169,110,0.1);
  }

  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }

  .hero { min-height: 100svh; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 350px; }
  .about-image-accent { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:last-child { display: block; }

  .testimonial-quote p { font-size: 1.05rem; }

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

  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }

  .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
  .service-detail-image { height: 280px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }

  .page-hero { height: 40vh; min-height: 280px; }
}

@media (max-width: 480px) {
  .trust-items { gap: 20px; }
  .trust-divider { display: none; }
  .trust-items { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
}
