/* ── EELEGANT EVENTS — main.css ─────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  height: 96px;
  background: var(--ivory);
  border-bottom: 1px solid var(--hairline);
  transition: background .4s, border-color .4s, box-shadow .4s;
}

.site-nav.scrolled {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.site-nav.scrolled .nav-hamburger {
  pointer-events: auto;
}

/* Transitions for navigation elements that slide out on scroll */
.site-nav .nav-left,
.site-nav .nav-brand,
.site-nav .nav-right > :not(.nav-hamburger) {
  transition: transform .4s ease, opacity .4s ease;
}

.site-nav.scrolled .nav-left,
.site-nav.scrolled .nav-right > :not(.nav-hamburger) {
  transform: translateY(-120px);
  opacity: 0;
}

.site-nav.scrolled .nav-brand {
  transform: translate(-50%, calc(-50% - 120px));
  opacity: 0;
}

/* Portfolio page: nav stays in place, never slides away on scroll */
.gallery-page .site-nav.scrolled {
  background: var(--ivory);
  border-bottom-color: var(--hairline);
  pointer-events: auto;
}

.gallery-page .site-nav.scrolled .nav-left,
.gallery-page .site-nav.scrolled .nav-right > :not(.nav-hamburger) {
  transform: none;
  opacity: 1;
}

.gallery-page .site-nav.scrolled .nav-brand {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Pages with permanently visible title bar (Home, About, Enquire) */
body.nav-fixed .site-nav,
body.nav-fixed .site-nav.scrolled {
  background: var(--ivory) !important;
  border-bottom-color: var(--hairline) !important;
  pointer-events: auto !important;
}

body.nav-fixed .site-nav.scrolled .nav-left,
body.nav-fixed .site-nav.scrolled .nav-right > :not(.nav-hamburger) {
  transform: none !important;
  opacity: 1 !important;
}

body.nav-fixed .site-nav.scrolled .nav-brand {
  transform: translate(-50%, -50%) !important;
  opacity: 1 !important;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  flex: 1;
}

.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-body);
  font-size: clamp(11px, .85vw, 13px);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity .25s;
}

.nav-link:hover { opacity: .45; }

.nav-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

.nav-brand-name {
  font-family: 'Makcasa', Georgia, serif;
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--noir);
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.nav-brand-sub {
  font-family: 'Makcasa', Georgia, serif;
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: .35em;
  text-indent: .35em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 1;
  display: block;
  margin-top: 4px;
}

.nav-inquire {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .08em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity .25s;
}
.nav-inquire:hover { opacity: .45; }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--noir);
  transition: transform .3s, opacity .3s;
}

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400;
  color: var(--champagne);
  letter-spacing: .04em;
  transition: color .25s;
}
.nav-overlay a:hover { color: var(--ivory); }

.nav-overlay-close {
  position: absolute;
  top: 24px; right: clamp(24px, 4vw, 60px);
  font-size: 24px;
  color: var(--champagne);
  cursor: pointer;
  background: none;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   S1 — HERO VIDEO
═══════════════════════════════════════════════════════════════ */

.hero {
  width: 100%;
  height: calc(100svh - 96px);
  margin-top: 96px;
  position: relative;
  overflow: hidden;
  background: var(--noir);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.hero-video.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(39,39,39,.2) 0%, rgba(39,39,39,.45) 100%);
}

.hero-caption {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding-inline: 24px;
}

.hero-caption-location {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(249,249,245,.6);
  display: block;
  margin-bottom: 8px;
}

.hero-caption-text {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  font-style: italic;
  color: rgba(249,249,245,.85);
  letter-spacing: .06em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(249,249,245,.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(249,249,245,.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249,249,245,.8);
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   S2 — ETHOS (monogram + headline + EE WEDDINGS)
═══════════════════════════════════════════════════════════════ */

.ethos {
  background: var(--champagne);
  padding: clamp(56px, 6vw, 96px) 0 clamp(64px, 7vw, 104px);
}

.ethos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.ethos-left {
  display: flex;
  flex-direction: column;
  padding-right: clamp(0px, 2vw, 48px);
}

.ethos-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 108px;
  border: 1px solid var(--noir);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.ethos-monogram .mono-ee {
  display: inline-flex;
  align-items: center;
  font-family: 'Makcasa', var(--font-serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
  color: var(--noir);
}

.ethos-monogram .mono-e2 {
  margin-left: -0.3em;
  transform: translateY(0.28em);
}

.ethos-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--noir);
  margin: 0;
}

.ethos-headline em { font-style: italic; }

.ethos-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  max-width: 440px;
  margin-top: clamp(32px, 5vw, 60px);
}

.ethos-left .btn-text {
  margin-top: clamp(28px, 3vw, 40px);
  align-self: flex-start;
  color: var(--noir);
  opacity: 1;
}

.ethos-right { position: relative; }

.ethos-photo {
  height: clamp(400px, 44vw, 540px);
  width: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-left: auto;
}

/* ═══════════════════════════════════════════════════════════════
   S2.5 — OUR SERVICES (pinned text · scrolling image track)
═══════════════════════════════════════════════════════════════ */

.services-scroll {
  background: url('../assets/site-images/services-texture.webp') center / cover no-repeat;
  background-attachment: fixed;
}

.services-scroll-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 0;
  width: 100%;
}

.services-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: clamp(56px, 7vw, 110px) clamp(40px, 5vw, 88px);
}

.services-text > * {
  max-width: 560px;
}

.services-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .5;
  margin-bottom: 28px;
  display: block;
}

.services-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 5.8vw, 86px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--noir);
  margin: 0;
}

.services-headline em {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 400;
}

.services-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-top: clamp(28px, 3.5vw, 44px);
}

.services-list {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: .85;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.services-cta {
  margin-top: clamp(28px, 3vw, 40px);
  align-self: flex-start;
  color: var(--noir);
  opacity: 1;
}

/* right column — tall portrait images stacked, scroll naturally with the page
   (breathing space on the right, texture shows through) */
.services-viewport {
  padding: clamp(48px, 6vw, 96px) clamp(40px, 5vw, 100px) clamp(48px, 6vw, 96px) 0;
}

.services-track {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 34px);
}

.services-slide {
  flex: 0 0 auto;
  height: clamp(520px, 88vh, 920px);
  overflow: hidden;
}

.services-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* mobile / no-pin fallback — stacks normally, no track translate */
@media (max-width: 860px) {
  .services-scroll-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(28px, 6vw, 48px);
  }
  .services-text {
    position: static;
    min-height: 0;
    padding: clamp(48px, 11vw, 72px) clamp(24px, 6vw, 40px);
  }
  .services-viewport {
    height: auto;
    overflow: visible;
    padding: 0 clamp(24px, 6vw, 40px) clamp(56px, 12vw, 80px);
  }
  .services-track {
    transform: none !important;
  }
  .services-slide {
    height: clamp(360px, 90vw, 560px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   S3 — OUR ESSENCE (quote + floating images)
═══════════════════════════════════════════════════════════════ */

.essence {
  --gal-w: clamp(130px, 15vw, 240px);
  --gal-gutter: clamp(40px, 5vw, 88px);
  background: var(--ivory);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(40px, 5vw, 80px);
}

.essence .container { width: 100%; }

.essence-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.essence-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .5;
  margin-bottom: 32px;
  display: block;
}

.essence-quote {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.4vw, 62px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.005em;
  color: var(--noir);
  /* always fits between the two side galleries — never overlaps them */
  max-width: min(820px, calc(100vw - 2 * (var(--gal-w) + var(--gal-gutter))));
  margin: 0 auto 34px;
}

.essence-quote em { font-style: italic; }

.essence-sub {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
}

/* Vertical side galleries — sit in the negative space, never touch the quote */
.essence-gallery {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--gal-w);
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.essence-gallery--left  { left: 0; }
.essence-gallery--right { right: 0; }

.essence-gallery-track {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1vw, 20px);
  will-change: transform;
}

.essence-gallery-track img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* Mobile decorative marquees — hidden on desktop, where the vertical
   scroll-synced galleries above are used instead */
.essence-marquee { display: none; }

/* mobile — swap the vertical side galleries for two full-bleed
   horizontal marquee bands framing the quote, top and bottom */
@media (max-width: 860px) {
  .essence {
    min-height: 0;
    flex-direction: column;
    padding: clamp(90px, 18vw, 140px) 0;
  }
  .essence-gallery { display: none; }
  .essence-quote { max-width: 100%; }

  .essence-marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  }
  .essence-marquee--top { margin-bottom: clamp(32px, 7vw, 56px); }
  .essence-marquee--bottom { margin-top: clamp(32px, 7vw, 56px); }

  .essence-marquee-track {
    display: flex;
    width: max-content;
    gap: 8px;
    animation: essenceMarquee 46s linear infinite;
  }
  .essence-marquee--bottom .essence-marquee-track {
    animation-direction: reverse;
    animation-duration: 54s;
  }

  .essence-marquee-track img {
    height: clamp(84px, 24vw, 136px);
    width: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(30%);
    flex-shrink: 0;
    display: block;
  }
}

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

/* ═══════════════════════════════════════════════════════════════
   S3.5 — BEHIND THE BRAND (founder split)
═══════════════════════════════════════════════════════════════ */

.founder {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: stretch;
  position: relative;
  min-height: clamp(560px, 84vh, 880px);
  background: var(--ivory);
  overflow: hidden;
}

.founder-photo { overflow: hidden; }

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-panel {
  background: var(--champagne) url('../assets/site-images/founder-texture.webp') center / cover no-repeat;
  color: var(--noir);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px);
}

.founder-eyebrow {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(28px, 4vw, 56px);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(51, 32, 23, .6);
}

.founder-name {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.01em;
  font-size: clamp(54px, 7vw, 108px);
  color: var(--noir);
  margin: 0 0 clamp(24px, 3vw, 40px);
}

.founder-bio {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 460px;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.founder-cta {
  align-self: flex-start;
  color: var(--noir);
  opacity: 1;
  border-bottom: 1px solid rgba(39, 39, 39, .4);
  padding-bottom: 4px;
}

.founder-cta:hover { opacity: .6; }

/* EE monogram straddling the seam */
.founder-monogram {
  width: 84px;
  height: 100px;
  margin-bottom: clamp(20px, 2vw, 32px);
  border: 1px solid rgba(39, 39, 39, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.founder-monogram .mono-ee {
  display: inline-flex;
  align-items: center;
  font-family: 'Makcasa', var(--font-serif);
  font-size: 68px;
  line-height: 1;
  color: var(--noir);
}

.founder-monogram .mono-e2 {
  margin-left: -0.3em;
  transform: translateY(0.28em);
}

@media (max-width: 860px) {
  .founder {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .founder-photo { height: clamp(380px, 80vw, 560px); }
  .founder-eyebrow { color: rgba(51, 32, 23, .6); }
  .founder-monogram {
    top: clamp(300px, 76vw, 500px);
    width: 72px;
    height: 86px;
  }
  .founder-monogram .mono-ee { font-size: 52px; }
}

/* ═══════════════════════════════════════════════════════════════
   S4 — WAYS TO BEGIN (headline + 3 hover cards)
═══════════════════════════════════════════════════════════════ */

.ways {
  background: var(--ivory);
  padding-bottom: clamp(24px, 3vw, 48px);
}

.ways-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-top: clamp(80px, 10vw, 120px);
}

.ways-headline {
  font-family: 'Makcasa', Georgia, serif;
  line-height: 1;
  color: var(--noir);
}

.ways-headline .script-line {
  font-family: var(--font-script);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.ways-headline .serif-line {
  font-family: 'Makcasa', Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  display: block;
  letter-spacing: -.01em;
}

.ways-right {
  padding-bottom: 12px;
  padding-left: clamp(24px, 4vw, 60px);
}

.ways-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 440px;
}

.ways-links {
  display: flex;
  gap: 32px;
}

.ways-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--noir);
  border-bottom: 1px solid var(--noir);
  padding-bottom: 2px;
  transition: opacity .25s;
}
.ways-link:hover { opacity: .55; }

/* 3-photo hover grid */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: 0 clamp(80px, 10vw, 160px);
}

.ways-card {
  position: relative;
  aspect-ratio: 5 / 8;
  overflow: hidden;
  cursor: pointer;
}

.ways-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .5s;
  filter: grayscale(20%);
}

.ways-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Explore Services card — black & white only, stays B&W on hover */
.ways-card--bw img { filter: grayscale(100%); }
.ways-card--bw:hover img { filter: grayscale(100%); }

.ways-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39,39,39,.35);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.5vw, 36px);
}

.ways-card:hover .ways-card-overlay { opacity: 1; }

.ways-card-label {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: .02em;
  line-height: 1.15;
  text-align: left;
  transform: translateY(10px);
  transition: transform .4s var(--ease-soft);
}

.ways-card-label em {
  display: block;
  font-family: var(--font-script);
  font-style: normal;
  font-size: 0.85em;
}

.ways-card:hover .ways-card-label { transform: translateY(0); }

.ways-card-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .15em;
  color: var(--ivory);
  opacity: .7;
  transform: translateY(-10px);
  transition: transform .4s var(--ease-soft);
}

.ways-card:hover .ways-card-num { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   S5 — TESTIMONIAL QUOTE
═══════════════════════════════════════════════════════════════ */

.testimonial-feature {
  background: var(--champagne);
  padding: clamp(32px, 5vw, 72px) 0;
  text-align: center;
}

.testimonial-feature blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--noir);
  max-width: 1000px;
  margin: 0 auto 40px;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-label {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
}

.testimonial-client {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════
   S6 — VENUE MARQUEE STRIP
═══════════════════════════════════════════════════════════════ */

.venue-strip {
  background: var(--champagne);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.venue-strip-inner {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
}

.venue-strip-inner span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 32px;
  opacity: .7;
}

.venue-strip-inner .dot {
  color: var(--emerald);
  opacity: 1;
  padding: 0;
  font-size: 14px;
}

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

/* ═══════════════════════════════════════════════════════════════
   S7 — GALLERY GRID (converging rows)
═══════════════════════════════════════════════════════════════ */

.gallery-section {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding-block: clamp(32px, 4vw, 64px);
}

.gallery-rows-wrap {
  position: relative;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.gallery-row + .gallery-row { margin-top: 3px; }

.gallery-cell {
  height: clamp(200px, 28vw, 380px);
  overflow: hidden;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-soft);
}

.gallery-cell:hover img { transform: scale(1.04); }

/* Centered CTA overlay */
.gallery-cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  z-index: 3;
}

.gallery-cta-headline {
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(39,39,39,.5);
  line-height: .95;
  margin-bottom: 20px;
}

.gallery-cta-headline .script-part {
  font-family: var(--font-script);
  font-size: clamp(32px, 4.5vw, 64px);
  display: block;
  margin-bottom: 4px;
}

.gallery-cta-headline .serif-part {
  font-family: 'Makcasa', Georgia, serif;
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 400;
  display: block;
  letter-spacing: -.01em;
}

.gallery-cta-body {
  font-size: 14px;
  color: rgba(249,249,245,.85);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(39,39,39,.5);
}

.gallery-cta .btn-pill { pointer-events: auto; }

/* dark scrim behind CTA text */
.gallery-scrim {
  position: absolute;
  inset: 0;
  background: rgba(39,39,39,.32);
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   S8 — FULL-WIDTH IMAGE
═══════════════════════════════════════════════════════════════ */

.split-cta {
  padding: 40px;
  position: relative;
}

.split-cta-img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--hairline);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(60px, 8vw, 100px) 0;
}

.footer-brand-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--emerald);
  margin-bottom: 20px;
}

.footer-brand-monogram .mono-ee {
  display: inline-flex;
  align-items: center;
  font-family: 'Makcasa', var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--emerald);
}

.footer-brand-monogram .mono-e2 {
  margin-left: -0.3em;
  transform: translateY(0.28em);
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .6;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-contact {
  font-size: 13px;
  color: var(--ink);
  opacity: .7;
  line-height: 2;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .85;
}
.footer-whatsapp:hover { opacity: 1; }

.wa-float {
  position: fixed;
  z-index: 999;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .25s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 600px) {
  .wa-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  align-content: start;
  padding-top: 4px;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--noir);
  transition: color .25s;
  line-height: 1.3;
}
.footer-nav a:hover { color: var(--emerald); }

/* Social marquee strip */
.footer-marquee {
  border-top: 1px solid var(--hairline);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.footer-marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 22s linear infinite;
}

.footer-marquee-inner span {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
  padding: 0 28px;
}

.footer-marquee-inner .em {
  color: var(--emerald);
  opacity: 1;
}

/* Image strip */
.footer-img-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  height: clamp(200px, 28vw, 340px);
}

.footer-img-cell {
  overflow: hidden;
}

.footer-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-soft);
  filter: grayscale(10%);
}

.footer-img-cell:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

/* Footer copyright */
.footer-copy {
  border-top: 1px solid var(--hairline);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy span {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink);
  opacity: .45;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .ethos-inner { grid-template-columns: 1fr; }
  .ethos-photo { min-height: clamp(380px, 92vw, 520px); margin-left: auto; margin-right: auto; }

  .ways-header { grid-template-columns: 1fr; gap: 32px; }
  .ways-grid { grid-template-columns: 1fr; padding: 0 clamp(20px, 5vw, 40px); }
  .ways-card { width: 100%; height: auto; }

  /* touch devices have no :hover — keep card captions visible always */
  .ways-card-overlay { opacity: 1; background: rgba(39,39,39,.45); }
  .ways-card-label,
  .ways-card-num { transform: translateY(0); }



  .footer-main { grid-template-columns: 1fr; }
  .footer-img-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-img-strip .footer-img-cell:nth-child(n+4) { display: none; }
}

@media (max-width: 600px) {
  .site-nav .nav-left,
  .site-nav .nav-right > :not(.nav-hamburger) { display: none; }

  .nav-hamburger {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-right: -11px;
  }

  .nav-overlay-close {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-row { grid-template-columns: repeat(3, 1fr); }
  .gallery-row .gallery-cell:nth-child(n+4) { display: none; }

  .ways-grid { gap: 2px; }

  .footer-nav { gap: 14px 24px; }

  .venue-strip-inner span { padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER-ONLY NAVIGATION OVERRIDES
   Hides title bar & standard nav links on specific subpages,
   leaving only the floating hamburger button (two horizontal lines)
═══════════════════════════════════════════════════════════════ */

body.hamburger-only .site-nav {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  pointer-events: none; /* Let clicks pass through the invisible bar */
}

/* Hide everything except the hamburger button */
body.hamburger-only .site-nav .nav-left,
body.hamburger-only .site-nav .nav-brand,
body.hamburger-only .site-nav .nav-right > :not(.nav-hamburger) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Keep the hamburger button clickable */
body.hamburger-only .site-nav .nav-hamburger {
  pointer-events: auto !important;
}

/* Layout overrides for subpages that do not display the 96px header */
body.hamburger-only .page-top {
  margin-top: 0 !important;
}

body.hamburger-only .pf-hero--scroll .pf-hero-sticky {
  top: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
}

body.hamburger-only .wd-hero {
  height: 100vh !important;
  height: 100dvh !important;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE TRANSITIONS — White Fade In / Fade Out
═══════════════════════════════════════════════════════════════ */

.page-fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 999999;
  pointer-events: none;
  background: var(--ivory);
  opacity: 1;
  transition: opacity 400ms ease;
}

/* Once page is ready, fade overlay to transparent */
body.page-loaded .page-fade-overlay {
  opacity: 0;
}

/* On exit, fade overlay back in */
body.page-exiting .page-fade-overlay {
  opacity: 1;
  transition: opacity 350ms ease;
}

/* Prevent scroll during transitions */
body.page-exiting {
  overflow: hidden !important;
}

/* HIDDEN SECTION — Before & After page links (re-enable by removing this block) */
a[href="before-after.html"] { display: none !important; }


