/* =============================================================
   vmitr events — Event Planning Studio
   Design system: warm, saturated, editorial.
   Motion language modelled on units.gr — Lenis smooth scroll,
   GSAP ScrollTrigger reveals, masked SplitText lines, expo.out.
   ============================================================= */

:root {
  /* --- Surfaces --- */
  --cream:      #FAF3E7;
  --cream-2:    #FFFBF3;
  --paper:      #FFFFFF;
  --ink:        #14100C;
  --ink-2:      #241C14;

  --ink-70:     rgba(20,16,12,0.72);
  --ink-55:     rgba(20,16,12,0.55);
  --ink-40:     rgba(20,16,12,0.40);
  --line:       rgba(20,16,12,0.13);
  --line-soft:  rgba(20,16,12,0.07);

  /* --- Accents: saturated, occasion-coded --- */
  --gold:       #C88A2E;   /* primary — champagne bronze, richer */
  --gold-lt:    #E8B45F;
  --gold-deep:  #8E5F17;
  --gold-tint:  #F2E2C4;

  --coral:      #E2542F;   /* birthdays — energy      */
  --plum:       #8A2F52;   /* anniversaries — romance */
  --emerald:    #1F6B52;   /* corporate — fresh       */
  --blush:      #F3C9B4;   /* weddings — soft         */

  --accent:     var(--gold);   /* per-component override */

  /* --- Depth --- */
  --shadow-sm:  0 18px 40px -30px rgba(20,16,12,0.45);
  --shadow-md:  0 34px 70px -40px rgba(20,16,12,0.55);
  --shadow-lg:  0 60px 120px -60px rgba(20,16,12,0.7);
  --glow:       0 0 60px -12px rgba(200,138,46,0.55);

  /* --- Motion --- */
  --ease:       cubic-bezier(.19,1,.22,1);      /* expo.out */
  --ease-io:    cubic-bezier(.65,.05,.36,1);    /* power2.inOut */

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
  --nav-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Lenis drives scrolling — native smooth scrolling must stay off. */
html { scroll-behavior: auto; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--coral); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(20,16,12,0.18); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(20,16,12,0.34); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =============================================================
   LAYOUT HELPERS
   ============================================================= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }

.eyebrow {
  font-size: 12.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor;
  display: inline-block; transform-origin: left center;
}
.eyebrow.center::before { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.02;
  font-optical-sizing: auto;
}
.italic { font-style: italic; font-weight: 400; }

/* Gradient accent text — the "vibrant" signature */
.gold-text {
  background: linear-gradient(96deg, var(--gold-lt) 0%, var(--gold) 38%, var(--coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.lead { font-size: 18px; line-height: 1.62; color: var(--ink-70); font-weight: 500; }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px; border: none;
  transition: color .4s var(--ease), border-color .4s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
}
/* Fill-from-bottom hover wipe */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  transform: translateY(101%); border-radius: inherit;
  transition: transform .55s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn > * { position: relative; z-index: 1; }
.btn span:not(.arrow) { position: relative; z-index: 1; }

.btn-gold  { background: var(--gold); color: #fff; box-shadow: 0 14px 34px -20px rgba(200,138,46,0.9); }
.btn-gold::before { background: var(--ink); }
.btn-gold:hover { color: #fff; box-shadow: 0 22px 48px -22px rgba(20,16,12,0.7); }

.btn-dark  { background: var(--ink); color: var(--cream); }
.btn-dark::before { background: var(--coral); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--cream); border-color: var(--ink); }

.btn-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); }
.btn-light::before { background: #fff; }
.btn-light:hover { color: var(--ink); border-color: #fff; }

.btn .arrow { position: relative; z-index: 1; transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* =============================================================
   PRELOADER + PAGE-TRANSITION CURTAIN
   Both injected by JS, so a no-JS visitor never sees a blocker.
   ============================================================= */
#vm-preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#vm-preloader .pl-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(200,138,46,0.35), transparent 60%),
    radial-gradient(45% 45% at 80% 70%, rgba(226,84,47,0.28), transparent 60%),
    radial-gradient(40% 40% at 60% 20%, rgba(138,47,82,0.25), transparent 60%);
  filter: blur(30px);
}
#vm-preloader .pl-inner { position: relative; text-align: center; }
#vm-preloader .pl-mark {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  border: 1.5px solid rgba(250,243,231,0.45);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 34px;
}
#vm-preloader .pl-name { font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; }
#vm-preloader .pl-count {
  position: absolute; right: 44px; bottom: 34px;
  font-family: var(--serif); font-size: clamp(56px, 11vw, 140px);
  line-height: 1; color: rgba(250,243,231,0.14); font-variant-numeric: tabular-nums;
}
#vm-preloader .pl-bar {
  position: absolute; left: 44px; right: 44px; bottom: 40px; height: 1px;
  background: rgba(250,243,231,0.16);
}
#vm-preloader .pl-bar i { display: block; height: 100%; width: 0; background: var(--gold-lt); }

/* Page-enter skeleton: placeholder blocks that rise, then dissolve.
   Sits below the curtain so it is uncovered as the curtain lifts. */
#vm-skeleton {
  position: fixed; inset: 0; z-index: 9985; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 0 40px;
}
#vm-skeleton .sk {
  flex: 1; max-width: 270px; height: min(46vh, 380px);
  border-radius: 20px; will-change: transform, opacity;
  background: linear-gradient(100deg, var(--gold-tint) 22%, #fff 42%, var(--gold-tint) 62%);
  background-size: 220% 100%;
  animation: skShimmer 1.4s linear infinite;
}
@keyframes skShimmer { from { background-position: 180% 0; } to { background-position: -40% 0; } }
@media (max-width: 640px) { #vm-skeleton { gap: 10px; padding: 0 22px; } }

/* Curtain: lives in the markup so it covers the page from the first
   paint (no flash). Parked off-screen unless JS is actually running. */
#vm-curtain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  background: var(--ink);
  transform: translateY(100%);
  will-change: transform;
}
html.js #vm-curtain { transform: translateY(0); }
#vm-curtain.is-active { pointer-events: all; }

/* =============================================================
   CURSOR + SCROLL PROGRESS
   ============================================================= */
#vm-cursor, #vm-cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  opacity: 0; will-change: transform;
}
#vm-cursor { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); margin: -3.5px 0 0 -3.5px; }
#vm-cursor-ring {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(200,138,46,0.65); margin: -21px 0 0 -21px; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: transparent;
}
#vm-cursor-ring .cur-label { opacity: 0; transition: opacity .25s ease; }
#vm-cursor-ring.is-hover { background: rgba(200,138,46,0.12); border-color: var(--gold); }
#vm-cursor-ring.is-view { background: var(--gold); border-color: var(--gold); color: #fff; }
#vm-cursor-ring.is-view .cur-label { opacity: 1; }

/* Over dark surfaces the cursor flips to cream so it never disappears. */
body.cursor-dark #vm-cursor { background: var(--cream); }
body.cursor-dark #vm-cursor-ring { border-color: rgba(250,243,231,0.7); }
body.cursor-dark #vm-cursor-ring.is-hover { background: rgba(250,243,231,0.12); border-color: var(--cream); }

#vm-progress {
  position: fixed; left: 0; top: 0; height: 3px; width: 100%; z-index: 9997;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold) 45%, var(--coral));
  transform: scaleX(0); transform-origin: 0 50%;
}

/* Film grain over the whole page. Oversized + translated so the edges
   never enter the viewport as it jitters. */
#vm-grain {
  position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
  z-index: 9995; pointer-events: none; opacity: 0.05; will-change: transform;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  animation: vmGrain 0.9s steps(6) infinite;
}
@keyframes vmGrain {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-2%, -3%); }
  33%  { transform: translate(-4%,  2%); }
  50%  { transform: translate( 2%, -4%); }
  66%  { transform: translate(-3%,  3%); }
  83%  { transform: translate( 3%,  1%); }
  100% { transform: translate(0, 0); }
}

@media (hover: none), (pointer: coarse) {
  #vm-cursor, #vm-cursor-ring, #vm-grain { display: none !important; }
}

/* =============================================================
   NAV
   ============================================================= */
#main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; }

/* The bar itself. Sits above the overlay so the hamburger stays live. */
.header-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background .5s var(--ease-io), padding .5s var(--ease-io),
              box-shadow .5s var(--ease-io), border-color .5s var(--ease-io), color .4s ease;
  border-bottom: 1px solid transparent;
  color: #fff;
  will-change: transform;
}
#main-nav.nav-solid .header-wrap {
  background: rgba(250,243,231,0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  padding: 14px 40px;
  box-shadow: 0 14px 40px -30px rgba(20,16,12,0.6);
  border-bottom-color: var(--line-soft);
  color: var(--ink);
}
/* With the dark overlay open the bar always reads light — must beat .nav-solid. */
#main-nav.open .header-wrap {
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: none; border-bottom-color: transparent; color: var(--cream);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 20px; font-style: italic;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.brand:hover .brand-mark { background: var(--coral); border-color: var(--coral); color: #fff; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
.brand-name small {
  font-family: var(--sans); font-weight: 700; font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; display: block; opacity: .68; margin-top: -2px;
}

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-tel {
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap;
  padding: 9px 16px; border-radius: 999px; border: 1px solid transparent;
  transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.nav-tel:hover { color: var(--gold); }
#main-nav.nav-solid .header-wrap .nav-tel { background: rgba(20,16,12,0.05); border-color: var(--line); }
#main-nav.open .header-wrap .nav-tel { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }

/* Social pill */
.social { display: flex; align-items: center; gap: 14px; padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .4s var(--ease-io), border-color .4s var(--ease-io); }
#main-nav.nav-solid .header-wrap .social { background: rgba(20,16,12,0.05); border-color: var(--line); }
#main-nav.open .header-wrap .social { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.social a { display: grid; place-items: center; width: 18px; height: 18px; opacity: .8;
  transition: opacity .3s ease, transform .45s var(--ease); }
.social a:hover { opacity: 1; transform: translateY(-2px); }
.social svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* Hamburger: four half-width bars that fold into an X. */
.hamburger { position: relative; width: 34px; height: 18px; background: none; border: none;
  padding: 0; color: inherit; cursor: pointer; }
.hamburger span { position: absolute; height: 2px; width: 50%; background: currentColor;
  transition: transform .5s var(--ease), top .4s var(--ease), bottom .4s var(--ease), width .4s var(--ease); }
.hamburger span:nth-child(1) { left: 0;  top: 0; }
.hamburger span:nth-child(2) { right: 0; top: 0; }
.hamburger span:nth-child(3) { left: 0;  bottom: 0; }
.hamburger span:nth-child(4) { right: 0; bottom: 0; }
.hamburger.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { top: 8px; transform: rotate(-45deg); }
.hamburger.open span:nth-child(3) { bottom: 8px; transform: rotate(-45deg); }
.hamburger.open span:nth-child(4) { bottom: 8px; transform: rotate(45deg); }

/* =============================================================
   OVERLAY MENU — revealed by a clip-path polygon wipe
   ============================================================= */
.main-menu {
  position: fixed; inset: 0; z-index: 1;
  display: none; flex-direction: column; justify-content: center;
  padding: 130px 40px 48px; margin: 0; list-style: none;
  background: var(--ink); color: var(--cream); overflow-y: auto;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.main-menu::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 88% 12%, rgba(226,84,47,0.26), transparent 65%),
    radial-gradient(50% 50% at 8% 92%, rgba(200,138,46,0.22), transparent 65%);
}
.menu-list { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; }
.menu-list > li { border-top: 1px solid rgba(255,255,255,0.12); }
.menu-list > li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.menu-list a { display: flex; align-items: center; gap: 26px; padding: 18px 0; transition: padding-left .55s var(--ease); }
.menu-list a:hover { padding-left: 14px; }
.main-menu .index { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; color: var(--gold); width: 3ch; flex: none; }
.main-menu .label { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 5.6vw, 68px); line-height: 1; transition: color .35s ease; }
.menu-list a:hover .label, .menu-list a.active .label { color: var(--gold-lt); }
.main-menu .meta { margin-left: auto; font-size: 13px; font-weight: 600; color: rgba(250,243,231,0.5); text-align: right; }

.menu-list a.is-current .label { color: var(--gold-lt); }
.menu-foot { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-top: 44px; }
.menu-foot .m-contact a { display: block; font-size: 15px; color: rgba(250,243,231,0.72); font-weight: 500; }
.menu-foot .m-contact a:hover { color: #fff; }
.menu-foot .m-contact span { display: block; font-size: 14px; color: rgba(250,243,231,0.45); font-weight: 500; margin-top: 6px; }

/* Word-flip hover: a duplicate label rolls up to replace the original. */
.nf-clip { display: block; overflow: hidden; height: 1.15em; }
.nf-in { display: block; transition: transform .55s var(--ease); }
.nf-in > span { display: block; height: 1.15em; line-height: 1.15em; }
.menu-list a:hover .nf-in { transform: translateY(-50%); }

/* Class-only open state. GSAP writes inline styles that win over this,
   so it doubles as the no-JS-animation fallback. */
.main-menu.open { display: flex; clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
body.menu-open { overflow: hidden; }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; display: flex; }
.hero-media { position: absolute; inset: -14% 0; z-index: 0; will-change: transform; }
.hero-media .photo { width: 100%; height: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(70% 55% at 15% 100%, rgba(226,84,47,0.30), transparent 70%),
    radial-gradient(60% 50% at 90% 10%, rgba(138,47,82,0.28), transparent 70%),
    linear-gradient(180deg, rgba(14,11,8,0.48) 0%, rgba(14,11,8,0.04) 34%, rgba(14,11,8,0.16) 60%, rgba(14,11,8,0.80) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 40px 78px; align-self: flex-end; color: #fff;
}
.hero-eyebrow { color: #fff; }
.hero h1 { font-size: clamp(44px, 8.4vw, 112px); line-height: 0.97; max-width: 15ch; margin: 22px 0 0; }
.hero p { max-width: 46ch; margin-top: 24px; color: rgba(255,255,255,0.92); font-size: clamp(16px,1.5vw,20px); line-height: 1.55; font-weight: 500; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,0.7), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--gold-lt); animation: cueDrop 2.2s var(--ease) infinite; }
@keyframes cueDrop { 0%{transform:translateY(-100%);} 60%,100%{transform:translateY(300%);} }

/* =============================================================
   PHOTO FRAMES
   ============================================================= */
.photo {
  position: relative; overflow: hidden; background-size: cover; background-position: center;
  background-repeat: no-repeat; background-color: var(--gold-tint);
}
.photo::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.22; mix-blend-mode: overlay; pointer-events: none;
}
.photo-inner {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  will-change: transform;
}
.photo-zoom .photo-inner { transition: transform 1.2s var(--ease); }
.photo-zoom:hover .photo-inner { transform: scale(1.07); }

/* Mood gradients — richer, more saturated than before */
.m-wedding  { background-image: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.5), transparent 55%), radial-gradient(80% 80% at 85% 90%, rgba(243,201,180,0.75), transparent 60%), linear-gradient(135deg, #F0DFCB, #D9B79C); }
.m-birthday { background-image: radial-gradient(90% 90% at 80% 15%, rgba(255,205,150,0.8), transparent 55%), radial-gradient(90% 90% at 10% 90%, rgba(226,84,47,0.62), transparent 60%), linear-gradient(135deg, #F7E3CA, #E9A277); }
.m-anniv    { background-image: radial-gradient(90% 90% at 15% 15%, rgba(255,235,235,0.6), transparent 55%), radial-gradient(90% 90% at 90% 85%, rgba(138,47,82,0.68), transparent 60%), linear-gradient(135deg, #EDD5D6, #BE8C99); }
.m-corp     { background-image: radial-gradient(90% 90% at 80% 20%, rgba(255,255,255,0.45), transparent 55%), radial-gradient(90% 90% at 10% 90%, rgba(31,107,82,0.6), transparent 60%), linear-gradient(135deg, #DFE6DA, #A6BCAC); }
.m-deep     { background-image: radial-gradient(100% 80% at 30% 10%, rgba(200,138,46,0.5), transparent 55%), radial-gradient(90% 90% at 90% 90%, rgba(138,47,82,0.55), transparent 60%), linear-gradient(140deg, #221B14, #3D3125); }
.m-warm     { background-image: radial-gradient(110% 90% at 25% 15%, rgba(255,240,220,0.65), transparent 55%), radial-gradient(90% 90% at 85% 85%, rgba(200,138,46,0.55), transparent 60%), linear-gradient(135deg, #F4E6D2, #DCBE97); }

/* =============================================================
   SECTIONS
   ============================================================= */
section { position: relative; }
.section { padding: 104px 0; }
.section-sm { padding: 76px 0; }

/* Intro / editorial split */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.split-media { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.split h2 { font-size: clamp(32px, 4.4vw, 58px); margin: 22px 0 0; }
.split .lead { margin-top: 22px; }

/* Full-service band — pinned heading, scrolling rows */
.band { background: var(--ink); color: var(--cream); border-radius: 34px; overflow: hidden; position: relative; }
.band-media { position: absolute; inset: 0; opacity: 0.26; z-index: 0; }
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 85% 15%, rgba(226,84,47,0.30), transparent 65%),
    radial-gradient(55% 55% at 10% 90%, rgba(200,138,46,0.26), transparent 65%);
}
.band-inner { position: relative; z-index: 1; padding: 76px 56px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; margin-top: 36px; }
.checklist .row {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: padding-left .5s var(--ease);
}
.checklist .row:hover { padding-left: 10px; }
.checklist .row .n { font-family: var(--serif); font-style: italic; color: var(--gold-lt); font-size: 15px; min-width: 30px; }
.checklist .row .t { font-weight: 600; font-size: 16px; }
.checklist .row .d { font-size: 13.5px; color: rgba(250,243,231,0.6); margin-top: 3px; font-weight: 500; }

/* Occasions grid — accent-coded */
.occasions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.occ-card {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
  transition: box-shadow .6s var(--ease);
}
.occ-card:hover { box-shadow: var(--shadow-lg); }
.occ-card .photo { position: absolute; inset: 0; z-index: 0; }
.occ-card::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(14,11,8,0) 26%, rgba(14,11,8,0.86) 100%);
  transition: opacity .6s var(--ease);
}
/* Accent wash blooms on hover */
.occ-card::before {
  content:""; position:absolute; inset:0; z-index:1; opacity: 0;
  background: linear-gradient(180deg, transparent 30%, color-mix(in srgb, var(--accent) 70%, transparent) 100%);
  transition: opacity .7s var(--ease);
}
.occ-card:hover::before { opacity: 1; }
.occ-body { position: relative; z-index: 2; padding: 34px; color: #fff; width: 100%; }
.occ-body .k {
  font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; display: inline-flex; align-items: center; gap: 9px;
}
.occ-body .k::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.occ-body h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin: 10px 0 6px; }
.occ-body p { font-size: 14.5px; color: rgba(255,255,255,0.86); font-weight: 500; line-height: 1.5; max-width: 40ch; }
.occ-tall { min-height: 500px; }
.occ-wed  { --accent: var(--blush); }
.occ-bday { --accent: var(--coral); }
.occ-ann  { --accent: var(--plum); }
.occ-corp { --accent: var(--emerald); }

/* Feature icon list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--line); }
.feature { position: relative; background: var(--cream-2); padding: 36px 30px; overflow: hidden; transition: background .5s var(--ease); }
.feature::before {
  content:""; position:absolute; left:0; right:0; bottom:0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left center;
  transition: transform .7s var(--ease);
}
.feature:hover { background: var(--paper); }
.feature:hover::before { transform: scaleX(1); }
.feature .ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px;
  transition: transform .6s var(--ease), background .5s var(--ease);
}
.feature:hover .ic { transform: translateY(-4px) rotate(-6deg); background: color-mix(in srgb, var(--accent) 26%, transparent); }
.feature h4 { font-family: var(--serif); font-weight: 600; font-size: 21px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-55); font-weight: 500; line-height: 1.55; }
.feature:nth-child(1) { --accent: var(--gold); }
.feature:nth-child(2) { --accent: var(--plum); }
.feature:nth-child(3) { --accent: var(--coral); }
.feature:nth-child(4) { --accent: var(--gold-deep); }
.feature:nth-child(5) { --accent: var(--emerald); }
.feature:nth-child(6) { --accent: var(--ink); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
/* A real element, not a pseudo, so GSAP can draw it on scroll. */
.step .bar {
  position: absolute; top: -2px; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transform: scaleX(0); transform-origin: left center;
}
html.vm-fallback .step .bar { transform: scaleX(1); }
.step .num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); font-weight: 500; letter-spacing: 0.04em; }
.step h4 { font-family: var(--serif); font-weight: 600; font-size: 23px; margin: 12px 0 10px; }
.step p { font-size: 14.5px; color: var(--ink-55); font-weight: 500; line-height: 1.55; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .n {
  font-family: var(--serif); font-weight: 500; font-size: clamp(40px,5.4vw,68px);
  letter-spacing: -0.02em; line-height: 1;
  background: linear-gradient(120deg, var(--gold-lt), var(--gold) 45%, var(--coral));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat .l { font-size: 14px; font-weight: 600; color: var(--ink-55); margin-top: 10px; }

/* Testimonials (Swiper) */
.quotes-swiper { overflow: hidden; padding-bottom: 10px; }
.quotes-swiper .swiper-wrapper { align-items: stretch; }
.quotes-swiper .swiper-slide { height: auto; }
.quote {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 22px;
  padding: 34px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }
.quote .qmark { font-family: var(--serif); font-size: 34px; line-height: 1; color: var(--gold); opacity: .55; margin-bottom: 14px; }
.quote blockquote { font-family: var(--serif); font-size: 20px; line-height: 1.42; font-weight: 500; color: var(--ink); flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid var(--gold-tint); }
/* Initials stand in for a photo — the source site publishes no headshots,
   and a stock face next to a real person's name would be a lie. */
.quote .av.mono {
  display: grid; place-items: center; flex: 0 0 auto;
  background: linear-gradient(140deg, var(--gold-tint), #fff);
  color: var(--gold-deep); font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
}
.quote .who b { font-size: 14.5px; }
.quote .who span { font-size: 13px; color: var(--ink-40); display: block; }

/* Two class names, so this outranks Swiper's own absolute positioning. */
.swiper-pg.swiper-pagination-progressbar {
  position: relative; top: auto; left: auto;
  width: 100%; height: 2px; margin-top: 30px;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.swiper-pg .swiper-pagination-progressbar-fill { background: linear-gradient(90deg, var(--gold), var(--coral)); }

.swiper-nav { display: flex; gap: 12px; margin-top: 22px; }
.swiper-nav button {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line);
  background: transparent; color: var(--ink); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.swiper-nav button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.swiper-nav button:disabled { opacity: .35; cursor: not-allowed; }

/* Pinned horizontal gallery: headline holds still, track scrolls past it.
   The inner viewport owns the overflow, so the headline is never dragged
   sideways when the strip becomes a native swipe on small screens. */
.hscroll { position: relative; overflow: hidden; }
.hscroll-viewport { width: 100%; overflow: hidden; }
@media (min-width: 981px) {
  .hscroll { min-height: 100svh; display: flex; align-items: center; }
  .pin-head { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); width: min(30vw, 380px); z-index: 2; }
  .hscroll-track { padding-left: min(38vw, 480px); }
}
.pin-head h2 { margin-top: 16px; }

.total-scroll {
  display: flex; align-items: center; gap: 16px; margin-top: 34px;
  font-family: var(--serif); font-size: 15px; color: var(--ink-40);
  font-variant-numeric: tabular-nums;
}
.total-scroll .cur { color: var(--coral); font-size: 22px; }
.total-scroll .line { flex: 1; height: 1px; background: var(--line); position: relative; }
.total-scroll .line i {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transform: scaleX(0); transform-origin: left center;
}

.hscroll-track { display: flex; gap: 24px; padding: 0 40px; width: max-content; align-items: stretch; will-change: transform; }
.hscroll-panel {
  position: relative; width: 46vw; min-width: 320px; max-width: 620px; aspect-ratio: 4/3;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); flex: none;
}
.hscroll-panel .photo { position: absolute; inset: 0; }
.hscroll-panel .cap {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 30px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(14,11,8,0.85));
}
.hscroll-panel .cap .k { font-size: 11.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); }
.hscroll-panel .cap h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px,2.4vw,32px); margin-top: 8px; }

/* =============================================================
   INSTAGRAM
   Tiles are live Instagram embeds in <iframe>s. Instagram owns
   everything inside the frame, so the tile controls only the crop,
   the corner radius and the hover — never the embed's internals.
   ============================================================= */
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.insta-handle {
  display: inline-block; font-family: var(--serif); font-size: clamp(24px,3vw,34px); font-weight: 500;
  transition: color .35s var(--ease);
}
.insta-handle span { color: var(--coral); }
.insta-handle:hover { color: var(--gold-deep); }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.ig-card {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 5; border-radius: 20px;
  background: var(--paper); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.ig-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-tint); }

/* The frame is pinned rather than sized, so an embed that reports a
   taller layout crops instead of stretching the tile. */
.ig-frame {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0; display: block;
  transform-origin: top left;   /* JS scales this on very narrow phones */
  background: var(--paper);
}

/* An iframe eats pointer events, so the tile gets its own click layer.
   It stays transparent — the embed underneath has to remain readable. */
.ig-veil {
  position: absolute; inset: 0; z-index: 2; display: block;
  background: linear-gradient(180deg, transparent 60%, rgba(14,11,8,0.10));
  opacity: 0; transition: opacity .5s var(--ease);
}
.ig-card:hover .ig-veil { opacity: 1; }

.ig-foot { margin-top: 30px; }
.ig-foot .btn { align-items: center; }
.ig-ic { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; position: relative; z-index: 1; }

.ig-fallback { font-size: 16px; font-weight: 600; color: var(--ink-55); padding: 20px 0; }
.ig-fallback a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-tint); }

@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 640px) {
  .ig-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin: 0 auto; }
}

/* Three pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar { padding: 8px 40px; border-left: 1px solid var(--line); }
.pillar:first-child { padding-left: 0; border-left: none; }
.pillar .p-k { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 17px; }
.pillar h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px,3vw,40px); margin: 10px 0 14px; }
.pillar p { font-size: 15px; color: var(--ink-55); font-weight: 500; line-height: 1.6; }
.pillar:nth-child(1) { --accent: var(--coral); }
.pillar:nth-child(2) { --accent: var(--gold); }
.pillar:nth-child(3) { --accent: var(--emerald); }

/* Big CTA */
.cta-band { position: relative; border-radius: 34px; overflow: hidden; text-align: center; padding: 100px 40px; color: #fff; }
.cta-band .photo { position: absolute; inset: 0; z-index: 0; }
.cta-band::after {
  content:""; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(60% 60% at 15% 20%, rgba(226,84,47,0.36), transparent 65%),
    radial-gradient(60% 60% at 85% 80%, rgba(138,47,82,0.34), transparent 65%),
    linear-gradient(180deg, rgba(20,15,10,0.62), rgba(20,15,10,0.80));
}
/* z-order inside the CTA: photo 0 · dark overlay 1 · glow 2 · text 3 */
.cta-glow {
  position: absolute; z-index: 2; top: 0; left: 0;
  width: 560px; height: 560px; margin: -280px 0 0 -280px;
  border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(232,180,95,0.50), rgba(226,84,47,0.28) 42%, transparent 68%);
  filter: blur(12px);
}
.cta-inner { position: relative; z-index: 3; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(36px,5.5vw,68px); }
.cta-inner p { margin: 20px auto 34px; max-width: 46ch; color: rgba(255,255,255,0.88); font-size: 18px; font-weight: 500; line-height: 1.55; }
.cta-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Marquee — two counter-running rows, GSAP-driven, velocity reactive */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; background: var(--cream-2); }
.mq-row { overflow: hidden; }
.mq-row + .mq-row { margin-top: 6px; }
.mq-track {
  display: flex; gap: 48px; width: max-content;
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink-40); will-change: transform;
}
.mq-track .mq-item { display: flex; align-items: center; gap: 48px; white-space: nowrap; }
.mq-track .star { color: var(--coral); font-style: normal; }
/* Second row reads as an outline, so the pair layers instead of competing. */
.mq-row-2 .mq-track { color: transparent; -webkit-text-stroke: 1px rgba(20,16,12,0.30); }
.mq-row-2 .mq-track .star { color: var(--gold); -webkit-text-stroke: 0; }

/* CSS fallback if GSAP never loads */
html.vm-fallback .mq-track { animation: vmMarquee 34s linear infinite; }
html.vm-fallback .mq-track[data-dir="-1"] { animation-direction: reverse; }
@keyframes vmMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================================
   PAGE WRAPPER + FOOTER CURTAIN
   .vm-page is opaque and sits above the footer. On desktop the
   engine fixes the footer behind it and inserts a spacer, so the
   page slides away to uncover it.
   ============================================================= */
.vm-page { position: relative; z-index: 1; background: var(--cream); }
.vm-footer-spacer { width: 100%; }
html.vm-footer-reveal footer.site {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 0; margin-top: 0;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer.site { background: var(--ink); color: var(--cream); padding: 90px 0 40px; margin-top: 110px; position: relative; overflow: hidden; }
footer.site::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(50% 60% at 90% 0%, rgba(200,138,46,0.20), transparent 65%),
    radial-gradient(45% 55% at 5% 100%, rgba(226,84,47,0.16), transparent 65%);
}
footer.site .wrap { position: relative; z-index: 1; }
.f-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.f-top .brand-name, .f-top .brand-mark { color: var(--cream); }
.f-about { font-size: 15px; color: rgba(250,243,231,0.62); line-height: 1.6; max-width: 34ch; margin-top: 20px; font-weight: 500; }
.f-col h5 { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.f-col a, .f-col span { display: block; font-size: 15px; color: rgba(250,243,231,0.72); font-weight: 500; margin-bottom: 12px; transition: color .3s ease, transform .45s var(--ease); }
.f-col a:hover { color: #fff; transform: translateX(5px); }
.f-parent { font-size: 13.5px; color: rgba(250,243,231,0.42); line-height: 1.6; max-width: 34ch; margin-top: 14px; font-weight: 500; }
.f-col address { font-style: normal; display: block; font-size: 15px; color: rgba(250,243,231,0.72); font-weight: 500; margin-bottom: 12px; line-height: 1.55; }
.f-news { display: flex; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 6px; margin-top: 16px; }
.f-news input { flex: 1; background: none; border: none; color: #fff; padding: 10px 16px; font-family: var(--sans); font-size: 14px; outline: none; min-width: 0; }
.f-news input::placeholder { color: rgba(250,243,231,0.5); }
.f-news button { background: var(--gold); color: #fff; border: none; border-radius: 999px; padding: 10px 18px; font-weight: 700; transition: background .3s ease; }
.f-news button:hover { background: var(--coral); }
.f-news.is-done { border-color: rgba(232,180,95,0.5); }
.f-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 30px; font-size: 13px; color: rgba(250,243,231,0.5); font-weight: 500; }
.f-bottom .links { display: flex; gap: 24px; flex-wrap: wrap; }
.f-bottom .links a:hover { color: var(--gold-lt); }

/* =============================================================
   MOTION PRIMITIVES
   Hidden only when JS is running (html.js). If GSAP fails to
   load, html.vm-fallback force-reveals everything.
   ============================================================= */
html.js [data-reveal]        { opacity: 0; }
html.js [data-stagger] > *   { opacity: 0; }
html.js [data-split]         { opacity: 0; }
html.js [data-split-chars]   { opacity: 0; }
html.js [data-img]           { clip-path: inset(100% 0% 0% 0%); }
/* GSAP drives `transform` frame-by-frame during the reveal, so the
   .photo-zoom transition must stay out of the way. The engine strips
   data-img once the reveal finishes, which hands the hover back to CSS. */
html.js [data-img] .photo-inner { transform: scale(1.28); transition: none; }

html.vm-fallback [data-reveal],
html.vm-fallback [data-stagger] > *,
html.vm-fallback [data-split],
html.vm-fallback [data-split-chars] { opacity: 1 !important; }
html.vm-fallback [data-img]        { clip-path: none !important; }
html.vm-fallback [data-img] .photo-inner { transform: none !important; }

/* SplitText mask wrappers get overflow:hidden from the plugin;
   this keeps descenders from being clipped. */
.split-line { padding-bottom: 0.12em; }
.vm-char { padding-bottom: 0.08em; }

/* Cards that lean toward the cursor need a 3D context. */
[data-tilt] { transform-style: preserve-3d; }

/* The eyebrow's leading rule draws itself as the block fades in. */
html.js .eyebrow[data-reveal]::before { transform: scaleX(0); transition: transform .9s var(--ease) .2s; }
html.js .eyebrow[data-reveal].vm-in::before { transform: scaleX(1); }
html.vm-fallback .eyebrow[data-reveal]::before { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  html.js [data-stagger] > *,
  html.js [data-split],
  html.js [data-split-chars] { opacity: 1 !important; }
  html.js [data-img]        { clip-path: none !important; }
  html.js [data-img] .photo-inner { transform: none !important; }
  html.js #vm-curtain       { transform: translateY(100%); }
  html.js .eyebrow[data-reveal]::before { transform: none; }
  .step .bar                { transform: scaleX(1); }
  .scroll-cue .line::after  { animation: none; }
  #vm-preloader, #vm-grain  { display: none; }
}

/* =============================================================
   CONTACT — details column + enquiry form
   ============================================================= */
.c-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 22px; margin-bottom: 46px; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 34px; align-items: start; }

.c-details { display: grid; gap: 10px; }
.c-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; border-radius: 18px;
  background: var(--paper); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
a.c-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-tint); }
.c-item.is-static { cursor: default; }
.c-ic {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--gold-tint); color: var(--gold-deep);
}
.c-ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.c-txt b { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
.c-txt > span { font-size: 16px; font-weight: 600; line-height: 1.45; color: var(--ink); }

.c-hours { padding: 20px 22px; border-radius: 18px; background: var(--cream-2); border: 1px dashed var(--line); }
.c-hours b { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.c-hours span { display: block; font-size: 15px; font-weight: 600; color: var(--ink-70); }

.c-form {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 24px;
  padding: 34px; box-shadow: var(--shadow-md); display: grid; gap: 18px;
}
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; }
.field > span { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 8px; }
.field > span i { color: var(--coral); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; font-weight: 500; color: var(--ink);
  background: var(--cream-2); border: 1.5px solid var(--line); border-radius: 14px;
  padding: 13px 16px; outline: none; resize: vertical;
  transition: border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-40); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: var(--paper); box-shadow: 0 0 0 4px rgba(200,138,46,0.14);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); }
.field .err { display: block; min-height: 0; font-size: 12.5px; font-style: normal; font-weight: 700; color: var(--coral); }
.field.invalid .err { margin-top: 6px; }

.c-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.c-note { font-size: 13.5px; font-weight: 600; color: var(--ink-40); }
.c-note.is-ok { color: var(--emerald); }
.c-note.is-err { color: var(--coral); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .c-row { grid-template-columns: 1fr; }
  .c-form { padding: 24px; border-radius: 20px; }
  .c-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .split, .occasions { grid-template-columns: 1fr; gap: 34px; }
  .features { grid-template-columns: 1fr 1fr; }
  .steps, .stats { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-left: none; padding: 26px 0; border-top: 1px solid var(--line); }
  .pillar:first-child { padding-top: 0; border-top: none; }
  .checklist { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr 1fr; }
  .band-inner { padding: 54px 32px; }
  /* Below the pin breakpoint the gallery becomes a native swipe strip. */
  .hscroll { padding: 56px 0; }
  .hscroll-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hscroll-viewport::-webkit-scrollbar { display: none; }
  .hscroll-panel { width: 72vw; scroll-snap-align: center; }
  .pin-head { padding: 0 22px 28px; }
  .total-scroll { display: none; }
}
@media (max-width: 640px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .header-wrap { padding: 16px 22px; }
  #main-nav.nav-solid .header-wrap { padding: 12px 22px; }
  .nav-right .nav-tel, .nav-right .social { display: none; }
  .main-menu { padding: 110px 22px 40px; }
  .main-menu .meta { display: none; }
  .menu-list a { gap: 16px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .features, .steps, .stats, .f-top { grid-template-columns: 1fr; }
  .hero-inner { padding-bottom: 96px; }
  .occ-card, .occ-tall { min-height: 340px; }
  .hscroll-track { padding: 0 22px; gap: 16px; }
  .hscroll-panel { width: 84vw; }
  #vm-preloader .pl-count { right: 22px; bottom: 26px; }
  #vm-preloader .pl-bar { left: 22px; right: 22px; }
}
