/* ============================================
   PICHARDO'S PHOTOGRAPHY — WARM LIGHT DESIGN
   Cream · Gold · Celebratory
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=Great+Vibes&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --black:       #0a0806;         /* hero/cinematic dark bg */
  --dark:        #faf8f5;         /* site body background */
  --dark-mid:    #f0ebe2;         /* alternate section bg */
  --dark-card:   #ffffff;         /* card backgrounds */
  --gold:        #b8901e;         /* richer gold on light bg */
  --gold-light:  #d4a93e;
  --gold-pale:   #f5e4b2;
  --gold-dark:   #8a6b18;
  --cream:       #f5f0e8;         /* hero text / light surfaces */
  --white:       #ffffff;
  --text-bright: #1a1410;         /* headings */
  --text:        #3d3228;         /* body copy */
  --text-muted:  #7a6e64;         /* secondary text */
  --text-faint:  #b8aaa0;         /* placeholders */

  --font-script: 'Great Vibes', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-gold: 0 0 30px rgba(184,144,30,0.18), 0 4px 20px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1300px;
}

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

/* ── TYPOGRAPHY ──────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; line-height: 1.75; }

.script { font-family: var(--font-script); font-weight: 400; color: var(--gold); }
.serif  { font-family: var(--font-serif); }
.gold   { color: var(--gold); }
.cream  { color: var(--cream); }

/* Section labels */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── HEADER / NAV ────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 3px 24px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.98);
}

/* Transparent nav over dark hero (homepage only — JS adds .on-dark-hero) */
.site-header.on-dark-hero:not(.scrolled) {
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}
.site-header.on-dark-hero:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.88); }
.site-header.on-dark-hero:not(.scrolled) .nav-links a:hover,
.site-header.on-dark-hero:not(.scrolled) .nav-links a.active { color: var(--gold-light); }
.site-header.on-dark-hero:not(.scrolled) .nav-cta { color: #fff !important; border-color: rgba(255,255,255,0.45) !important; }
.site-header.on-dark-hero:not(.scrolled) .nav-logo-text .script-name { color: var(--gold-light); }
.site-header.on-dark-hero:not(.scrolled) .nav-logo-text .tagline-small { color: rgba(255,255,255,0.55); }
.site-header.on-dark-hero:not(.scrolled) .hamburger span { background: #fff; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text .script-name {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.nav-logo-text .tagline-small {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0806; /* always dark — hero is cinematic */
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  transition: opacity 1.5s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.72) 0%,
    rgba(8,8,8,0.28) 55%,
    rgba(8,8,8,0.50) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(8rem, 12vw, 12rem) clamp(1.25rem, 4vw, 3rem) clamp(5rem, 8vw, 8rem);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-kicker::before, .hero-kicker::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(4rem, 9vw, 8.5rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold-outline {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── DIVIDER ─────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.divider-icon { color: var(--gold); font-size: 1rem; }

/* ── GOLD LINE ───────────────────────────────── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── SECTION HEADERS ─────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--dark-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184,144,30,0.35);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img { transform: scale(1.04); }
.card-body { padding: 1.75rem; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ── GALLERY GRID ────────────────────────────── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}
.gallery-masonry img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.gallery-masonry .gal-item:hover img { transform: scale(1.04); }
.gallery-masonry .gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-masonry .gal-item:hover .gal-overlay { opacity: 1; }
.gallery-masonry .gal-overlay span {
  font-size: 1.8rem;
  color: var(--gold);
}
@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

/* Gallery category grid */
.gallery-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.gallery-cat {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-cat:hover img { transform: scale(1.06); }
.gallery-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}
.gallery-cat:hover .gallery-cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%);
}
.gallery-cat-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.gallery-cat-count {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 768px) {
  .gallery-cats { grid-template-columns: repeat(2, 1fr); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── QUOTE BLOCK ─────────────────────────────── */
.quote-block {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-bright);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.quote-block cite {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.15;
  display: block;
  margin-bottom: -1rem;
}

/* ── BANNER STRIP ────────────────────────────── */
.banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.7) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.banner-content h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }

/* ── TRUST STRIP ─────────────────────────────── */
.trust-strip {
  background: var(--dark-mid);
  border-top: 1px solid rgba(184,144,30,0.2);
  border-bottom: 1px solid rgba(184,144,30,0.2);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item .trust-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── STATS ───────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(184,144,30,0.2);
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(184,144,30,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(201,168,76,0.15); }
}

/* ── REVIEW CARDS ────────────────────────────── */
.review-card {
  background: var(--dark-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.review-card:hover {
  border-color: rgba(184,144,30,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.stars span { color: var(--gold); font-size: 0.9rem; }
.review-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-bright);
  display: block;
}
.review-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── SERVICE CARDS ───────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.4) 60%);
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon { transform: translateY(0); opacity: 1; }
.service-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s ease 0.05s;
}
.service-card:hover p { transform: translateY(0); opacity: 1; }
.service-card-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.1s;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* ── AREA CARDS ──────────────────────────────── */
.area-card {
  background: var(--dark-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.area-card:hover {
  border-color: rgba(184,144,30,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.area-city {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}
.area-state {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.area-landmarks {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.area-landmarks li::before {
  content: '◆ ';
  color: var(--gold);
  font-size: 0.55rem;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-category h3 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
details {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
details summary {
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-bright);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
details[open] summary { color: var(--gold); }
details[open] summary::after { transform: rotate(45deg); }
details p {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CONTACT FORM ────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-bright);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,144,30,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #fff; color: var(--text-bright); }
.honeypot { display: none !important; }

/* ── CHAT WIDGET ─────────────────────────────── */
.chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 1.5rem;
}
.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201,168,76,0.6);
}
.chat-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 800;
  width: 380px;
  max-width: calc(100vw - 3rem);
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  display: none;
  flex-direction: column;
}
.chat-window.open { display: flex; }
.chat-header {
  background: linear-gradient(135deg, #1a1200, #2a1f00);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.chat-header-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}
.chat-header-status {
  font-size: 0.7rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.chat-header-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 340px;
}
.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble-text {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble-text {
  background: rgba(255,255,255,0.07);
  color: var(--text-bright);
  border-radius: 4px 12px 12px 12px;
}
.chat-msg.user .chat-bubble-text {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 12px 12px 4px 12px;
}
.chat-quick-replies {
  padding: 0.5rem 1.25rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.quick-reply {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 20px;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition);
}
.quick-reply:hover {
  background: var(--gold);
  color: var(--black);
}
.chat-input-row {
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-bright);
  font-family: var(--font-sans);
  outline: none;
}
.chat-input:focus { border-color: var(--gold); }
.chat-send {
  background: var(--gold);
  border: none;
  border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.chat-send:hover { background: var(--gold-light); }

/* ── MOBILE CALL BAR ─────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--gold);
  padding: 1rem;
  text-align: center;
}
.mobile-call-bar a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
@media (max-width: 768px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }
  .chat-bubble { bottom: 5rem; }
  .chat-window { bottom: 9rem; }
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: #1a1410;
  border-top: none;
  padding: clamp(3rem, 6vw, 6rem) 0 2rem;
}
.site-footer .script-name { color: var(--gold-pale) !important; }
.site-footer .footer-brand p { color: rgba(255,255,255,0.55); }
.site-footer .social-link { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
.site-footer .social-link:hover { border-color: var(--gold); color: var(--gold); }
.site-footer .footer-col h4 { color: var(--gold); }
.site-footer .footer-col ul a { color: rgba(255,255,255,0.55); }
.site-footer .footer-col ul a:hover { color: var(--gold); }
.site-footer .footer-bottom { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.3); }
.site-footer .footer-bottom a { color: rgba(255,255,255,0.5); }
.site-footer .footer-bottom a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .script-name {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--body-bg);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--text-bright); font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero p { color: var(--text-muted); }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-up { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.animate-in { animation: fadeIn 0.6s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* Scroll reveal — VISIBLE BY DEFAULT. JS adds .armed to hide+animate (progressive
   enhancement), so content is NEVER hidden if JS fails, is slow, or is blocked. */
.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.armed { opacity: 0; transform: translateY(20px); }
.reveal-left.armed  { opacity: 0; transform: translateX(-28px); }
.reveal-right.armed { opacity: 0; transform: translateX(28px); }
.reveal.armed.visible,
.reveal-left.armed.visible,
.reveal-right.armed.visible { opacity: 1; transform: none; }

/* Always show content when animations are disabled (Windows reduced-motion, accessibility) */
@media (prefers-reduced-motion: reduce) {
  .animate-up, .animate-in { animation: none !important; opacity: 1 !important; transform: none !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── MOBILE NAV ──────────────────────────────── */
@media (max-width: 968px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,8,6,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.9) !important;
  }
  .nav-close-wrap {
    display: block !important;
    position: absolute;
    top: 1.75rem; right: 1.75rem;
  }
}

/* ── WARM LIGHT SECTIONS ──────────────────────── */
:root {
  --warm-bg:    #faf7f2;
  --warm-bg2:   #f4ede2;
  --warm-text:  #1a1410;
  --warm-muted: #6b5f52;
}
.section-warm {
  background: var(--warm-bg);
  color: var(--warm-text);
}
.section-warm h1,
.section-warm h2,
.section-warm h3,
.section-warm h4 {
  color: var(--warm-text);
}
.section-warm p { color: var(--warm-muted); }
.section-warm .eyebrow { color: var(--gold-dark); }
.section-warm .gold-line { opacity: 0.7; }
.section-warm .card {
  background: #fff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.section-warm .card:hover { border-color: rgba(201,168,76,0.4); }
.section-warm .stat-item { background: #fff; border-color: rgba(201,168,76,0.2); }
.section-warm .stat-label { color: var(--warm-muted); }
.section-warm .review-card {
  background: #fff;
  border-color: rgba(0,0,0,0.07);
}
.section-warm .review-text { color: var(--warm-text); }
.section-warm .trust-strip {
  background: var(--warm-bg2);
  border-color: rgba(201,168,76,0.2);
}
.section-warm .trust-item { color: var(--warm-muted); }
.section-warm .area-card {
  background: #fff;
  border-color: rgba(0,0,0,0.07);
}
.section-warm .area-city { color: var(--warm-text); }
.section-warm .package-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
.section-warm .package-features li { color: var(--warm-muted); border-color: rgba(0,0,0,0.07); }
.section-warm .exp-step p { color: var(--warm-muted); }
.section-warm .exp-step h4 { color: var(--warm-text); }
.section-warm .exp-num { background: var(--warm-bg); color: var(--gold-dark); border-color: var(--gold-dark); }
.section-warm .exp-step:hover .exp-num { background: var(--gold); color: #fff; }
.section-warm .section-header p { color: var(--warm-muted); }
.section-warm .feature-text-col { background: var(--warm-bg2); }
.section-warm .feature-text-col p { color: var(--warm-muted); }
.section-warm .feature-text-col h2 { color: var(--warm-text); }
/* Stats in warm sections */
.section-warm .stats-grid { border-color: rgba(201,168,76,0.2); background: var(--warm-bg2); }
.section-warm .stat-item { border-color: rgba(201,168,76,0.15); }
/* Buttons in warm sections */
.section-warm .btn-outline {
  color: var(--warm-text);
  border-color: rgba(0,0,0,0.25);
}
.section-warm .btn-outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

/* ── UTILITIES ───────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── PAGE INTRO LOADER ────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: #0a0806;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-name {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold);
}
.loader-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 1px;
}
.loader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loaderFill 1s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* cursor: browser default — custom cursor removed */
.cursor-dot, .cursor-ring { display: none !important; }

/* ── PHOTO MARQUEE STRIP ──────────────────────── */
.photo-marquee {
  overflow: hidden;
  background: var(--dark-mid);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(184,144,30,0.15);
  border-bottom: 1px solid rgba(184,144,30,0.15);
}
.marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.photo-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-photo {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.marquee-photo:hover { transform: scale(1.04); }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .marquee-photo { height: 160px; }
}

/* ── BENTO GALLERY MOSAIC ─────────────────────── */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bento-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1 / 3; }
.bento-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1 / 2; }
.bento-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.bento-item:nth-child(4) { grid-column: 6 / 10; grid-row: 2 / 3; }
.bento-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2 / 3; }
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.bento-item:hover img { transform: scale(1.06); }
.bento-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.bento-item:hover .bento-label { opacity: 1; }
.bento-label-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.bento-label-arrow { color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; }
@media (max-width: 900px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item { grid-column: auto !important; grid-row: auto !important; height: 220px; }
  .bento-item:nth-child(1) { grid-column: 1 / 3 !important; height: 300px; }
  .bento-item .bento-label { opacity: 1; }
}

/* ── PACKAGES / PRICING ───────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
.package-card {
  background: var(--dark-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem 2.25rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184,144,30,0.3);
}
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffbf0 0%, var(--dark-card) 100%);
  box-shadow: 0 0 40px rgba(184,144,30,0.12), 0 16px 60px rgba(0,0,0,0.1);
  transform: scale(1.04);
  z-index: 1;
}
.package-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.package-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 1.4rem;
  border-radius: 20px;
  white-space: nowrap;
}
.package-tier {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.package-name {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.package-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.package-price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.package-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.package-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.45;
}
.package-features li:last-child { border-bottom: none; }
.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.52rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.packages-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── EXPERIENCE / CLIENT JOURNEY TIMELINE ─────── */
.experience-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.experience-timeline::before {
  content: '';
  position: absolute;
  top: 26px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), var(--gold), rgba(201,168,76,0.5), transparent);
}
.exp-step {
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}
.exp-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 auto 1.75rem;
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.exp-step:hover .exp-num {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}
.exp-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
}
.exp-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.exp-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .experience-timeline { grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2rem; }
  .experience-timeline::before { display: none; }
}
@media (max-width: 480px) {
  .experience-timeline { grid-template-columns: 1fr; }
}

/* ── PARALLAX HERO ────────────────────────────── */
.hero-bg-img { will-change: transform; }

/* ── HERO — CINEMATIC UPGRADE ─────────────────── */
.hero-title {
  font-size: clamp(5.5rem, 13vw, 12rem) !important;
  letter-spacing: -0.025em !important;
  line-height: 0.92 !important;
}
.hero-bg-img { opacity: 0.78 !important; }
.hero-bg::after {
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.70) 0%,
    rgba(8,8,8,0.25) 55%,
    rgba(8,8,8,0.48) 100%
  ) !important;
}
/* Animated scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  text-decoration: none;
  cursor: pointer;
}
.scroll-indicator-label {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-indicator-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLinePulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── EDITORIAL FULL-BLEED PHOTO SPREAD ────────── */
.editorial-spread {
  width: 100%;
  height: 72vh;
  min-height: 380px;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  display: block;
}
.editorial-spread img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 8s ease;
}
.editorial-spread:hover img { transform: scale(1.02); }
.editorial-spread-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.05) 40%,
    rgba(8,8,8,0.05) 60%,
    rgba(8,8,8,0.6) 100%
  );
  pointer-events: none;
}
.editorial-spread-label {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.editorial-spread-sm {
  height: 50vh;
  min-height: 280px;
  max-height: 520px;
}

/* ── STATEMENT TEXT SECTION ───────────────────── */
.statement-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 2rem;
  font-family: var(--font-serif);
  font-size: 22rem;
  color: rgba(201,168,76,0.03);
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}
.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-bright);
  line-height: 1.3;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.statement-ornament {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}
.statement-ornament::before,
.statement-ornament::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
}
.statement-ornament::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.statement-ornament::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.statement-ornament-gem { color: var(--gold); font-size: 0.55rem; letter-spacing: 0.2em; }
.statement-attr {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1.5rem;
}

/* ── HORIZONTAL DRAG GALLERY ──────────────────── */
.h-gallery-section {
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 3rem;
}
.h-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto 2rem;
}
.h-gallery-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.h-gallery-hint svg { opacity: 0.5; }
.h-gallery-track {
  display: flex;
  gap: 0.8rem;
  padding: 0.5rem clamp(1.5rem, 4vw, 3rem);
  overflow-x: scroll;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
}
.h-gallery-track:active { cursor: grabbing; }
.h-gallery-track::-webkit-scrollbar { display: none; }
.h-gallery-item {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.h-gallery-item img {
  height: 460px;
  width: auto;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.h-gallery-item:hover img { transform: scale(1.04); }
.h-gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.h-gallery-item:hover .h-gallery-item-label { opacity: 1; }
@media (max-width: 768px) {
  .h-gallery-item img { height: 300px; }
}

/* ── SPLIT FEATURE SECTIONS ───────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.feature-split.reverse .feature-photo-col { order: 2; }
.feature-split.reverse .feature-text-col  { order: 1; }
.feature-photo-col {
  overflow: hidden;
  position: relative;
}
.feature-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.feature-photo-col:hover img { transform: scale(1.04); }
.feature-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  background: var(--dark-mid);
}
.feature-text-col h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.feature-text-col p {
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse .feature-photo-col,
  .feature-split.reverse .feature-text-col { order: unset; }
  .feature-photo-col { height: 380px; }
}

/* ── GALLERY PAGE FILTER ──────────────────────── */
.gallery-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.gf-btn {
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition);
}
.gf-btn:hover { border-color: rgba(201,168,76,0.5); color: var(--gold); }
.gf-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── FOOTER PHOTOS STRIP ──────────────────────── */
.footer-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-bottom: 0;
}
.footer-photo-cell {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.footer-photo-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.5s ease;
  display: block;
}
.footer-photo-cell:hover img { opacity: 0.88; transform: scale(1.05); }
@media (max-width: 768px) {
  .footer-photos { grid-template-columns: repeat(3, 1fr); }
}

/* ── SUBTLE FILM GRAIN ────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99990;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: screen;
}

/* ── REVEAL LEFT / RIGHT VARIANTS ─────────────── */
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── SERVICES GRID — RESPONSIVE ───────────────── */
.services-8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .services-8-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-8-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* ── BOLD SECTION NUMBER ──────────────────────── */
.section-number {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(201,168,76,0.06);
  line-height: 0.9;
  display: block;
  user-select: none;
  pointer-events: none;
}

/* ── INSTAGRAM STRIP ──────────────────────────── */
.insta-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 0 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.insta-handle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.insta-handle:hover { color: var(--gold); }
.insta-at { color: var(--gold); font-size: 1.1rem; }

/* ── ABOUT SPLIT (homepage) ──────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}
.about-gold-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.about-gold-badge .badge-num {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.about-gold-badge .badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}
@media (max-width: 560px) {
  .about-img-wrap::before { display: none; }
  .about-gold-badge { width: 90px; height: 90px; bottom: -12px; right: -8px; }
  .about-gold-badge .badge-num { font-size: 1.6rem; }
}
