/* =====================================================================
   7Vachan — Destination Weddings, Worldwide
   Self-contained premium landing stylesheet.
   Component classes are prefixed `wv-` (mirrors photu's `pd-` system) so the
   page renders without a Tailwind build step. Light / ivory wedding theme.
   ===================================================================== */

:root {
  /* Palette */
  --wv-bg:        #f7f1ea;   /* warm ivory */
  --wv-bg-2:      #efe6da;   /* deeper sand */
  --wv-surface:   #fffdfa;   /* card white */
  --wv-ink:       #2b2620;   /* near-black warm */
  --wv-ink-soft:  #6b6157;   /* muted body */
  --wv-line:      #e4d8c9;   /* hairline */
  --wv-gold:      #b0873a;   /* champagne gold */
  --wv-gold-deep: #8f6c26;
  --wv-rose:      #9f2f5f;   /* wine rose accent */
  --wv-emerald:   #2f5d4f;   /* deep botanical */

  /* Type */
  --wv-serif:  "Playfair Display", ui-serif, Georgia, serif;
  --wv-display:"Cormorant Garamond", ui-serif, Georgia, serif;
  --wv-sans:   "Jost", "Inter", ui-sans-serif, system-ui, sans-serif;
  --wv-script: "Great Vibes", cursive;

  /* Depth */
  --wv-shadow-sm: 0 4px 14px -8px rgba(43, 38, 32, .35);
  --wv-shadow:    0 24px 50px -32px rgba(43, 38, 32, .45);
  --wv-shadow-lg: 0 40px 80px -44px rgba(43, 38, 32, .55);

  --wv-radius: 18px;
  --wv-maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--wv-bg);
  color: var(--wv-ink);
  font-family: var(--wv-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--wv-gold); color: #fff; }

/* ---------- layout helpers ---------- */
.wv-wrap { width: 100%; max-width: var(--wv-maxw); margin-inline: auto; padding-inline: 22px; }
.wv-section { padding-block: clamp(64px, 9vw, 128px); }
.wv-center { text-align: center; }

.wv-eyebrow {
  font-family: var(--wv-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--wv-gold-deep);
}
.wv-title {
  font-family: var(--wv-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(30px, 4.6vw, 54px);
  margin: 14px 0 0;
}
.wv-lead {
  max-width: 60ch;
  margin: 18px auto 0;
  color: var(--wv-ink-soft);
  font-size: clamp(15px, 1.4vw, 17px);
}
.wv-rule {
  width: 64px; height: 1px; margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--wv-gold), transparent);
  position: relative;
}
.wv-rule::after {
  content: "❧"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%); color: var(--wv-gold);
  font-size: 15px; background: var(--wv-bg); padding: 0 8px;
}

/* ---------- buttons ---------- */
.wv-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--wv-sans); font-size: 13.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.wv-btn svg { width: 16px; height: 16px; }
.wv-btn-primary {
  background: var(--wv-gold); color: #fff;
  box-shadow: 0 16px 30px -18px rgba(176, 135, 58, .9);
}
.wv-btn-primary:hover { background: var(--wv-gold-deep); transform: translateY(-2px); }
.wv-btn-ghost {
  background: transparent; color: var(--wv-ink); border-color: var(--wv-line);
}
.wv-btn-ghost:hover { border-color: var(--wv-gold); color: var(--wv-gold-deep); }
.wv-btn-light {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.wv-btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }

/* ---------- scroll progress ---------- */
.wv-progress {
  position: fixed; top: 0; left: 0; z-index: 90;
  height: 2px; width: var(--wv-scroll, 0%);
  background: linear-gradient(90deg, var(--wv-gold), var(--wv-rose));
  pointer-events: none; transition: width .1s linear;
}

/* ---------- header ---------- */
.wv-header {
  position: fixed; inset: 0 0 auto 0; z-index: 70;
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.wv-header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-block: 20px;
}
.wv-header.is-scrolled {
  background: rgba(247, 241, 234, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px -30px rgba(43, 38, 32, .6);
  border-bottom: 1px solid var(--wv-line);
}
/* Once the bar is opaque, the light CTA would vanish on ivory — make it a gold pill. */
.wv-header.is-scrolled .wv-header-cta {
  background: var(--wv-gold); color: #fff; border-color: var(--wv-gold);
  backdrop-filter: none;
}
.wv-header.is-scrolled .wv-header-cta:hover { background: var(--wv-gold-deep); }
.wv-brand { display: flex; align-items: baseline; gap: 4px; line-height: 1; }
.wv-brand-mark {
  font-family: var(--wv-serif); font-weight: 700; font-size: 24px;
  letter-spacing: -0.01em; color: var(--wv-ink);
}
.wv-brand-mark b { color: var(--wv-gold); font-weight: 700; }
.wv-header.is-light .wv-brand-mark { color: #fff; }
.wv-header.is-light.is-scrolled .wv-brand-mark { color: var(--wv-ink); }

.wv-nav { display: none; align-items: center; gap: 34px; }
.wv-nav a {
  font-size: 13px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--wv-ink-soft); position: relative; padding-block: 6px;
}
.wv-header.is-light .wv-nav a { color: rgba(255,255,255,.85); }
.wv-header.is-light.is-scrolled .wv-nav a { color: var(--wv-ink-soft); }
.wv-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--wv-gold); transition: width .3s ease;
}
.wv-nav a:hover { color: var(--wv-gold-deep); }
.wv-nav a:hover::after { width: 100%; }

.wv-header-cta { display: none; }

.wv-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--wv-line); background: rgba(255,255,255,.5);
  color: var(--wv-ink);
}
.wv-header.is-light .wv-burger { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.wv-header.is-light.is-scrolled .wv-burger { color: var(--wv-ink); border-color: var(--wv-line); background: rgba(255,255,255,.5); }
.wv-burger svg { width: 20px; height: 20px; }

@media (min-width: 900px) {
  .wv-nav { display: flex; }
  .wv-header-cta { display: inline-flex; }
  .wv-burger { display: none; }
}

/* ---------- mobile drawer ---------- */
.wv-navcheck { position: absolute; opacity: 0; pointer-events: none; }
.wv-drawer { display: none; position: fixed; inset: 0; z-index: 95; }
.wv-navcheck:checked ~ .wv-drawer { display: block; }
body:has(.wv-navcheck:checked) { overflow: hidden; }
.wv-drawer-scrim { position: absolute; inset: 0; background: rgba(43, 38, 32, .5); backdrop-filter: blur(2px); }
.wv-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 86vw);
  background: var(--wv-bg); padding: 84px 26px 32px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -30px 0 60px -30px rgba(43, 38, 32, .6);
  animation: wv-slide-in .35s cubic-bezier(.16,1,.3,1);
}
@keyframes wv-slide-in { from { transform: translateX(40px); opacity: .6; } to { transform: none; opacity: 1; } }
.wv-drawer-panel a {
  font-family: var(--wv-serif); font-size: 20px; color: var(--wv-ink);
  padding: 14px 6px; border-bottom: 1px solid var(--wv-line);
}
.wv-drawer-panel a:last-of-type { border-bottom: 0; }
.wv-drawer-close {
  position: absolute; top: 22px; right: 22px; width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--wv-line); cursor: pointer; color: var(--wv-ink);
}
.wv-drawer-cta { margin-top: 18px; }

/* ---------- hero ---------- */
.wv-hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; }
.wv-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.wv-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: wv-kenburns 18s ease-out forwards; }
@keyframes wv-kenburns { to { transform: scale(1); } }
.wv-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.2) 35%, rgba(20,16,12,.65) 100%),
    radial-gradient(120% 80% at 50% 20%, transparent 40%, rgba(20,16,12,.35) 100%);
}
.wv-hero-inner { position: relative; z-index: 1; width: 100%; padding-block: 120px 60px; }
.wv-hero-eyebrow { color: rgba(255,255,255,.9); }
.wv-hero-script { font-family: var(--wv-script); font-size: clamp(30px, 5vw, 52px); color: var(--wv-gold); line-height: 1; margin-top: 10px; }
.wv-hero h1 {
  font-family: var(--wv-serif); font-weight: 500;
  font-size: clamp(38px, 7vw, 88px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 6px 0 0; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.wv-hero p.wv-hero-sub {
  margin-top: 22px; max-width: 52ch; font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,.9); font-weight: 300;
}
.wv-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* rotating destination word */
.wv-rotator { display: inline-block; position: relative; color: var(--wv-gold); font-style: italic; }
.wv-rotator > span {
  position: absolute; left: 0; top: 0; white-space: nowrap; opacity: 0;
  transform: translateY(.2em); transition: opacity .5s ease, transform .5s ease;
}
.wv-rotator > span.is-active { position: relative; opacity: 1; transform: none; }

/* hero stat ribbon */
.wv-hero-stats {
  position: relative; z-index: 1; margin-top: auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px; overflow: hidden; backdrop-filter: blur(8px);
}
.wv-hero-stat { background: rgba(20,16,12,.28); padding: 20px 18px; text-align: center; }
.wv-hero-stat .n { font-family: var(--wv-serif); font-size: clamp(20px, 2.6vw, 32px); color: #fff; line-height: 1.1; }
.wv-hero-stat .l { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 4px; }
@media (min-width: 720px) { .wv-hero-stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- intro ---------- */
.wv-intro { background: var(--wv-bg); text-align: center; }
.wv-intro .wv-script { font-family: var(--wv-script); font-size: clamp(34px, 5vw, 54px); color: var(--wv-gold); line-height: 1; }
.wv-intro p.big {
  font-family: var(--wv-display); font-weight: 400;
  font-size: clamp(22px, 3.2vw, 36px); line-height: 1.4; color: var(--wv-ink);
  max-width: 24ch; margin: 14px auto 0; letter-spacing: .005em;
}
.wv-intro p.big em { font-style: italic; color: var(--wv-gold-deep); }

/* ---------- destinations ---------- */
.wv-dest { background: var(--wv-bg-2); }
.wv-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.wv-filter {
  border: 1px solid var(--wv-line); background: var(--wv-surface); color: var(--wv-ink-soft);
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 400;
  transition: all .25s ease;
}
.wv-filter:hover { color: var(--wv-gold-deep); border-color: var(--wv-gold); }
.wv-filter.is-active { background: var(--wv-ink); color: #fff; border-color: var(--wv-ink); }

.wv-grid {
  display: grid; gap: 22px; margin-top: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .wv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .wv-grid { grid-template-columns: repeat(3, 1fr); } }

.wv-card {
  position: relative; border-radius: var(--wv-radius); overflow: hidden;
  aspect-ratio: 3 / 4; box-shadow: var(--wv-shadow); cursor: pointer;
  background: #ddd;
}
.wv-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.16,1,.3,1); transform: scale(1.02);
}
.wv-card:hover img { transform: scale(1.1); }
.wv-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0) 40%, rgba(20,16,12,.28) 62%, rgba(20,16,12,.82) 100%);
  transition: background .4s ease;
}
.wv-card:hover::after { background: linear-gradient(180deg, rgba(20,16,12,.1) 20%, rgba(20,16,12,.45) 55%, rgba(20,16,12,.9) 100%); }
.wv-card-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px 22px 24px; color: #fff; }
.wv-card-region {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--wv-gold);
  font-weight: 500;
}
.wv-card-name { font-family: var(--wv-serif); font-size: 27px; line-height: 1.05; margin-top: 6px; }
.wv-card-country { font-size: 13px; color: rgba(255,255,255,.82); margin-top: 2px; letter-spacing: .04em; }
.wv-card-desc {
  font-size: 13.5px; color: rgba(255,255,255,.88); margin-top: 12px; max-width: 34ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, margin .4s ease;
}
.wv-card:hover .wv-card-desc { max-height: 120px; opacity: 1; }
.wv-card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #fff;
}
.wv-card-link svg { width: 15px; height: 15px; transition: transform .3s ease; }
.wv-card:hover .wv-card-link svg { transform: translateX(4px); }

/* ---------- hotel booking highlight ---------- */
.wv-hotels { background: var(--wv-ink); color: #f3ece1; }
.wv-hotels .wv-eyebrow { color: #d8b877; }
.wv-hotels .wv-title { color: #fdf8f0; }
.wv-hotels .wv-lead { color: rgba(255,255,255,.78); margin-inline: 0; }
.wv-hotels-hero { max-width: 68ch; }
.wv-hotels-stat {
  margin-top: 36px;
  padding: 28px 0 8px;
  border-top: 1px solid rgba(216,184,119,.28);
}
.wv-hotels-stat .n {
  font-family: var(--wv-serif);
  font-weight: 600;
  font-size: clamp(56px, 10vw, 104px);
  line-height: .9;
  letter-spacing: -0.03em;
  color: #d8b877;
}
.wv-hotels-stat .l {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.wv-hotels-split {
  display: grid;
  gap: 22px;
  margin-top: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .wv-hotels-split { grid-template-columns: 1fr 1fr; } }
.wv-hotels-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--wv-radius);
  padding: 32px 28px;
}
.wv-hotels-kicker {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #d8b877;
  font-weight: 500;
}
.wv-hotels-card h3 {
  font-family: var(--wv-serif);
  font-weight: 600;
  font-size: 26px;
  color: #fdf8f0;
  margin: 10px 0 0;
}
.wv-hotels-card p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  margin: 12px 0 0;
  max-width: 42ch;
}
.wv-hotels-card a { color: #d8b877; text-decoration: underline; text-underline-offset: 3px; }
.wv-hotels-card a:hover { color: #f3e2b0; }

/* ---------- brands ---------- */
.wv-brands { background: var(--wv-bg); }
.wv-brands-grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .wv-brands-grid { grid-template-columns: 1fr 1fr; } }
.wv-brand-card {
  background: var(--wv-surface);
  border: 1px solid var(--wv-line);
  border-radius: var(--wv-radius);
  padding: 36px 32px 32px;
  box-shadow: var(--wv-shadow-sm);
}
.wv-brand-kicker {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wv-gold-deep);
  font-weight: 500;
}
.wv-brand-card h3 {
  font-family: var(--wv-serif);
  font-weight: 600;
  font-size: 32px;
  margin: 10px 0 0;
}
.wv-brand-card p {
  color: var(--wv-ink-soft);
  font-size: 15px;
  margin: 14px 0 0;
  max-width: 42ch;
}
.wv-brand-card .wv-btn { margin-top: 22px; }

/* ---------- experiences / pillars ---------- */
.wv-exp { background: var(--wv-bg); }
.wv-exp-grid { display: grid; gap: 24px; margin-top: 48px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .wv-exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .wv-exp-grid { grid-template-columns: repeat(4, 1fr); } }
.wv-exp-card {
  background: var(--wv-surface); border: 1px solid var(--wv-line); border-radius: var(--wv-radius);
  padding: 34px 26px; text-align: center; box-shadow: var(--wv-shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.wv-exp-card:hover { transform: translateY(-6px); box-shadow: var(--wv-shadow); }
.wv-exp-icon {
  width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; color: var(--wv-gold-deep);
  background: radial-gradient(circle at 30% 30%, #fbf2e2, #f0e2cb);
  border: 1px solid var(--wv-line);
}
.wv-exp-icon svg { width: 28px; height: 28px; }
.wv-exp-card h3 { font-family: var(--wv-serif); font-weight: 600; font-size: 21px; margin: 0; }
.wv-exp-card p { color: var(--wv-ink-soft); font-size: 14.5px; margin: 10px 0 0; }

/* ---------- process / steps ---------- */
.wv-steps { background: var(--wv-emerald); color: #f3ece1; position: relative; }
.wv-steps .wv-eyebrow { color: #d8b877; }
.wv-steps .wv-title { color: #fdf8f0; }
.wv-steps .wv-lead { color: rgba(255,255,255,.78); }
.wv-steps-grid { display: grid; gap: 26px; margin-top: 52px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .wv-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.wv-step { position: relative; padding-top: 12px; }
.wv-step-num {
  font-family: var(--wv-serif); font-size: 15px; letter-spacing: .3em; color: #d8b877;
}
.wv-step h3 { font-family: var(--wv-serif); font-weight: 600; font-size: 26px; color: #fdf8f0; margin: 14px 0 0; }
.wv-step p { color: rgba(255,255,255,.78); font-size: 14.5px; margin: 12px 0 0; max-width: 34ch; }
.wv-step-line { height: 1px; width: 40px; background: #d8b877; margin-top: 18px; opacity: .7; }

/* ---------- testimonial ---------- */
.wv-quote { background: var(--wv-bg-2); text-align: center; }
.wv-quote .mark { font-family: var(--wv-serif); font-size: 90px; line-height: .4; color: var(--wv-gold); height: 50px; }
.wv-quote blockquote {
  font-family: var(--wv-display); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 3.4vw, 38px); line-height: 1.45; color: var(--wv-ink);
  max-width: 26ch; margin: 24px auto 0;
}
.wv-quote cite { display: block; margin-top: 26px; font-style: normal; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--wv-ink-soft); }
.wv-quote cite b { display: block; font-family: var(--wv-serif); font-size: 17px; letter-spacing: 0; text-transform: none; color: var(--wv-ink); font-weight: 600; margin-bottom: 4px; }

/* ---------- CTA band ---------- */
.wv-cta { position: relative; color: #fff; text-align: center; overflow: hidden; }
.wv-cta-media { position: absolute; inset: 0; z-index: 0; }
.wv-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.wv-cta-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,.7), rgba(20,16,12,.55)); }
.wv-cta-inner { position: relative; z-index: 1; }
.wv-cta .wv-title { color: #fff; }
.wv-cta .wv-eyebrow { color: var(--wv-gold); }
.wv-cta p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 18px auto 0; font-size: 16px; }
.wv-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ---------- FAQ ---------- */
.wv-faq { background: var(--wv-bg); }
.wv-faq-list { max-width: 760px; margin: 44px auto 0; }
.wv-faq-item { border-bottom: 1px solid var(--wv-line); }
.wv-faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 4px; display: flex; gap: 16px;
  align-items: center; justify-content: space-between;
  font-family: var(--wv-serif); font-size: clamp(17px, 2vw, 21px); color: var(--wv-ink);
}
.wv-faq-item summary::-webkit-details-marker { display: none; }
.wv-faq-chevron { flex-shrink: 0; width: 22px; height: 22px; color: var(--wv-gold); transition: transform .3s ease; }
.wv-faq-item[open] .wv-faq-chevron { transform: rotate(45deg); }
.wv-faq-answer { color: var(--wv-ink-soft); font-size: 15px; padding: 0 4px 24px; max-width: 68ch; }

/* ---------- footer ---------- */
.wv-footer { background: var(--wv-ink); color: rgba(255,255,255,.72); }
.wv-footer-top { display: grid; gap: 40px; padding-block: 72px 48px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .wv-footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.wv-footer h4 { font-family: var(--wv-sans); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 18px; font-weight: 500; }
.wv-footer .wv-brand-mark { color: #fff; font-size: 28px; }
.wv-footer .wv-brand-mark b { color: var(--wv-gold); }
.wv-footer-about { max-width: 34ch; font-size: 14.5px; margin-top: 16px; color: rgba(255,255,255,.6); }
.wv-footer-links a { display: block; padding: 7px 0; font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .25s ease; }
.wv-footer-links a:hover { color: var(--wv-gold); }
.wv-footer-contact p { margin: 0 0 10px; font-size: 14.5px; color: rgba(255,255,255,.72); }
.wv-social { display: flex; gap: 12px; margin-top: 18px; }
.wv-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); transition: all .3s ease;
}
.wv-social a:hover { background: var(--wv-gold); border-color: var(--wv-gold); color: #fff; }
.wv-social svg { width: 18px; height: 18px; }
.wv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.5);
}
.wv-footer-bottom a:hover { color: var(--wv-gold); }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--rd, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .wv-card img, .wv-hero-media img { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
  .wv-rotator > span { transition: none; }
}
