/* ============================================================
   MAYFEL'S EVENT SERVICES — Main Stylesheet
   Colors: Gold #C9A84C | Charcoal #3A3A48 | Cream #FDFBF7
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-dark: #A8883A;
  --charcoal: #3A3A48;
  --charcoal-light: #5A5A6A;
  --cream: #FDFBF7;
  --cream-dark: #F2EDE3;
  --white: #FFFFFF;
  --text: #3A3A48;
  --text-muted: #7A7A8A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --max-width: 1200px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* UTILITIES */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding: var(--section-pad) 0; }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.full-width { width: 100%; justify-content: center; }

/* SCROLL ARROWS */
.scroll-wrap {
  position: relative;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(253,251,247,0.75);
  color: var(--gold-dark);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--transition), background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.scroll-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.scroll-arrow-left { left: -4px; }
.scroll-arrow-right { right: -4px; }
.scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.site-header.scrolled .nav-logo img { filter: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.site-header.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--gold); }
.site-header.scrolled .nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  padding: 0.6rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
}
.site-header.scrolled .nav-links .nav-cta {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #151518;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(21,21,24,0.85) 0%,
      rgba(21,21,24,0.6) 8%,
      rgba(21,21,24,0.25) 14%,
      transparent 20%
    ),
    linear-gradient(
      to right,
      rgba(21,21,24,0.97) 0%,
      rgba(21,21,24,0.95) 22%,
      rgba(21,21,24,0.88) 32%,
      rgba(21,21,24,0.6) 46%,
      rgba(21,21,24,0.2) 58%,
      transparent 72%
    ),
    linear-gradient(
      to top,
      rgba(21,21,24,0.5) 0%,
      transparent 25%
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 9rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
}
.hero-inner {
  display: flex;
  align-items: center;
  min-height: calc(100svh - clamp(7rem, 12vw, 9rem) - 4rem);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  max-width: 28rem;
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-frame-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  opacity: 0.6;
}
.about-frame-corner-tl {
  top: 12px;
  left: 12px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 4px;
}
.about-frame-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 4px;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.about-badge strong { display: block; font-size: 1.5rem; font-family: var(--font-serif); }
.about-badge span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
}
.about-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured::before { background: var(--gold); transform: scaleX(1); }
.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.service-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
}
.services-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--cream); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.why-list li { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-icon {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding: 0.5rem;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  min-width: 2.75rem;
  text-align: center;
  flex-shrink: 0;
}
.why-list h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}
.why-list p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.why-us-image { position: relative; }
.why-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.why-frame-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  opacity: 0.6;
}
.why-frame-corner-tl {
  top: 12px;
  left: 12px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 4px;
}
.why-frame-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 4px;
}
.why-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.why-stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.why-stat-card span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ============================================================
   VIDEOS
   ============================================================ */
.videos { background: var(--white); }
.videos-scroll-container {
  margin-top: 3.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
}
.videos-scroll-container::-webkit-scrollbar { height: 4px; }
.videos-scroll-container::-webkit-scrollbar-track { background: transparent; }
.videos-scroll-container::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 2px; }
.videos-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0.25rem 0.5rem;
}
.videos-cta { text-align: center; margin-top: 3rem; }
.video-card {
  width: 320px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.video-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--charcoal);
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a3a48 0%, #2a2a36 100%);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}
.video-card:hover .video-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-info { padding: 1.25rem 1.5rem; }
.video-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.video-info p { font-size: 0.8rem; color: var(--text-muted); }

/* Video Lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.video-lightbox.active { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--white); }
.lightbox-content {
  width: 100%;
  max-width: 900px;
}
.lightbox-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
}
.lightbox-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); }
.gallery-scroll-container {
  margin-top: 3.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
}
.gallery-scroll-container::-webkit-scrollbar { height: 4px; }
.gallery-scroll-container::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll-container::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 2px; }
.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0.25rem 0.5rem;
}
.gallery-card {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  display: block;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.gallery-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddd4c0 0%, #c8bba8 100%);
}
.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58,58,72,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}
.gallery-info { padding: 1rem 1.25rem 1.25rem; }
.gallery-info h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.gallery-info p { font-size: 0.78rem; color: var(--text-muted); }
.gallery-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--charcoal);
  color: var(--white);
}
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--gold-light); }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.reviews-scroll-container {
  margin-top: 3.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
}
.reviews-scroll-container::-webkit-scrollbar { height: 4px; }
.reviews-scroll-container::-webkit-scrollbar-track { background: transparent; }
.reviews-scroll-container::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 2px; }
.reviews-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0.25rem 0.5rem;
}
.review-card {
  width: 340px;
  height: 283px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.review-card.alt {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}
.review-card:hover { transform: translateY(-4px); }
.review-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
  overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: default;
  color: var(--gold-light);
  transition: var(--transition);
}
.review-avatar.has-image { cursor: pointer; }
.review-avatar.has-image:hover { background: rgba(201,168,76,0.45); }
.review-avatar svg { width: 18px; height: 18px; }
.review-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.review-author span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* Review Image Lightbox */
.review-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.review-lightbox.active { display: flex; }
.review-lightbox-content {
  max-width: 700px;
  max-height: 85vh;
}
.review-lightbox-content img {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.reviews-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-right: 0.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-text .section-title { margin-bottom: 1rem; }
.contact-text > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-details li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-details a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 1rem; }
.contact-socials a {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.contact-socials a:hover { border-color: var(--gold); color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-links h5, .footer-contact h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.6rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-socials a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-bg-img { object-position: 60% center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--white) !important; }
  .nav-links .nav-cta { border-color: var(--gold) !important; color: var(--gold) !important; }

  .hero { min-height: 100svh; }
  .hero-bg-img { object-position: 62% center; }
  .hero-overlay {
    background:
      linear-gradient(
        to right,
        rgba(21,21,24,0.96) 0%,
        rgba(21,21,24,0.88) 30%,
        rgba(21,21,24,0.55) 55%,
        rgba(21,21,24,0.2) 75%,
        transparent 100%
      ),
      linear-gradient(
        to top,
        rgba(21,21,24,0.65) 0%,
        transparent 35%
      );
  }
  .hero-content {
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-inner { min-height: calc(100svh - 7.5rem - 2.5rem); }
  .hero-copy { max-width: 100%; }
  .hero-title { font-size: clamp(2.5rem, 9vw, 3.8rem); }
  .hero-sub { max-width: 100%; }
  .hero-scroll-hint { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 1rem; bottom: -1rem; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-image { order: -1; }
  .why-stat-card { left: 1rem; }
  .faq-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .review-card { width: 280px; height: 300px; padding: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-bg-img { object-position: 58% center; }
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(21,21,24,0.85) 0%,
        rgba(21,21,24,0.5) 40%,
        rgba(21,21,24,0.3) 60%,
        rgba(21,21,24,0.7) 100%
      );
  }
  .hero-content {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }
  .hero-inner { min-height: calc(100svh - 6.5rem - 2rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .about-badge { position: static; margin-top: 1.5rem; display: inline-flex; gap: 1rem; align-items: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   LOADING SKELETONS
   ============================================================ */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.skeleton {
  pointer-events: none;
  border: none;
  background: var(--cream-dark);
  animation: skeleton-pulse 1.4s ease-in-out infinite;
}
.gallery-card.skeleton { height: 283px; }
.video-card.skeleton { height: 258px; }
.review-card.skeleton { background: rgba(255,255,255,0.08); }
.reviews-page .review-card.skeleton { background: var(--cream-dark); }
.faq-item.skeleton { height: 60px; margin-bottom: 1px; border-radius: var(--radius); }

/* ============================================================
   DEDICATED PAGES (Gallery / Videos / Reviews "View All")
   ============================================================ */
.page-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: calc(6.5rem + var(--section-pad) * 0.4) 0 calc(var(--section-pad) * 0.6);
  text-align: center;
}
.page-banner .section-eyebrow { color: var(--gold-light); }
.page-banner .section-title { color: var(--white); margin-bottom: 0.75rem; }
.page-banner .section-title em { color: var(--gold-light); }
.page-banner .section-sub { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }

.page-back { text-align: center; margin: 3rem 0 0; }
.page-banner + .section { padding-top: 3.5rem; }
.page-banner + .section .gallery-track-full,
.page-banner + .section .videos-grid-full,
.page-banner + .section .reviews-grid-full { margin-top: 0; }

.reviews-page { background: var(--white); }
.reviews-page .review-card {
  background: var(--white);
  border-color: var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.reviews-page .review-card.alt {
  background: var(--cream);
  border-color: var(--cream-dark);
}
.reviews-page .review-card p { color: var(--text); }
.reviews-page .review-author strong { color: var(--charcoal); }
.reviews-page .review-author span { color: var(--text-muted); }
.reviews-page .review-avatar { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.reviews-page .review-avatar.has-image:hover { background: rgba(201,168,76,0.3); }

/* Full responsive grids (override the horizontal-scroll teaser layout) */
.gallery-track-full,
.videos-grid-full,
.reviews-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  width: auto;
  padding: 0;
  margin-top: 3.5rem;
}
.gallery-track-full .gallery-card,
.videos-grid-full .video-card,
.reviews-grid-full .review-card { width: auto; }

@media (max-width: 480px) {
  .gallery-track-full,
  .videos-grid-full,
  .reviews-grid-full { grid-template-columns: 1fr; }
  .reviews-grid-full .review-card { height: 300px; }
}
