/* Samesq Productions — Light Editorial Luxury v2 */
:root {
  --white: #FFFFFF;
  --ivory: #FAF8F4;
  --ivory-dark: #F2EDE6;
  --black: #0D0D0D;
  --charcoal: #2C2C2C;
  --grey: #6B6B6B;
  --grey-light: #E8E4DC;
  --gold: #B8973A;
  --gold-light: #D4AF5A;
  --gold-pale: #F5EDD0;
  --gold-line: #C9A84C;
  --dark-bg: #111111;
  --dark-card: #1C1C1C;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --text-hero: clamp(52px, 8vw, 96px);
  --text-h1: clamp(40px, 5vw, 68px);
  --text-h2: clamp(30px, 3.5vw, 48px);
  --text-h3: clamp(22px, 2.5vw, 32px);
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-small: 14px;
  --text-label: 12px;
  --lh-display: 1.05;
  --lh-heading: 1.2;
  --lh-body: 1.75;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 100px;
  --space-2xl: 140px;
  --section-py: clamp(90px, 10vw, 140px);
  --max-width: 1240px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--charcoal);
  background: var(--ivory);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.heading-underline {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin: 20px auto 0;
}
.heading-underline.left { margin: 20px 0 0; }

hr.gold-rule {
  border: none;
  border-top: 1px solid var(--grey-light);
  margin: 0;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--black);
  line-height: var(--lh-heading);
}
.section-header p {
  font-size: var(--text-body-lg);
  color: var(--grey);
  max-width: 560px;
  margin: 16px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  min-height: 48px;
}
.btn:focus-visible { outline: 2px solid var(--gold-line); outline-offset: 3px; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #9a7d2f; }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-secondary-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-secondary-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 108px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  transition: box-shadow 0.3s var(--ease);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.site-nav--hero {
  background: transparent;
  border-bottom-color: transparent;
}
.site-nav--hero.scrolled {
  background: var(--white);
  border-bottom-color: var(--grey-light);
}
.site-nav--hero .nav-links a { color: rgba(255,255,255,0.9); }
.site-nav--hero .nav-actions .btn-primary { background: var(--gold); color: var(--white); }
.site-nav--hero.scrolled .nav-links a { color: var(--charcoal); }
.site-nav--hero .nav-hamburger span { background: #fff; }
.site-nav--hero.scrolled .nav-hamburger span { background: var(--black); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 92px;
  max-height: 92px;
  width: auto;
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.has-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active { box-shadow: inset 0 -2px 0 var(--gold-line); }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  z-index: 1100;
}
.dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--charcoal) !important;
}
.dropdown a:hover {
  background: var(--ivory);
  color: var(--gold) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.nav-whatsapp:hover { filter: brightness(1.08); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: background 0.3s;
}

.mobile-panel {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey-light);
  color: var(--charcoal);
}
.mobile-panel a:last-child { border-bottom: none; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 120px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
body.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: #fff;
  line-height: var(--lh-display);
  margin: 0 0 8px;
}
.hero-heading em { font-style: italic; color: var(--gold-light); }
.hero-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  margin: 24px 0 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  min-height: 55vh;
  padding-bottom: clamp(48px, 6vh, 80px);
}
.page-hero .hero-content { padding-top: 88px; }
.page-hero .hero-heading { font-size: var(--text-h1); }

/* Fixed nav offset on pages without full hero */
main > .contact-page:first-child,
main > section:first-child:not(.hero) {
  padding-top: calc(108px + var(--space-md));
}

/* Stats */
.stats-bar {
  background: var(--ivory-dark);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--grey-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 10px;
  display: block;
}

/* Services grid */
.services-section { background: var(--ivory); padding: var(--section-py) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: block;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.1) 60%);
  transition: background 0.5s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.25) 60%);
}
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
}
.service-card-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 12px;
}
.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.service-card:hover .service-card-desc { max-height: 80px; opacity: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* Why */
.why-section { background: var(--white); padding: var(--section-py) 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.why-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-line);
  z-index: -1;
}
.why-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--black);
  line-height: 1.15;
  margin: 0 0 32px;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
}
.why-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

/* Event panels */
.event-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 70vh;
  min-height: 500px;
  position: relative;
}
.event-panels::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: rgba(201, 168, 76, 0.4);
  z-index: 5;
  pointer-events: none;
}
.event-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 5vw, 64px);
}
.event-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.event-panel:hover img { transform: scale(1.06); }
.event-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}
.event-panel-content { position: relative; z-index: 2; }
.event-panel-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.event-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
}

/* Testimonials */
.testimonials-section {
  background: var(--ivory-dark);
  padding: var(--section-py) 0;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 2px solid var(--gold-line);
  position: relative;
  box-shadow: 0 4px 40px rgba(0,0,0,0.04);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold-pale);
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--gold); margin-bottom: 20px; letter-spacing: 3px; font-size: 14px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial-event { font-size: 13px; color: var(--grey); margin-top: 4px; }

/* Gallery teaser */
.gallery-section { background: var(--white); padding: var(--section-py) 0; }
.gallery-grid-teaser {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 56px;
}
.gallery-grid-teaser .gallery-item { overflow: hidden; position: relative; }
.gallery-grid-teaser .gallery-item:first-child { grid-row: span 2; }
.gallery-grid-teaser .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-grid-teaser .gallery-item:hover img { transform: scale(1.05); }
.gallery-cta-wrap { text-align: center; margin-top: 48px; }

/* Blog */
.blog-section { background: var(--ivory); padding: var(--section-py) 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.blog-card { background: var(--white); overflow: hidden; box-shadow: 0 4px 40px rgba(0,0,0,0.04); }
.blog-card-image { height: 220px; overflow: hidden; }
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 28px 28px 32px; }
.blog-card-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin: 0 0 14px;
}
.blog-card-excerpt { font-size: 14px; color: var(--grey); line-height: 1.7; margin: 0 0 20px; }
.blog-read-more {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.blog-read-more:hover { color: var(--gold); }

/* CTA */
.cta-banner {
  background: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--gold-line);
  opacity: 0.3;
}
.cta-banner::before { top: 0; height: 40px; }
.cta-banner::after { bottom: 0; height: 40px; }
.cta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 700px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 44px;
  max-width: 480px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Service detail alternating */
.service-detail-section { padding: var(--section-py) 0; background: var(--ivory); }
.service-detail-section:nth-child(even) { background: var(--white); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.service-detail.reverse .service-detail__img { order: 2; }
.service-detail.reverse .service-detail__text { order: 1; }
.service-detail__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.service-detail__text h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 24px;
}
.service-detail__text p { color: var(--grey); margin-bottom: 16px; }
.service-detail__text ul { margin: 24px 0 32px; }
.service-detail__text li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--charcoal);
}
.service-detail__text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Process */
.process-section { background: var(--ivory-dark); padding: var(--section-py) 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--grey-light);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-line);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--white); padding: var(--section-py) 0; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  color: var(--grey);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 24px; }

/* Gallery page */
.gallery-page { padding: var(--section-py) 0; background: var(--ivory); }
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--grey-light);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 0;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-masonry .gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-page { background: var(--ivory); padding: var(--section-py) 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 300;
  color: var(--black);
  margin: 0 0 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; color: var(--black); }
.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--ivory);
  border: 1px solid var(--grey-light);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-line); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: #c0392b; font-size: 13px; margin-top: 6px; display: none; }
.form-success {
  display: none;
  padding: 16px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-line);
  color: var(--charcoal);
  margin-top: 16px;
  font-size: 14px;
}
.contact-map { margin-top: 48px; }
.contact-map iframe { width: 100%; height: 360px; border: 0; filter: grayscale(20%); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.3s var(--ease);
}
.team-card:hover { box-shadow: 0 4px 40px rgba(0,0,0,0.08); }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold-pale);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 4px;
}
.team-role { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.package-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--grey-light);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.package-card.featured {
  border-color: var(--gold-line);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.package-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--black);
  margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  margin: 16px 0 24px;
}
.package-card ul { text-align: left; margin-bottom: 32px; }
.package-card li {
  padding: 8px 0 8px 16px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--grey-light);
}
.package-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Story / prose */
.prose { font-size: var(--text-body-lg); color: var(--charcoal); line-height: var(--lh-body); }
.prose p { margin-bottom: 1.25rem; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-images { position: relative; min-height: 480px; }
.story-images img {
  position: absolute;
  object-fit: cover;
}
.story-images img:first-child {
  width: 75%;
  height: 420px;
  top: 0;
  left: 0;
  z-index: 2;
}
.story-images img:last-child {
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 8px solid var(--white);
}

.checklist-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  margin-top: 32px;
}
.checklist-2col li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
}
.checklist-2col li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-strip {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 48px 0;
  opacity: 0.45;
}
.logo-strip span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

/* Footer */
.site-footer {
  background: var(--dark-bg);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.site-footer a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}
.site-footer a:hover { color: var(--gold-light); }
.footer-tagline { font-size: 14px; margin: 16px 0; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: rgba(255,255,255,0.7);
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #2A2A2A;
  font-size: 12px;
  color: #555;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  color: #fff;
  font-size: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.fab-tooltip {
  position: absolute;
  right: 60px;
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-video { max-width: 90vw; max-height: 88vh; object-fit: contain; background: #000; }
.lb-media { display: flex; align-items: center; justify-content: center; max-width: 90vw; max-height: 88vh; }
.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  padding: 0 20px;
}
.lb-prev { left: 0; }
.lb-next { right: 0; }

/* Bandstand card */
.bandstand-card {
  background: var(--gold-pale);
  border: 1px solid var(--gold-line);
  padding: 48px;
  margin: 48px 0;
  text-align: center;
}

/* Artist */
.artist-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.artist-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: box-shadow 0.3s;
}
.artist-card:hover { box-shadow: 0 4px 40px rgba(0,0,0,0.08); }
.artist-card__img { height: 280px; overflow: hidden; }
.artist-card__img img { width: 100%; height: 100%; object-fit: cover; }
.artist-card__body { padding: 24px; }

/* Wedding warm sections */
.wedding-section { background: var(--ivory); padding: var(--section-py) 0; }
.wedding-section--alt { background: var(--white); }
.wedding-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.wedding-type-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--grey-light);
  text-align: center;
}
.wedding-type-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--black);
  margin: 16px 0 8px;
}

.planning-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 56px;
  max-width: 920px;
  margin: 48px auto 0;
}
.planning-timeline-item {
  border-left: 2px solid var(--gold-line);
  padding: 0 0 0 20px;
}
.planning-timeline-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin: 6px 0 6px;
}
.planning-timeline-item p { font-size: 14px; color: var(--grey); line-height: 1.6; }

.gallery-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.gallery-grid-six .gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid-six .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid-six .gallery-item:hover img { transform: scale(1.05); }

.process-steps--4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .story-grid, .service-detail, .contact-inner { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail__img,
  .service-detail.reverse .service-detail__text { order: unset; }
  .event-panels { grid-template-columns: 1fr; height: auto; }
  .event-panel { height: 50vh; min-height: 360px; }
  .event-panels::after { display: none; }
  .testimonials-track { grid-template-columns: 1fr; }
  .blog-grid, .packages-grid, .team-grid, .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .wedding-types { grid-template-columns: repeat(2, 1fr); }
  .planning-timeline { grid-template-columns: 1fr; }
  .gallery-grid-six { grid-template-columns: repeat(2, 1fr); }
  .process-steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .site-nav { height: 92px; }
  .nav-inner { height: 92px; }
  .nav-logo img {
    height: 84px;
    max-height: 84px;
  }
  .site-footer .footer-logo {
    height: 64px;
    max-height: 64px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--grey-light); padding: 24px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 380px; }
  .blog-grid, .packages-grid, .team-grid, .artist-grid, .wedding-types { grid-template-columns: 1fr; }
  .hero-heading { font-size: clamp(36px, 10vw, 52px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid-teaser { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid-teaser .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 32px 24px; }
  .checklist-2col { grid-template-columns: 1fr; }
  .gallery-grid-six { grid-template-columns: 1fr; }
  .process-steps--4 { grid-template-columns: 1fr; }
}
