:root {
  --wine: #5b0e18;
  --wine-dark: #2b050a;
  --wine-rich: #7b1622;
  --champagne: #e5cf9e;
  --gold: #c69a45;
  --ivory: #fbf7ee;
  --ink: #171313;
  --muted: #746a61;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 86px;
  padding: 0 clamp(24px, 6vw, 96px);
  border-bottom: 1px solid rgba(229, 207, 158, 0.2);
  background: rgba(47, 5, 10, 0.92);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-gem {
  color: var(--champagne);
  font-size: 35px;
  line-height: 1;
}

.brand b,
.brand small {
  display: block;
}

.brand b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 3px;
  color: #cdbfb7;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #e5dcd5;
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  gap: 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-outline {
  border-color: rgba(229, 207, 158, 0.55);
  color: var(--champagne);
}

.button-outline:hover {
  background: var(--champagne);
  color: var(--wine-dark);
}

.button-gold {
  background: var(--champagne);
  color: var(--wine-dark);
}

.button-gold:hover {
  background: #f0ddaf;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 100px);
  min-height: 800px;
  padding: 155px clamp(24px, 7vw, 112px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(198, 154, 69, 0.22), transparent 24%),
    linear-gradient(124deg, var(--wine-dark), #560e18 55%, #35070d);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 70%);
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--champagne);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.dark {
  justify-content: center;
  color: #895f35;
}

.script-line {
  margin: 36px 0 4px 5px;
  transform: rotate(-4deg);
  color: var(--champagne);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(38px, 5vw, 66px);
  font-style: italic;
  line-height: 0.9;
}

.hero h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(52px, 6.3vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 em,
.access-section h2 em {
  color: var(--champagne);
  font-weight: 400;
}

.hero-lead {
  margin: 32px 0;
  color: #dfd5cf;
  font-family: Georgia, serif;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.6;
}

.hero-lead strong {
  color: #fff;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(229, 207, 158, 0.55);
  color: #e5d9d1;
  font-size: 12px;
}

.countdown {
  display: flex;
  gap: 0;
  margin-top: 55px;
}

.countdown-item {
  min-width: 92px;
  padding: 0 22px;
  border-left: 1px solid rgba(229, 207, 158, 0.27);
}

.countdown-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.countdown-item strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.countdown-item span {
  display: block;
  margin-top: 5px;
  color: #cdbdb5;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-art-wrap {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 610px;
}

.hero-art-frame {
  padding: 10px;
  transform: rotate(2deg);
  border: 1px solid rgba(229, 207, 158, 0.55);
  background: #f1e5ce;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.hero-art-frame::before {
  position: absolute;
  z-index: 2;
  inset: 20px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(91, 14, 24, 0.3);
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
}

.floating-card {
  position: absolute;
  bottom: -28px;
  left: -42px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 275px;
  padding: 16px 20px;
  background: rgba(251, 247, 238, 0.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
}

.floating-card small,
.floating-card b {
  display: block;
}

.floating-card small {
  color: #8c7d72;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.floating-card b {
  margin-top: 3px;
  font-family: Georgia, serif;
  font-size: 15px;
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(229, 207, 158, 0.08);
  border-radius: 50%;
}

.hero-glow-one {
  top: -130px;
  right: -160px;
  width: 430px;
  height: 430px;
}

.hero-glow-two {
  bottom: -260px;
  left: 35%;
  width: 600px;
  height: 600px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 7vw, 112px);
  background: #210407;
  color: #fff;
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 7vw 24px 4vw;
  border-left: 1px solid rgba(229, 207, 158, 0.15);
}

.trust-strip > div:first-child {
  border-left: 0;
}

.trust-strip span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
}

.trust-strip p,
.trust-strip b,
.trust-strip small {
  display: block;
  margin: 0;
}

.trust-strip b {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 500;
}

.trust-strip small {
  margin-top: 4px;
  color: #a99991;
  font-size: 10px;
}

.access-section {
  padding: 110px clamp(24px, 7vw, 112px) 130px;
  background: var(--ivory);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading h2 {
  margin: 24px 0 20px;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.access-section h2 em {
  color: var(--wine);
  font-style: italic;
}

.section-heading > p {
  max-width: 580px;
  margin: auto;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: auto;
}

.steps article {
  position: relative;
  min-height: 300px;
  padding: 42px;
  border: 1px solid #eadfcd;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.steps article:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(68, 35, 22, 0.1);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #d7c9b4;
  font-family: Georgia, serif;
  font-size: 12px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 32px;
  border: 1px solid #d6bd93;
  border-radius: 50%;
  color: var(--wine);
  font-size: 24px;
}

.steps h3 {
  margin: 0 0 15px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.steps p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

footer {
  padding: 60px 24px;
  background: var(--wine-dark);
  color: #fff;
  text-align: center;
}

.footer-mark {
  color: var(--champagne);
  font-size: 42px;
}

footer p {
  margin: 10px 0 5px;
  font-family: Georgia, serif;
  font-size: 19px;
}

footer strong {
  display: block;
  color: var(--champagne);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

footer small {
  display: block;
  margin-top: 25px;
  color: #806e68;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.noscript-notice {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 12px 16px;
  background: #fff4cf;
  color: #4a3500;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px) {
  .site-nav {
    height: 76px;
    padding: 0 20px;
  }

  .nav-link {
    display: none;
  }

  .brand b {
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 125px 24px 80px;
    text-align: center;
  }

  .hero-copy {
    margin: auto;
  }

  .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .script-line {
    margin-top: 30px;
  }

  .countdown {
    justify-content: center;
  }

  .hero-art-wrap {
    justify-self: center;
    max-width: 620px;
  }

  .floating-card {
    left: 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .trust-strip > div,
  .trust-strip > div:first-child {
    justify-content: center;
    padding: 22px;
    border-top: 1px solid rgba(229, 207, 158, 0.15);
    border-left: 0;
  }

  .trust-strip > div:first-child {
    border-top: 0;
  }
}

@media (max-width: 650px) {
  .button-small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 9px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 53px;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .countdown {
    margin-top: 42px;
  }

  .countdown-item {
    min-width: 0;
    padding: 0 14px;
  }

  .countdown-item strong {
    font-size: 24px;
  }

  .hero-art-frame {
    padding: 7px;
  }

  .floating-card {
    right: 12px;
    bottom: -34px;
    left: 12px;
    min-width: 0;
  }

  .access-section {
    padding: 90px 20px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 255px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}


/* V8 premium navigation and legacy experience */
.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(229, 207, 158, 0.42);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-toggle span { position: absolute; width: 18px; height: 1px; background: currentColor; transition: transform .22s ease, opacity .22s ease; }
.nav-toggle span:nth-child(1) { transform: translateY(-5px); }
.nav-toggle span:nth-child(3) { transform: translateY(5px); }
.nav-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
body.menu-open { overflow: hidden; }

.legacy-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
  padding: 120px clamp(24px, 8vw, 128px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(198,154,69,.16), transparent 26%),
    linear-gradient(132deg, #fffdf8 0 58%, #efe2ca 58% 100%);
}
.legacy-preview::after { position: absolute; right: -160px; bottom: -280px; width: 560px; height: 560px; content: ""; border: 1px solid rgba(91,14,24,.1); border-radius: 50%; }
.legacy-preview-copy { position: relative; z-index: 1; max-width: 760px; }
.legacy-script { margin: 30px 0 5px 4px; transform: rotate(-3deg); color: var(--wine); font-family: "Brush Script MT", "Segoe Script", cursive; font-size: clamp(36px, 4.4vw, 59px); font-style: italic; line-height: .9; }
.legacy-preview h2 { margin: 0 0 25px; font-family: Didot, "Bodoni 72", Georgia, serif; font-size: clamp(43px, 5vw, 70px); font-weight: 400; letter-spacing: -.045em; line-height: 1.03; }
.legacy-preview h2 em { color: var(--wine); font-weight: 400; }
.legacy-preview-copy > p:not(.legacy-script) { max-width: 720px; margin: 0 0 30px; color: var(--muted); font-family: Georgia, serif; font-size: 17px; line-height: 1.85; }
.button-wine { background: var(--wine); color: #fff; box-shadow: 0 16px 38px rgba(91,14,24,.18); }
.button-wine:hover { background: var(--wine-dark); }
.legacy-preview-emblem { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; justify-self: center; width: min(34vw, 430px); aspect-ratio: 1; border: 1px solid rgba(91,14,24,.2); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.9), rgba(251,247,238,.45)); box-shadow: 0 35px 80px rgba(78,41,18,.12), inset 0 0 0 14px rgba(255,255,255,.35); }
.preview-ring { position: absolute; inset: 10%; border: 1px solid rgba(198,154,69,.36); border-radius: 50%; }
.legacy-preview-emblem span { color: var(--wine); font-family: Georgia, serif; font-size: clamp(60px, 8vw, 105px); line-height: .9; }
.legacy-preview-emblem b { margin-top: 13px; color: #9a7132; font-family: Georgia, serif; font-size: 19px; letter-spacing: .25em; }
.legacy-preview-emblem small { margin-top: 12px; color: #8a796d; font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 28px; }
.footer-links a { color: #9f8e87; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-toggle { z-index: 20; display: inline-flex; }
  .nav-actions {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: min(84vw, 390px);
    height: 100vh;
    padding: 112px 36px 40px;
    transform: translateX(105%);
    background: rgba(38,3,7,.98);
    box-shadow: -20px 0 70px rgba(0,0,0,.32);
    transition: transform .28s ease;
  }
  .nav-actions.open { transform: none; }
  .nav-link { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(229,207,158,.13); font-family: Georgia, serif; font-size: 18px; }
  .nav-actions .button { margin-top: 14px; }
  .legacy-preview { grid-template-columns: 1fr; text-align: center; background: linear-gradient(160deg, #fffdf8, #efe2ca); }
  .legacy-preview .eyebrow { justify-content: center; }
  .legacy-preview-copy { margin: auto; }
  .legacy-preview-emblem { width: min(70vw, 430px); }
}

@media (max-width: 650px) {
  .legacy-preview { padding: 90px 20px; }
  .legacy-preview-emblem { width: min(86vw, 380px); }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}


/* V9 Legacy Gallery and Tribute Wall preview */
.tribute-preview {
  padding: clamp(88px, 10vw, 145px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  background: linear-gradient(145deg, #fffaf1, #f6ebd8);
  overflow: hidden;
}
.tribute-preview-seal {
  width: min(420px, 90vw);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
  border-radius: 50%;
  color: white;
  background: radial-gradient(circle at 35% 28%, #742238, #35050d 67%);
  border: 1px solid rgba(198, 160, 74, .65);
  box-shadow: 0 0 0 13px rgba(198, 160, 74, .08), 0 40px 100px rgba(51, 5, 13, .22), inset 0 0 60px rgba(229, 205, 145, .12);
}
.tribute-preview-seal::before,
.tribute-preview-seal::after { content: "◇"; position: absolute; color: #e5cd91; font-size: 27px; }
.tribute-preview-seal::before { left: 12%; top: 18%; }
.tribute-preview-seal::after { right: 11%; bottom: 17%; }
.tribute-preview-seal > span { color: rgba(229, 205, 145, .45); font: 120px/.5 Georgia, serif; }
.tribute-preview-seal b { margin-top: 20px; font: italic 600 clamp(32px, 4vw, 51px)/1.05 Georgia, serif; }
.tribute-preview-seal small { margin-top: 18px; color: #e5cd91; text-transform: uppercase; letter-spacing: .19em; font-size: 9px; }
.tribute-preview-copy h2 { margin: 0; max-width: 800px; color: #33050c; font: 600 clamp(42px, 5vw, 72px)/1.04 Georgia, serif; letter-spacing: -.04em; }
.tribute-preview-copy h2 em { color: #8c253d; }
.tribute-preview-copy > p:not(.legacy-script) { max-width: 700px; color: #756662; line-height: 1.8; }
.tribute-preview-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 19px; margin-top: 28px; }
.tribute-text-link { color: #671326; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(103, 19, 38, .28); padding-bottom: 4px; }
@media (max-width: 850px) { .tribute-preview { grid-template-columns: 1fr; text-align: center; } .tribute-preview-copy .eyebrow { justify-content: center; } .tribute-preview-copy > p { margin-inline: auto; } .tribute-preview-actions { justify-content: center; } }
@media (max-width: 600px) { .tribute-preview { padding-inline: 18px; } .tribute-preview-seal { width: min(330px, 88vw); } .tribute-preview-actions { display: grid; } }


/* MIO V11: Event Programme preview */
.programme-preview{padding:clamp(75px,9vw,125px) clamp(20px,8vw,120px);display:grid;grid-template-columns:1.05fr .75fr;align-items:center;gap:clamp(45px,8vw,110px);background:linear-gradient(145deg,#fffaf0,#f4e8d6);position:relative;overflow:hidden}.programme-preview:before{content:"";position:absolute;width:520px;height:520px;border:1px solid rgba(111,36,46,.08);border-radius:50%;right:-260px;top:-230px}.programme-preview-copy{max-width:680px;position:relative;z-index:1}.programme-preview-copy h2{font-family:"Playfair Display",serif;font-size:clamp(40px,5vw,66px);line-height:1.04;margin:15px 0}.programme-preview-copy h2 em{color:#7a1830}.programme-preview-copy>p:last-of-type{color:#73666a;line-height:1.8;margin-bottom:27px}.programme-preview-card{min-height:390px;border-radius:32px;background:radial-gradient(circle at 80% 10%,rgba(225,196,117,.24),transparent 30%),linear-gradient(145deg,#260307,#650f24);color:white;padding:45px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(225,196,117,.34);box-shadow:0 35px 90px rgba(53,6,16,.23);position:relative}.programme-preview-card:before{content:"";position:absolute;inset:14px;border:1px solid rgba(225,196,117,.16);border-radius:23px}.programme-preview-gem{font-size:50px;color:#e6cc85}.programme-preview-card small{text-transform:uppercase;letter-spacing:.24em;font-size:9px;color:#e6cc85;margin:15px 0}.programme-preview-card strong{font-family:"Playfair Display",serif;font-size:58px;letter-spacing:.06em}.programme-preview-card b{font-size:12px;letter-spacing:.18em;color:#e6cc85;margin-top:8px}.programme-preview-card p{font-size:11px;color:rgba(255,255,255,.58);margin-top:30px;padding-top:18px;border-top:1px solid rgba(225,196,117,.2);width:100%;text-align:center}@media(max-width:850px){.programme-preview{grid-template-columns:1fr}.programme-preview-card{width:min(540px,100%);justify-self:center}}

/* MIO V12 celebration gallery preview */
.gallery-preview{padding:clamp(80px,10vw,135px) clamp(20px,8vw,120px);display:grid;grid-template-columns:.85fr 1.05fr;align-items:center;gap:clamp(45px,8vw,115px);background:radial-gradient(circle at 12% 15%,rgba(202,161,80,.16),transparent 26%),linear-gradient(145deg,#2b0409,#5c1023);color:white;position:relative;overflow:hidden}.gallery-preview:after{content:"◇";position:absolute;right:-60px;bottom:-130px;color:rgba(229,205,145,.07);font:360px Georgia,serif}.gallery-preview-visual{min-height:560px;border-radius:34px;overflow:hidden;position:relative;box-shadow:0 45px 100px rgba(0,0,0,.35);transform:rotate(-1.5deg);border:1px solid rgba(229,205,145,.3)}.gallery-preview-visual img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover}.gallery-preview-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,transparent 35%,rgba(35,2,7,.92))}.gallery-preview-frame{position:absolute;z-index:2;inset:16px;border:1px solid rgba(229,205,145,.45);border-radius:24px}.gallery-preview-badge{position:absolute;z-index:3;left:35px;top:34px;border:1px solid rgba(255,255,255,.25);background:rgba(42,4,10,.64);backdrop-filter:blur(10px);border-radius:999px;padding:10px 14px;color:#eed69b;text-transform:uppercase;letter-spacing:.16em;font-size:8px}.gallery-preview-caption{position:absolute;z-index:3;left:42px;right:42px;bottom:42px;display:grid;gap:9px}.gallery-preview-caption small{text-transform:uppercase;letter-spacing:.2em;color:#e6cc85;font-size:9px}.gallery-preview-caption b{font:600 clamp(31px,4vw,49px)/1.08 Georgia,serif}.gallery-preview-copy{position:relative;z-index:2}.gallery-preview-copy .eyebrow{color:#e5cd91}.gallery-preview-copy h2{font:600 clamp(42px,5vw,70px)/1.04 Georgia,serif;letter-spacing:-.04em;margin:12px 0 23px}.gallery-preview-copy h2 em{color:#e5cd91}.gallery-preview-copy>p:not(.legacy-script){max-width:710px;color:rgba(255,255,255,.68);line-height:1.85;font-size:16px;margin-bottom:30px}.gallery-preview .button-wine{background:linear-gradient(135deg,#f0d89b,#c39745);color:#351306;border:0}@media(max-width:850px){.gallery-preview{grid-template-columns:1fr}.gallery-preview-visual{width:min(600px,100%);justify-self:center;transform:none}.gallery-preview-copy{text-align:center}.gallery-preview-copy .eyebrow{justify-content:center}.gallery-preview-copy>p{margin-inline:auto}}@media(max-width:600px){.gallery-preview{padding-inline:18px}.gallery-preview-visual{min-height:460px}.gallery-preview-caption{left:28px;right:28px;bottom:30px}}

/* MIO V13 Gift Registry preview */
.gift-preview{position:relative;overflow:hidden;padding:clamp(4rem,8vw,8rem) clamp(1.2rem,7vw,8rem);display:grid;grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);gap:clamp(2rem,7vw,7rem);align-items:center;background:linear-gradient(135deg,#fff9ef,#f3e7d6)}
.gift-preview::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 84% 25%,rgba(199,154,70,.18),transparent 30%);pointer-events:none}
.gift-preview-copy,.gift-preview-emblem{position:relative;z-index:1}
.gift-preview-copy h2{font-size:clamp(2.4rem,5vw,4.8rem);margin:.2rem 0 1rem}
.gift-preview-copy h2 em{color:#8f3c4e}
.gift-preview-copy>p{max-width:720px;color:#746466}
.gift-preview-emblem{width:min(410px,88vw);aspect-ratio:1;margin:auto;border-radius:50%;display:grid;place-items:center;align-content:center;text-align:center;background:radial-gradient(circle,#f9e9bb,#d7ac53);box-shadow:0 28px 75px rgba(94,53,17,.17),inset 0 0 0 14px rgba(255,255,255,.5),inset 0 0 0 15px rgba(70,34,8,.12)}
.gift-preview-emblem>span{font-size:2.2rem;color:#6c3515}
.gift-preview-emblem small{color:#7a451d;text-transform:uppercase;letter-spacing:.2em}
.gift-preview-emblem strong{font:700 clamp(6rem,14vw,9rem)/.8 Georgia,serif;color:#2c050a}
.gift-preview-emblem b{color:#6d3515;letter-spacing:.25em}
.gift-preview-emblem p{margin:.55rem 0 0;color:#7a451d;font-size:.78rem;text-transform:uppercase;letter-spacing:.12em}
@media(max-width:900px){.gift-preview{grid-template-columns:1fr}.gift-preview-emblem{max-width:360px}}

/* V14 guest concierge preview */
.concierge-preview{position:relative;overflow:hidden;padding:clamp(5rem,9vw,8.5rem) clamp(1.2rem,7vw,8rem);display:grid;grid-template-columns:minmax(320px,.85fr) minmax(0,1.15fr);gap:clamp(3rem,8vw,8rem);align-items:center;background:radial-gradient(circle at 15% 15%,rgba(231,201,132,.2),transparent 25%),linear-gradient(145deg,#2a0309,#641126);color:#fff}.concierge-preview:after{content:"◇";position:absolute;right:-80px;bottom:-160px;font:420px Georgia,serif;color:rgba(239,215,157,.05)}.concierge-preview-visual{position:relative;z-index:1;min-height:390px;padding:3rem;border:1px solid rgba(236,211,153,.35);background:linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.035));box-shadow:0 35px 90px rgba(0,0,0,.3);display:flex;flex-direction:column;justify-content:center;backdrop-filter:blur(12px)}.concierge-preview-visual:before{content:"";position:absolute;inset:14px;border:1px solid rgba(236,211,153,.15)}.concierge-route{display:grid;grid-template-columns:auto 1fr auto 1fr auto;gap:.8rem;align-items:center;margin-bottom:3rem}.concierge-route span{width:58px;height:58px;border:1px solid #e7cd8c;border-radius:50%;display:grid;place-items:center;color:#f1dca5}.concierge-route b{height:1px;background:linear-gradient(90deg,#d9b969,rgba(217,185,105,.15))}.concierge-preview-visual small{color:#e7cd8c;text-transform:uppercase;letter-spacing:.2em}.concierge-preview-visual strong{font:600 clamp(2.5rem,4.5vw,4.8rem)/1 Georgia,serif;margin:.7rem 0}.concierge-preview-visual p{color:rgba(255,255,255,.62);text-transform:uppercase;letter-spacing:.13em;font-size:.72rem}.concierge-preview-copy{position:relative;z-index:2}.concierge-preview-copy .eyebrow{color:#e7cd8c}.concierge-preview-copy h2{font:600 clamp(2.8rem,5vw,5rem)/1.03 Georgia,serif;margin:.5rem 0 1.3rem}.concierge-preview-copy h2 em{color:#e7cd8c}.concierge-preview-copy>p:not(.legacy-script){max-width:720px;color:rgba(255,255,255,.69);line-height:1.85;margin-bottom:1.8rem}.concierge-preview .button-wine{background:linear-gradient(135deg,#f0d89b,#c39745);color:#351306;border:0}@media(max-width:900px){.concierge-preview{grid-template-columns:1fr}.concierge-preview-visual{width:min(600px,100%);justify-self:center}}@media(max-width:600px){.concierge-preview-visual{min-height:330px;padding:2rem}.concierge-route span{width:46px;height:46px}}





/* =====================================================
   LARGE PREMIUM COUNTDOWN
   ===================================================== */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: clamp(0.8rem, 2vw, 1.4rem);
  width: 100%;
  max-width: 720px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.countdown-item {
  position: relative;
  display: flex;
  min-height: 150px;
  padding: 1.4rem 1rem;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 128, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.countdown-item::before {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    #e8bd63,
    transparent
  );
}

.countdown-item strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(232, 189, 99, 0.16);
}

.countdown-item span {
  display: block;
  margin-top: 1rem;
  color: #e8bd63;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 900px) {
  .countdown {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    max-width: 620px;
    gap: 0.75rem;
  }

  .countdown-item {
    min-height: 130px;
    border-radius: 18px;
  }

  .countdown-item strong {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .countdown-item {
    min-height: 125px;
    padding: 1.2rem 0.7rem;
    border-radius: 18px;
  }

  .countdown-item strong {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .countdown-item span {
    margin-top: 0.75rem;
    font-size: 0.75rem;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .countdown-item {
    min-height: 110px;
  }

  .countdown-item strong {
    font-size: 2.8rem;
  }
}

/* =========================================================
   MIO PREMIUM HERO CAROUSEL
   ========================================================= */

.hero-carousel {
  --wine-950: #260307;
  --wine-900: #3b0710;
  --wine-800: #5b0f1f;
  --gold-500: #c9a14a;
  --gold-300: #e8ce8d;
  --ivory: #fffaf0;
  --slide-duration: 6000ms;

  position: relative;
  width: min(100%, 760px);
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(232, 206, 141, 0.45);
  border-radius: 32px;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(232, 206, 141, 0.18),
      transparent 28%
    ),
    var(--wine-950);

  box-shadow:
    0 30px 80px rgba(38, 3, 7, 0.34),
    0 8px 24px rgba(38, 3, 7, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 6;
  pointer-events: none;

  border: 1px solid rgba(232, 206, 141, 0.24);
  border-radius: 24px;
}


/* =========================================================
   VIEWPORT AND SLIDES
   ========================================================= */

.hero-carousel-viewport {
  position: relative;
  overflow: hidden;
}

.hero-carousel-track {
  position: relative;
  min-height: clamp(520px, 72vw, 720px);
}

.hero-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;
  transform: scale(1.045);

  transition:
    opacity 900ms ease,
    visibility 900ms ease,
    transform 7s ease;
}

.hero-slide.is-active {
  position: relative;
  z-index: 2;

  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-art {
  display: block;
  width: 100%;
  height: clamp(520px, 72vw, 720px);

  object-fit: cover;
  object-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(38, 3, 7, 0.04) 20%,
      rgba(38, 3, 7, 0.18) 50%,
      rgba(38, 3, 7, 0.72) 82%,
      rgba(38, 3, 7, 0.94) 100%
    ),
    linear-gradient(
      90deg,
      rgba(38, 3, 7, 0.18),
      transparent 48%,
      rgba(38, 3, 7, 0.1)
    );
}


/* =========================================================
   CAPTION CARD
   Counter is inside the caption
   ========================================================= */

.floating-card {
  position: absolute;
  right: 6px;
  bottom: 5px;
  left: 6px;
  z-index: 7;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;

  padding: clamp(15px, 2.5vw, 24px);

  border: 1px solid rgba(232, 206, 141, 0.46);
  border-radius: 20px;

  color: var(--ivory);

  background:
    linear-gradient(
      135deg,
      rgba(73, 8, 19, 0.96),
      rgba(38, 3, 7, 0.93)
    );

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 700ms ease 250ms,
    transform 700ms ease 250ms;
}

.hero-slide.is-active .floating-card {
  opacity: 1;
  transform: translateY(0);
}

.caption-content {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.floating-icon {
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  border: 1px solid rgba(232, 206, 141, 0.65);
  border-radius: 50%;

  color: var(--gold-300);
  background: rgba(201, 161, 74, 0.1);

  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;

  box-shadow:
    inset 0 0 0 5px rgba(201, 161, 74, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.18);
}

.caption-text {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.caption-text small {
  color: var(--gold-300);

  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.caption-text b {
  max-width: 560px;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  line-height: 1.18;
}


/* =========================================================
   COUNTER INSIDE CAPTION
   ========================================================= */

.caption-counter {
  display: flex;
  align-items: center;
  gap: 8px;

  padding-left: 18px;
  border-left: 1px solid rgba(232, 206, 141, 0.28);

  color: var(--ivory);

  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.counter-line {
  display: block;
  width: 28px;
  height: 1px;

  background: rgba(232, 206, 141, 0.72);
}


/* =========================================================
   PREVIOUS AND NEXT BUTTONS
   ========================================================= */

.carousel-arrow {
  position: absolute;
  top: 47%;
  z-index: 9;

  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(232, 206, 141, 0.48);
  border-radius: 50%;

  color: var(--ivory);
  background: rgba(38, 3, 7, 0.62);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  cursor: pointer;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.carousel-arrow:hover {
  transform: scale(1.08);
  border-color: var(--gold-300);
  background: rgba(91, 15, 31, 0.92);
}

.carousel-arrow svg {
  width: 21px;
  height: 21px;
}

.carousel-prev {
  left: 22px;
}

.carousel-next {
  right: 22px;
}


/* =========================================================
   TOP PAGINATION AND PLAY CONTROL
   ========================================================= */

.carousel-footer {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 10px 14px;

  border: 1px solid rgba(232, 206, 141, 0.28);
  border-radius: 999px;

  background: rgba(38, 3, 7, 0.56);

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(255, 250, 240, 0.35);

  cursor: pointer;

  transition:
    width 250ms ease,
    background 250ms ease,
    transform 250ms ease;
}

.carousel-dot:hover {
  transform: scale(1.2);
  background: rgba(255, 250, 240, 0.68);
}

.carousel-dot.is-active {
  width: 32px;
  background: var(--gold-300);
}

.carousel-play-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 0;
  border: 0;

  color: rgba(255, 250, 240, 0.88);
  background: transparent;

  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;

  cursor: pointer;
}

.carousel-play-toggle svg {
  width: 15px;
  height: 15px;
}


/* =========================================================
   FOCUS STATES
   ========================================================= */

.carousel-arrow:focus-visible,
.carousel-dot:focus-visible,
.carousel-play-toggle:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}


/* =========================================================
   PROGRESS BAR
   ========================================================= */

.carousel-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;

  height: 4px;

  background: rgba(255, 255, 255, 0.12);
}

.carousel-progress span {
  display: block;
  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--gold-500),
      var(--gold-300),
      #fff1b8
    );
}

.hero-carousel.is-playing .carousel-progress span {
  animation: carouselProgress var(--slide-duration) linear forwards;
}

@keyframes carouselProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* =========================================================
   TABLET AND MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .hero-carousel {
    border-radius: 24px;
  }

  .hero-carousel::before {
    inset: 7px;
    border-radius: 19px;
  }

  .hero-carousel-track,
  .hero-art {
    min-height: 580px;
    height: 76vh;
    max-height: 690px;
  }

  .floating-card {
    right: 4px;
    bottom: 4px;
    left: 4px;

    grid-template-columns: 1fr;
    gap: 12px;

    padding: 14px;

    border-radius: 16px;
  }

  .caption-content {
    align-items: flex-start;
    gap: 11px;
  }

  .floating-icon {
    width: 42px;
    height: 42px;

    font-size: 14px;
  }

  .caption-text small {
    font-size: 0.61rem;
    letter-spacing: 0.1em;
  }

  .caption-text b {
    font-size: 1.02rem;
  }

  .caption-counter {
    justify-content: flex-end;

    padding-top: 10px;
    padding-left: 0;

    border-top: 1px solid rgba(232, 206, 141, 0.24);
    border-left: 0;
  }

  .carousel-arrow {
    top: 43%;

    width: 42px;
    height: 42px;
  }

  .carousel-prev {
    left: 14px;
  }

  .carousel-next {
    right: 14px;
  }

  .carousel-footer {
    top: 12px;
    right: 12px;

    gap: 12px;
    padding: 8px 11px;
  }

  .carousel-play-toggle span {
    display: none;
  }

  .carousel-dot.is-active {
    width: 25px;
  }
}


/* =========================================================
   VERY SMALL MOBILE SCREENS
   ========================================================= */

@media (max-width: 420px) {
  .hero-carousel-track,
  .hero-art {
    min-height: 540px;
    height: 72vh;
  }

  .floating-card {
    padding: 12px;
  }

  .floating-icon {
    width: 38px;
    height: 38px;
  }

  .caption-text small {
    font-size: 0.56rem;
  }

  .caption-text b {
    font-size: 0.94rem;
  }

  .caption-counter {
    font-size: 0.65rem;
  }

  .counter-line {
    width: 22px;
  }

  .carousel-footer {
    top: 10px;
    right: 10px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .floating-card,
  .carousel-arrow,
  .carousel-dot {
    transition: none;
  }

  .hero-carousel.is-playing .carousel-progress span {
    animation: none;
  }
}



.gift-gallery-preview {
  --wine-950: #260307;
  --wine-900: #3b0710;
  --wine-800: #5b0f1f;
  --gold-500: #c9a14a;
  --gold-300: #e8ce8d;
  --ivory: #fffaf0;

  position: relative;
  width: min(100%, 680px);
  min-height: clamp(520px, 65vw, 700px);
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(232, 206, 141, 0.42);
  border-radius: 32px;

  background: var(--wine-950);

  box-shadow:
    0 34px 90px rgba(38, 3, 7, 0.36),
    0 10px 28px rgba(38, 3, 7, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gift-gallery-preview::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  z-index: 3;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(232, 206, 141, 0.22),
      transparent 68%
    );

  pointer-events: none;
}

.gift-gallery-preview::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  z-index: 3;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(201, 161, 74, 0.18),
      transparent 70%
    );

  pointer-events: none;
}

.gift-gallery-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.015);

  transition:
    transform 1.2s ease,
    filter 1.2s ease;
}

.gift-gallery-preview:hover .gift-gallery-image {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

.gift-gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(38, 3, 7, 0.15) 10%,
      rgba(38, 3, 7, 0.12) 38%,
      rgba(38, 3, 7, 0.62) 72%,
      rgba(38, 3, 7, 0.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(38, 3, 7, 0.38),
      transparent 54%,
      rgba(38, 3, 7, 0.18)
    );
}

.gift-gallery-frame {
  position: absolute;
  inset: 11px;
  z-index: 4;

  border: 1px solid rgba(232, 206, 141, 0.32);
  border-radius: 23px;

  pointer-events: none;
}

.gift-gallery-frame::before,
.gift-gallery-frame::after {
  content: "";
  position: absolute;

  width: 48px;
  height: 48px;

  border-color: rgba(232, 206, 141, 0.8);
  border-style: solid;
}

.gift-gallery-frame::before {
  top: 12px;
  left: 12px;

  border-width: 1px 0 0 1px;
  border-radius: 12px 0 0 0;
}

.gift-gallery-frame::after {
  right: 12px;
  bottom: 12px;

  border-width: 0 1px 1px 0;
  border-radius: 0 0 12px 0;
}

.gift-gallery-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 6;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 15px;

  border: 1px solid rgba(232, 206, 141, 0.38);
  border-radius: 999px;

  color: var(--ivory);
  background: rgba(38, 3, 7, 0.64);

  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gift-gallery-badge span {
  color: var(--gold-300);
  font-size: 0.9rem;
}

.gift-preview-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: clamp(190px, 34vw, 245px);
  aspect-ratio: 1;

  padding: 28px;

  border: 1px solid rgba(232, 206, 141, 0.56);
  border-radius: 50%;

  color: var(--ivory);

  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(232, 206, 141, 0.18),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(91, 15, 31, 0.9),
      rgba(38, 3, 7, 0.92)
    );

  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.38),
    inset 0 0 0 8px rgba(201, 161, 74, 0.07),
    inset 0 0 0 10px rgba(232, 206, 141, 0.12);

  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);

  transform: translate(-50%, -53%);

  transition:
    transform 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.gift-gallery-preview:hover .gift-preview-emblem {
  transform: translate(-50%, -53%) scale(1.035);

  border-color: rgba(232, 206, 141, 0.86);

  box-shadow:
    0 32px 74px rgba(0, 0, 0, 0.42),
    inset 0 0 0 8px rgba(201, 161, 74, 0.09),
    inset 0 0 0 10px rgba(232, 206, 141, 0.16);
}

.emblem-diamond {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;
  margin-bottom: 8px;

  border: 1px solid rgba(232, 206, 141, 0.5);
  border-radius: 50%;

  color: var(--gold-300);
  background: rgba(201, 161, 74, 0.08);
}

.gift-preview-emblem small {
  color: var(--gold-300);

  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gift-preview-emblem strong {
  margin-block: 5px -2px;

  color: var(--ivory);

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.4rem, 10vw, 6.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.gift-preview-emblem b {
  color: var(--gold-300);

  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
}

.gift-preview-emblem p {
  margin: 10px 0 0;

  color: rgba(255, 250, 240, 0.72);

  font-family: "DM Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-gallery-caption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  z-index: 7;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: clamp(17px, 3vw, 25px);

  border: 1px solid rgba(232, 206, 141, 0.36);
  border-radius: 20px;

  color: var(--ivory);

  background:
    linear-gradient(
      135deg,
      rgba(73, 8, 19, 0.96),
      rgba(38, 3, 7, 0.93)
    );

  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gift-gallery-caption div {
  display: grid;
  gap: 5px;
}

.gift-gallery-caption small {
  color: var(--gold-300);

  font-family: "DM Sans", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gift-gallery-caption b {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  line-height: 1.2;
}

.caption-mark {
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(232, 206, 141, 0.38);
  border-radius: 50%;

  color: var(--gold-300);
  background: rgba(201, 161, 74, 0.08);
}


/* Mobile */

@media (max-width: 680px) {
  .gift-gallery-preview {
    min-height: 590px;
    border-radius: 24px;
  }

  .gift-gallery-frame {
    inset: 7px;
    border-radius: 18px;
  }

  .gift-gallery-badge {
    top: 18px;
    left: 18px;

    max-width: calc(100% - 36px);
    padding: 8px 12px;

    font-size: 0.58rem;
  }

  .gift-preview-emblem {
    width: 190px;
    padding: 22px;

    transform: translate(-50%, -58%);
  }

  .gift-gallery-preview:hover .gift-preview-emblem {
    transform: translate(-50%, -58%) scale(1.025);
  }

  .gift-preview-emblem strong {
    font-size: 4.7rem;
  }

  .gift-gallery-caption {
    right: 5px;
    bottom: 5px;
    left: 5px;

    gap: 12px;
    padding: 15px;

    border-radius: 16px;
  }

  .gift-gallery-caption small {
    font-size: 0.56rem;
  }

  .gift-gallery-caption b {
    font-size: 1.02rem;
  }

  .caption-mark {
    width: 36px;
    height: 36px;
  }
}



/* =========================================================
   MIO PREMIUM EVENT DETAILS
   ========================================================= */

.trust-strip {
  --trust-wine-950: #260307;
  --trust-wine-900: #3b0710;
  --trust-wine-800: #5b0f1f;
  --trust-gold-500: #c9a14a;
  --trust-gold-300: #e8ce8d;
  --trust-ivory: #fffaf0;
  --trust-cream: #f7efe1;

  position: relative;
  overflow: hidden;

  padding: clamp(72px, 9vw, 130px) 0;

  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(201, 161, 74, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 90%,
      rgba(91, 15, 31, 0.09),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fffdf8 0%,
      #f8f0e3 100%
    );
}

.trust-strip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 6%;
  left: 6%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(201, 161, 74, 0.62),
      transparent
    );
}

.trust-strip::after {
  content: "◇";
  position: absolute;
  right: -18px;
  bottom: -62px;

  color: rgba(201, 161, 74, 0.08);

  font-family: "Playfair Display", Georgia, serif;
  font-size: 18rem;
  line-height: 1;

  pointer-events: none;
}


/* Heading */

.trust-heading {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;

  max-width: 850px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.trust-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;

  margin: 0 0 13px;

  color: var(--trust-wine-800);

  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-eyebrow span {
  width: 34px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--trust-gold-500),
      var(--trust-gold-300)
    );
}

.trust-heading h2 {
  max-width: 720px;
  margin: 0;

  color: var(--trust-wine-950);

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.trust-heading h2 em {
  color: var(--trust-wine-800);
  font-weight: 600;
}

.trust-heading-mark {
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 68px;
  height: 68px;

  border: 1px solid rgba(201, 161, 74, 0.4);
  border-radius: 50%;

  color: var(--trust-gold-500);
  background: rgba(255, 255, 255, 0.58);

  font-size: 1.35rem;

  box-shadow:
    0 14px 35px rgba(38, 3, 7, 0.08),
    inset 0 0 0 7px rgba(201, 161, 74, 0.05);
}


/* Grid */

.trust-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}


/* Cards */

.trust-card {
  position: relative;
  overflow: hidden;

  min-height: 310px;
  padding: clamp(25px, 3vw, 36px);

  border: 1px solid rgba(91, 15, 31, 0.1);
  border-radius: 27px;

  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(201, 161, 74, 0.12),
      transparent 27%
    ),
    rgba(255, 253, 248, 0.94);

  box-shadow:
    0 24px 58px rgba(38, 3, 7, 0.08),
    0 8px 20px rgba(38, 3, 7, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);

  transition:
    transform 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;

  width: 160px;
  height: 160px;

  border: 1px solid rgba(201, 161, 74, 0.16);
  border-radius: 50%;

  box-shadow:
    inset 0 0 0 18px rgba(201, 161, 74, 0.025);
}

.trust-card:hover {
  transform: translateY(-8px);

  border-color: rgba(201, 161, 74, 0.42);

  box-shadow:
    0 34px 72px rgba(38, 3, 7, 0.13),
    0 12px 24px rgba(38, 3, 7, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}



