/* ============================================================
   LS Visuals — Design Tokens
   ============================================================ */
:root {
  --ivory: #faf7f1;
  --ivory-soft: #f3ede0;
  --ivory-deep: #ece3d1;
  --black: #0e0d0c;
  --black-soft: #33312c;
  --black-dim: #6b675e;

  --gold-light: #e8ce8b;
  --gold: #c9a24b;
  --gold-dark: #9c7a32;
  --gold-gradient: linear-gradient(135deg, #f1dea3 0%, #c9a24b 48%, #97742f 100%);
  --gold-gradient-soft: linear-gradient(135deg, #f6e9c4 0%, #d9b768 100%);

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-script: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --nav-h: 92px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-slow: 1.1s;
  --dur-med: 0.6s;
  --dur-fast: 0.3s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--ivory);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-italic {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.red-italic {
  font-style: italic;
  background: linear-gradient(135deg, #f08a7f 0%, #d32f2f 45%, #8c1c1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading .eyebrow::before {
  display: none;
}
.about-body .eyebrow::before {
  display: none;
}
.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-top: 18px;
}
.section-heading p {
  margin-top: 18px;
  color: var(--black-dim);
  font-size: 1.05rem;
}
.flourish-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.flourish-line {
  width: 70px;
  height: 1px;
  background: var(--gold-gradient);
}
.flourish-dot {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.flourish-dot span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-gradient);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}
.section-tight {
  padding: clamp(48px, 6vw, 88px) 0;
}
.section-alt {
  background: var(--ivory-soft);
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 22px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 8px 24px -10px rgba(201, 162, 75, 0.65);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(201, 162, 75, 0.8);
}
.btn-outline {
  border-color: currentColor;
  color: var(--ivory);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--ivory);
  transform: translateY(-2px);
}
.btn-outline-gold {
  border-color: var(--gold);
  color: var(--black);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline-gold-text {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-outline-gold-text:hover {
  background: var(--gold-gradient);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 11px 24px;
  font-size: 0.65rem;
}

/* ============================================================
   Intro Splash
   ============================================================ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
#intro.is-hidden {
  display: none;
}
.intro-skip {
  position: absolute;
  bottom: 34px;
  right: 34px;
  z-index: 5;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black-dim);
  border: 1px solid var(--ivory-deep);
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: intro-skip-in 0.6s ease-out 1s forwards;
}
@keyframes intro-skip-in {
  to { opacity: 1; }
}
.intro-welcome {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4.2rem, 15vw, 11rem);
  white-space: nowrap;
  opacity: 0;
  text-shadow: 0 0 60px rgba(201, 162, 75, 0.35);
}
.intro-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  transform: translate(-50%, -50%) scale(0.7);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 222, 163, 0.55) 0%, rgba(201, 162, 75, 0.22) 35%, rgba(201, 162, 75, 0) 70%);
  opacity: 0;
  pointer-events: none;
  filter: blur(4px);
}
.intro-flash {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(circle, rgba(255, 252, 240, 0.9) 0%, rgba(241, 222, 163, 0.4) 40%, rgba(241, 222, 163, 0) 72%);
  opacity: 0;
  pointer-events: none;
}
.intro-dove {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
.intro-dove img {
  width: 100%;
  height: auto;
  transform-origin: 50% 40%;
  animation: dove-flap 0.32s ease-in-out infinite;
}
@keyframes dove-flap {
  0%, 100% { transform: scaleY(1) rotate(0deg); }
  50% { transform: scaleY(0.82) rotate(-5deg); }
}
#intro-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s;
  opacity: 0.7;
}
.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  opacity: 1;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Gold sparkle canvas accents */
.sparkle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.firework-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.section.has-hearts {
  position: relative;
  overflow: hidden;
}
.section.has-hearts > .container {
  position: relative;
  z-index: 2;
}
.heart-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.section.has-coins {
  position: relative;
  overflow: hidden;
}
.section.has-coins > .container {
  position: relative;
  z-index: 2;
}
.coin-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled,
.nav-solid {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--ivory-deep);
  box-shadow: 0 12px 30px -20px rgba(14, 13, 12, 0.35);
}

/* Bar row — left links / centered logo+social / right links */
.nav-bar {
  min-height: 158px;
  display: flex;
  align-items: center;
  padding: 20px 0;
  transition: min-height var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
}
.nav.is-scrolled .nav-bar,
.nav-solid .nav-bar {
  min-height: 118px;
  padding: 12px 0;
}
.nav-bar-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
  width: 100%;
  padding: 0 clamp(24px, 4vw, 64px);
}
.nav-bar-left,
.nav-bar-right {
  display: flex;
  align-items: center;
  gap: 48px;
  min-width: 0;
}
.nav-bar-left {
  justify-self: start;
}
.nav-bar-right {
  justify-self: end;
}
.nav-bar-center {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.nav-center-logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-wordmark {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  letter-spacing: 0.01em;
  color: var(--ivory);
  transition: color var(--dur-med);
  white-space: nowrap;
  line-height: 1;
}
.nav.is-scrolled .nav-wordmark,
.nav-solid .nav-wordmark {
  color: var(--black-soft);
}
.nav-center-logo-link img {
  width: 116px;
  height: 116px;
  transition: width var(--dur-med) var(--ease-out), height var(--dur-med) var(--ease-out);
}
.nav.is-scrolled .nav-center-logo-link img,
.nav-solid .nav-center-logo-link img {
  width: 86px;
  height: 86px;
}
.nav-social-inline {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-social-inline svg {
  width: 26px;
  height: 26px;
  display: block;
}
.nav-social-inline a {
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-social-inline a[aria-label="TikTok"] {
  color: var(--black);
  transition: color var(--dur-med), transform var(--dur-fast) var(--ease-out);
}
.nav-social-inline a:hover {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-med), opacity var(--dur-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-fast) var(--ease-out);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}
.nav.is-scrolled .nav-link,
.nav-solid .nav-link {
  color: var(--black-soft);
}
.nav-link.is-active {
  opacity: 1;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: background var(--dur-fast);
}
.nav.is-scrolled .nav-toggle span,
.nav-solid .nav-toggle span {
  background: var(--black);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease-out);
}
.mobile-menu.is-open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
}
.mobile-menu-social {
  display: flex;
  gap: 22px;
  margin-top: 6px;
}
.mobile-menu-social a {
  color: var(--gold-dark);
}
.mobile-menu-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1150px) {
  .nav-links, .nav-bar-left, .nav-bar-right { gap: 20px; }
  .nav-wordmark { font-size: clamp(1.1rem, 1.5vw, 1.5rem); }
  .nav-center-logo-link { gap: 10px; }
}
@media (max-width: 960px) {
  .nav-links, .nav-bar-left, .nav-bar-right { gap: 12px; }
  .nav-wordmark { font-size: 1rem; }
  .nav-link { font-size: 0.8rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-social-inline, .nav-wordmark { display: none; }
  .nav-toggle { display: flex; }
  .nav-center-logo-link img { width: 84px; height: 84px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1%, -2%); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 13, 12, 0.35) 0%, rgba(14, 13, 12, 0.35) 45%, rgba(14, 13, 12, 0.85) 100%);
}
.hero-bottom {
  position: absolute;
  z-index: 2;
  bottom: clamp(40px, 8vh, 84px);
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 0 24px;
}
.hero-tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  color: var(--ivory);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.shimmer-gold {
  background: linear-gradient(100deg, #f1dea3 20%, #fdf6e3 40%, #ffffff 50%, #fdf6e3 60%, #f1dea3 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: shimmer-sweep 7s ease-in-out infinite;
}
.shimmer-gold-dark {
  background: linear-gradient(100deg, #9c7a32 20%, #e8ce8b 40%, #c9a24b 50%, #e8ce8b 60%, #9c7a32 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-sweep 7s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0% { background-position: 120% 0; }
  100% { background-position: -60% 0; }
}
.hero-bottom-links {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.hero-bottom-links a {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.4);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.hero-bottom-links a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}
.hero-bottom-links .divider {
  width: 1px;
  height: 14px;
  background: rgba(250, 247, 241, 0.4);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-cue 2s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.page-hero-media {
  position: absolute;
  inset: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
}
.page-hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-top: 16px;
}
.page-hero-content .eyebrow {
  color: var(--gold-light);
}
.page-hero-content .eyebrow::before {
  display: none;
}

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 22px 0;
  background: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "\2726";
  color: var(--gold);
  font-size: 0.7rem;
  margin-left: 28px;
}
@keyframes marquee {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============================================================
   Services
   ============================================================ */
.badge {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 999px;
}

/* Showcase grid — homepage services teaser */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.showcase-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-deep);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(14, 13, 12, 0.28);
}
.showcase-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.showcase-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.showcase-card:hover .showcase-card-media img {
  transform: scale(1.07);
}
.showcase-card-media.is-placeholder {
  background: var(--ivory-soft);
  border-bottom: 1px solid var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-card-media.is-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.7;
}
.showcase-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(250, 247, 241, 0.94);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.showcase-card-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.showcase-card-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
}
.showcase-card-body .rule {
  margin: 14px 0 14px;
  margin-left: 0;
}
.showcase-card-body p {
  color: var(--black-dim);
  font-size: 0.92rem;
  flex: 1;
}
.showcase-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.showcase-enquire:hover {
  color: var(--gold);
  gap: 12px;
}

.showcase-card.is-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
}
.showcase-card.is-wide .showcase-card-media {
  aspect-ratio: auto;
  width: 220px;
  align-self: stretch;
  flex: none;
}
.showcase-card.is-wide .showcase-card-body {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 30px 34px;
}
.showcase-card.is-wide .showcase-card-body > div {
  flex: 1;
}
.showcase-card.is-wide .showcase-enquire {
  margin-top: 0;
  flex: none;
}

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card.is-wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card.is-wide { grid-column: span 1; }
  .showcase-card.is-wide { flex-direction: column; }
  .showcase-card.is-wide .showcase-card-media { width: 100%; aspect-ratio: 16/9; }
  .showcase-card.is-wide .showcase-card-body { flex-direction: column; align-items: flex-start; }
}

/* Alternating full-width service rows (services.html) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(50px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--ivory-deep);
}
.service-row:last-child {
  border-bottom: none;
}
.service-row.is-reverse .service-row-media {
  order: 2;
}
.service-row-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service-row-media:hover img {
  transform: scale(1.06);
}
.service-row-media.is-placeholder {
  background: var(--ivory-soft);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
}
.service-row-body h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-top: 14px;
}
.service-row-body p {
  margin-top: 18px;
  color: var(--black-dim);
  max-width: 46ch;
}
.service-row-body .btn {
  margin-top: 26px;
}

@media (max-width: 820px) {
  .service-row, .service-row.is-reverse .service-row-media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Packages
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--ivory-deep);
  border: 1px solid var(--ivory-deep);
}
.package-card {
  background: var(--ivory);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card h3 {
  font-size: 1.2rem;
}
.package-price {
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
}
.package-desc {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--black-dim);
}
.package-features {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.package-features li {
  font-size: 0.8rem;
  color: var(--black-soft);
  padding-left: 16px;
  position: relative;
}
.package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.package-card .btn {
  margin-top: 26px;
  align-self: flex-start;
}
.package-card.is-featured {
  background: var(--gold-gradient);
  color: var(--black);
  z-index: 1;
  box-shadow: 0 24px 60px -24px rgba(154, 122, 50, 0.55);
}
.package-card.is-featured .package-desc {
  color: rgba(14, 13, 12, 0.7);
}
.package-card.is-featured .package-features li {
  color: rgba(14, 13, 12, 0.82);
}
.package-card.is-featured .package-price {
  color: var(--black);
}
.package-card.is-featured .package-badge {
  color: var(--black);
}
.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .packages-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Portfolio / Gallery
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ivory-deep);
  background: transparent;
  color: var(--black-dim);
  border-radius: 999px;
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--black);
}
.filter-btn.is-active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--black);
}

.masonry {
  column-count: 3;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.4s;
}
.masonry-item.is-visible-cat {
  opacity: 1;
}
.masonry-item.is-hidden-cat {
  display: none;
}
.masonry-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  margin: 30px auto 0;
  padding: 70px 20px 30px;
}
.masonry-empty.is-visible {
  display: flex;
  animation: masonry-empty-in 0.5s var(--ease-out);
}
@keyframes masonry-empty-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.masonry-empty svg {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 22px;
}
.masonry-empty h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}
.masonry-empty h3 em {
  font-style: italic;
}
.masonry-empty p {
  margin-top: 16px;
  color: var(--black-dim);
}
.masonry-empty p a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.masonry-empty .btn {
  margin-top: 26px;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.masonry-item:hover img {
  transform: scale(1.07);
}
.masonry-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 13, 12, 0.75) 100%);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.masonry-item:hover .masonry-caption {
  opacity: 1;
}
.masonry-caption span {
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.masonry-item.is-placeholder {
  border: 1px solid var(--gold);
  background: var(--ivory-soft);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  cursor: default;
}
.masonry-item.is-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.masonry-item.is-placeholder svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}
.masonry-item.is-placeholder .ph-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black-soft);
}
.masonry-item.is-placeholder .ph-sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

@media (max-width: 980px) {
  .masonry { column-count: 2; }
}
@media (max-width: 560px) {
  .masonry { column-count: 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(14, 13, 12, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  object-fit: contain;
  transform: scale(0.94);
  transition: transform var(--dur-med) var(--ease-out);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
}
.lightbox.is-open img {
  transform: scale(1);
}
.lightbox-caption {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: 1px solid rgba(250, 247, 241, 0.35);
  color: var(--ivory);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
}
.lightbox-close {
  top: 28px;
  right: 28px;
}
.lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media-frame {
  overflow: hidden;
  border-radius: 2px;
}
.about-media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.about-media:hover .about-media-frame img {
  transform: scale(1.06);
}
.about-media-dove {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 46px;
  height: 46px;
  color: var(--gold);
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(14, 13, 12, 0.18));
}
.about-media-dove svg {
  width: 100%;
  height: 100%;
}
.about-body p {
  color: var(--black-dim);
  margin-top: 18px;
  max-width: 56ch;
}
blockquote.pull-quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--black-soft);
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 30px 0;
}
.signature {
  margin-top: 28px;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-dark);
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Story split — about.html "Behind the Lens" section */
.story-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.story-split-media {
  position: relative;
}
.story-split-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}
.story-split-body p {
  color: var(--black-dim);
  margin-top: 18px;
}
.story-split-body p:first-child {
  margin-top: 0;
}
.story-split-body .pull-quote {
  margin: 28px 0 18px;
}

@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; }
  .story-split-body { order: -1; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-carousel {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 260px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}
.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1.1rem;
}
.testimonial-slide blockquote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin: 22px 0;
  color: var(--black-soft);
}
.testimonial-slide cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
}
.testimonial-dots button.is-active {
  background: var(--gold-gradient);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section .contact-grid {
  position: relative;
  z-index: 2;
}
.contact-section > .contact-grid > div:first-child > .eyebrow::before {
  display: none;
}
.icon-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.form-field {
  margin-bottom: 22px;
}
.form-field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black-dim);
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ivory-deep);
  padding: 12px 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--black);
  transition: border-color var(--dur-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--black-dim);
  min-height: 1.4em;
}
.form-note.is-success {
  color: #5c7a4f;
}
.form-note.is-error {
  color: #b3453f;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.contact-info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ivory-deep);
}
.contact-info-row strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.social-row a:hover {
  background: var(--gold-gradient);
  color: var(--black);
}
.social-row svg {
  width: 17px;
  height: 17px;
}

.map-frame-wrap {
  position: relative;
  margin-top: 30px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 44px -26px rgba(14, 13, 12, 0.4);
}
.map-frame {
  display: block;
  border: none;
  filter: grayscale(0.35) sepia(0.18) saturate(1.1);
  width: 100%;
  height: calc(100% + 44px);
}

.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 20px;
}
.insta-strip a {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.insta-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-med);
}
.insta-strip a:hover img {
  transform: scale(1.08);
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Mission statement band
   ============================================================ */
.statement-band {
  position: relative;
  background: var(--ivory-deep);
  text-align: center;
  padding: clamp(84px, 11vw, 150px) 0;
  overflow: hidden;
}
.statement-band .aperture-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
}
.statement-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 22px auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.4;
  color: var(--black-soft);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--black);
  color: var(--ivory);
  text-align: center;
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
}
.cta-band p {
  margin-top: 16px;
  color: rgba(250, 247, 241, 0.65);
}
.cta-band .btn {
  margin-top: 34px;
}
.cta-band .eyebrow::before {
  display: none;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(250, 247, 241, 0.7);
  padding: 70px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 38px;
}
.footer h4 {
  color: var(--ivory);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer a:hover {
  color: var(--gold-light);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.footer-social svg {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-social svg path[fill="#000"] {
  fill: #fff;
}
.footer-social a {
  transition: transform var(--dur-fast) var(--ease-out);
}
.footer-social a:hover {
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal on scroll (GSAP toggles .is-in)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
}
[data-reveal="scale"] {
  transform: scale(0.94);
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="right"] {
  transform: translateX(40px);
}

/* ============================================================
   Page transition overlay
   ============================================================ */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ivory);
  transform: translateY(-100%);
  pointer-events: none;
}
#page-transition.is-leaving {
  transition: transform 0.55s var(--ease-out);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .hero-media video { animation: none; }
  .marquee-track { animation: none; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
