/* ============================================================
   George Pompilio Photography — Shared Stylesheet
   ============================================================ */

:root {
  --black: #080706;
  --ink: #111010;
  --charcoal: #1c1a18;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --gold-pale: #e8c96a;
  --paper: #f5f0e8;
  --cream: #faf7f2;
  --muted: rgba(245,240,232,0.62);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--paper);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(8,7,6,0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
}
nav.always-dark {
  background: rgba(8,7,6,0.92);
  backdrop-filter: blur(12px);
}
/* When the mobile menu is open, drop the nav's backdrop-filter so the
   fixed-position fullscreen menu sizes to the viewport, not the nav box */
nav.menu-open,
nav.menu-open.always-dark,
nav.menu-open.scrolled {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  transition: none !important;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold-pale);
  text-transform: uppercase;
}
.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-close { display: none; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: rgba(17,16,16,0.97);
  border: 1px solid rgba(184,134,11,0.2);
  padding: 1rem 0;
  min-width: 200px;
  list-style: none;
  z-index: 2000;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}
.nav-cta {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.65rem 1.4rem !important;
  text-decoration: none;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--paper); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,7,6,0.5) 0%, rgba(8,7,6,0.4) 60%, rgba(8,7,6,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 3rem;
}
.page-hero-content .label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 1.5rem;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold-pale);
}
.page-hero-content p {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ── TICKER ── */
.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2.5rem;
}
.ticker-track span::after {
  content: '◆';
  margin-left: 2.5rem;
  opacity: 0.5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { position: relative; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header .label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.15;
}
.section-header h2 em { font-style: italic; color: var(--gold-pale); }
.section-header p {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── INTRO / SPLIT GRID ── */
.split-section {
  padding: 8rem 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.split-image.border-left::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid rgba(184,134,11,0.3);
  z-index: -1;
}
.split-image.border-right::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  top: 20px; left: 20px;
  border: 1px solid rgba(184,134,11,0.3);
  z-index: -1;
}
.split-copy .label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.split-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 2rem;
}
.split-copy h2 em { font-style: italic; color: var(--gold-pale); }
.split-copy p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.split-copy .btn-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(184,134,11,0.2);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  display: block;
}

/* ── COLLAGE BAND ── */
.collage-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 300px;
  gap: 4px;
}
.collage-band-img { overflow: hidden; }
.collage-band-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.collage-band-img:hover img { transform: scale(1.06); }

/* ── CRAFT / STYLE CARDS ── */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.craft-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.craft-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.craft-card:hover img { transform: scale(1.05); }
.craft-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.92) 0%, rgba(8,7,6,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.craft-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,134,11,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.craft-card-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.craft-card-overlay p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── QUOTE / FULL-BLEED ── */
.quote-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-section img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.quote-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.65);
}
.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 3rem;
}
.quote-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.quote-content cite {
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.quote-content cite .venue {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  letter-spacing: 0.18em;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  text-decoration: none;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.service-card:hover img { transform: scale(1.06); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.9) 0%, rgba(8,7,6,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.4s;
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(8,7,6,0.95) 0%, rgba(8,7,6,0.4) 60%, rgba(8,7,6,0.1) 100%);
}
.service-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-overlay p {
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-overlay p {
  max-height: 100px;
  opacity: 1;
}
.service-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── AWARDS BAR ── */
.awards {
  background: var(--black);
  padding: 4rem 0;
  border-top: 1px solid rgba(184,134,11,0.15);
  border-bottom: 1px solid rgba(184,134,11,0.15);
}
.awards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.award-item {
  text-align: center;
  padding: 1.5rem 3rem;
  border-right: 1px solid rgba(184,134,11,0.15);
}
.award-item:last-child { border-right: none; }
.award-item .award-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--gold);
}
.award-item .award-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.2rem;
}
.award-item .award-sub {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── XCLUSIVITY ── */
.xclusivity {
  background: var(--charcoal);
  padding: 6rem 0;
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.xclusivity .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.xclusivity-copy .label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.xclusivity-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.xclusivity-copy h2 em { font-style: italic; color: var(--gold-pale); }
.xclusivity-copy p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.xclusivity-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.xclusivity-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184,134,11,0.12);
}
.xclusivity-pillar:last-child { border-bottom: none; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184,134,11,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.pillar-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.pillar-text p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.testimonial-card {
  background: var(--charcoal);
  padding: 2.5rem;
  border: 1px solid rgba(184,134,11,0.1);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(184,134,11,0.15);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}
.testimonial-card cite {
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: block;
}
.testimonial-card cite .venue {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 350px;
  gap: 4px;
}
.gallery-strip-img {
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.gallery-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-strip-img:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-strip-img:hover .gallery-overlay { background: rgba(8,7,6,0.4); }
.gallery-overlay span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-strip-img:hover .gallery-overlay span { opacity: 1; }

/* ── SERVICE AREAS ── */
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  list-style: none;
}
.areas-list li {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(184,134,11,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.areas-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.4rem;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.75);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 3rem;
}
.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-content h2 em { font-style: italic; color: var(--gold-pale); }
.cta-content p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(184,134,11,0.5);
  color: var(--gold-pale);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(184,134,11,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links a {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--gold-pale); }
.footer-col h4 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--paper); }
.footer-contact p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-pale); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(184,134,11,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(184,134,11,0.35);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DECORATIVE ── */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin-bottom: 2rem;
}
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,134,11,0.4), transparent);
  margin: 0;
}

/* ── GALLERY MASONRY ── */
.gallery-masonry {
  columns: 2;
  column-gap: 10px;
  padding: 0;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.03); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { background: rgba(8,7,6,0.3); }

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid rgba(184,134,11,0.15);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  text-align: left;
  padding: 1.75rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-pale); }
.faq-question .faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer-inner {
  padding: 0 0 1.75rem;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal);
  border: 1px solid rgba(184,134,11,0.2);
  color: var(--paper);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,134,11,0.6);
}
.form-group select option { background: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── RESOURCE CARDS ── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.resource-card {
  background: var(--charcoal);
  border: 1px solid rgba(184,134,11,0.1);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}
.resource-card:hover {
  border-color: rgba(184,134,11,0.35);
  transform: translateY(-4px);
}
.resource-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.resource-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.resource-card:hover .resource-card-img img { transform: scale(1.05); }
.resource-card-body {
  padding: 1.75rem;
}
.resource-card-body .tag {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.resource-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.resource-card-body p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,7,6,0.98);
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    overflow-y: auto;
    padding: 5.5rem 1.5rem 3rem;
  }
  /* Larger, well-spaced tap targets so couples don't hit the wrong page */
  .nav-links.open > li { width: 100%; text-align: center; }
  .nav-links.open > li > a {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    padding: 0.85rem 0;
  }
  .nav-links.open .nav-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem !important;
    padding: 1rem 2.25rem !important;
  }
  .nav-hamburger { display: flex; }
  /* Close (X) button — only visible inside the open mobile menu, top-right */
  .nav-close {
    display: none;
    position: fixed;
    top: 1.1rem; right: 1.25rem;
    background: none; border: none;
    color: var(--paper);
    font-size: 2.5rem; line-height: 1;
    cursor: pointer;
    z-index: 1001;
    padding: 0.25rem 0.6rem;
  }
  .nav-links.open .nav-close { display: block; }
  /* Mobile dropdowns: show sub-items inline in the menu flow, not as floating absolute boxes */
  .nav-links.open .dropdown { width: 100%; text-align: center; }
  .nav-links.open .dropdown > a { display: block; }
  .nav-links.open .dropdown-menu {
    position: static;
    transform: none;
    display: block;            /* always visible on mobile — no tap needed */
    background: transparent;
    border: none;
    padding: 0.25rem 0 0.5rem;
    min-width: 0;
    margin-top: 0.25rem;
  }
  .nav-links.open .dropdown-menu li a {
    text-align: center;
    padding: 0.7rem 0;
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }
  .nav-links.open .dropdown > a[aria-haspopup] {
    font-size: 0.95rem;
    color: var(--gold-pale);
  }
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 3rem; direction: ltr; }
  .split-image.border-left::before,
  .split-image.border-right::after { display: none; }
  .craft-grid { grid-template-columns: 1fr; gap: 0; }
  .craft-card { aspect-ratio: auto; display: block; }
  .craft-card img { position: relative; width: 100%; height: 56vh; max-height: 420px; object-fit: cover; }
  .craft-card-overlay {
    position: relative;
    inset: auto;
    background: var(--ink);
    padding: 2rem 1.75rem 2.5rem;
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: auto !important; display: block; height: auto !important; }
  .service-card img { position: relative; width: 100%; height: 56vh; max-height: 420px; object-fit: cover; }
  .service-overlay {
    position: relative;
    inset: auto;
    background: var(--ink);
    padding: 2rem 1.75rem 2.5rem;
  }
  .service-overlay p { max-height: none; opacity: 1; overflow: visible; }
  .service-arrow { opacity: 1 !important; transform: none !important; margin-top: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .collage-band { grid-template-columns: repeat(3, 1fr); }
  .awards-row { gap: 0; }
  .award-item { padding: 1rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(184,134,11,0.15); width: 50%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 0 1.5rem; }
  .xclusivity .section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-masonry { columns: 2; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Universal: stack every page hero (image on top, text below) so text never sits over subjects on phones/tablets */
  .page-hero {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
  }
  .page-hero img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 56vh !important;
    max-height: 460px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }
  .page-hero::after { display: none !important; }
  .page-hero-content {
    position: relative !important;
    inset: auto !important;
    background: var(--ink) !important;
    padding: 2rem 1.5rem 2.5rem !important;
    max-width: none !important;
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .collage-band { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .collage-band-img:nth-child(5) { display: none; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .resources-grid { grid-template-columns: 1fr; }
  .page-hero { height: 55vh; min-height: 350px; }
  .page-hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

/* ── HOMEPAGE LEGACY GRID ALIASES ── */
/* index.html uses these original class names */
.intro-grid, .story-grid, .areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-image, .story-image, .areas-image { position: relative; }
.intro-image img, .story-image img, .areas-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.intro-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid rgba(184,134,11,0.3);
  z-index: -1;
}
.story-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  top: 20px; left: 20px;
  border: 1px solid rgba(184,134,11,0.3);
  z-index: -1;
}
.areas-image img { aspect-ratio: 4/5; }
.intro-copy .label, .story-copy .label, .areas-copy .label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.intro-copy h2, .story-copy h2, .areas-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 2rem;
}
.intro-copy h2 em, .story-copy h2 em { font-style: italic; color: var(--gold-pale); }
.intro-copy p, .story-copy p, .areas-copy p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .intro-grid, .story-grid, .areas-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image::before, .story-image::after { display: none; }
}

/* ── HOMEPAGE INTRO TEXT SECTION ── */
.intro {
  padding: 8rem 0;
  background: var(--ink);
}
.intro-text-block {
  max-width: 860px;
  margin: 0 auto;
}
.intro-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.intro-gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.intro-text-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2rem;
}
.intro-text-block h2 em {
  font-style: italic;
  color: var(--gold-pale);
}
.intro-text-block p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.intro-text-block .btn-outline {
  margin-left: 0;
  margin-bottom: 4rem;
  display: inline-block;
}

/* ── MINI GALLERY ── */
.gallery-mini-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-mini-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-mini-item:hover img { transform: scale(1.05); }
@media (max-width: 600px) {
  .gallery-mini-item:nth-child(n+7) { display: none; }
}

/* ── EXPERIENCE STEPS (homepage) ── */
@media (max-width: 900px) {
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── MOBILE LAYOUT FIXES (mobile-only; desktop untouched) ── */
@media (max-width: 600px) {
  /* Collapse inline-styled two-column grids that don't otherwise stack */
  .video-split[style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  /* services grid forced to 2-col inline on homepage -> single column */
  .services-grid[style*="repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* wedding.html main split with large gap */
  [style*="grid-template-columns:1fr 1fr; gap:8rem"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  /* engagement.html package/detail two-col -> single, tighter gap */
  [style*="grid-template-columns:1fr 1fr; gap:1.5rem"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  /* Reduce heavy section padding so mobile isn't endless scrolling */
  [style*="padding:8rem 0"] { padding: 4.5rem 0 !important; }
  [style*="padding: 8rem 0"] { padding: 4.5rem 0 !important; }
  /* Tame oversized inline gaps generally on small screens */
  [style*="gap: 6rem"] { gap: 2.5rem !important; }
  [style*="gap:8rem"] { gap: 2.5rem !important; }

  /* LUXURY MOBILE: stack hero/CTA text BELOW the photo (photo stays clean) */
  .page-hero {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }
  .page-hero img {
    position: relative !important;
    inset: auto !important;
    height: 60vh !important;
    filter: none !important;
  }
  .page-hero::after { display: none !important; }
  .page-hero-content {
    position: relative !important;
    z-index: 1 !important;
    background: var(--ink);
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 2.5rem 1.75rem 3rem !important;
  }

  .cta-section {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    overflow: visible !important;
  }
  .cta-section img {
    position: relative !important;
    inset: auto !important;
    height: 55vh !important;
    filter: none !important;
  }
  .cta-section::after { display: none !important; }
  .cta-content {
    position: relative !important;
    z-index: 1 !important;
    background: var(--ink);
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 2.5rem 1.75rem 3rem !important;
  }
}

/* Testimonial "Read full review" expander */
.review-more summary::-webkit-details-marker { display: none; }
.review-more summary::marker { content: ""; }
.review-more summary:hover { color: var(--gold-pale); }
.review-more[open] summary { margin-bottom: 0.25rem; }
