* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.65;
  overflow-x: hidden;
}

img, video {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --cream: #faf9f6;
  --off-white: #f3f2ef;
  --gold: #c5a46a;
  --gold-light: #e5cfaa;
  --text-soft: #424242;
  --text-muted: #6d6d6d;
  --border: rgba(0, 0, 0, 0.11);
  --gold-line: rgba(197, 164, 106, 0.4);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius-md: 22px;
  --radius-lg: 34px;
  --max-width: 1240px;
  --max-width-wide: 1320px;
  --transition: all 0.3s ease;
}

.section {
  padding: 110px 24px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.hero-content h1,
.page-hero h1,
.cta-box h2,
.luxe-booth-content h2,
.two-column-text h2 {
  font-family: "Playfair Display", serif;
  color: var(--black);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.section-heading p,
.hero-text,
.intro-text,
.service-card p,
.feature-item p,
.why-card p,
.review-text,
.cta-box p,
.footer-brand p,
.page-hero p,
.video-info p,
.preview-video-info p,
.two-column-text p,
.value-card p {
  color: var(--text-soft);
}

.section-button {
  text-align: center;
  margin-top: 36px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 16px 24px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 0.95rem;
  color: var(--black);
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--gold);
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-btn {
  border: 1px solid var(--gold);
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: var(--black);
  margin: 6px 0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 24px 24px;
  background: var(--white);
}

.mobile-menu a {
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

/* HERO */
.hero {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 90px 24px 120px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 26px;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 30px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-video {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #000;
}

/* TRUST STRIP */
.trust-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-item {
  text-align: center;
  padding: 14px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--cream);
}

/* INTRO */
.intro,
.features,
.reviews,
.site-footer {
  background: var(--off-white);
}

.intro-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* GRIDS */
.services-grid,
.video-preview-grid,
.why-grid,
.review-grid,
.value-grid,
.event-list-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.video-preview-grid,
.why-grid,
.review-grid,
.value-grid,
.event-list-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.feature-item,
.why-card,
.review-card,
.value-card,
.event-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover,
.feature-item:hover,
.why-card:hover,
.review-card:hover,
.value-card:hover,
.event-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-hover);
}

.service-card h3,
.feature-item h3,
.why-card h3,
.review-card h3,
.value-card h3,
.video-info h3,
.preview-video-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* FEATURES */
.features-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.features-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.features-copy p {
  color: var(--text-soft);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* LUXE PHOTO BOOTH */
.luxe-booth {
  background: var(--cream);
}

.luxe-booth-layout {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.luxe-booth-content h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.luxe-booth-content p {
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 24px;
}

.luxe-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.luxe-features span {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gold-line);
  color: var(--black);
  font-size: 0.9rem;
}

.luxe-booth-media img {
  height: auto;
  max-height: 650px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* VIDEO PREVIEW */
.preview-video-frame {
  background: #000;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.preview-video-frame video {
  height: 420px;
  object-fit: cover;
}

.preview-video-info {
  padding: 18px 6px 0;
}

/* ABOUT */
.page-hero {
  padding: 100px 24px 70px;
  text-align: center;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.two-column {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-column-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.two-column-text p {
  margin-bottom: 16px;
}

.two-column-image img,
.two-column-image video {
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* TEAM PHOTO */
.team-photo-section {
  background: var(--cream);
  padding: 120px 24px;
}

.team-photo-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-photo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* CTA */
.cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 42px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 28px;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.social-links i {
  font-size: 1.1rem;
  color: var(--black);
}

/* FOOTER */
.site-footer {
  padding: 70px 24px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: auto;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-bottom {
  max-width: var(--max-width-wide);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
}

/* GALLERY VIDEO PAGE */
.gallery-hero {
  padding-bottom: 45px;
}

.video-showcase {
  padding-top: 40px;
}

.gallery-video-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.gallery-video-card {
  width: 100%;
}

.gallery-video-frame {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 20px 55px rgba(0,0,0,.15);
}

.gallery-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.gallery-video-info {
  max-width: 420px;
  margin: 20px auto 0;
  display: flex;
  gap: 18px;
}

.gallery-video-info span {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #c5a46a;
  color: #c5a46a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.gallery-video-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.gallery-video-info p {
  color: #666;
}

@media (max-width: 900px) {

  .gallery-video-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .gallery-video-frame {
    max-width: 360px;
  }
}

.gallery-message {
  padding-top: 55px;
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .hero,
  .features-layout,
  .two-column,
  .luxe-booth-layout {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .features-copy,
  .two-column-text,
  .luxe-booth-content {
    text-align: center;
  }

  .hero-buttons,
  .luxe-features {
    justify-content: center;
  }

  .services-grid,
  .video-preview-grid,
  .why-grid,
  .review-grid,
  .value-grid,
  .event-list-grid,
  .footer-inner,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo img {
    height: 58px;
  }

  .features-list,
  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .hero-video {
    height: 520px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 20px;
  }

  .hero {
    padding: 55px 20px 80px;
  }

  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-video,
  .two-column-image img,
  .two-column-image video,
  .preview-video-frame video {
    height: 320px;
    min-height: 320px;
  }

  .services-grid,
  .video-preview-grid,
  .why-grid,
  .review-grid,
  .value-grid,
  .event-list-grid,
  .footer-inner,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .gallery-video-frame {
    max-width: 100%;
  }

  .gallery-video-info {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .brand-logo img {
    height: 50px;
  }
}

/* Compact, automatic paired-photo slideshow */
.photo-slideshow {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
}

.photo-slides {
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-slide {
  display: none;
  margin: 0;
  animation: galleryFade 0.55s ease;
}

.photo-slide.active {
  display: block;
}

.split-photo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--black);
}

.split-photo img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.split-photo img + img {
  margin-left: -1px;
  width: calc(100% + 1px);
}

.photo-slide figcaption {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px 22px;
}

.photo-slide figcaption > span {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.photo-slide figcaption h3 {
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.photo-slide figcaption p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.slideshow-btn {
  position: absolute;
  z-index: 2;
  top: 42%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%);
  transition: var(--transition);
}

.slideshow-btn:hover,
.slideshow-btn:focus-visible {
  background: var(--gold);
}

.slideshow-prev { left: -21px; }
.slideshow-next { right: -21px; }

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.slideshow-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: #d6d0c5;
  cursor: pointer;
  transition: var(--transition);
}

.slideshow-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

@keyframes galleryFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 560px) {
  .photo-slideshow {
    width: min(100%, 390px);
  }

  .slideshow-prev { left: 10px; }
  .slideshow-next { right: 10px; }

  .photo-slide figcaption {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-slide { animation: none; }
}

/* Logo-matched black and white brand surfaces; gold remains the accent. */
.site-header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.desktop-nav a,
.mobile-menu a {
  color: var(--white);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--gold-light);
}

.nav-btn {
  border-color: var(--gold);
}

.nav-btn:hover {
  color: var(--black);
}

.menu-toggle span {
  background: var(--white);
}

.mobile-menu {
  background: var(--black);
}

.mobile-menu a {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.site-footer {
  background: var(--black);
  border-top-color: var(--gold-line);
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact > a:hover,
.footer-bottom a {
  color: var(--gold-light);
}

.social-links a {
  border-color: var(--gold-line);
}

.social-links i {
  color: var(--white);
}

.social-links a:hover i {
  color: var(--black);
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.btn-primary {
  border: 1px solid var(--black);
}

.btn-primary:hover {
  border-color: var(--gold);
}

.luxe-booth-placeholder {
  min-height: 540px;
  padding: 48px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--black), #2b251d);
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.luxe-booth-placeholder i {
  color: var(--gold-light);
  font-size: 4rem;
}

.luxe-booth-placeholder span {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.luxe-booth-placeholder small {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Consistent alignment and sizing across every page */
.container,
.header-inner {
  width: 100%;
}

img,
video {
  max-width: 100%;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.services-grid > *,
.video-preview-grid > *,
.why-grid > *,
.review-grid > *,
.value-grid > *,
.event-list-grid > *,
.gallery-video-grid > * {
  min-width: 0;
}

.service-card,
.feature-item,
.why-card,
.review-card,
.value-card,
.event-item {
  height: 100%;
}

.service-card,
.why-card,
.review-card,
.value-card,
.preview-video-card {
  display: flex;
  flex-direction: column;
}

.review-card h3 {
  margin-top: auto;
  padding-top: 24px;
}

.event-item {
  display: grid;
  place-items: center;
  min-height: 110px;
  text-align: center;
}

.gallery-video-info {
  align-items: flex-start;
}

.review-grid > .btn {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
}

@media (max-width: 1150px) {
  .hero-text,
  .luxe-booth-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    padding: 8px;
  }
}

@media (max-width: 640px) {
  .section-heading {
    padding-inline: 0;
    margin-bottom: 42px;
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 20px;
  }

  .gallery-video-info {
    display: flex;
    gap: 14px;
  }

  .review-grid > .btn {
    justify-self: stretch;
  }

  .cta-box {
    padding: 54px 22px;
  }

  .luxe-booth-placeholder {
    min-height: 360px;
    padding: 30px 20px;
  }
}
