/* ============================================================
   Devika Garba Mahotsav 2026 — hand-written layer.
   Complements Tailwind (Play CDN). Everything here is either a
   component Tailwind classes would make unreadable, an ornament,
   or an animation keyframe.
   ============================================================ */

:root {
  --plum:      #140A12;
  --plum-800:  #1C0E18;
  --plum-700:  #26121F;
  --wine:      #4A0E2E;
  --gold:      #E8B04B;
  --gold-hi:   #F6D08A;
  --marigold:  #F2762E;
  --rose:      #D6336C;
  --cream:     #F6ECD9;
  --cream-dim: #D9C9B2;
  --cream-mute:#A99483;
  --peacock:   #0E6B5C;
  --cart-h:    76px;
}

html { -webkit-text-size-adjust: 100%; }
body { background-color: var(--plum); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--plum-800); }
::-webkit-scrollbar-thumb { background: #3A2130; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep, #B8862F); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ------------------------------------------------------------
   Ornamental textures
   ------------------------------------------------------------ */
/* A fine rangoli lattice — pure gradients, no image request. */
.dgm-weave {
  background-image:
    repeating-linear-gradient(45deg,  rgba(232,176,75,.055) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-45deg, rgba(232,176,75,.055) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 11px 11px, rgba(232,176,75,.10) 0 1.2px, transparent 1.4px);
  background-size: auto, auto, 22px 22px;
  mask-image: radial-gradient(120% 90% at 50% 20%, #000 0%, rgba(0,0,0,.35) 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 20%, #000 0%, rgba(0,0,0,.35) 60%, transparent 100%);
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: .72rem 1.6rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #F6D08A 0%, #E8B04B 42%, #F2762E 130%);
  color: #2A1220;
  box-shadow: 0 10px 30px -14px rgba(232,176,75,.85), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(232,176,75,.95), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-ghost {
  border-color: rgba(232,176,75,.38);
  background: rgba(28,14,24,.55);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(232,176,75,.8); background: rgba(74,14,46,.5); color: var(--gold-hi); transform: translateY(-2px); }

.btn-lg { padding: .95rem 2rem; font-size: .98rem; }

/* ------------------------------------------------------------
   Nav
   ------------------------------------------------------------ */
#nav.solid {
  background: rgba(20,10,18,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,176,75,.18);
  box-shadow: 0 12px 40px -28px #000;
}
.nav-link { position: relative; padding-bottom: 3px; transition: color .2s ease; }
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--marigold));
  transition: width .28s ease;
}
.nav-link:hover { color: var(--gold-hi); }
.nav-link:hover::after { width: 100%; }

/* ------------------------------------------------------------
   Hero pieces
   ------------------------------------------------------------ */
.spin-slow     { animation: dgm-spin 120s linear infinite; transform-origin: 50% 50%; }
.spin-slow-rev { animation: dgm-spin 150s linear infinite reverse; transform-origin: 50% 50%; }
@keyframes dgm-spin { to { transform: rotate(360deg); } }

.date-pill {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-radius: 16px;
  border: 1px solid rgba(232,176,75,.28);
  background: linear-gradient(160deg, rgba(74,14,46,.65), rgba(28,14,24,.75));
  padding: .7rem 1.15rem;
  backdrop-filter: blur(8px);
}
.date-pill-num {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 300;
}
.date-pill span:last-child { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.date-pill b     { font-size: .95rem; font-weight: 600; color: var(--cream); }
.date-pill small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-mute); }

.avail-card {
  border-radius: 18px;
  border: 1px solid rgba(232,176,75,.2);
  background: linear-gradient(160deg, rgba(38,18,31,.82), rgba(20,10,18,.7));
  padding: 1rem 1.15rem 1.1rem;
  text-align: left;
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px -40px #000;
}
.avail-card.is-out { border-color: rgba(214,51,108,.45); }

.progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(246,236,217,.1);
  overflow: hidden;
}
.progress > i {
  position: absolute; inset: 0 auto 0 0;
  display: block;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--peacock), var(--gold) 45%, var(--marigold));
  box-shadow: 0 0 14px rgba(232,176,75,.55);
}
/* a visible minimum so a 0% bar still reads as a bar */
.progress::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(232,176,75,.16);
}

.diya { filter: drop-shadow(0 0 18px rgba(242,118,46,.45)); }
.diya .diya-flame { transform-origin: 50% 78%; }

.petal {
  position: absolute;
  top: -6%;
  width: 10px; height: 10px;
  border-radius: 60% 20% 60% 20%;
  opacity: 0;
  will-change: transform, opacity;
}

/* Mobile conversion pass: keep the Navratri atmosphere, but make the decision
   hierarchy unmistakable. The pass CTA and event essentials arrive before any
   decorative or live-inventory detail. */
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 2.9rem;
  color: var(--gold-hi);
  font-size: .9rem;
  font-weight: 600;
}
.hero-secondary-link:hover { color: var(--cream); }

@media (max-width: 639px) {
  .hero-conversion { min-height: 0; }
  .hero-conversion #garland,
  .hero-conversion #petals,
  .hero-conversion .hero-diyas { display: none; }
  .hero-conversion #heroMandala { opacity: .44; }
  .hero-conversion .hero-blessing { margin-top: 1.25rem; }
  .hero-conversion .date-pill { padding: .58rem .9rem; }
  .hero-conversion .date-pill-num { font-size: 1.85rem; }
  .hero-conversion .hero-availability { display: none; }
}

/* ------------------------------------------------------------
   Marquee
   ------------------------------------------------------------ */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
           mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: dgm-marquee 46s linear infinite;
}
.marquee-item {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-hi);
  white-space: nowrap;
}
.marquee-dot { display: inline-flex; opacity: .75; }
@keyframes dgm-marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ------------------------------------------------------------
   Section furniture
   ------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.justify-center::after {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  margin-top: .85rem;
  font-family: Fraunces, Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.85rem, 5.4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--cream);
}
.section-title em { font-style: italic; }

.lede { font-size: 1.02rem; line-height: 1.65; color: var(--cream-dim); max-width: 62ch; }

/* ------------------------------------------------------------
   Feature cards
   ------------------------------------------------------------ */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(232,176,75,.16);
  background: linear-gradient(165deg, rgba(38,18,31,.75), rgba(20,10,18,.6));
  padding: 1.5rem 1.4rem 1.7rem;
  transition: transform .3s ease, border-color .3s ease, box-shadow .35s ease;
}
.feature-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(90% 60% at 50% -10%, rgba(232,176,75,.16), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(232,176,75,.42); box-shadow: 0 30px 60px -34px rgba(232,176,75,.4); }
.feature-card:hover::before { opacity: 1; }

.feature-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  color: var(--gold);
  background: linear-gradient(150deg, rgba(74,14,46,.9), rgba(20,10,18,.7));
  border: 1px solid rgba(232,176,75,.3);
  box-shadow: inset 0 1px 0 rgba(246,208,138,.18);
  transition: transform .3s ease, color .3s ease;
}
.feature-card:hover .feature-ico { transform: rotate(-6deg) scale(1.05); color: var(--gold-hi); }

/* ------------------------------------------------------------
   Night cards
   ------------------------------------------------------------ */
.night-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(232,176,75,.2);
  background: linear-gradient(165deg, rgba(38,18,31,.8), rgba(20,10,18,.65));
  padding: 1.15rem 1.15rem 1.5rem;
  transition: border-color .3s ease, transform .3s ease;
}
@media (min-width: 640px) { .night-card { padding: 1.4rem 1.5rem 1.8rem; } }
.night-card:hover { border-color: rgba(232,176,75,.45); transform: translateY(-4px); }

/* ------------------------------------------------------------
   Night toggle
   ------------------------------------------------------------ */
.night-toggle {
  display: inline-flex;
  gap: .35rem;
  padding: .35rem;
  border-radius: 999px;
  border: 1px solid rgba(232,176,75,.25);
  background: rgba(20,10,18,.75);
  backdrop-filter: blur(8px);
}
.night-toggle button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: .55rem 1.25rem;
  color: var(--cream-dim);
  background: transparent;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
@media (min-width: 640px) { .night-toggle button { padding: .6rem 1.8rem; } }
.night-toggle button:hover:not(:disabled):not(.on) { color: var(--cream); background: rgba(74,14,46,.55); }
.night-toggle button.on {
  background: linear-gradient(135deg, #F6D08A, #E8B04B 55%, #F2762E 140%);
  color: #2A1220;
  box-shadow: 0 8px 24px -12px rgba(232,176,75,.9);
}
.night-toggle button.on .opacity-70 { opacity: .8; }
.night-toggle button:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* ------------------------------------------------------------
   Pass cards
   ------------------------------------------------------------ */
.pass-card,
.vip-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(232,176,75,.18);
  background: linear-gradient(168deg, rgba(38,18,31,.85), rgba(20,10,18,.7));
  padding: 1.35rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease, box-shadow .35s ease;
}
.pass-card:hover { transform: translateY(-5px); border-color: rgba(232,176,75,.5); box-shadow: 0 34px 70px -38px rgba(232,176,75,.45); }
.pass-card.is-featured {
  border-color: rgba(232,176,75,.5);
  background: linear-gradient(168deg, rgba(74,14,46,.75), rgba(20,10,18,.8));
  box-shadow: 0 30px 70px -40px rgba(232,176,75,.55);
}
.pass-card.is-picked,
.vip-band.is-picked { border-color: var(--gold) !important; box-shadow: 0 0 0 1px rgba(232,176,75,.5), 0 30px 70px -36px rgba(232,176,75,.6); }

.pass-card { padding-top: 1.1rem; }
.pass-main { display: flex; flex-direction: column; }
.pass-buy  { margin-top: 1.15rem; }
/* on narrow screens the wide card stacks — give the buy block a hairline */
.pass-card.is-wide .pass-buy {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(232,176,75,.14);
}

/* wide (both-nights) cards put the buy column beside the copy */
@media (min-width: 640px) {
  .pass-card.is-wide {
    display: grid;
    grid-template-columns: 1fr minmax(215px, 250px);
    gap: 1.6rem;
    align-items: start;
  }
  .pass-card.is-wide .pass-buy {
    margin-top: 0;
    padding-top: 1.05rem;
    border-top: 0;
    border-radius: 16px;
    border: 1px solid rgba(232,176,75,.18);
    background: rgba(20,10,18,.55);
    padding: 1.05rem 1.1rem 1.1rem;
  }
  .pass-card.is-wide .pass-buy .stepper { border-top: 1px solid rgba(232,176,75,.14); }
  .pass-card.is-wide .stepper { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

.pass-ribbon {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-hi);
  background: rgba(232,176,75,.14);
  border: 1px solid rgba(232,176,75,.35);
  white-space: nowrap;
}
.pass-ribbon.is-blank { visibility: hidden; }

.quota-chip {
  align-self: flex-start;
  margin-top: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 999px;
  background: rgba(214,51,108,.16);
  border: 1px solid rgba(214,51,108,.32);
  padding: .25rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  color: #F08AAE;
}
.pass-ribbon.is-hot {
  color: #2A1220;
  background: linear-gradient(135deg, #F6D08A, #E8B04B);
  border-color: transparent;
}
.pass-ribbon.is-vip {
  color: #041E19;
  background: linear-gradient(135deg, #F6D08A, #14907C 160%);
  border-color: transparent;
}

.perks { margin-top: 1.05rem; display: flex; flex-direction: column; gap: .5rem; }
.perks li { display: flex; gap: .55rem; font-size: .845rem; line-height: 1.45; color: var(--cream-dim); }
.perk-tick { width: 15px; height: 15px; flex: 0 0 15px; margin-top: 2px; color: var(--peacock); }
.vip-band .perk-tick { color: var(--gold); }
.pass-card.is-featured .perk-tick { color: var(--gold); }

.stepper {
  margin-top: auto;
  padding-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.pass-card .pass-buy { margin-top: auto; }
.pass-card .stepper { margin-top: 1.1rem; border-top: 1px solid rgba(232,176,75,.14); }
.vip-band .stepper { margin-top: 1.15rem; border-top: 1px solid rgba(232,176,75,.2); }

.steps {
  display: inline-flex;
  align-items: center;
  gap: .1rem;
  border-radius: 999px;
  border: 1px solid rgba(232,176,75,.3);
  background: rgba(20,10,18,.85);
  padding: .2rem;
}
.steps button {
  width: 38px; height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .12s ease;
}
.steps button:hover:not(:disabled) { background: rgba(232,176,75,.16); color: var(--gold-hi); }
.steps button:active:not(:disabled) { transform: scale(.9); }
.steps button:disabled { opacity: .3; cursor: not-allowed; }
.qty {
  min-width: 34px;
  text-align: center;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

/* dandiya sticks that cross on hover */
.dandiya-cross {
  position: absolute;
  top: -18px; right: -22px;
  width: 96px; height: 96px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s ease;
}
.dandiya-cross svg { position: absolute; inset: 0; width: 100%; height: 100%; transform-origin: 50% 50%; }
.dandiya-cross svg:first-child { transform: rotate(28deg); }
.dandiya-cross svg:last-child  { transform: rotate(-28deg); }
.pass-card:hover .dandiya-cross,
.vip-band:hover .dandiya-cross { opacity: .5; }
@media (hover: hover) {
  .pass-card:hover .dandiya-cross svg:first-child { animation: dgm-clash-a .5s ease-in-out; }
  .pass-card:hover .dandiya-cross svg:last-child  { animation: dgm-clash-b .5s ease-in-out; }
}
@keyframes dgm-clash-a { 0%,100% { transform: rotate(28deg); } 50% { transform: rotate(50deg); } }
@keyframes dgm-clash-b { 0%,100% { transform: rotate(-28deg); } 50% { transform: rotate(-50deg); } }

.vip-band {
  padding: 1.6rem 1.4rem;
  border-color: rgba(232,176,75,.42);
  background:
    linear-gradient(150deg, rgba(14,107,92,.32) 0%, rgba(74,14,46,.75) 45%, rgba(20,10,18,.9) 100%);
  box-shadow: 0 40px 90px -50px rgba(232,176,75,.6);
}
@media (min-width: 640px) { .vip-band { padding: 2.2rem 2.2rem; } }
.vip-band .dandiya-cross { top: auto; bottom: -20px; right: auto; left: -18px; opacity: 0; }

/* ------------------------------------------------------------
   Run sheet
   ------------------------------------------------------------ */
.run-sheet { position: relative; list-style: none; margin: 0; padding: 0; }
.run-sheet::before {
  content: '';
  position: absolute;
  left: 19px; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(232,176,75,.5) 12%, rgba(232,176,75,.5) 88%, transparent);
}
@media (min-width: 640px) { .run-sheet::before { left: 23px; } }

.run-row {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: .9rem;
  padding: .85rem 0;
  align-items: start;
}
@media (min-width: 640px) {
  .run-row { grid-template-columns: 48px 108px 1fr; gap: 1.4rem; align-items: baseline; padding: 1.05rem 0; }
}
.run-row + .run-row { border-top: 1px solid rgba(232,176,75,.12); }

.run-marker {
  position: relative;
  z-index: 1;
  display: block;
  width: 40px; height: 40px;
  filter: drop-shadow(0 0 12px rgba(242,118,46,.5));
}
@media (min-width: 640px) { .run-marker { width: 48px; height: 48px; } }

.run-time {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 639px) { .run-time { grid-column: 2; font-size: .95rem; } }

.run-body { display: block; }
@media (max-width: 639px) { .run-body { grid-column: 2; margin-top: .2rem; } }
.run-body b { display: block; font-size: 1.02rem; font-weight: 600; color: var(--cream); }
.run-body span { display: block; margin-top: .25rem; font-size: .875rem; line-height: 1.55; color: var(--cream-mute); max-width: 60ch; }

/* ------------------------------------------------------------
   Gallery
   ------------------------------------------------------------ */
/* CSS columns give true masonry with no empty cells */
.gal-grid { columns: 2; column-gap: .75rem; }
@media (min-width: 640px) { .gal-grid { column-gap: 1rem; } }
@media (min-width: 1024px) { .gal-grid { columns: 3; } }

.gal-tile {
  position: relative;
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(232,176,75,.18);
  height: 165px;
  margin-bottom: .75rem;
  transition: border-color .3s ease, transform .35s ease;
}
.gal-tile.tall { height: 250px; }
@media (min-width: 640px) {
  .gal-tile { height: 215px; margin-bottom: 1rem; }
  .gal-tile.tall { height: 330px; }
}
.gal-tile:hover { border-color: rgba(232,176,75,.5); transform: translateY(-3px); }
.gal-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem .95rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(20,10,18,.9));
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq details {
  border-bottom: 1px solid rgba(232,176,75,.16);
}
.faq details:first-child { border-top: 1px solid rgba(232,176,75,.16); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem .2rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--cream);
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-hi); }
.faq-chev { width: 18px; height: 18px; flex: 0 0 18px; color: var(--gold); transition: transform .3s ease; }
.faq details[open] .faq-chev { transform: rotate(180deg); }
.faq details[open] summary { color: var(--gold-hi); }
.faq-a { padding: 0 .2rem 1.25rem; max-width: 66ch; }
.faq-a p { font-size: .93rem; line-height: 1.7; color: var(--cream-dim); }
.faq-a p + p { margin-top: .7rem; }
.faq-a b { color: var(--gold-hi); font-weight: 600; }

/* ------------------------------------------------------------
   Location
   ------------------------------------------------------------ */
.loc-row {
  display: grid;
  gap: .2rem .9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232,176,75,.14);
}
@media (min-width: 640px) { .loc-row { grid-template-columns: 132px 1fr; align-items: baseline; } }
.loc-k { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.loc-v { font-size: .98rem; line-height: 1.55; color: var(--cream); }
.loc-v small { display: block; margin-top: .25rem; font-size: .82rem; color: var(--cream-mute); }

.foot-col { display: flex; flex-direction: column; gap: .6rem; }
.foot-col b { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.foot-col a { color: var(--cream-dim); transition: color .2s ease; }
.foot-col a:hover { color: var(--gold-hi); }

/* ------------------------------------------------------------
   Sticky cart
   ------------------------------------------------------------ */
.cart {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  transform: translateY(120%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  background: linear-gradient(180deg, rgba(28,14,24,.94), rgba(20,10,18,.98));
  border-top: 1px solid rgba(232,176,75,.4);
  backdrop-filter: blur(16px);
  box-shadow: 0 -20px 50px -30px #000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.cart.show { transform: translateY(0); }
body.cart-open { padding-bottom: var(--cart-h); }

/* ------------------------------------------------------------
   Modal
   ------------------------------------------------------------ */
.modal { position: fixed; inset: 0; z-index: 90; display: none; }
.modal.open { display: block; }
.modal-bg { position: absolute; inset: 0; background: rgba(10,5,9,.82); backdrop-filter: blur(6px); }
.modal-card {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(470px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 26px 26px 0 0;
  border: 1px solid rgba(232,176,75,.3);
  border-bottom: 0;
  background: linear-gradient(170deg, #26121F, #140A12 60%);
  padding: 1.6rem 1.3rem calc(1.6rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -30px 80px -30px #000;
}
@media (min-width: 640px) {
  .modal-card {
    top: 50%; bottom: auto;
    transform: translate(-50%, -50%);
    border-radius: 26px;
    border-bottom: 1px solid rgba(232,176,75,.3);
    padding: 2rem 1.9rem;
  }
}
.modal-x {
  position: absolute; top: .85rem; right: .95rem;
  z-index: 3;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(232,176,75,.25);
  background: rgba(20,10,18,.7);
  color: var(--cream-dim);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.modal-x:hover { color: var(--gold-hi); border-color: rgba(232,176,75,.6); }

.order-lines {
  margin-top: 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(232,176,75,.2);
  background: rgba(20,10,18,.6);
  padding: .3rem .9rem;
}
@media (max-width: 639px) {
  .order-lines { margin-top: .95rem; }
  .order-lines .l { padding: .5rem 0; }
  .field { margin-top: .75rem; }
  .field input { padding: .7rem .85rem; }
}
.order-lines .l {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  font-size: .875rem;
  color: var(--cream-dim);
}
.order-lines .l + .l { border-top: 1px solid rgba(232,176,75,.12); }
.order-lines .l b { color: var(--cream); font-weight: 600; white-space: nowrap; }
.order-lines .l.tot { font-size: 1rem; color: var(--cream); }
.order-lines .l.tot b { font-family: Fraunces, Georgia, serif; font-size: 1.35rem; color: var(--gold); }

.field { margin-top: .95rem; }
.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(232,176,75,.25);
  background: rgba(20,10,18,.8);
  padding: .8rem .9rem;
  font-size: 16px;   /* stops iOS zooming on focus */
  color: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: #7C6857; }
.field input:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,176,75,.16); }
.field .hint { margin-top: .35rem; font-size: .74rem; color: var(--cream-mute); }
.field.err input { border-color: #E06B6B; }
.field.err .hint { color: #F0A5A5; }

/* ------------------------------------------------------------
   Reveal (GSAP sets the final state; this is the pre-paint state
   and the no-JS / reduced-motion fallback)
   ------------------------------------------------------------ */
[data-reveal], [data-hero] { will-change: transform, opacity; }
.js-anim [data-reveal],
.js-anim [data-hero] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .js-anim [data-reveal],
  .js-anim [data-hero] { opacity: 1 !important; transform: none !important; }
  .spin-slow, .spin-slow-rev, .marquee-track { animation: none !important; }
  .petal { display: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
