/* ============================================================
   VINE & FIRE — Midsummer Night's Dream edition
   Full-bleed Arvad vineyard photography, fine-art editorial type
   ============================================================ */

/* ---------- BASE OVERRIDES ---------- */
.vf-body{
  background:#0d1f15;
  color:#1a2820;
  font-family: var(--font-body, "Inter Tight", system-ui, sans-serif);
  overflow-x:hidden;
}
.vf-body main{ background:#0d1f15; }

/* ---------- TYPOGRAPHY SYSTEM ---------- */
:root{
  --vf-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --vf-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --vf-ink: #0d1f15;
  --vf-ink-soft: #36443a;
  --vf-cream: #f6efe0;
  --vf-cream-soft: #e8dcc1;
  --vf-gold: #c9a567;
  --vf-gold-soft: #d9b97f;
  --vf-deep: #0d1f15;     /* deep forest */
  --vf-deeper: #08140d;
  --vf-moss: #1f3527;
  --vf-rose: #b34a35;     /* warm accent */
}

.vf-section{ position:relative; padding:120px 0; }
@media (max-width:900px){ .vf-section{ padding:80px 0; } }

.vf-section-eyebrow{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:500;
  font-size:19px;
  letter-spacing:.04em;
  color:var(--vf-rose);
  margin:0 0 20px;
}
.vf-eyebrow-light{ color:var(--vf-gold); }

.vf-display{
  font-family: var(--vf-display);
  font-weight:400;
  font-size:clamp(36px, 4.5vw, 72px);
  line-height:1.08;
  letter-spacing:-.005em;
  color:var(--vf-ink);
  margin:0 0 32px;
}
.vf-display em{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:400;
  color:var(--vf-rose);
}
.vf-display--light{ color:var(--vf-cream); }
.vf-display--light em{ color:var(--vf-gold-soft); }
.vf-display--center{ text-align:center; }

.vf-rule-mark{
  display:block;
  font-family: var(--vf-serif);
  font-size:22px;
  color:var(--vf-gold);
  text-align:center;
  margin:0 auto 18px;
}

/* ---------- NAV TWEAK ---------- */
.vf-nav{ background:rgba(13,31,21,.85); backdrop-filter:blur(14px); border-bottom:1px solid rgba(201,165,103,.18); }
.vf-nav .nav-logo{ color:var(--vf-cream); }
.vf-nav .nav-logo{ min-width:0; }
.vf-nav .nav-links a{ color:rgba(246,239,224,.78); }
.vf-nav .nav-links a:hover{ color:var(--vf-gold); }
.vf-nav-current{ color:var(--vf-gold) !important; }
.vf-nav .btn{ background:transparent; border:1px solid rgba(201,165,103,.5); color:var(--vf-cream); box-shadow:none; }
.vf-nav .btn:hover{ background:var(--vf-gold); color:var(--vf-deep); border-color:var(--vf-gold); }

.revenue-banner{ background:#0d1f15; border-bottom:1px solid rgba(201,165,103,.18);}
.revenue-banner-inner{
  background:transparent; border:1px solid rgba(201,165,103,.3);
  color:rgba(246,239,224,.7); font-family:var(--vf-serif); font-style:italic; font-size:14px;
}
.revenue-banner-inner .heart{ color:var(--vf-gold); }

/* ---------- HERO — full-bleed magical garden ---------- */
.vf-hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
  color:var(--vf-cream);
}
.vf-hero-photo{ position:absolute; inset:0; z-index:-2; }
.vf-hero-photo img{
  width:100%; height:100%; object-fit:cover; object-position:center 40%;
  filter:saturate(1.05) brightness(.7) contrast(1.05);
  animation: vfHeroDrift 24s ease-in-out infinite alternate;
}
@keyframes vfHeroDrift {
  from { transform:scale(1.05) translateY(0); }
  to { transform:scale(1.10) translateY(-1.5%); }
}
.vf-hero-veil{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(8,20,13,.7) 0%, rgba(8,20,13,.5) 50%, rgba(8,20,13,.4) 80%, rgba(8,20,13,.85) 100%),
    linear-gradient(180deg, rgba(8,20,13,.55) 0%, rgba(8,20,13,.35) 30%, rgba(8,20,13,.55) 70%, rgba(8,20,13,.9) 100%);
}

/* fireflies */
.vf-hero-fireflies, .vf-news-fireflies{ position:absolute; inset:0; pointer-events:none; z-index:0; }
.vf-hero-fireflies span, .vf-news-fireflies span{
  position:absolute;
  left:var(--x); top:var(--y);
  width:calc(6px * var(--s)); height:calc(6px * var(--s));
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,229,158,1) 0%, rgba(255,210,120,.7) 30%, transparent 70%);
  box-shadow: 0 0 14px 4px rgba(255,210,120,.45);
  animation: vfFly 6s ease-in-out infinite;
  animation-delay: var(--d);
  opacity:.8;
}
@keyframes vfFly {
  0%,100% { transform: translate(0,0) scale(1); opacity:.3; }
  25% { transform: translate(14px,-18px) scale(1.2); opacity:.95; }
  50% { transform: translate(-8px,-30px) scale(.9); opacity:.6; }
  75% { transform: translate(-20px,-10px) scale(1.1); opacity:.85; }
}

.vf-hero-frame{
  position:relative;
  width:min(1080px, 92vw);
  margin:120px auto 80px;
  padding:80px clamp(28px,5vw,80px);
  z-index:2;
}
@media (max-width:760px){ .vf-hero-frame{ margin:90px auto 60px; padding:56px 24px; } }

.vf-hero-corner{
  position:absolute; width:48px; height:48px; pointer-events:none;
  border:1px solid rgba(201,165,103,.6);
}
.vf-hc-tl{ top:0; left:0; border-right:none; border-bottom:none; }
.vf-hc-tr{ top:0; right:0; border-left:none; border-bottom:none; }
.vf-hc-bl{ bottom:0; left:0; border-right:none; border-top:none; }
.vf-hc-br{ bottom:0; right:0; border-left:none; border-top:none; }

.vf-hero-content{
  text-align:center;
  position:relative;
}
.vf-hero-content::before{
  content:"";
  position:absolute;
  inset:-40px -10% -20px;
  z-index:-1;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(8,20,13,.78) 0%, rgba(8,20,13,.55) 55%, rgba(8,20,13,0) 100%);
  filter: blur(20px);
  pointer-events:none;
}

.vf-overline{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:700;
  font-size:clamp(16px, 1.4vw, 19px);
  letter-spacing:.24em;
  color:#f0d39a;
  margin-bottom:36px;
  text-transform:uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.95), 0 2px 14px rgba(0,0,0,.9), 0 0 36px rgba(0,0,0,.75);
}

.vf-title{
  font-family: var(--vf-display);
  font-weight:400;
  font-size:clamp(72px, 14vw, 220px);
  line-height:.92;
  letter-spacing:-.01em;
  color:var(--vf-cream);
  margin:0 0 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:nowrap;
  gap:clamp(12px,2vw,32px);
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.vf-title-line{ display:inline-block; }
.vf-title-vine{
  background:linear-gradient(180deg, #f6efe0 0%, #d9b97f 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.vf-title-fire{
  background:linear-gradient(180deg, #f0c878 0%, #d9683a 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.vf-title-amp{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:300;
  font-size:.55em;
  color:var(--vf-gold);
  -webkit-text-fill-color: var(--vf-gold);
  vertical-align:.05em;
}

.vf-subtitle{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:500;
  font-size:clamp(19px, 2vw, 26px);
  line-height:1.5;
  color:#f6efe0;
  max-width:640px;
  margin:0 auto 32px;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

.vf-hero-rule{
  display:flex; align-items:center; justify-content:center; gap:18px;
  margin:0 auto 32px;
  max-width:680px;
}
.vf-hero-rule span{ flex:1; height:1px; background:linear-gradient(90deg, transparent, rgba(201,165,103,.6), transparent); }
.vf-hero-rule em{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:600;
  font-size:16px;
  letter-spacing:.04em;
  color:#e8c98a;
  white-space:nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
@media (max-width: 600px) {
  .vf-hero-rule { display: block; text-align: center; }
  .vf-hero-rule > span { display: none; }
  .vf-hero-rule em { white-space: normal; display: inline; }
}

.vf-hero-meta{
  font-family: var(--vf-serif);
  font-weight:600;
  font-size:16px;
  letter-spacing:.08em;
  color:#f6efe0;
  margin-bottom:48px;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.vf-hero-meta i{ margin:0 12px; color:var(--vf-gold); font-style:normal; }

.vf-hero-cta{ display:flex; flex-direction:column; align-items:center; gap:16px; }
.vf-hero-foot{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:17px;
  color:rgba(246,239,224,.55);
}

/* gold pill button */
.vf-btn{
  display:inline-block;
  padding:18px 42px;
  font-family: var(--vf-serif);
  font-size:15px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--vf-cream);
  background:transparent;
  border:1px solid var(--vf-gold);
  border-radius:0;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition: color .4s ease, background .4s ease, transform .25s ease;
}
.vf-btn span{ position:relative; z-index:2; }
.vf-btn::before{
  content:""; position:absolute; inset:0;
  background:var(--vf-gold);
  transform:scaleX(0); transform-origin:left;
  transition: transform .35s ease;
  z-index:1;
}
.vf-btn:hover{ color:var(--vf-deep); transform:translateY(-1px); }
.vf-btn:hover::before{ transform:scaleX(1); }
.vf-btn--gold{
  background:var(--vf-gold); color:var(--vf-deep); border-color:var(--vf-gold);
}
.vf-btn--gold::before{ background:var(--vf-cream); }
.vf-btn--gold:hover{ color:var(--vf-deep); }

.vf-hero-scroll{
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  font-family: var(--vf-serif); font-style:italic; font-size:13px; letter-spacing:.3em; text-transform:uppercase;
  color:rgba(246,239,224,.55);
  z-index:2;
}
.vf-hero-scroll span{ display:block; margin-top:6px; animation: vfArrow 2s ease-in-out infinite; }
@keyframes vfArrow { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(6px);} }

/* ---------- INTRO ---------- */
.vf-intro{ background:var(--vf-cream); padding:140px 0; }
.vf-intro-inner{ max-width:920px; text-align:left; }
.vf-intro-body{
  font-family: var(--vf-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.55;
  color: var(--vf-ink-soft);
  margin: 32px 0 8px;
  max-width: 760px;
}
.vf-intro-body em{
  font-family: var(--vf-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--vf-rose);
}
.vf-intro-foot{
  display:flex; align-items:center; gap:18px;
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid rgba(13,31,21,.15);
}
.vf-intro-foot .vf-rule-mark{ margin:0; font-size:24px; color:var(--vf-rose); }
.vf-intro-foot p{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:19px;
  line-height:1.5;
  color:var(--vf-ink-soft);
  margin:0;
}

/* ---------- PARTNERS ---------- */
.vf-partners{ background:var(--vf-cream); padding-top:0; }
.vf-partners-head{ text-align:center; max-width:720px; margin:0 auto 80px; }

.vf-partners-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:48px;
  max-width:1100px; margin:0 auto;
}
@media (max-width:880px){ .vf-partners-grid{ grid-template-columns:1fr; gap:60px; } }

.vf-partner{ display:flex; flex-direction:column; }
.vf-partner-frame{
  background:var(--vf-deep);
  color:var(--vf-cream);
  padding:80px 32px 60px;
  text-align:center;
  border:1px solid rgba(201,165,103,.25);
  position:relative;
  min-height:340px;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
}
.vf-partner-frame--cream{
  background:#f3ead7;
  color:var(--vf-ink);
  border-color:rgba(13,31,21,.12);
}
.vf-partner-kind{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--vf-gold);
  margin-bottom:28px;
}
.vf-partner-frame--cream .vf-partner-kind{ color:var(--vf-rose); }

.vf-partner-mark{ margin:0 0 28px; }
.vf-loki-mark{ display:flex; flex-direction:column; align-items:center; gap:14px; }
.vf-loki-word{
  font-family: var(--vf-display);
  font-weight:400;
  font-size:clamp(56px, 9vw, 84px);
  letter-spacing:.05em;
  line-height:.9;
  color:var(--vf-cream);
  white-space:nowrap;
}
.vf-loki-o{
  position:relative;
  display:inline-block;
}
.vf-loki-o::after{
  content:"";
  position:absolute;
  left:50%; top:54%;
  transform:translate(-50%,-50%);
  width:78%; height:1.5px;
  background:var(--vf-cream);
}
.vf-loki-tag{
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style:italic;
  font-size:22px;
  color:var(--vf-cream);
  font-weight:400;
}
.vf-arvad-logo{
  max-width:240px;
  height:auto;
  filter: brightness(1.05);
}

.vf-partner-rule{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:15px;
  letter-spacing:.08em;
  color:rgba(246,239,224,.7);
  margin:0;
}
.vf-partner-frame--cream .vf-partner-rule{ color:var(--vf-ink-soft); }

.vf-partner-body{
  padding:32px 8px 0;
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:18px;
  line-height:1.65;
  color:var(--vf-ink-soft);
}
.vf-partner-body p{ margin:0 0 18px; }
.vf-link{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:500;
  font-size:17px;
  letter-spacing:.04em;
  color:var(--vf-rose);
  border-bottom:1px solid currentColor;
  padding-bottom:2px;
  transition: color .2s ease, transform .2s ease;
  display:inline-block;
}
.vf-link:hover{ color:var(--vf-gold); transform:translateX(3px); }

/* ---------- ARC ---------- */
.vf-arc{
  position:relative;
  isolation:isolate;
  color:var(--vf-cream);
  overflow:hidden;
  padding:140px 0;
}
.vf-arc-photo{ position:absolute; inset:0; z-index:-2; }
.vf-arc-photo img{
  width:100%; height:100%; object-fit:cover; object-position:center 40%;
  filter:saturate(.75) brightness(.32) contrast(1.05);
}
.vf-arc-veil{
  position:absolute; inset:0; z-index:-1;
  background: rgba(8,20,13,.7);
}
.vf-arc-inner{ max-width:880px; margin:0 auto; text-align:center; }
.vf-arc-list{
  list-style:none; padding:0; margin:60px 0 0;
  display:flex; flex-direction:column; gap:0;
  text-align:left;
  max-width:720px; margin-left:auto; margin-right:auto;
}
.vf-arc-list li{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:32px;
  padding:24px 0;
  border-bottom:1px solid rgba(201,165,103,.18);
  align-items:start;
}
.vf-arc-list li:last-child{ border-bottom:none; }
.vf-arc-time{
  font-family: var(--vf-display);
  font-size:54px;
  letter-spacing:.06em;
  color:var(--vf-gold);
  line-height:1;
  font-weight:400;
}
.vf-arc-time small{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:18px;
  color:var(--vf-gold-soft);
  margin-left:2px;
}

/* ---------- ARC: lede, chef, dividers, cta ---------- */
.vf-arc-lede{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:clamp(17px, 1.4vw, 20px);
  line-height:1.6;
  color:rgba(246,239,224,.82);
  max-width:560px;
  margin:24px auto 0;
}
.vf-arc-divider{
  display:flex; align-items:center; justify-content:center;
  gap:18px;
  margin:64px auto;
  max-width:520px;
  color:var(--vf-gold-soft);
}
.vf-arc-divider span{
  flex:1; height:1px;
  background:linear-gradient(90deg, rgba(201,165,103,0) 0%, rgba(201,165,103,.4) 50%, rgba(201,165,103,0) 100%);
}
.vf-arc-divider em{
  font-style:normal;
  font-size:14px;
  letter-spacing:.2em;
  color:var(--vf-gold);
  opacity:.85;
}
.vf-chef{
  max-width:640px;
  margin:0 auto;
  text-align:center;
}
.vf-chef-name{
  font-family: var(--vf-display);
  font-size:clamp(30px, 3vw, 40px);
  font-weight:400;
  color:var(--vf-cream);
  margin:14px 0 28px;
  line-height:1.15;
  letter-spacing:.005em;
}
.vf-chef-name em{
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:300;
  color:var(--vf-gold);
}
.vf-chef-body{
  display:flex; flex-direction:column;
  gap:18px;
  text-align:left;
  max-width:560px; margin:0 auto;
}
.vf-chef-body p{
  font-family: var(--vf-serif);
  font-weight:400;
  font-size:17px;
  line-height:1.7;
  color:rgba(246,239,224,.82);
  margin:0;
}
.vf-arc-arc-label{ margin: 2px 0 20px; }
.vf-arc-list{ margin-top:36px; }
.vf-arc-headline{ font-size: 52px; margin: 10px 0 32px; }
.vf-arc-divider--tight{ margin: 4px 132px; }
.vf-arc-divider--spaced{ margin: 44px 132px 4px; }
@media (max-width: 720px){
  .vf-arc-divider--tight,
  .vf-arc-divider--spaced{ margin-left: 24px; margin-right: 24px; }
}
.vf-sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip: rect(0,0,0,0); white-space:nowrap; border:0;
}
.vf-arc-cta{
  margin:64px auto 0;
  display:flex; justify-content:center;
}
.vf-arc-list h3{
  font-family: var(--vf-display);
  font-size:26px;
  font-weight:400;
  color:var(--vf-cream);
  margin:0 0 6px;
  line-height:1.2;
}
.vf-arc-list p{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:17px;
  line-height:1.6;
  color:rgba(246,239,224,.78);
  margin:0;
}
@media (max-width:680px){
  .vf-arc-list li{ grid-template-columns:1fr; gap:8px; }
  .vf-arc-time{ font-size:42px; }
}

/* ---------- NEWSLETTER ---------- */
.vf-news{
  position:relative;
  background:linear-gradient(180deg, #0d1f15 0%, #08140d 100%);
  color:var(--vf-cream);
  padding:140px 0;
  overflow:hidden;
}
.vf-news::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,165,103,.15), transparent 70%),
    radial-gradient(ellipse 80% 50% at 80% 80%, rgba(179,74,53,.1), transparent 70%);
  pointer-events:none;
}
.vf-news-card{
  position:relative;
  z-index:2;
  max-width:780px;
  margin:0 auto;
  text-align:center;
}
.vf-news-header{ margin-bottom:48px; }
.vf-news-lede{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:20px;
  line-height:1.6;
  color:rgba(246,239,224,.85);
  max-width:560px;
  margin:0 auto;
}

.vf-form{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:18px;
  margin:48px auto 0;
  max-width:640px;
  text-align:left;
}
.vf-form--popup{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
}
.vf-field{ display:flex; flex-direction:column; gap:8px; }
.vf-field span{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:14px;
  letter-spacing:.04em;
  color:var(--vf-gold);
}
.vf-field input{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:19px;
  padding:14px 0;
  border:none;
  border-bottom:1px solid rgba(201,165,103,.45);
  background:transparent;
  color:var(--vf-cream);
  outline:none;
  border-radius:0;
  transition: border-color .2s ease;
}
.vf-field input::placeholder{ color:rgba(246,239,224,.35); font-style:italic; }
.vf-field input:focus{ border-color:var(--vf-gold); }

.vf-form .vf-btn{
  grid-column:1 / -1;
  justify-self:center;
  margin-top:16px;
}
.vf-form-note{
  grid-column:1 / -1;
  font-family: var(--vf-serif);
  font-style:italic;
  font-weight:500;
  font-size:14px;
  color:rgba(246,239,224,.6);
  text-align:center;
  margin:0;
}
.vf-form-thanks{
  display:none;
  grid-column:1 / -1;
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:20px;
  line-height:1.5;
  color:var(--vf-gold);
  padding:24px;
  border:1px solid rgba(201,165,103,.4);
  text-align:center;
  margin:0;
}
.vf-form--sent .vf-field,
.vf-form--sent > .vf-btn,
.vf-form--sent .vf-form-note{ display:none; }
.vf-form--sent .vf-form-thanks{ display:block; }

@media (max-width:600px){ .vf-form{ grid-template-columns:1fr; } }

.vf-promise{
  list-style:none; padding:0;
  display:flex; justify-content:center; gap:48px;
  margin-top:64px;
  flex-wrap:wrap;
  border-top:1px solid rgba(201,165,103,.2);
  padding-top:40px;
}
.vf-promise--band{
  margin: 40px auto 12px;
  padding: 32px 0;
  border-top: 1px solid rgba(201,165,103,.2);
  border-bottom: 1px solid rgba(201,165,103,.2);
  max-width: 720px;
}
.vf-promise li{ text-align:center; }
.vf-promise strong{
  display:block;
  font-family: var(--vf-display);
  font-size:48px;
  color:var(--vf-gold);
  font-weight:400;
  letter-spacing:.02em;
}
.vf-promise span{
  display:block;
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:14px;
  letter-spacing:.06em;
  color:rgba(246,239,224,.6);
  margin-top:6px;
}

/* ---------- TRUST + FAQ ---------- */
.vf-trust{ background:var(--vf-cream); }
.vf-trust-grid{
  display:grid; grid-template-columns:1.3fr 1fr; gap:80px;
  align-items:start;
}
@media (max-width:880px){ .vf-trust-grid{ grid-template-columns:1fr; gap:48px; } }

.vf-faq{ margin-top:32px; }
.vf-faq details{
  border-bottom:1px solid rgba(13,31,21,.15);
  padding:24px 0;
}
.vf-faq summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-family: var(--vf-display);
  font-size:24px;
  font-weight:400;
  color:var(--vf-ink);
}
.vf-faq summary::-webkit-details-marker{ display:none; }
.vf-faq summary::after{
  content:"+";
  font-family: var(--vf-serif);
  font-size:28px;
  color:var(--vf-rose);
  font-weight:300;
  transition: transform .2s ease;
  line-height:1;
}
.vf-faq details[open] summary::after{ transform:rotate(45deg); }
.vf-faq details > div{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:18px;
  line-height:1.65;
  color:var(--vf-ink-soft);
  margin-top:14px;
  max-width:580px;
}

.vf-promise-card{
  background:var(--vf-deep);
  color:var(--vf-cream);
  padding:48px 40px;
  border:1px solid rgba(201,165,103,.25);
}
.vf-promise-card .vf-rule-mark{ text-align:left; font-size:22px; }
.vf-promise-card .vf-section-eyebrow{ color:var(--vf-gold); margin-bottom:14px; }
.vf-promise-card h3{
  font-family: var(--vf-display);
  font-weight:400;
  font-size:32px;
  color:var(--vf-cream);
  line-height:1.15;
  margin:0 0 18px;
}
.vf-promise-card p{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:17px;
  line-height:1.65;
  color:rgba(246,239,224,.85);
  margin:0 0 24px;
}
.vf-promise-card ul{
  list-style:none; padding:0;
  border-top:1px solid rgba(201,165,103,.45);
}
.vf-promise-card li{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:16px;
  line-height:1.5;
  color:rgba(246,239,224,.85);
  padding:14px 0 14px 22px;
  position:relative;
}
.vf-promise-card li + li{
  border-top:1px solid rgba(201,165,103,.45);
}
.vf-promise-card li::before{
  content:"✦";
  position:absolute; left:0; top:12px;
  color:var(--vf-gold);
  font-size:12px;
}

/* ---------- FINAL CARD ---------- */
.vf-final{
  position:relative;
  isolation:isolate;
  color:var(--vf-cream);
  overflow:hidden;
  padding:160px 0;
  text-align:center;
}
.vf-final-photo{ position:absolute; inset:0; z-index:-2; }
.vf-final-photo img{
  width:100%; height:100%; object-fit:cover; object-position:center 30%;
  filter:saturate(.85) brightness(.4) contrast(1.05);
}
.vf-final-veil{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(8,20,13,.6), rgba(8,20,13,.95)),
    linear-gradient(180deg, rgba(8,20,13,.7), rgba(8,20,13,.95));
}
.vf-final-inner{ max-width:780px; margin:0 auto; }
.vf-final-inner .vf-rule-mark{ font-size:28px; margin-bottom:32px; }
.vf-final-attr{
  font-family: var(--vf-serif);
  font-style:italic;
  font-size:16px;
  letter-spacing:.06em;
  color:var(--vf-gold);
  margin:24px 0 36px;
}
.vf-final-body{
  font-family: var(--vf-serif);
  font-weight:500;
  font-size:20px;
  line-height:1.6;
  color:rgba(246,239,224,.88);
  margin:0 auto 40px;
  max-width:560px;
}

/* ---------- FOOTER ---------- */
.vf-foot{
  background:var(--vf-deeper);
  color:rgba(246,239,224,.7);
  border-top:1px solid rgba(201,165,103,.2);
}
.vf-foot .foot-row{ color:rgba(246,239,224,.7); font-family:var(--vf-serif); }
.vf-foot a{ color:var(--vf-gold); }
.vf-foot .foot-sub{ color:rgba(246,239,224,.4); }
.vf-foot .social-icon{ background:transparent; border-color:rgba(201,165,103,.3); color:var(--vf-gold); }
.vf-foot .social-icon:hover{ background:rgba(201,165,103,.1); }

html { scroll-behavior: smooth; }

/* ============================================================
   STEP 4: Type system swap — Fraunces / Inter Tight / JetBrains Mono
   Display + italic via --vf-serif / --vf-display (now both Fraunces).
   Below: tier-3 overrides for the mono technical voice and the
   sans utility middle.
   ============================================================ */

/* Mono caps — technical tickers only (dates, locations, counts, counters, UI labels) */
.vf-overline,
.vf-hero-meta,
.vf-hero-rule em,
.vf-promise span,
.vf-final-attr,
.vf-hero-scroll {
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Editorial transition eyebrows — warm italic Fraunces (SOFT 80) */
.vf-section-eyebrow,
.vf-partner-kind {
  font-family: var(--vf-serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 72;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
}

/* Sans body — utility middle: FAQ answers, footer, form inputs */
.vf-faq details > div,
.vf-foot .foot-row,
.vf-field input {
  font-family: var(--font-body, "Inter Tight", system-ui, sans-serif);
  font-style: normal;
}

/* Variable Fraunces — crisp display headings */
h1, h2, h3,
.vf-title, .vf-display, .vf-chef-name,
.vf-faq summary, .vf-promise strong, .vf-promise-card h3 {
  font-variation-settings: "SOFT" 30, "opsz" 90;
}

/* Variable Fraunces — warm italic moments (Shakespeare, intro, chef bio) */
.vf-subtitle,
.vf-intro-body, .vf-intro-body em,
.vf-display em,
.vf-chef-body p {
  font-variation-settings: "SOFT" 80, "opsz" 72;
}


/* ============================================================
   NAV — page-scoped dark-mode override of global .nav
   ============================================================ */
:where(#top, #story, #partners, #arc, #reserve, #faq) { scroll-margin-top: 92px; }

.vf-nav {
  background: rgba(13,31,21,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,165,103,.18);
}
.vf-nav .nav-inner {
  gap: 1rem;
  height: auto;
  min-height: 72px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.vf-nav .nav-logo {
  color: var(--bone, #f4ede1);
  flex-shrink: 0;
}
.vf-nav .nav-links {
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-left: auto;
}
.vf-nav .nav-links a {
  color: rgba(244,237,225,.78);
  text-decoration: none;
}
.vf-nav .nav-links a:hover,
.vf-nav .nav-links a:focus-visible {
  color: var(--gold, #b88a3c);
}
.vf-nav-hub-link {
  color: var(--gold, #b88a3c) !important;
}
.vf-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.vf-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(184,138,60,.32);
  background: rgba(244,237,225,.08);
}
.vf-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  font: 700 0.72rem/1 var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,237,225,.78);
  text-decoration: none;
}
.vf-lang-link:hover,
.vf-lang-link:focus-visible {
  color: var(--bone, #f4ede1);
}
.vf-lang-link.is-active {
  background: rgba(184,138,60,.22);
  color: var(--bone, #f4ede1);
}
.vf-nav .btn {
  box-shadow: none;
  letter-spacing: 0.08em;
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-weight: 600;
}
.vf-nav-donate {
  background: transparent;
  border: 1px solid rgba(184,138,60,.5);
  color: var(--bone, #f4ede1);
}
.vf-nav-donate:hover,
.vf-nav-donate:focus-visible {
  background: rgba(184,138,60,.18);
  border-color: rgba(184,138,60,.68);
  color: var(--bone, #f4ede1);
  filter: none;
}
.vf-nav-cta {
  background: var(--gold, #b88a3c) !important;
  border: 1px solid var(--gold, #b88a3c) !important;
  color: var(--ink, #08140d) !important;
}
.vf-nav-cta:hover,
.vf-nav-cta:focus-visible {
  background: #cf9a46 !important;
  border-color: #cf9a46 !important;
  color: var(--ink, #08140d) !important;
  filter: none;
}
.vf-nav-current { color: var(--gold, #b88a3c) !important; }

/* Hamburger button — hidden on desktop */
.vf-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  margin: 0;
  background: transparent;
  border: 1px solid rgba(184,138,60,.4);
  border-radius: 999px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.vf-hamburger:focus-visible { outline: 2px solid var(--candle, #f6cf85); outline-offset: 3px; }
.vf-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--bone, #f4ede1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.vf-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.vf-hamburger.is-open span:nth-child(2) { opacity: 0; }
.vf-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay menu — hidden on desktop */
.vf-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: calc(5rem + env(safe-area-inset-top)) 2rem calc(3rem + env(safe-area-inset-bottom));
  background: rgba(8,20,13,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.32s ease;
}
.vf-mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.vf-mobile-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: center;
}
.vf-mobile-menu__links a {
  font-family: var(--font-display, "Fraunces", Georgia, serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  line-height: 1.1;
  font-variation-settings: "SOFT" 80, "opsz" 72;
  color: var(--bone, #f4ede1);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vf-mobile-menu__links a:hover,
.vf-mobile-menu__links a:focus-visible { color: var(--gold, #b88a3c); }
.vf-mobile-menu__meta {
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.vf-mobile-menu__lang {
  display: inline-flex;
}
.vf-mobile-menu__actions {
  width: min(100%, 320px);
  display: grid;
  gap: 0.75rem;
}
.vf-mobile-menu__actions .btn {
  width: 100%;
  justify-content: center;
}
.vf-mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(184,138,60,0.18);
  border: 1px solid rgba(184,138,60,0.5);
  border-radius: 999px;
  font: 600 0.78rem/1 var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold, #b88a3c);
  text-decoration: none;
  margin-top: 0.5rem;
}
.vf-mobile-menu__cta:hover,
.vf-mobile-menu__cta:focus-visible { background: rgba(184,138,60,0.32); color: var(--bone, #f4ede1); }

/* MOBILE NAV — collapse to hamburger */
@media (max-width: 980px) {
  :where(#top, #story, #partners, #arc, #reserve, #faq) { scroll-margin-top: 84px; }
  .vf-nav .nav-inner { gap: 0.65rem; padding: 0.65rem 1rem; }
  .vf-nav .nav-logo { font-size: 0.95rem; }
  .vf-nav .nav-logo img { width: 28px; height: 28px; }
  .vf-nav .nav-links { display: none; }
  .vf-nav .vf-lang-switch,
  .vf-nav .vf-nav-donate,
  .vf-nav .vf-nav-cta { display: none; }
  .vf-nav-actions { margin-left: auto; justify-content: flex-end; }
  .vf-hamburger { display: flex; }
  .vf-mobile-menu {
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.5rem;
    padding: calc(5.25rem + env(safe-area-inset-top)) 1rem calc(1.5rem + env(safe-area-inset-bottom));
  }
  .vf-mobile-menu__links,
  .vf-mobile-menu__meta {
    width: min(100%, 32rem);
    margin: 0 auto;
  }
  .vf-mobile-menu__meta {
    justify-items: stretch;
  }
  .vf-mobile-menu__lang {
    justify-content: center;
  }
  .vf-mobile-menu__actions {
    width: 100%;
  }
  .vf-hero-frame {
    width: min(calc(100% - 32px), 1080px);
  }
  .vf-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
  }
  .vf-hero-meta i {
    margin: 0 4px;
  }
}
@media (max-width: 640px) {
  .vf-nav .nav-logo span { display: none; }
  .vf-nav-actions { gap: 0; }
}
@media (min-width: 981px) {
  .vf-mobile-menu { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .vf-hamburger span,
  .vf-mobile-menu { transition: none; }
}

/* ============================================================
   ARC OF THE EVENING — slide-based
   Desktop: pinned scrollytelling, slides stack absolutely, one is-active
   Mobile:  slides flow vertically in normal block layout
   ============================================================ */
.arc {
  position: relative;
  background: var(--ink, #08140d);
  color: var(--bone, #f4ede1);
  --arc-step-h: 65svh;
}
.arc__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}
.arc__slides {
  position: absolute;
  inset: 0;
}
.arc__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.arc__slide.is-active { opacity: 1; }

.arc__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.9) contrast(1.12) brightness(0.7);
  z-index: 1;
}
.arc__slide.is-active .arc__slide-img { transform: scale(1); }

.arc__slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,20,13,0.45) 0%, rgba(8,20,13,0.15) 30%, rgba(8,20,13,0.18) 70%, rgba(8,20,13,0.7) 100%),
    radial-gradient(70% 60% at 50% 70%, rgba(232,140,60,0.16) 0%, rgba(8,20,13,0) 70%),
    linear-gradient(90deg, rgba(8,20,13,0.6) 0%, rgba(8,20,13,0) 35%);
  mix-blend-mode: multiply;
}

.arc__slide-caption {
  position: absolute;
  left: clamp(2.5rem, 7vw, 7rem);
  right: clamp(2rem, 6vw, 6rem);
  bottom: 12svh;
  z-index: 3;
  max-width: 44rem;
  transform: translateY(28px);
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.arc__slide.is-active .arc__slide-caption {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.arc__slide-numeral {
  display: block;
  font-family: var(--font-display, "Fraunces", Georgia, serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.85;
  font-variation-settings: "SOFT" 80, "opsz" 72;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold, #b88a3c);
  margin: 0 0 0.4rem;
  opacity: 0.85;
}
.arc__slide-title {
  font: 600 clamp(1.75rem, 4vw, 3.5rem)/1.05 var(--font-display, "Fraunces", Georgia, serif);
  font-variation-settings: "SOFT" 30, "opsz" 90;
  text-wrap: balance;
  margin: 0 0 0.7rem;
  color: var(--bone, #f4ede1);
}
.arc__slide-sentence {
  font: italic 400 clamp(1rem, 1.3vw, 1.25rem)/1.5 var(--font-display, "Fraunces", Georgia, serif);
  font-variation-settings: "SOFT" 80, "opsz" 72;
  color: color-mix(in oklab, var(--bone, #f4ede1) 82%, transparent);
  max-width: 36ch;
  margin: 0;
}

.arc__rail {
  position: absolute;
  top: 50%;
  left: clamp(1rem, 2vw, 2rem);
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.arc__rail-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(244,237,225,0.18);
  border: 1px solid rgba(244,237,225,0.25);
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.6s ease;
}
.arc__rail-dot.is-past { background: rgba(184,138,60,0.6); }
.arc__rail-dot.is-active {
  background: var(--gold, #b88a3c);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(184,138,60,0.18);
}

.arc__counter {
  position: absolute;
  bottom: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 2vw, 2rem);
  z-index: 4;
  padding: 0.45rem 0.9rem;
  background: rgba(8,20,13,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  border: 1px solid rgba(244,237,225,0.18);
  font: 500 0.72rem/1 var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  letter-spacing: 0.18em;
  color: var(--bone, #f4ede1);
}
.arc__counter-now {
  display: inline-block;
  min-width: 1.2em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.arc__steps { position: relative; pointer-events: none; }
.arc__step { height: var(--arc-step-h); }

/* ============================================================
   MOBILE — horizontal swipe gallery (replaces pinned scrollytelling)
   ============================================================ */
@media (max-width: 700px) {
  .arc {
    --arc-card-gap: 0.85rem;
    --arc-card-pad: 1.25rem;
    padding: 1.25rem 0 2rem;
  }
  .arc__stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    isolation: auto;
  }
  .arc__slides {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: var(--arc-card-gap);
    padding: 0 var(--arc-card-pad) 1.25rem;
    scroll-padding-left: var(--arc-card-pad);
    scroll-padding-right: var(--arc-card-pad);
    overscroll-behavior-x: contain;
  }
  .arc__slides::-webkit-scrollbar { display: none; }

  .arc__slide {
    position: relative;
    inset: auto;
    flex: 0 0 min(30rem, calc(100vw - (var(--arc-card-pad) * 2) - 2px));
    max-width: 30rem;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 1;
    transition: none;
    will-change: auto;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(13,31,21,0.6);
    border: 1px solid rgba(184,138,60,0.18);
    display: flex;
    flex-direction: column;
  }
  .arc__slide-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 56svh;
    max-height: 480px;
    transform: none;
    transition: none;
    filter: saturate(0.95) contrast(1.05) brightness(0.85);
    z-index: 0;
  }
  .arc__slide.is-active .arc__slide-img { transform: none; }
  .arc__slide-overlay {
    position: absolute;
    inset: 0;
    height: 56svh;
    max-height: 480px;
    bottom: auto;
    mix-blend-mode: normal;
    background: linear-gradient(180deg,
      rgba(8,20,13,0.15) 0%,
      rgba(8,20,13,0) 35%,
      rgba(8,20,13,0) 65%,
      rgba(8,20,13,0.5) 100%);
  }
  .arc__slide-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    padding: 1.4rem 1.4rem 1.7rem;
    background: rgba(13,31,21,0.5);
  }
  .arc__slide-numeral { font-size: clamp(2.4rem, 11vw, 3.6rem); margin-bottom: 0.35rem; }
  .arc__slide-title { font-size: clamp(1.4rem, 5.5vw, 1.9rem); margin-bottom: 0.5rem; }
  .arc__slide-sentence { font-size: 0.98rem; max-width: none; line-height: 1.45; }
  .arc__rail, .arc__counter, .arc__steps { display: none; }
}

@media (max-width: 560px) {
  .vf-hero-frame {
    width: min(calc(100% - 24px), 1080px);
    margin: 82px auto 48px;
    padding: 44px 18px;
  }

  .vf-overline {
    margin-bottom: 24px;
    letter-spacing: .18em;
  }

  .vf-title {
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: clamp(64px, 22vw, 132px);
    margin-bottom: 24px;
  }

  .vf-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .vf-hero-meta {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
  }

  .vf-hero-meta i,
  .vf-hero-scroll {
    display: none;
  }

  .vf-btn {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    text-align: center;
  }

  .vf-faq summary {
    font-size: 21px;
  }

  .vf-faq details {
    padding: 20px 0;
  }
}

/* Reduced motion — desktop falls back to a clean vertical stack matching mobile */
@media (prefers-reduced-motion: reduce) and (min-width: 701px) {
  .arc__stage { position: relative; height: auto; min-height: 0; overflow: visible; }
  .arc__slides { position: relative; }
  .arc__slide { position: relative; opacity: 1; }
  .arc__slide-img { position: relative; height: 60svh; transform: none; transition: none; }
  .arc__slide-overlay { height: 60svh; }
  .arc__slide-caption {
    position: relative; left: auto; right: auto; bottom: auto;
    opacity: 1; transform: none; filter: none; max-width: none;
    padding: 2rem clamp(2.5rem, 7vw, 7rem) 3rem; background: var(--ink, #08140d);
  }
  .arc__rail, .arc__counter, .arc__steps { display: none; }
}
