/**
 * Vivid Canvas — Wedding Package Explorer
 * Premium white/gold wedding section. De-shelled from the original phone mockup
 * into a responsive browser section. Everything is scoped under
 * `.vc-wedding-explorer` so it never leaks into the rest of the site.
 */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Great+Vibes&family=Montserrat:wght@500;600;700;800&display=swap");

.vc-wedding-explorer {
  --ink: #221914;
  --muted: #8a7663;
  --gold: #b88a34;
  --gold-soft: #d8bc76;
  --gold-dark: #7e5c1d;
  --ivory: #fffaf0;
  --paper: #fffdf8;
  --line: rgba(184, 138, 52, 0.28);
  --shadow: 0 24px 70px rgba(57, 35, 8, 0.18);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 7vw, 104px) 5%;
  color: var(--ink);
  color-scheme: light;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.98), transparent 18rem),
    radial-gradient(circle at 86% 18%, rgba(247, 224, 187, 0.78), transparent 24rem),
    radial-gradient(circle at 50% 120%, rgba(216, 188, 118, 0.32), transparent 30rem),
    linear-gradient(135deg, #f6e8d2 0%, #fffaf1 34%, #fdf3df 62%, #f1ddc0 100%);
}

/* Decorative, scoped to the section (was body::before / body::after) */
.vc-wedding-explorer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.5), transparent 44%),
    radial-gradient(ellipse at 22% 86%, rgba(255, 255, 255, 0.82), transparent 28rem),
    radial-gradient(ellipse at 92% 80%, rgba(227, 186, 125, 0.34), transparent 22rem);
}

.vc-wedding-explorer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.8) 44%, transparent 46%),
    linear-gradient(25deg, transparent 0 58%, rgba(184, 138, 52, 0.16) 59%, transparent 60%);
  background-size: 330px 330px, 260px 260px;
}

.vc-wedding-explorer a {
  color: inherit;
  text-decoration: none;
}

.vc-wedding-explorer button,
.vc-wedding-explorer a {
  -webkit-tap-highlight-color: transparent;
}

.vc-wedding-explorer *,
.vc-wedding-explorer *::before,
.vc-wedding-explorer *::after {
  box-sizing: border-box;
}

/* Content column */
.vc-explorer-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
}

/* Top buttons: menu (hamburger) + phone */
.vc-top-buttons {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.vc-round-btn {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 138, 52, 0.22);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.86);
  color: var(--gold-dark);
  box-shadow: 0 14px 34px rgba(79, 48, 10, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(16px);
}

.vc-round-btn:hover,
.vc-round-btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(79, 48, 10, 0.18);
}

.vc-menu-lines {
  display: grid;
  gap: 5px;
  width: 24px;
}

.vc-menu-lines span,
.vc-phone-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.vc-phone-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 6px 6px 12px 6px;
  transform: rotate(42deg);
}

.vc-menu-panel {
  position: absolute;
  top: 68px;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 8px;
  width: min(290px, calc(100% - 12px));
  padding: 12px;
  border: 1px solid rgba(184, 138, 52, 0.22);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 22px 48px rgba(74, 47, 14, 0.18);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(22px);
}

.vc-menu-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.vc-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(184, 138, 52, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vc-menu-panel a span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

/* Brand lockup */
.vc-brand-lockup {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 6px 0 24px;
  text-align: center;
}

.vc-spark {
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.vc-spark::before,
.vc-spark::after {
  content: "";
  position: absolute;
  inset: 7px 0;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.75);
}

.vc-spark::after {
  inset: 0 7px;
}

.vc-brand-lockup strong {
  color: var(--gold);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-indent: 0.22em;
}

.vc-brand-lockup span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Title + claim CTA */
.vc-title {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  margin: 0 auto 26px;
  padding: clamp(26px, 3.8vw, 40px) clamp(26px, 5vw, 52px) clamp(24px, 3.4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 240, 0.32));
  box-shadow:
    0 18px 48px rgba(105, 73, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Gilded hairline frame inside the plaque for a high-end engraved feel */
.vc-title::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(184, 138, 52, 0.32);
  border-radius: 16px;
  pointer-events: none;
}

.vc-title {
  position: relative;
}

.vc-title h1,
.vc-title h2 {
  margin: 0;
  padding: 0.06em 0 0.1em;
  font-family: "Great Vibes", "Cormorant Garamond", Georgia, cursive;
  font-size: clamp(3.4rem, 11vw, 5.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #a9802c 0%, #d8bc76 46%, #7e5c1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.vc-title p {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vc-title-deadline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2px auto 0;
  color: #8d621d;
  font-family: "Great Vibes", "Cormorant Garamond", Georgia, cursive;
  font-size: clamp(2.05rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62), 0 0 18px rgba(216, 188, 118, 0.38);
  animation: vc-deadline-glow 1.55s ease-in-out infinite;
}

@keyframes vc-deadline-glow {
  0%,
  100% {
    color: #8d621d;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(184, 138, 52, 0));
  }

  50% {
    color: #c2851f;
    transform: scale(1.025);
    filter: drop-shadow(0 0 12px rgba(184, 138, 52, 0.42));
  }
}

.vc-claim,
.vc-consult-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  min-width: 230px;
  margin: 6px auto 0;
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  background: linear-gradient(135deg, #d6ad55 0%, #b88a34 48%, #7e5c1d 100%);
  color: #fffaf0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow:
    0 14px 35px rgba(105, 73, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  overflow: hidden;
  text-decoration: none;
}

.vc-claim::before,
.vc-consult-hero::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -35%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  animation: vc-shine 3.2s ease-in-out infinite;
}

.vc-claim i,
.vc-consult-hero i {
  position: relative;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
}

.vc-claim i::before,
.vc-claim i::after,
.vc-consult-hero i::before,
.vc-consult-hero i::after {
  content: "";
  position: absolute;
  background: #fffaf0;
}

.vc-claim i::before,
.vc-consult-hero i::before {
  inset: 6px 0;
}

.vc-claim i::after,
.vc-consult-hero i::after {
  inset: 0 6px;
}

/* Animated video card */
.vc-video-card {
  position: relative;
  margin: 30px auto 24px;
  width: min(100%, 520px);
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: #2a1d12;
  box-shadow:
    0 24px 54px rgba(62, 38, 12, 0.26),
    0 0 0 1px rgba(184, 138, 52, 0.2);
}

.vc-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(184, 138, 52, 0.5), rgba(255, 255, 255, 0.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: vc-gold-border 4.4s linear infinite;
}

.vc-video-card img,
.vc-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-video-card video {
  z-index: 1;
  opacity: 1;
  transition: opacity 320ms ease, transform 420ms ease;
}

/* While a new clip loads, fully hide the player (no poster / previous-frame
   flash). The card's dark backdrop + animated gold border carry the moment,
   then JS removes this class on the first decoded frame to fade the film in. */
.vc-video-card.is-switching video {
  opacity: 0;
  transform: scale(1.05);
}

.vc-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 58%, rgba(26, 19, 12, 0.42));
  pointer-events: none;
}

/* Visual-only "tap to play" glyph. It is NOT a button — clicks fall through
   (pointer-events: none) to the card, which toggles play/pause. It shows ONLY
   while the video is paused, so it never blocks the footage during playback. */
.vc-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(218, 188, 103, 0.9);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.74);
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 16px 38px rgba(37, 24, 9, 0.24);
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease;
}

.vc-video-card.is-playing .vc-play {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.7);
}

.vc-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--gold);
}

/* Fullscreen control (top-right). A real button -> native fullscreen so the OS
   owns rotation: flip the phone and the film flips with it. */
.vc-fullscreen {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: rgba(26, 19, 12, 0.42);
  cursor: pointer;
  opacity: 0.82;
  backdrop-filter: blur(8px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

.vc-fullscreen:hover,
.vc-fullscreen:focus-visible {
  outline: none;
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(26, 19, 12, 0.64);
}

.vc-fullscreen::before {
  content: "";
  width: 19px;
  height: 19px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fffaf0' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5'/%3E%3C/svg%3E");
}

.vc-video-progress {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.vc-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  cursor: pointer;
}

/* Fill reflects REAL elapsed playback (width set in JS from currentTime). */
.vc-track-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #dcb35a, #fffaf0);
  transition: width 220ms linear;
}

/* Package cards */
.vc-packages {
  position: relative;
  margin: 0;
  padding: 0 0 14px;
}

.vc-package-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 12px;
  /* overflow-x: auto forces overflow-y to compute to auto, which would clip the
     active card as it lifts/scales up and the glowing ring (inset -2px). The
     generous vertical padding keeps that lift + ring inside the scroll box so
     nothing gets cut off. Horizontal padding does the same for the end cards. */
  overflow-x: auto;
  overflow-y: visible;
  padding-block: 26px 34px;
  padding-inline: max(18px, calc((100% - 190px) / 2));
  scroll-padding-inline: max(18px, calc((100% - 190px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vc-package-track::-webkit-scrollbar {
  display: none;
}

.vc-package-card {
  --package-accent: var(--gold);
  --package-muted: var(--muted);
  --package-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 240, 0.74) 100%);
  --package-active-bg: rgba(255, 253, 248, 0.96);
  --package-border: rgba(184, 138, 52, 0.18);
  --package-active-border: rgba(184, 138, 52, 0.8);
  --package-shadow: 0 18px 36px rgba(74, 47, 14, 0.11);
  --package-active-shadow:
    0 22px 46px rgba(74, 47, 14, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  --package-ring: conic-gradient(from var(--angle), rgba(126, 92, 29, 0.95), rgba(255, 234, 178, 0.95), rgba(184, 138, 52, 0.95), rgba(126, 92, 29, 0.95));
  --package-button: linear-gradient(135deg, #d6ad55 0%, #b88a34 48%, #7e5c1d 100%);
  --package-button-text: #fffaf0;

  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 202px;
  padding: 18px 14px;
  border: 1px solid var(--package-border);
  border-radius: 20px;
  background: var(--package-bg);
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  scroll-snap-align: center;
  box-shadow: var(--package-shadow);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  animation: vc-pop-in 560ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.vc-package-card > * {
  position: relative;
  z-index: 1;
}

.vc-package-card[data-package="intimate"] {
  --package-accent: #c99081;
  --package-muted: #8d6359;
  --package-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 240, 236, 0.82) 100%),
    radial-gradient(circle at 20% 0%, rgba(255, 214, 206, 0.55), transparent 58%);
  --package-active-bg:
    linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(255, 237, 232, 0.9) 100%);
  --package-border: rgba(201, 144, 129, 0.34);
  --package-active-border: rgba(201, 144, 129, 0.78);
  --package-shadow: 0 18px 36px rgba(128, 74, 61, 0.12);
  --package-active-shadow: 0 24px 50px rgba(128, 74, 61, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.86);
  --package-ring: conic-gradient(from var(--angle), #8d6359, #ffe4dd, #c99081, #f5c7b9, #8d6359);
  --package-button: linear-gradient(135deg, #dfa898 0%, #c99081 52%, #8d6359 100%);
}

.vc-package-card[data-package="classic"] {
  --package-accent: #b88a34;
  --package-muted: #806f5d;
  --package-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 230, 214, 0.88) 100%),
    radial-gradient(circle at 78% 8%, rgba(216, 188, 118, 0.34), transparent 58%);
  --package-active-bg:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(238, 226, 209, 0.94) 100%);
  --package-border: rgba(168, 134, 90, 0.34);
  --package-active-border: rgba(184, 138, 52, 0.82);
  --package-shadow: 0 18px 36px rgba(94, 75, 51, 0.12);
  --package-active-shadow: 0 24px 50px rgba(94, 75, 51, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.86);
}

.vc-package-card[data-package="signature"] {
  --package-accent: #d7ad4f;
  --package-muted: #6f5018;
  --package-bg:
    linear-gradient(145deg, rgba(255, 250, 230, 0.98) 0%, rgba(230, 190, 92, 0.42) 45%, rgba(255, 245, 214, 0.9) 100%);
  --package-active-bg:
    linear-gradient(145deg, rgba(255, 251, 232, 1) 0%, rgba(232, 190, 88, 0.55) 44%, rgba(255, 243, 205, 0.96) 100%);
  --package-border: rgba(209, 166, 72, 0.5);
  --package-active-border: rgba(212, 175, 55, 0.96);
  --package-shadow: 0 20px 42px rgba(145, 103, 28, 0.17);
  --package-active-shadow: 0 30px 62px rgba(145, 103, 28, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  --package-ring: conic-gradient(from var(--angle), #7e5c1d, #fff2b8, #d4af37, #ffffff, #b88a34, #7e5c1d);
  --package-button: linear-gradient(135deg, #ffe9a7 0%, #d4af37 48%, #876316 100%);
  --package-button-text: #221914;
}

.vc-package-card[data-package="signature"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, 0.74) 44%, transparent 56%),
    radial-gradient(circle at 20% 18%, rgba(255, 246, 198, 0.7), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.65;
  transform: translateX(-72%);
  animation: vc-signature-shimmer 4.2s ease-in-out infinite;
}

.vc-package-card[data-package="heirloom"] {
  --package-accent: #a679d9;
  --package-muted: #657086;
  --package-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 241, 255, 0.82) 28%, rgba(255, 239, 248, 0.82) 55%, rgba(235, 252, 255, 0.88) 100%);
  --package-active-bg:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(241, 235, 255, 0.92) 28%, rgba(255, 236, 249, 0.9) 58%, rgba(229, 251, 255, 0.96) 100%);
  --package-border: rgba(166, 121, 217, 0.34);
  --package-active-border: rgba(166, 121, 217, 0.72);
  --package-shadow: 0 20px 42px rgba(93, 83, 133, 0.14);
  --package-active-shadow: 0 30px 62px rgba(93, 83, 133, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  --package-ring: conic-gradient(from var(--angle), #d4af37, #f2f1ff, #a679d9, #dff8ff, #ffeaf6, #d4af37);
  --package-button: linear-gradient(135deg, #fff1bd 0%, #d8c7ff 34%, #bdefff 68%, #d4af37 100%);
  --package-button-text: #221914;
}

.vc-package-card[data-package="heirloom"]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0) 0 28%, rgba(255, 255, 255, 0.72) 43%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 20% 18%, rgba(255, 237, 250, 0.76), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(204, 244, 255, 0.74), transparent 34%);
  opacity: 0.62;
  transform: translate3d(-18%, -8%, 0) scale(1.12);
  animation: vc-heirloom-iridescence 7s ease-in-out infinite;
}

.vc-package-track .vc-package-card:nth-child(1) { animation-delay: 60ms; }
.vc-package-track .vc-package-card:nth-child(2) { animation-delay: 150ms; }
.vc-package-track .vc-package-card:nth-child(3) { animation-delay: 240ms; }
.vc-package-track .vc-package-card:nth-child(4) { animation-delay: 330ms; }

@keyframes vc-pop-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-package-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.vc-package-card:hover,
.vc-package-card:focus-visible,
.vc-package-card.is-active {
  outline: none;
  z-index: 2;
  transform: translateY(-6px);
  border-color: var(--package-active-border);
  background: var(--package-active-bg);
  box-shadow: var(--package-active-shadow);
}

.vc-package-card.is-active {
  z-index: 3;
  transform: translateY(-10px) scale(1.04);
}

.vc-package-card.is-active::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: var(--package-ring);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: vc-spin 4s linear infinite;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.vc-package-card .vc-mini-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 11px;
  color: var(--package-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.vc-package-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.74rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.vc-package-card .vc-standard {
  display: block;
  margin: 9px 0 13px;
  color: var(--package-accent);
  font-size: 1rem;
  font-weight: 500;
}

.vc-package-card .vc-rule {
  display: block;
  width: 70px;
  height: 1px;
  margin: 0 auto 13px;
  background: color-mix(in srgb, var(--package-accent) 26%, transparent);
}

.vc-package-card .vc-offer {
  display: block;
  margin: 0 0 13px;
  color: var(--package-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-details-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 6px;
  border: 0;
  border-radius: 11px;
  background: var(--package-button);
  color: var(--package-button-text);
  font: inherit;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(105, 73, 18, 0.18);
  cursor: pointer;
  white-space: nowrap;
}

.vc-package-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.vc-buy-now {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  overflow: hidden;
  padding: 7px 7px;
  border: 1px solid color-mix(in srgb, var(--package-accent) 42%, rgba(255, 255, 255, 0.65));
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, color-mix(in srgb, var(--package-accent) 34%, #fff6dc) 52%, color-mix(in srgb, var(--package-accent) 78%, #7e5c1d) 100%);
  color: #25190c;
  font: inherit;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(105, 73, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vc-buy-now::before {
  content: "";
  position: absolute;
  top: -48%;
  bottom: -48%;
  left: -42%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  filter: blur(1px);
  transform: translateX(0) rotate(18deg);
  animation: vc-buy-shine 4.6s ease-in-out infinite;
}

.vc-buy-now:hover,
.vc-buy-now:focus-visible {
  border-color: rgba(255, 244, 202, 0.96);
  box-shadow: 0 15px 28px rgba(105, 73, 18, 0.24), 0 0 22px color-mix(in srgb, var(--package-accent) 32%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  outline: none;
  transform: translateY(-1px);
}

.vc-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 2px 0 18px;
}

.vc-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(184, 138, 52, 0.22);
}

.vc-dots span.is-active {
  background: var(--gold);
}

/* Selected package detail drawer */
.vc-detail-drawer {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 20px;
  border: 1px solid rgba(184, 138, 52, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.74));
  box-shadow: 0 18px 38px rgba(74, 47, 14, 0.12);
  backdrop-filter: blur(18px);
}

.vc-detail-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.vc-detail-top h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.94;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.vc-detail-top p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-detail-price {
  display: grid;
  gap: 4px;
  justify-items: end;
  white-space: nowrap;
  color: var(--gold-dark);
  font-weight: 800;
}

.vc-detail-price span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-detail-price strong {
  font-size: 1.4rem;
}

.vc-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Each feature is a collapsible row with an optional preview + note */
.vc-feature {
  border: 1px solid rgba(184, 138, 52, 0.2);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 240, 0.5));
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.vc-feature.is-open {
  border-color: rgba(184, 138, 52, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.72));
  box-shadow: 0 18px 34px rgba(74, 47, 14, 0.14);
}

.vc-feature-head {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.36;
  text-align: left;
  cursor: pointer;
}

.vc-feature-head::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 52, 0.13);
}

.vc-feature-head--static {
  cursor: default;
  grid-template-columns: 16px 1fr;
}

.vc-feature-label {
  min-width: 0;
}

.vc-feature-chevron {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
  transition: transform 240ms ease;
}

.vc-feature-chevron::before,
.vc-feature-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-dark);
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease, transform 240ms ease;
}

.vc-feature-chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vc-feature.is-open .vc-feature-chevron::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.vc-feature-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.vc-feature-body {
  padding: 0 14px 16px 40px;
}

.vc-feature-media,
.vc-feature-media-ph {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 12px;
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid rgba(184, 138, 52, 0.2);
  box-shadow: 0 18px 34px rgba(74, 47, 14, 0.16);
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: opacity 360ms ease, transform 420ms ease, filter 420ms ease;
}

.vc-feature.is-open .vc-feature-media,
.vc-feature.is-open .vc-feature-media-ph {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vc-feature.is-open .vc-feature-media {
  animation: vc-editorial-float 7s ease-in-out infinite;
}

.vc-feature-media-ph {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(184, 138, 52, 0.06) 0 12px, rgba(255, 255, 255, 0.5) 12px 24px),
    linear-gradient(135deg, #f6ecd8, #fffaf1);
  color: var(--gold-dark);
}

.vc-feature-media-ph span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vc-feature-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

@keyframes vc-editorial-float {
  0%, 100% {
    filter: saturate(1) brightness(1);
    transform: translateY(0) scale(1);
  }
  50% {
    filter: saturate(1.04) brightness(1.035);
    transform: translateY(-2px) scale(1.008);
  }
}

.vc-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vc-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(184, 138, 52, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.vc-action-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #d6ad55 0%, #b88a34 48%, #7e5c1d 100%);
  color: #fffaf0;
}

.vc-action-consult {
  grid-column: 1 / -1;
  border-color: rgba(184, 138, 52, 0.48);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.88), transparent 26%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 229, 194, 0.92) 48%, rgba(212, 175, 55, 0.72));
  color: #221914;
  box-shadow: 0 14px 28px rgba(105, 73, 18, 0.14);
}

/* Photo bundle */
.vc-photo-bundle {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 20px;
  border: 1px solid rgba(184, 138, 52, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.62));
  backdrop-filter: blur(18px);
}

.vc-photo-bundle h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
}

.vc-photo-bundle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.vc-photo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vc-photo-card {
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 132px;
  padding: 12px;
  border: 1px solid rgba(184, 138, 52, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.28;
}

.vc-photo-card strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.vc-photo-label {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
}

.vc-photo-actions {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.vc-photo-buy {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  overflow: hidden;
  padding: 7px 9px;
  border: 1px solid rgba(184, 138, 52, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, rgba(245, 222, 181, 0.96) 52%, rgba(184, 138, 52, 0.82) 100%);
  color: #25190c;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 23px rgba(105, 73, 18, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vc-photo-buy::before {
  content: "";
  position: absolute;
  top: -48%;
  bottom: -48%;
  left: -42%;
  z-index: -1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  filter: blur(1px);
  transform: translateX(0) rotate(18deg);
  animation: vc-buy-shine 4.8s ease-in-out infinite;
}

.vc-photo-buy-soft {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98) 0%, rgba(240, 226, 204, 0.95) 54%, rgba(207, 177, 126, 0.72) 100%);
}

.vc-photo-buy:hover,
.vc-photo-buy:focus-visible {
  border-color: rgba(255, 244, 202, 0.96);
  box-shadow: 0 15px 27px rgba(105, 73, 18, 0.22), 0 0 20px rgba(184, 138, 52, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  outline: none;
  transform: translateY(-1px);
}

/* Booking terms accordions */
.vc-terms {
  display: grid;
  gap: 8px;
  margin: 0;
}

.vc-term {
  overflow: hidden;
  border: 1px solid rgba(184, 138, 52, 0.2);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
}

.vc-term button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: #17100d;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: none;
  cursor: pointer;
}

.vc-term button span:first-child {
  color: #17100d !important;
  font-family: "Great Vibes", "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.vc-term button span:last-child {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #fffaf0;
  transition: transform 180ms ease;
}

.vc-term.is-open button span:last-child {
  transform: rotate(45deg);
}

.vc-term-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.vc-term-content {
  padding: 0 16px 14px;
  color: #211612;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
}

.vc-term-content p {
  color: #211612 !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
  margin: 0;
}

/* Keyframes */
@keyframes vc-shine {
  0% {
    transform: translateX(0) rotate(18deg);
  }
  46%,
  100% {
    transform: translateX(520%) rotate(18deg);
  }
}

@keyframes vc-buy-shine {
  0%,
  46% {
    opacity: 0;
    transform: translateX(0) rotate(18deg);
  }

  56% {
    opacity: 0.9;
  }

  74%,
  100% {
    opacity: 0;
    transform: translateX(520%) rotate(18deg);
  }
}

@keyframes vc-gold-border {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(12deg) brightness(1.14);
  }
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
}

@keyframes vc-signature-shimmer {
  0%,
  42% {
    transform: translateX(-72%);
    opacity: 0.36;
  }
  58% {
    opacity: 0.78;
  }
  100% {
    transform: translateX(72%);
    opacity: 0.36;
  }
}

@keyframes vc-heirloom-iridescence {
  0%,
  100% {
    filter: hue-rotate(0deg) saturate(1);
    transform: translate3d(-18%, -8%, 0) scale(1.12);
  }
  50% {
    filter: hue-rotate(18deg) saturate(1.12);
    transform: translate3d(16%, 8%, 0) scale(1.16);
  }
}

@keyframes vc-spin {
  to {
    --angle: 360deg;
  }
}

/* Desktop: roomier layout, package cards become a 4-up grid (no scroll) */
@media (min-width: 860px) {
  .vc-explorer-inner {
    width: min(100%, 1180px);
  }

  .vc-video-card {
    width: min(100%, 720px);
  }

  .vc-package-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-columns: auto;
    overflow: visible;
    padding: 6px 0 10px;
    scroll-padding-inline: 0;
  }

  .vc-detail-top h3 {
    font-size: 2.6rem;
  }

  .vc-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .vc-feature.is-open {
    grid-row: span 2;
  }

  .vc-feature-body {
    padding-left: 14px;
  }

  .vc-photo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vc-wedding-explorer *,
  .vc-wedding-explorer *::before,
  .vc-wedding-explorer *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   "Claim 10%" voucher modal — collects name + phone and posts to the live
   website lead list (Netlify function) + Netlify Forms backup.
   ========================================================================== */
/* Self-contained (no .vc-wedding-explorer ancestor): the modal lives on
   <body>, so it carries its own palette variables. */
.vc-claim-modal {
  --ink: #221914;
  --muted: #8a7663;
  --gold: #b88a34;
  --gold-dark: #7e5c1d;

  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  opacity: 0;
  transition: opacity 240ms ease;
}

.vc-claim-modal[hidden] {
  display: none;
}

.vc-claim-modal.is-open {
  opacity: 1;
}

.vc-claim-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 8, 0.55);
  backdrop-filter: blur(6px);
}

.vc-claim-dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 420px);
  margin: auto;
  padding: 30px 26px 26px;
  border: 1px solid rgba(184, 138, 52, 0.4);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff6e6 100%);
  box-shadow: 0 30px 80px rgba(40, 24, 6, 0.4);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vc-claim-modal.is-open .vc-claim-dialog {
  transform: translateY(0) scale(1);
}

.vc-claim-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(184, 138, 52, 0.12);
  color: var(--gold-dark);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease;
}

.vc-claim-x:hover,
.vc-claim-x:focus-visible {
  outline: none;
  background: rgba(184, 138, 52, 0.24);
}

.vc-claim-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vc-claim-heading {
  margin: 0 0 8px;
  font-family: "Great Vibes", "Cormorant Garamond", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-dark);
  -webkit-text-fill-color: var(--gold-dark);
}

.vc-claim-sub {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.vc-claim-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.vc-claim-field {
  display: grid;
  gap: 5px;
}

.vc-claim-field span {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-claim-field input {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(184, 138, 52, 0.4);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

.vc-claim-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 52, 0.18);
}

.vc-claim-bot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.vc-claim-submit {
  margin-top: 4px;
  padding: 14px 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #d6ad55 0%, #b88a34 48%, #7e5c1d 100%);
  color: #fffaf0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(105, 73, 18, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.vc-claim-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(105, 73, 18, 0.3);
}

.vc-claim-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.vc-claim-status {
  margin: 4px 0 0;
  min-height: 1.1em;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.vc-claim-status[data-tone="error"] {
  color: #b3261e;
}

.vc-claim-status[data-tone="success"] {
  color: #2f7d3a;
}

/* ==========================================================================
   Phone landscape: short height / wide width. Keep the hero video and the
   whole explorer comfortably inside the viewport when the phone is rotated.
   (Native fullscreen handles in-player rotation separately.)
   ========================================================================== */
@media (max-width: 920px) and (orientation: landscape) {
  .vc-wedding-explorer {
    padding: 26px 5%;
  }

  .vc-video-card {
    width: auto;
    height: min(64vh, 380px);
    max-width: 100%;
    margin: 14px auto 16px;
  }

}

/* Claim modal in phone landscape: tighten the dialog so it fits the short
   viewport without scrolling. */
@media (max-height: 560px) and (orientation: landscape) {
  .vc-claim-dialog {
    padding: 20px 22px 18px;
  }

  .vc-claim-heading {
    font-size: 2rem;
  }

  .vc-claim-sub {
    margin-bottom: 12px;
  }

  .vc-claim-field input {
    padding: 10px 12px;
  }
}
