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

:root {
  --cream: #faf6f0;
  --warm-white: #fffef9;
  --blush: #e8d5c4;
  --dusty-rose: #c9a99a;
  --taupe: #8c7b72;
  --charcoal: #2d2926;
  --gold: #c8a96e;
  --light-gold: #e8d5a3;
  --ink: #1a1714;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 11px 48px;
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
  z-index: 1001; position: relative;
}
.nav-logo:hover { color: var(--dusty-rose); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--dusty-rose); transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--dusty-rose); }
.nav-links a:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--warm-white);
  border: 1px solid rgba(200,169,110,0.25);
  min-width: 185px; list-style: none;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: block; padding: 11px 22px;
  font-size: 0.76rem; letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  white-space: nowrap;
}
.dropdown-menu li:last-child a { border-bottom: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
  z-index: 1001; position: relative;
}
.nav-toggle span { width: 26px; height: 1px; background: var(--charcoal); transition: all 0.3s; display: block; }

/* ─── PAGE TRANSITION ─── */
.page-content {
  opacity: 0; transform: translateY(14px);
  animation: pageIn 0.8s ease forwards 0.1s;
}
@keyframes pageIn { to { opacity: 1; transform: translateY(0); } }

/* ─── BUTTONS — FULLY FIXED ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.83rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative; overflow: hidden;
  background: transparent; cursor: pointer;
  vertical-align: middle;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  z-index: 0;
}
.btn-primary:hover { color: #ffffff; }
.btn-primary:hover::before { transform: translateX(0); }
/* All direct text inside btn-primary needs to sit above the fill */
.btn-primary > * { position: relative; z-index: 1; }

/* Since text nodes can't be z-indexed, we use this trick: */
.btn-primary {
  isolation: isolate;
}
.btn-primary::after {
  content: attr(data-text);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.83rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
  border-bottom: 1px solid var(--dusty-rose);
  transition: color 0.3s, letter-spacing 0.3s;
  background: transparent;
}
.btn-ghost:hover { color: var(--dusty-rose); letter-spacing: 0.28em; }

/* ─── HERO ─── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #d4c8bc; }
.hero-collage {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 2.2fr 1fr;
  opacity: 0.52;
}
.hero-collage img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(15%) contrast(0.95);
}
.hero-collage img:nth-child(1),
.hero-collage img:nth-child(3) { opacity: 0.62; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,246,240,0.22) 0%, rgba(250,246,240,0.48) 50%, rgba(250,246,240,0.84) 100%);
}
.hero-ornament {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: slowSpin 80s linear infinite;
  pointer-events: none;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 50%;
}
@keyframes slowSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-text { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 16px;
  opacity: 0; animation: fadeUp 1s ease forwards 0.6s;
}
.hero-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.6rem,10vw,9rem);
  color: var(--charcoal); line-height: 1; margin-bottom: 10px;
  opacity: 0; animation: fadeUp 1.1s ease forwards 0.8s;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1rem,2.5vw,1.4rem);
  color: var(--taupe); letter-spacing: 0.08em; margin-bottom: 38px;
  opacity: 0; animation: fadeUp 1.1s ease forwards 1s;
}
.hero-divider {
  width: 68px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 30px;
  opacity: 0; animation: fadeUp 1s ease forwards 1.1s;
}
.hero-cta {
  opacity: 0; animation: fadeUp 1s ease forwards 1.3s;
  display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0; animation: fadeUp 1s ease forwards 1.8s;
}
.hero-scroll span { font-size: 0.63rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); }
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: flex; overflow: hidden;
  height: 260px; gap: 4px;
}
.photo-strip img {
  flex: 1 1 0; min-width: 0;
  height: 100%; object-fit: cover;
  filter: sepia(10%) contrast(0.96);
  transition: transform 0.6s ease, filter 0.5s ease, flex 0.5s ease;
}
.photo-strip img:hover { flex: 1.6 1 0; filter: sepia(4%) contrast(1); }

/* ─── MOSAIC ─── */
.mosaic { display: grid; gap: 5px; overflow: hidden; }
.mosaic-4 { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; height: 320px; }
.mosaic-5 { grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr; height: 350px; }
.mosaic-3 { grid-template-columns: 1fr 1.4fr 1fr; height: 380px; }
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(10%) contrast(0.96);
  transition: transform 0.7s ease, filter 0.5s ease;
  display: block;
}
.mosaic img:hover { transform: scale(1.04); filter: sepia(4%) contrast(1); }

/* ─── SECTIONS ─── */
section { padding: 90px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--dusty-rose); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem,6vw,5rem);
  color: var(--charcoal); line-height: 1.1; margin-bottom: 18px;
}
.section-title.centered { text-align: center; }
.gold-rule { width: 52px; height: 1px; background: var(--gold); margin-bottom: 26px; }
.gold-rule.centered { margin: 0 auto 34px; }

/* ─── INTRO ─── */
.intro-section { background: var(--cream); padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: center; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: sepia(10%) contrast(0.97); position: relative; z-index: 1;
}
.intro-img-wrap::before {
  content: ''; position: absolute;
  inset: -12px -12px auto auto;
  width: calc(100% - 24px); height: calc(100% - 24px);
  border: 1px solid rgba(200,169,110,0.4);
  pointer-events: none; z-index: 0;
}
.intro-body { font-size: 1rem; color: var(--taupe); font-style: italic; line-height: 1.9; margin-bottom: 26px; }

/* ─── SLIDER ─── */
.slider-section { padding: 80px 0; overflow: hidden; background: var(--warm-white); }
.slider-header { text-align: center; margin-bottom: 46px; padding: 0 48px; }
.slider-track-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 18px; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); padding: 0 48px; }
.slide { flex: 0 0 calc(33.333% - 12px); position: relative; overflow: hidden; cursor: pointer; }
.slide img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: sepia(10%) contrast(0.96); display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.slide:hover img { transform: scale(1.04); filter: sepia(4%) contrast(1); }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(to top, rgba(26,23,20,0.72), transparent);
  color: white; font-family: 'Great Vibes', cursive; font-size: 1.7rem;
  opacity: 0; transform: translateY(8px); transition: all 0.4s ease;
}
.slide:hover .slide-caption { opacity: 1; transform: translateY(0); }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 34px; }
.slider-btn {
  width: 44px; height: 44px; border: 1px solid var(--blush);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--taupe); font-size: 1rem;
}
.slider-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: white; }
.slider-dots { display: flex; gap: 7px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush); cursor: pointer; transition: all 0.3s; border: none;
}
.slider-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ─── CATEGORIES ─── */
.categories-section { background: var(--cream); padding: 90px 0; }
.categories-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--blush); border: 1px solid var(--blush);
}
.category-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3; background: var(--cream);
  text-decoration: none; display: block;
}
.category-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(18%) saturate(0.88) contrast(0.95);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.6s ease;
}
.category-tile:hover img { transform: scale(1.06); filter: sepia(6%) saturate(1) contrast(0.98); }
.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.72) 0%, rgba(26,23,20,0.06) 55%, transparent 100%);
  transition: background 0.5s ease;
}
.category-tile:hover .category-tile-overlay {
  background: linear-gradient(to top, rgba(26,23,20,0.52) 0%, rgba(26,23,20,0.03) 55%, transparent 100%);
}
.category-tile-text { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; }
.category-tile-name {
  font-family: 'Great Vibes', cursive; font-size: 1.85rem; color: white;
  display: block; margin-bottom: 3px; transition: transform 0.4s ease;
}
.category-tile:hover .category-tile-name { transform: translateY(-4px); }
.category-tile-sub {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ─── QUOTE STRIP ─── */
.quote-strip {
  padding: 70px 48px; text-align: center;
  background: var(--charcoal); position: relative; overflow: hidden;
}
.quote-strip::before {
  content: '"'; position: absolute; top: -38px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Great Vibes', cursive; font-size: 17rem;
  color: rgba(200,169,110,0.055); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.9rem,5vw,3.1rem);
  color: var(--light-gold); max-width: 740px; margin: 0 auto 15px; line-height: 1.3;
}
.quote-attr { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.33); }

/* ─── SERVICES ─── */
.services-section { background: var(--warm-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--blush); border: 1px solid var(--blush); margin-top: 50px;
}
.service-card { background: var(--warm-white); padding: 46px 34px; transition: background 0.3s; }
.service-card:hover { background: var(--cream); }
.service-number { font-family: 'Great Vibes', cursive; font-size: 4rem; color: rgba(200,169,110,0.17); line-height: 1; margin-bottom: -8px; }
.service-name { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--charcoal); margin-bottom: 10px; }
.service-desc { font-size: 0.88rem; color: var(--taupe); font-style: italic; line-height: 1.8; }
.service-price { margin-top: 18px; font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dusty-rose); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--cream); padding: 90px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(200,169,110,0.18); margin-top: 50px;
}
.testimonial-card { background: var(--cream); padding: 46px 42px; position: relative; }
.testimonial-card::before {
  content: '"'; font-family: 'Great Vibes', cursive; font-size: 5.5rem;
  color: rgba(200,169,110,0.2); position: absolute; top: 10px; left: 30px; line-height: 1;
}
.testimonial-text { font-size: 0.95rem; font-style: italic; color: var(--taupe); line-height: 1.9; margin-bottom: 22px; position: relative; z-index: 1; }
.testimonial-author { font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dusty-rose); }

/* ─── CONTACT ─── */
.contact-section { background: var(--warm-white); padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start; }
.contact-body { font-size: 0.93rem; color: var(--taupe); font-style: italic; margin-bottom: 34px; line-height: 1.9; }
.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 14px; margin-bottom: 15px; font-size: 0.86rem; color: var(--taupe); align-items: flex-start; }
.contact-details li span:first-child { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dusty-rose); min-width: 66px; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); }
.form-group input, .form-group select, .form-group textarea {
  border: none; border-bottom: 1px solid var(--blush);
  background: transparent; padding: 9px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 0.93rem; color: var(--charcoal);
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 96px; }
.form-group select option { background: var(--warm-white); }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 54px 48px 26px; text-align: center; }
.footer-logo { font-family: 'Great Vibes', cursive; font-size: 2.9rem; color: var(--light-gold); margin-bottom: 17px; display: block; }
.footer-links { display: flex; gap: 26px; justify-content: center; list-style: none; margin-bottom: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.36); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--light-gold); }
.footer-rule { width: 34px; height: 1px; background: rgba(200,169,110,0.33); margin: 0 auto 18px; }
.footer-copy { font-size: 0.66rem; letter-spacing: 0.13em; color: rgba(255,255,255,0.2); }

/* ─── GALLERY PAGE ─── */
.gallery-hero {
  height: 55vh; min-height: 360px;
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 50px; overflow: hidden;
}
.gallery-hero-bg { position: absolute; inset: 0; }
.gallery-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: sepia(15%) contrast(0.95) brightness(0.84); }
.gallery-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,23,20,0.65) 0%, transparent 60%); }
.gallery-hero-text { position: relative; z-index: 2; text-align: center; color: white; }
.gallery-title { font-family: 'Great Vibes', cursive; font-size: clamp(3rem,8vw,7rem); line-height: 1; color: white; margin-bottom: 6px; }
.gallery-sub { font-size: 0.73rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.58); }
.gallery-grid-section { padding: 70px 0; background: var(--cream); }
.masonry-grid { columns: 3; column-gap: 9px; padding: 0 48px; }
.masonry-item { break-inside: avoid; margin-bottom: 9px; overflow: hidden; }
.masonry-item img { width: 100%; display: block; filter: sepia(8%) contrast(0.96); transition: transform 0.6s ease, filter 0.5s ease; }
.masonry-item:hover img { transform: scale(1.03); filter: sepia(3%) contrast(1); }

/* ─── ABOUT ─── */
.about-intro { padding: 120px 0 80px; background: var(--warm-white); }
.about-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 88px; align-items: start; }
.about-portrait-wrap { position: relative; margin-top: 48px; }
.about-portrait-wrap img { width: 100%; aspect-ratio: 2/3; object-fit: cover; filter: sepia(10%) contrast(0.96); }
.retro-stamp {
  position: absolute; bottom: -20px; right: -20px;
  width: 96px; height: 96px; border: 2px dashed var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--warm-white); animation: slowSpin 30s linear infinite reverse;
}
.retro-stamp-inner { font-size: 0.48rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); text-align: center; line-height: 1.5; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--blush); border: 1px solid var(--blush); margin-top: 68px; }
.about-value { background: var(--cream); padding: 46px 34px; }
.about-value-icon { font-family: 'Great Vibes', cursive; font-size: 3rem; color: var(--gold); margin-bottom: 10px; line-height: 1; }
.about-value-title { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); margin-bottom: 11px; }
.about-value p { font-size: 0.91rem; font-style: italic; color: var(--taupe); line-height: 1.85; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s 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; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 13px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,254,249,0.98);
    align-items: center; justify-content: center; gap: 26px; z-index: 1000;
  }
  .nav-links.open a { font-size: 0.92rem; letter-spacing: 0.16em; }
  .nav-links.open .dropdown-menu { display: none; }

  .hero-collage { display: none; }
  .hero-ornament { width: 240px; height: 240px; }
  .section-inner { padding: 0 18px; }
  section { padding: 56px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-img-wrap { max-width: 320px; margin: 0 auto; }
  .photo-strip { height: 180px; }
  .mosaic-4, .mosaic-5, .mosaic-3 { grid-template-columns: 1fr 1fr; height: auto; }
  .mosaic img { aspect-ratio: 4/3; height: 160px; }
  .slide { flex: 0 0 78%; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; padding: 0 14px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait-wrap { max-width: 340px; margin: 0 auto; }
  .about-values { grid-template-columns: 1fr; }
  footer { padding: 42px 18px 22px; }
  .footer-links { gap: 16px; }
  .btn-primary, .btn-ghost { padding: 11px 26px; font-size: 0.76rem; }
  .gallery-hero { height: 42vh; min-height: 280px; }
  .quote-strip { padding: 50px 20px; }
  .slider-section { padding: 56px 0; }
  .slider-track { padding: 0 18px; }
  .slider-header { padding: 0 18px; }
}

@media (max-width: 520px) {
  .hero-name { font-size: 3.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 1; }
  .mosaic-4, .mosaic-5, .mosaic-3 { grid-template-columns: 1fr; }
  .mosaic img { height: 220px; }
  .photo-strip img { flex: 0 0 60%; }
}

/* ══════════════════════════════════════
   CINEMATIC HERO (home page only)
══════════════════════════════════════ */

.cinematic-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ─── SLIDESHOW ─── */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.hero-slide:first-child {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.exiting {
  opacity: 0;
  transform: scale(0.97);
}

/* ─── VIGNETTE ─── */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(20,17,15,0.45) 100%),
    linear-gradient(to bottom, rgba(20,17,15,0.18) 0%, transparent 25%, transparent 65%, rgba(20,17,15,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ─── HERO NAV (centered, on top of slides) ─── */
.hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 48px 24px;
  background: linear-gradient(to bottom, rgba(20,17,15,0.28) 0%, transparent 100%);
  transition: background 0.5s ease;
}

.hero-nav.scrolled {
  position: fixed;
  flex-direction: row;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

/* Logo — big and centered by default */
.hero-nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 3.2rem;
  color: white;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  transition: color 0.3s, font-size 0.4s;
  display: block;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-nav.scrolled .hero-nav-logo {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0;
  text-shadow: none;
}

/* Nav links row */
.hero-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.hero-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.7);
  transition: width 0.35s ease;
}

.hero-nav-links a:hover { color: white; }
.hero-nav-links a:hover::after { width: 100%; }

/* Scrolled state — links turn dark */
.hero-nav.scrolled .hero-nav-links a {
  color: var(--charcoal);
  text-shadow: none;
}
.hero-nav.scrolled .hero-nav-links a::after {
  background: var(--dusty-rose);
}
.hero-nav.scrolled .hero-nav-links a:hover { color: var(--dusty-rose); }

/* Dropdown inside hero nav */
.hero-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(26,23,20,0.92);
  border: 1px solid rgba(200,169,110,0.2);
  min-width: 185px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.hero-nav .dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hero-nav .dropdown-menu li a {
  display: block; padding: 11px 22px;
  font-size: 0.75rem; letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(200,169,110,0.12);
  color: rgba(255,255,255,0.82);
  text-shadow: none;
  white-space: nowrap;
}
.hero-nav .dropdown-menu li a:hover { color: var(--light-gold); }
.hero-nav .dropdown-menu li:last-child a { border-bottom: none; }

.hero-nav.scrolled .dropdown-menu {
  background: var(--warm-white);
  border-color: rgba(200,169,110,0.25);
}
.hero-nav.scrolled .dropdown-menu li a { color: var(--charcoal); }
.hero-nav.scrolled .dropdown-menu li a:hover { color: var(--dusty-rose); }

/* Mobile toggle inside hero nav */
.hero-nav .nav-toggle {
  display: none;
  position: absolute;
  top: 24px; right: 24px;
  z-index: 20;
}
.hero-nav .nav-toggle span { background: white; }
.hero-nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* ─── PHOTOGRAPHER NAME at bottom ─── */
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
  animation: fadeUp 1.2s ease forwards 1s;
  opacity: 0;
}

.hero-photographer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-bottom-line {
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ─── SCROLL INDICATOR ─── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.6s;
}

/* Slide progress dots */
.hero-progress {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.4s, height 0.4s;
  cursor: pointer;
  border: none;
}
.hero-dot.active {
  background: rgba(255,255,255,0.9);
  height: 20px;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   MOBILE — CINEMATIC HERO
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-nav {
    padding: 22px 20px 16px;
  }
  .hero-nav-logo { font-size: 2.4rem; margin-bottom: 10px; }
  .hero-nav-links { display: none; }
  .hero-nav .nav-toggle { display: flex; }

  .hero-nav.scrolled {
    flex-direction: row;
    padding: 10px 20px;
  }
  .hero-nav.scrolled .hero-nav-logo { font-size: 1.9rem; }

  .hero-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,23,20,0.97);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 15;
  }
  .hero-nav-links.open a {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
  }
  .hero-nav-links.open .dropdown-menu { display: none; }

  .hero-photographer-name { font-size: 0.65rem; letter-spacing: 0.25em; }
  .hero-bottom-line { width: 30px; }
  .hero-bottom { bottom: 28px; }

  .hero-progress { display: none; }
}

/* ─── MARQUEE PHOTO STRIP ─── */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  background: var(--cream);
  padding: 0;
  line-height: 0;
}

.marquee-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track img {
  height: 280px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  filter: sepia(8%) contrast(0.96);
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
}

.marquee-track img:hover {
  filter: sepia(0%) contrast(1);
  transform: scale(1.03);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .marquee-track img { height: 180px; }
}

@media (max-width: 520px) {
  .marquee-track img { height: 130px; }
}

/* ══════════════════════════════════════
   COMPREHENSIVE DEVICE OPTIMIZATION
   Tablet: 768-1024px
   Mobile L: 425px
   Mobile M: 375px
   Mobile S: 320px
══════════════════════════════════════ */

/* ─── TABLET (iPad, iPad Mini, iPad Air) ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .section-inner { padding: 0 36px; }
  .intro-grid { grid-template-columns: 1fr 1.3fr; gap: 48px; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-intro-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 3; padding: 0 36px; }
  .mosaic-4 { height: 260px; }
  .mosaic-5 { height: 280px; }
  .mosaic-3 { height: 300px; }
  .slide { flex: 0 0 calc(50% - 9px); }
  .hero-nav-logo { font-size: 2.8rem; }
  .hero-nav-links { gap: 24px; }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-table { padding: 0 36px; }
}

/* ─── LARGE MOBILE / SMALL TABLET ─── */
@media (max-width: 768px) {
  nav { padding: 12px 18px; }
  nav.scrolled { padding: 10px 18px; }

  .hero-nav { padding: 18px 18px 12px; }
  .hero-nav-logo { font-size: 2.2rem; margin-bottom: 0; }
  .hero-nav-links { display: none; }
  .hero-nav .nav-toggle { display: flex; }
  .hero-bottom { bottom: 24px; gap: 14px; }
  .hero-bottom-line { width: 30px; }
  .hero-photographer-name { font-size: 0.62rem; letter-spacing: 0.25em; }

  .section-inner { padding: 0 18px; }
  section { padding: 56px 0; }
  .section-title { font-size: clamp(2.4rem, 7vw, 3.5rem); }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-img-wrap { max-width: 300px; margin: 0 auto; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .category-tile-name { font-size: 1.6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 28px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait-wrap { max-width: 300px; margin: 0 auto; }
  .about-values { grid-template-columns: 1fr; }

  .masonry-grid { columns: 2; padding: 0 12px; column-gap: 8px; }
  .masonry-item { margin-bottom: 8px; }

  .mosaic-4, .mosaic-5, .mosaic-3 { 
    grid-template-columns: 1fr 1fr; 
    height: auto; 
  }
  .mosaic img { height: 150px; }

  .marquee-track img { height: 160px; }

  .slide { flex: 0 0 75%; }
  .slider-track { padding: 0 18px; gap: 12px; }
  .slider-header { padding: 0 18px; }

  .packages-grid { grid-template-columns: 1fr; }
  .package-card { padding: 36px 28px; }

  .pricing-row { grid-template-columns: 1fr; gap: 8px; }
  .pricing-amount { text-align: left; }

  .gallery-hero { height: 40vh; min-height: 260px; }
  .gallery-title { font-size: clamp(2.8rem, 8vw, 5rem); }

  footer { padding: 40px 18px 22px; }
  .footer-logo { font-size: 2.4rem; }
  .footer-links { gap: 14px; }

  .quote-strip { padding: 48px 18px; }
  .quote-text { font-size: clamp(1.6rem, 5vw, 2.5rem); }

  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.76rem; letter-spacing: 0.16em; }

  .contact-page-top { padding: 120px 18px 60px; }
  .services-page-hero { padding: 120px 18px 60px; }
  .galleries-hero { padding: 120px 18px 60px; }
  .about-intro { padding: 100px 0 60px; }
}

/* ─── MOBILE (phones) ─── */
@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
  .hero-ornament { display: none; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-nav { padding: 14px 16px 10px; }
  .hero-nav-logo { font-size: 1.9rem; }

  .section-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .section-inner { padding: 0 16px; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .category-tile { aspect-ratio: 3/4; }
  .category-tile-name { font-size: 1.4rem; }

  .masonry-grid { columns: 1; padding: 0 12px; }

  .mosaic-4, .mosaic-5, .mosaic-3 { grid-template-columns: 1fr; }
  .mosaic img { height: 220px; }

  .marquee-track img { height: 130px; }

  .slide { flex: 0 0 88%; }

  .testimonial-card { padding: 32px 20px; }
  .testimonial-card::before { font-size: 4rem; left: 16px; }

  .service-card { padding: 30px 22px; }
  .service-number { font-size: 3rem; }
  .service-name { font-size: 1.7rem; }

  .package-name { font-size: 2.2rem; }
  .package-price { font-size: 2.6rem; }

  .about-value { padding: 36px 24px; }

  footer { padding: 36px 16px 20px; }
  .footer-logo { font-size: 2.1rem; }
  .footer-links { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .footer-links a { font-size: 0.62rem; }

  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; } /* Prevents iOS zoom on focus */

  .retro-stamp { width: 80px; height: 80px; bottom: -16px; right: -16px; }

  .btn-primary, .btn-ghost { 
    padding: 11px 22px; 
    font-size: 0.73rem; 
    letter-spacing: 0.14em; 
  }

  .hero-scroll-indicator { display: none; }
  .hero-progress { display: none; }
}

/* ─── SMALL MOBILE (320px-375px) ─── */
@media (max-width: 375px) {
  .hero-nav-logo { font-size: 1.7rem; }
  .hero-name { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .footer-logo { font-size: 1.9rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-img-wrap { max-width: 260px; }
}

/* ─── LANDSCAPE MOBILE ─── */
@media (max-height: 500px) and (orientation: landscape) {
  .cinematic-hero { height: 100vw; min-height: 300px; }
  .hero-nav { padding: 10px 18px 6px; flex-direction: row; justify-content: space-between; }
  .hero-nav-logo { font-size: 1.8rem; margin-bottom: 0; }
  .hero-nav-links { display: none; }
  .hero-nav .nav-toggle { display: flex; }
  .hero-bottom { bottom: 12px; }
  .gallery-hero { height: 80vw; }
}

/* ─── HIGH DPI / RETINA ─── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-slide { background-size: cover; }
}

/* ─── TOUCH DEVICE IMPROVEMENTS ─── */
@media (hover: none) and (pointer: coarse) {
  /* Show captions always on touch since hover doesn't exist */
  .slide-caption { opacity: 1; transform: translateY(0); }
  .category-tile-name { transform: none !important; }
  
  /* Larger tap targets */
  .nav-toggle { padding: 8px; }
  .slider-btn { width: 52px; height: 52px; }
  .footer-links a { padding: 4px 0; }
  
  /* Remove hover-dependent photo strip expand */
  .photo-strip img { flex: 1 1 0; }
  
  /* Pause marquee on touch devices (better UX) */
  .marquee-track { animation-duration: 60s; }
}

/* ─── PRINT ─── */
@media print {
  nav, .hero-scroll-indicator, .hero-progress, 
  .slider-controls, .marquee-wrap, .quote-strip { display: none; }
  .cinematic-hero { height: auto; }
  body { font-size: 12pt; }
}

/* ─── FINAL POLISH & BUG FIXES ─── */

/* Fix: ensure page-content never flashes invisible on slow connections */
.page-content {
  animation-fill-mode: forwards;
  animation-play-state: running;
}

/* Fix: gallery hero image never shows broken state */
.gallery-hero-bg img {
  background: var(--blush);
}

/* Fix: masonry images maintain aspect ratio and never break layout */
.masonry-item img {
  max-width: 100%;
  height: auto;
  min-height: 120px;
  background: var(--blush);
}

/* Fix: slider never overflows on any screen */
.slider-track-wrap { overflow: hidden; width: 100%; }
.slider-track { will-change: transform; }

/* Fix: buttons never have text selection on click */
.btn-primary, .btn-ghost, .slider-btn, .nav-toggle {
  user-select: none;
  -webkit-user-select: none;
}

/* Fix: category tiles never show broken image background */
.category-tile img { background: var(--blush); }

/* Fix: form inputs readable on all browsers */
.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238c7b72' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
  cursor: pointer;
}

/* Fix: nav dropdown z-index on all pages */
.dropdown-menu { z-index: 1001; }

/* Fix: smooth scrolling respects reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .hero-slide { transition: none !important; }
  .retro-stamp, .hero-ornament { animation: none; }
}

/* Fix: footer always at bottom even on short pages */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-content { flex: 1; }
.cinematic-hero + .page-content { flex: 1; }

/* Fix: images load gracefully */
img {
  display: block;
  max-width: 100%;
}

/* Fix: ensure all links have pointer cursor */
a { cursor: pointer; }

/* Fix: prevent horizontal scroll on mobile */
html, body { max-width: 100%; overflow-x: hidden; }

/* ══════════════════════════════════════
   MOBILE NAV — DEFINITIVE FIX
   Overrides everything above
══════════════════════════════════════ */

@media (max-width: 900px) {

  /* ─── Hide desktop nav links, show toggle ─── */
  .nav-links { display: none !important; }
  .hero-nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .hero-nav .nav-toggle { display: flex !important; }

  /* ─── OPEN STATE — full screen overlay ─── */
  .nav-links.open,
  .hero-nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(26, 23, 20, 0.97) !important;
    z-index: 9998 !important;
    gap: 8px !important;
    overflow-y: auto !important;
    padding: 80px 40px 40px !important;
    margin: 0 !important;
    list-style: none !important;
  }

  /* ─── Nav links inside open menu ─── */
  .nav-links.open > li,
  .hero-nav-links.open > li {
    width: 100%;
    text-align: center;
  }

  .nav-links.open > li > a,
  .hero-nav-links.open > li > a {
    display: block !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 14px 0 !important;
    text-shadow: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    transition: color 0.2s !important;
    width: 100% !important;
  }

  .nav-links.open > li > a:hover,
  .hero-nav-links.open > li > a:hover {
    color: var(--gold) !important;
  }

  /* ─── Hide dropdowns inside mobile menu ─── */
  .nav-links.open .dropdown-menu,
  .hero-nav-links.open .dropdown-menu {
    display: none !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  /* Show dropdown when JS sets display:block */
  .nav-links.open .dropdown-menu[style*="block"],
  .hero-nav-links.open .dropdown-menu[style*="block"] {
    display: block !important;
  }

  .nav-links.open .dropdown-menu li a,
  .hero-nav-links.open .dropdown-menu li a {
    display: block !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.15em !important;
    color: rgba(255,255,255,0.55) !important;
    padding: 8px 0 !important;
    text-align: center !important;
    border-bottom: none !important;
    text-shadow: none !important;
  }

  /* ─── Toggle button always on top ─── */
  #nav-toggle {
    position: relative !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 6px !important;
  }

  #nav-toggle span {
    display: block !important;
    width: 26px !important;
    height: 1.5px !important;
    background: var(--charcoal) !important;
    transition: all 0.3s !important;
  }

  /* Toggle spans white when hero nav (dark background) */
  .hero-nav #nav-toggle span,
  .hero-nav:not(.scrolled) #nav-toggle span {
    background: white !important;
  }

  .hero-nav.scrolled #nav-toggle span {
    background: var(--charcoal) !important;
  }

  /* ─── Hero nav layout on mobile ─── */
  .hero-nav {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
  }

  .hero-nav-logo {
    font-size: 2rem !important;
    margin-bottom: 0 !important;
  }

  .hero-nav.scrolled {
    flex-direction: row !important;
    padding: 10px 20px !important;
  }

  /* ─── Regular nav on mobile ─── */
  nav:not(.hero-nav) {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 20px !important;
  }

  nav:not(.hero-nav).scrolled {
    padding: 10px 20px !important;
  }

}

/* ─── SLIDER SLIDE LINKS ─── */
.slide a {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.slide a img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: sepia(10%) contrast(0.96);
}
.slide a:hover img { transform: scale(1.04); filter: sepia(4%) contrast(1); }
.slide a .slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(to top, rgba(26,23,20,0.72), transparent);
  color: white;
  font-family: 'Great Vibes', cursive;
  font-size: 1.7rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.slide a:hover .slide-caption { opacity: 1; transform: translateY(0); }
