:root {
  --ink: #210807;
  --wine: #4b1718;
  --red: #d83e1d;
  --ember: #e34520;
  --gold: #f0b532;
  --gold-light: #ffe3a1;
  --ivory: #f8edda;
  --paper: #efe0c5;
  --line: rgba(117, 73, 33, .22);
  --shadow: 0 28px 70px rgba(32, 5, 4, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
}
body::selection { color: #240707; background: var(--gold); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sale-page { overflow: hidden; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.announcement {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 40px;
  padding: 8px 20px;
  color: #3b1606;
  background: linear-gradient(90deg, #d9411d, #f4b533 35%, #ffd979 52%, #e34520);
  font-size: 11px;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}
.cinema-loading .announcement { opacity: 0; transform: translateY(-100%); }
.cinema-ready .announcement { animation: bannerDrop .8s cubic-bezier(.2,.8,.2,1) both; }
.announcement__spark { font-size: 16px; animation: twinkle 1.8s ease-in-out infinite; }
.announcement__divider { width: 1px; height: 15px; background: rgba(59, 22, 6, .35); }

.hero {
  position: relative;
  min-height: calc(100svh - 40px);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  color: white;
  background: #210606 url("assets/abhushan-hero.png") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 2, 2, .35), transparent 25%, transparent 74%, rgba(17, 2, 2, .3)),
    radial-gradient(circle at 50% 46%, rgba(48, 3, 2, .16) 0 22%, rgba(20, 2, 2, .52) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-curtain {
  position: absolute;
  inset: 0;
  z-index: 12;
  overflow: hidden;
  pointer-events: none;
}
.hero-curtain__left,
.hero-curtain__right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  background:
    linear-gradient(90deg, rgba(18,2,2,.98), rgba(64,7,6,.98)),
    #210403;
  box-shadow: inset -10px 0 35px rgba(0,0,0,.35);
}
.hero-curtain__left { left: 0; transform-origin: left center; }
.hero-curtain__right {
  right: 0;
  background: linear-gradient(270deg, rgba(18,2,2,.98), rgba(64,7,6,.98)), #210403;
  box-shadow: inset 10px 0 35px rgba(0,0,0,.35);
  transform-origin: right center;
}
.hero-curtain__flare {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 2px;
  height: 120%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 18px 6px #ffde8a, 0 0 70px 28px rgba(223,139,37,.7);
  transform: translateX(-50%);
}
.cinema-ready .hero-curtain__left { animation: curtainLeft 1.45s cubic-bezier(.7,0,.25,1) .15s forwards; }
.cinema-ready .hero-curtain__right { animation: curtainRight 1.45s cubic-bezier(.7,0,.25,1) .15s forwards; }
.cinema-ready .hero-curtain__flare { animation: openingFlare 1.35s ease-out .12s forwards; }
.cinema-loading .hero { background-size: 112% auto; }
.cinema-ready .hero { animation: heroPushIn 2.2s cubic-bezier(.2,.75,.2,1) both; }
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-block: 26px;
}
.cinema-loading .nav { opacity: 0; transform: translateY(-20px); }
.cinema-ready .nav { animation: cinematicRise .8s ease-out 1.1s both; }
.brand { display: inline-flex; align-items: center; }
.brand img {
  display: block;
  width: 132px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 5px 18px rgba(0, 0, 0, .35));
}
.nav__actions { display: flex; align-items: center; gap: 26px; }
.nav__link { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-3px); }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--gold {
  color: #3c1108;
  background: linear-gradient(115deg, #e34520, #ffd76f 48%, #ef9d24);
  box-shadow: 0 13px 36px rgba(226, 160, 59, .22);
}
.button--gold::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  transform: rotate(20deg);
  animation: buttonShine 4s ease-in-out infinite 1s;
}
.button--ghost, .button--glass {
  color: white;
  border-color: rgba(255,255,255,.3);
  background: rgba(58, 6, 5, .26);
  backdrop-filter: blur(8px);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 80px;
  text-align: center;
}
.hero__campaign-unit {
  position: relative;
  width: min(410px, 42vw);
  margin: -4px 0 8px;
  line-height: 0;
  filter: drop-shadow(0 22px 30px rgba(18, 2, 2, .34));
}
.hero__campaign-unit img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.eyebrow {
  margin: 0 0 14px;
  color: #9d4b2f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold-light); }
.hero__title {
  position: relative;
  display: flex;
  align-items: baseline;
  margin: 0;
  color: white;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(60px, 9.2vw, 142px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .72;
  text-shadow: 0 11px 25px rgba(0,0,0,.38);
  transform: scaleY(1.16);
}
.hero__title-gold {
  color: transparent;
  background: linear-gradient(180deg, #fff1b9 0%, #d7932f 43%, #ffe9a9 51%, #a75f15 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero__sale {
  position: absolute;
  top: 73%;
  left: 50%;
  padding: .08em .2em;
  color: white;
  background: var(--ember);
  box-shadow: 11px 11px 0 #70130d;
  font-size: .55em;
  letter-spacing: .02em;
  transform: translateX(-50%) rotate(-2deg) scaleY(.86);
}
.hero__promise {
  margin: 72px 0 15px;
  color: #fcebd0;
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .03em;
}
.hero__promise strong { color: var(--gold-light); font-style: italic; }

.offer-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: 430px;
  justify-content: center;
  margin-top: 2px;
  padding: 24px 18px 22px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 218, 132, .32);
  border-bottom: 1px solid rgba(255, 218, 132, .32);
  background: linear-gradient(90deg, transparent, rgba(53, 4, 4, .72), transparent);
}
.offer-stage__label {
  position: absolute;
  top: 11px;
  left: 50%;
  color: #f7d68c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.offer-stage__number {
  display: flex;
  align-items: center;
  padding-top: 9px;
  line-height: 1;
}
.offer-stage__number strong {
  color: transparent;
  background: linear-gradient(180deg, #fff5c6, #d9952e);
  background-clip: text;
  -webkit-background-clip: text;
  display: block;
  padding: .04em 0 .1em;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(75px, 9vw, 124px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .88;
  transition: opacity .25s, transform .25s;
}
.offer-stage__up, .offer-stage__off {
  align-self: center;
  width: 50px;
  color: #f8dec0;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
}
.offer-stage__symbol { align-self: center; color: var(--gold); font-family: Arial, Helvetica, sans-serif; font-size: 37px; font-weight: 900; }
.offer-stage > p {
  align-self: center;
  max-width: 90px;
  margin: 10px 0 0 8px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}
.offer-stage__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.11) 47%, transparent 54%);
  transform: translateX(-100%);
  animation: offerShine 4.5s ease-in-out infinite 2s;
}
.offer-stage.is-changing .offer-stage__number strong { opacity: 0; transform: scale(.75); }

.countdown-panel {
  width: min(620px, 100%);
  margin-top: 16px;
  padding: 16px 24px 13px;
  border: 1px solid rgba(244, 197, 112, .27);
  background: rgba(30, 3, 3, .69);
  box-shadow: 0 17px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.countdown-panel__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #efd5ad;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ffb54f;
  box-shadow: 0 0 0 0 rgba(255,181,79,.55);
  animation: pulse 1.8s infinite;
}
.countdown { display: flex; align-items: flex-start; justify-content: center; margin-top: 8px; }
.time-unit { display: grid; min-width: 73px; }
.time-unit strong {
  font-family: Georgia, serif;
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.time-unit span { margin-top: 4px; color: #bca68e; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.time-separator { padding-top: 3px; color: var(--gold); font-family: Georgia, serif; font-size: 28px; }
.countdown-panel__note { margin: 10px 0 0; color: #e0c9a6; font-size: 10px; }
.hero__actions { display: flex; gap: 10px; margin-top: 18px; }

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.65);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}
.scroll-cue i { position: relative; display: block; width: 50px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.scroll-cue i::after { content:""; position:absolute; inset:0; background:var(--gold); transform:translateX(-100%); animation:scrollLine 2s infinite; }
.hero__glow {
  position: absolute;
  top: 19%;
  left: 50%;
  z-index: 0;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 76, 24, .22), transparent 65%);
  transform: translateX(-50%);
  animation: breathe 5s ease-in-out infinite;
}
.spark {
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffe5a2;
  box-shadow: 0 0 10px #f6b84f;
  animation: floatSpark var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.calendar-section {
  position: relative;
  padding: 110px 0 105px;
  background:
    radial-gradient(circle at 15% 30%, rgba(221, 72, 29, .1), transparent 28%),
    linear-gradient(135deg, #f9eedb, #ead6b5);
}
.calendar-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: radial-gradient(#8f5a26 .8px, transparent .8px);
  background-size: 9px 9px;
}
.section-heading { position: relative; max-width: 720px; margin-bottom: 46px; }
.section-heading h2, .story-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.03;
}
.section-heading h2 em, .story-copy h2 em { color: var(--red); font-weight: 400; }
.section-heading > p:last-child { max-width: 600px; margin: 18px 0 0; color: #755d4b; line-height: 1.7; }
.calendar-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
  gap: 22px;
  align-items: stretch;
}
.calendar-board {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(96, 48, 18, .16);
  border-radius: 10px;
  background: rgba(255, 250, 239, .7);
  box-shadow: 0 30px 70px rgba(76, 36, 12, .12);
  backdrop-filter: blur(8px);
}
.calendar-board::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(180, 115, 40, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(180, 115, 40, .04), 0 0 0 48px rgba(180, 115, 40, .025);
  animation: calendarHalo 9s linear infinite;
  pointer-events: none;
}
.calendar-board__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}
.calendar-board__year { color: #9a714d; font-size: 10px; font-weight: 800; letter-spacing: .3em; }
.calendar-board h3 { margin: 2px 0 0; color: #642014; font-family: Georgia, serif; font-size: 46px; font-weight: 400; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 14px; color: #7f654e; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.calendar-legend span { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: #b22f1d; }
.legend-dot--live { background: var(--gold); box-shadow: 0 0 0 4px rgba(199, 138, 41, .14); }
.calendar-weekdays, .offer-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.calendar-weekdays { margin-bottom: 8px; }
.calendar-weekdays span { padding: 6px; color: #9b7d61; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.calendar-day {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 96px;
  flex-direction: column;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(117, 73, 33, .11);
  border-radius: 5px;
  color: #997e65;
  background: rgba(255,255,255,.35);
  font: inherit;
  text-align: left;
  animation: calendarCellIn .55s both;
  animation-delay: var(--cell-delay);
}
.calendar-day--empty { border-color: transparent; background: transparent; }
.calendar-day__number { position: relative; z-index: 2; font-family: Georgia, serif; font-size: 14px; }
.calendar-day--sale {
  color: #fff5dd;
  border-color: rgba(118, 31, 19, .35);
  background: linear-gradient(145deg, #8f2115, #4a0d09);
  box-shadow: 0 9px 20px rgba(86, 24, 14, .13);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.calendar-day--sale::before {
  content: "";
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(110deg, transparent 37%, rgba(255,231,166,.22) 48%, transparent 58%);
  transform: translateX(-70%) rotate(8deg);
  transition: transform .7s;
}
.calendar-day--sale:hover {
  z-index: 4;
  border-color: #e5b85c;
  box-shadow: 0 18px 30px rgba(86, 24, 14, .28);
  transform: translateY(-6px) scale(1.04);
}
.calendar-day--sale:hover::before { transform: translateX(70%) rotate(8deg); }
.calendar-day__offer {
  display: grid;
  position: relative;
  z-index: 2;
  margin: auto 0;
  justify-items: center;
  line-height: 1;
}
.calendar-day__offer strong {
  color: #ffe0a0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2.5vw, 35px);
  letter-spacing: -.03em;
}
.calendar-day__offer small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
}
.calendar-day__upto { margin-bottom: 4px; color: #ffe9ba; }
.calendar-day__off { margin-top: 4px; color: #fff6df; font-size: 9px !important; }
.calendar-day__status {
  position: absolute;
  top: 9px;
  right: 7px;
  color: rgba(255,239,208,.56);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 2px;
}
.calendar-day.is-live {
  border-color: #ffd76f;
  background: linear-gradient(145deg, #f05a25, #d52f17 58%, #8c190f);
  box-shadow: 0 0 0 4px rgba(255,205,91,.28), 0 18px 38px rgba(139,35,17,.34);
  animation: liveDayPulse 2.2s ease-in-out infinite, calendarCellIn .55s both;
  animation-delay: 0s, var(--cell-delay);
}
.calendar-day.is-live .calendar-day__status { color: #3a0b05; background: #ffd76f; }
.calendar-day.is-expired {
  cursor: not-allowed;
  border-color: rgba(125,88,70,.22);
  background: linear-gradient(145deg, #d8cbc4, #b8a59c);
  box-shadow: none;
  filter: grayscale(.45);
}
.calendar-day.is-expired::before { display: none; }
.calendar-day.is-expired .calendar-day__number { color: #745f56; }
.calendar-day.is-expired .calendar-day__offer { opacity: .42; }
.calendar-day.is-expired .calendar-day__offer strong,
.calendar-day.is-expired .calendar-day__offer small { color: #6f5d55; }
.calendar-day.is-expired .calendar-day__status { color: #fff; background: #d6291b; opacity: 1; }
.calendar-day.is-expired:hover { transform: none; box-shadow: none; }
.calendar-day.is-selected {
  z-index: 3;
  border-color: #ffdc8a;
  box-shadow: 0 0 0 3px rgba(174,45,27,.18), 0 18px 35px rgba(81,43,17,.25);
  transform: translateY(-5px);
}
.selection-spark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffe5a0;
  box-shadow: 0 0 7px #fff0bd;
  pointer-events: none;
  animation: selectionSpark .65s ease-out forwards;
}
.calendar-spotlight {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 34px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff0d1;
  background:
    radial-gradient(circle at 50% 27%, rgba(231, 164, 68, .18), transparent 30%),
    linear-gradient(150deg, #8e2517, #2d0706 72%);
  box-shadow: 0 30px 70px rgba(61, 12, 8, .24);
  text-align: center;
}
.calendar-spotlight::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(238, 188, 91, .35);
  border-radius: 6px;
  pointer-events: none;
}
.calendar-spotlight__kicker { color: var(--gold-light); font-size: 9px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.calendar-spotlight__date { display: flex; align-items: center; gap: 10px; margin: 22px 0 8px; }
.calendar-spotlight__date strong { font-family: Georgia, serif; font-size: 56px; font-weight: 400; line-height: .8; }
.calendar-spotlight__date span { color: #d8b988; font-size: 9px; font-weight: 800; letter-spacing: .14em; line-height: 1.5; text-align: left; text-transform: uppercase; }
.calendar-spotlight__offer { display: flex; align-items: baseline; justify-content: center; line-height: 1; }
.calendar-spotlight__offer span { color: #dfc199; font-size: 9px; font-weight: 900; }
.calendar-spotlight__offer strong {
  margin-inline: 8px;
  color: transparent;
  background: linear-gradient(180deg, #fff1bd, #d9962f);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(68px, 7vw, 105px);
  letter-spacing: -.04em;
}
.calendar-spotlight > p { margin: -5px 0 12px; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.calendar-spotlight__message { min-height: 45px; max-width: 260px; margin-bottom: 24px; color: #ceb89f; font-family: Georgia, serif; font-size: 14px; line-height: 1.55; }
.calendar-spotlight .button { z-index: 2; min-height: 46px; }
.calendar-spotlight__orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(236,182,82,.13);
  border-radius: 50%;
  animation: orbit 12s linear infinite;
  pointer-events: none;
}
.calendar-spotlight__orbit::after {
  content: "✦";
  position: absolute;
  top: 26px;
  right: 25px;
  color: var(--gold);
  font-size: 12px;
}
.calendar-spotlight.is-celebrating .calendar-spotlight__offer strong { animation: spotlightPop .55s cubic-bezier(.2,.9,.3,1.35); }
.preview-note {
  margin-top: 24px;
  color: #765644;
  font-size: 12px;
}
.preview-note button { padding: 0; border: 0; border-bottom: 1px solid; color: var(--red); background: none; cursor: pointer; font-weight: 800; }

.story-section { padding: 120px 0; background: #fffaf0; }
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.story-copy > p:not(.eyebrow) { max-width: 650px; color: #715a49; font-size: 17px; line-height: 1.8; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.story-stats div { padding-top: 18px; border-top: 1px solid var(--line); }
.story-stats strong { display: block; color: var(--red); font-family: Georgia, serif; font-size: 34px; }
.story-stats span { display: block; margin-top: 5px; color: #816b58; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.advantage-card {
  position: relative;
  padding: 55px 48px;
  color: #fff0d2;
  background: linear-gradient(145deg, #8b2517, #300707);
  box-shadow: var(--shadow);
}
.advantage-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(235, 184, 91, .4);
  pointer-events: none;
}
.advantage-card__mini { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.advantage-card h3 { margin: 18px 0; font-family: Georgia, serif; font-size: 39px; font-weight: 400; line-height: 1.08; }
.advantage-card p { color: #d9c0a6; line-height: 1.8; }
.advantage-card a { display: inline-block; margin-top: 20px; padding-bottom: 6px; border-bottom: 1px solid var(--gold); color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.advantage-card a span { display: inline-block; margin-left: 8px; transition: transform .2s; }
.advantage-card a:hover span { transform: translateX(5px); }

.stores-section { padding: 110px 0; color: white; background: #220706; }
.section-heading--light .eyebrow { color: var(--gold); }
.section-heading--light h2 { color: #fff1d8; }
.stores { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(231,182,91,.24); }
.store { position: relative; min-height: 260px; padding: 34px 28px 25px; border-right: 1px solid rgba(231,182,91,.24); transition: background .3s; }
.store:last-child { border-right: 0; }
.store:hover { background: rgba(255,255,255,.04); }
.store > span { color: #a46d35; font-family: Georgia, serif; font-size: 12px; }
.store h3 { margin: 35px 0 13px; color: #ffe4aa; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.store p { color: #bfae9d; font-size: 12px; line-height: 1.7; }
.store a { position: absolute; bottom: 26px; color: white; font-size: 11px; letter-spacing: .08em; }

.footer { color: #9f8b78; background: #130302; border-top: 1px solid rgba(231,182,91,.2); }
.footer__inner { display: grid; grid-template-columns: .7fr 1.6fr .7fr; gap: 40px; align-items: center; min-height: 150px; }
.brand--footer { justify-items: start; color: white; }
.brand--footer img { width: 122px; height: 64px; object-position: left center; }
.footer p { font-size: 10px; line-height: 1.7; }
.footer__links { display: flex; justify-content: flex-end; gap: 18px; color: #e5c993; font-size: 10px; text-transform: uppercase; }

.sticky-brand-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255,221,132,.7);
  border-radius: 3px;
  color: #fff7df;
  background: linear-gradient(120deg, #e34520, #b52514 66%, #54100c);
  box-shadow: 0 16px 40px rgba(65,9,5,.35);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s;
}
.sticky-brand-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.25) 46%, transparent 59%);
  transform: translateX(-110%);
  animation: stickyCtaShine 4s ease-in-out infinite 1.5s;
}
.sticky-brand-cta > * { position: relative; z-index: 1; }
.sticky-brand-cta:hover { transform: translateY(-4px); box-shadow: 0 21px 45px rgba(65,9,5,.44); }
.sticky-brand-cta__spark { color: #ffd76f; font-size: 14px; animation: twinkle 1.8s ease-in-out infinite; }
.sticky-brand-cta i { color: #ffd76f; font-size: 15px; font-style: normal; }

.reveal { opacity: 0; transform: translateY(30px) scale(.97); }
.cinema-ready .hero__content > .reveal { animation: cinematicRise .85s cubic-bezier(.2,.75,.2,1) forwards; }
.cinema-ready .hero__content > .reveal:nth-child(1) { animation-delay: 1.15s; }
.cinema-ready .hero__content > .reveal:nth-child(2) { animation-delay: 1.3s; }
.cinema-ready .hero__content > .reveal:nth-child(3) { animation-delay: 1.52s; }
.cinema-ready .hero__content > .reveal:nth-child(4) { animation-delay: 1.68s; }
.cinema-ready .hero__content > .reveal:nth-child(5) { animation-delay: 1.86s; }
.cinema-ready .hero__content > .reveal:nth-child(6) { animation-delay: 2.02s; }
.cinema-loading .scroll-cue { opacity: 0; }
.cinema-ready .scroll-cue { animation: cinematicRise .7s ease-out 2.3s both; }
.cinema-complete .hero__content > .reveal,
.cinema-complete .nav,
.cinema-complete .scroll-cue {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}
.observe .section-heading,
.observe .story-copy,
.observe .advantage-card,
.observe .stores,
.observe .calendar-experience {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}
.observe.is-visible .section-heading,
.observe.is-visible .story-copy,
.observe.is-visible .calendar-experience { opacity: 1; transform: translateY(0); }
.observe.is-visible .advantage-card,
.observe.is-visible .stores { opacity: 1; transform: translateY(0); transition-delay: .16s; }
.calendar-section .section-heading { clip-path: inset(0 100% 0 0); }
.calendar-section.is-visible .section-heading {
  clip-path: inset(0 0 0 0);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1), clip-path 1s cubic-bezier(.2,.8,.2,1);
}
.calendar-section .calendar-experience {
  opacity: 1;
  transform: none;
  perspective: 1200px;
}
.calendar-section .calendar-board {
  opacity: 0;
  transform: translateX(-50px) rotateY(7deg) scale(.96);
  transform-origin: right center;
}
.calendar-section .calendar-spotlight {
  opacity: 0;
  transform: translateX(50px) rotateY(-9deg) scale(.94);
  transform-origin: left center;
}
.calendar-section.is-visible .calendar-board {
  animation: calendarBoardReveal 1s cubic-bezier(.16,.8,.2,1) .28s both;
}
.calendar-section.is-visible .calendar-spotlight {
  animation: calendarSpotlightReveal 1s cubic-bezier(.16,.8,.2,1) .5s both;
}
.calendar-beam {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 48%;
  z-index: 8;
  width: 2px;
  opacity: 0;
  background: #fff6ce;
  box-shadow: 0 0 14px 5px rgba(255,221,139,.8), 0 0 65px 25px rgba(190,98,29,.42);
  pointer-events: none;
}
.calendar-section.is-visible .calendar-beam { animation: calendarBeam 1.25s ease-out .1s both; }
.calendar-day { animation-play-state: paused; }
.calendar-section.is-visible .calendar-day { animation-play-state: running; animation-delay: calc(.55s + var(--cell-delay)); }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes bannerDrop { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes curtainLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-105%); } }
@keyframes curtainRight { 0% { transform: translateX(0); } 100% { transform: translateX(105%); } }
@keyframes openingFlare { 0% { opacity: 0; transform: translateX(-50%) scaleY(.1); } 32% { opacity: 1; } 100% { opacity: 0; transform: translateX(-50%) scaleY(1); } }
@keyframes heroPushIn { from { background-size: 112% auto; } to { background-size: 100% auto; } }
@keyframes cinematicRise { from { opacity: 0; transform: translateY(30px) scale(.97); filter: blur(8px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes calendarBoardReveal { from { opacity: 0; transform: translateX(-50px) rotateY(7deg) scale(.96); filter: blur(8px); } to { opacity: 1; transform: translateX(0) rotateY(0) scale(1); filter: blur(0); } }
@keyframes calendarSpotlightReveal { from { opacity: 0; transform: translateX(50px) rotateY(-9deg) scale(.94); filter: blur(10px); } to { opacity: 1; transform: translateX(0) rotateY(0) scale(1); filter: blur(0); } }
@keyframes calendarBeam { 0% { left: 48%; opacity: 0; } 25% { opacity: 1; } 100% { left: 105%; opacity: 0; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(255,181,79,0); } 100% { box-shadow: 0 0 0 0 rgba(255,181,79,0); } }
@keyframes twinkle { 50% { opacity: .4; transform: scale(.75) rotate(25deg); } }
@keyframes breathe { 50% { opacity: .55; transform: translateX(-50%) scale(1.12); } }
@keyframes buttonShine { 0%, 68% { left: -60%; } 82%, 100% { left: 140%; } }
@keyframes offerShine { 0%, 68% { transform: translateX(-100%); } 85%, 100% { transform: translateX(100%); } }
@keyframes scrollLine { 60%, 100% { transform: translateX(100%); } }
@keyframes floatSpark {
  0%, 100% { opacity: 0; transform: translateY(15px) scale(.4); }
  30%, 70% { opacity: .75; }
  50% { transform: translateY(-25px) scale(1); }
}
@keyframes calendarCellIn { from { opacity: 0; transform: translateY(16px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes liveDayPulse { 50% { box-shadow: 0 0 0 7px rgba(224,168,75,.08), 0 20px 38px rgba(98,22,13,.34); } }
@keyframes calendarHalo { to { transform: rotate(360deg); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes spotlightPop { 0% { opacity: .2; transform: scale(.68) rotate(-3deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes selectionSpark { to { opacity: 0; transform: translate(var(--spark-x), var(--spark-y)) scale(.2); } }
@keyframes heroPushInTall { from { background-size: auto 112%; } to { background-size: auto 100%; } }
@keyframes stickyCtaShine { 0%, 70% { transform: translateX(-110%); } 90%, 100% { transform: translateX(110%); } }

@media (max-width: 900px) {
  .hero { min-height: 900px; background-position: 52% center; }
  .cinema-loading .hero { background-size: auto 112%; }
  .cinema-ready .hero { animation-name: heroPushInTall; }
  .nav__link { display: none; }
  .hero__content { padding-top: 50px; }
  .story-grid { grid-template-columns: 1fr; gap: 55px; }
  .calendar-experience { grid-template-columns: 1fr; }
  .calendar-spotlight { min-height: 430px; }
  .stores { grid-template-columns: repeat(2, 1fr); }
  .store:nth-child(2) { border-right: 0; }
  .store:nth-child(-n+2) { border-bottom: 1px solid rgba(231,182,91,.24); }
  .footer__inner { grid-template-columns: 1fr; gap: 16px; padding-block: 40px; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  body { padding-bottom: 72px; }
  .wrap { width: min(100% - 28px, 1180px); }
  .announcement { gap: 8px; font-size: 8px; letter-spacing: .11em; }
  .announcement__divider { display: none; }
  .nav { padding-block: 18px; }
  .brand img { width: 105px; height: 50px; object-position: left center; }
  .button--small { display: none; }
  .hero { min-height: 840px; background-position: center; }
  .hero::before { background: radial-gradient(circle at 50% 44%, rgba(31,3,2,.2), rgba(17,2,2,.67) 78%); }
  .hero__content { justify-content: center; padding: 30px 0 50px; }
  .hero__title { font-size: clamp(54px, 20vw, 90px); }
  .hero__campaign-unit { width: min(315px, 88vw); margin-top: 0; }
  .hero__promise { margin-top: 59px; }
  .offer-stage { min-width: 0; width: 100%; }
  .offer-stage { padding-top: 27px; padding-bottom: 24px; }
  .offer-stage__label { top: 10px; }
  .offer-stage__number { padding-top: 10px; }
  .offer-stage__number strong { padding-bottom: .12em; font-size: 76px; line-height: .9; }
  .offer-stage__up, .offer-stage__off { width: 40px; font-size: 10px; }
  .offer-stage > p { max-width: 66px; font-size: 9px; }
  .countdown-panel { padding-inline: 8px; }
  .time-unit { min-width: 56px; }
  .time-separator { font-size: 22px; }
  .hero__actions { width: 100%; }
  .hero__actions .button { flex: 1; min-height: 49px; padding: 0 9px; font-size: 8px; }
  .scroll-cue { display: none; }
  .calendar-section, .story-section, .stores-section { padding: 68px 0; }
  .calendar-section .section-heading { margin-bottom: 28px; text-align: center; }
  .calendar-section .section-heading .eyebrow { line-height: 1.6; }
  .calendar-section .section-heading h2 { font-size: clamp(39px, 12vw, 52px); }
  .calendar-section .section-heading > p:last-child { font-size: 14px; line-height: 1.65; }
  .calendar-experience { gap: 16px; }
  .calendar-board {
    margin: 0;
    padding: 22px 14px 16px;
    overflow: visible;
    border-radius: 16px;
    background: rgba(255,250,239,.88);
    box-shadow: 0 20px 50px rgba(76,36,12,.14);
  }
  .calendar-board::after { display: none; }
  .calendar-board__top { display: none; }
  .calendar-board__year, .calendar-board h3 { display: none; }
  .calendar-legend { display: none; }
  .calendar-weekdays { display: none; }
  .offer-calendar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .calendar-day:not(.calendar-day--sale) { display: none; }
  .calendar-day--sale {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: 1fr;
    min-height: 92px;
    align-items: center;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
  }
  .calendar-day--sale::after {
    content: "JUN";
    position: absolute;
    top: 39px;
    left: 16px;
    z-index: 2;
    color: rgba(255,239,208,.58);
    font-size: 6px;
    font-weight: 900;
    letter-spacing: .16em;
  }
  .calendar-day__number {
    align-self: start;
    justify-self: start;
    color: #fff0d0;
    font-size: 25px;
    line-height: 1;
  }
  .calendar-day__offer { grid-column: 2; grid-row: 1; margin: 0; justify-self: center; }
  .calendar-day__offer strong { font-size: clamp(31px, 10vw, 42px); }
  .calendar-day__offer small { font-size: 9px; }
  .calendar-day__upto { margin-bottom: 5px; }
  .calendar-day__off { margin-top: 5px; font-size: 10px !important; }
  .calendar-day__status {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 14px;
    display: block;
    font-size: 6px;
  }
  .calendar-day--sale:hover { transform: none; }
  .calendar-day.is-selected { transform: scale(.98); }
  .calendar-day--sale[data-day="14"] { grid-column: 1 / -1; }
  .calendar-day--sale[data-day="14"] {
    min-height: 112px;
    background: linear-gradient(135deg, #c94620, #71130d 62%, #390706);
    box-shadow: 0 16px 34px rgba(112,24,13,.28);
  }
  .calendar-day--sale[data-day="14"] .calendar-day__number { font-size: 31px; }
  .calendar-day--sale[data-day="14"] .calendar-day__offer strong { font-size: 56px; }
  .calendar-day--sale[data-day="14"] .calendar-day__offer small { font-size: 11px; }
  .calendar-day--sale[data-day="14"]::after { top: 46px; }
  .calendar-day--sale[data-day="14"] .calendar-day__status::after {
    content: " · OPENING DAY";
    color: #ffe29b;
  }
  .calendar-day--sale[data-day="14"].is-expired {
    background: linear-gradient(145deg, #d8cbc4, #b8a59c);
    box-shadow: none;
  }
  .calendar-day--sale[data-day="14"].is-expired .calendar-day__status::after { content: ""; }
  .calendar-day--sale[data-day="14"] .calendar-day__offer { justify-self: center; }
  .calendar-spotlight { min-height: 385px; padding: 36px 24px; border-radius: 16px; }
  .calendar-spotlight__date { margin-top: 18px; }
  .calendar-spotlight__offer strong { font-size: 82px; }
  .preview-note { text-align: center; }
  .story-section { padding-top: 74px; }
  .story-grid { gap: 40px; }
  .story-copy { text-align: center; }
  .story-copy .eyebrow { max-width: 290px; margin-inline: auto; line-height: 1.7; }
  .story-copy h2 { font-size: clamp(42px, 12.5vw, 56px); line-height: 1.02; }
  .story-copy > p:not(.eyebrow) { margin: 24px auto 0; font-size: 16px; line-height: 1.75; }
  .story-stats { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .story-stats div {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr;
    min-height: 94px;
    align-items: center;
    padding: 18px 22px;
    overflow: hidden;
    border: 1px solid rgba(151,87,35,.16);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(242,224,191,.45));
    box-shadow: 0 12px 30px rgba(85,48,18,.08);
    text-align: left;
  }
  .story-stats div::after {
    content: "";
    position: absolute;
    top: -34px;
    right: -34px;
    width: 85px;
    height: 85px;
    border: 1px solid rgba(169,92,31,.12);
    border-radius: 50%;
  }
  .story-stats strong {
    padding-right: 15px;
    border-right: 1px solid rgba(151,87,35,.18);
    font-size: 34px;
    text-align: center;
  }
  .story-stats div:first-child {
    grid-template-columns: 118px 1fr;
  }
  .story-stats div:first-child strong {
    padding-right: 0;
    border-right: 0;
    font-size: 32px;
    letter-spacing: -.04em;
  }
  .story-stats span { margin: 0; padding-left: 18px; font-size: 10px; line-height: 1.45; }
  .advantage-card { padding: 45px 34px; }
  .stores { grid-template-columns: 1fr; }
  .store { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(231,182,91,.24); }
  .store:last-child { border-bottom: 0; }
  .sticky-brand-cta {
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 52px;
    justify-content: center;
    padding-inline: 15px;
    border-radius: 5px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-curtain { display: none; }
  .cinema-loading .announcement, .cinema-loading .nav, .cinema-loading .scroll-cue, .reveal,
  .calendar-section .section-heading, .calendar-section .calendar-board, .calendar-section .calendar-spotlight {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }
}
