/* ===========================================================
   RedCoach — Last Call for Summer landing page
   Brand: Ferrari Red #E20000 · Jet Gray #29272A · White
   Campaign accents: Sun Yellow #F9E28A · Deep Red #C41A22
   Fonts: Red Hat Display / Red Hat Text / Dancing Script
   =========================================================== */

:root {
  --red: #E20000;
  --red-800: #B80000;
  --red-deep: #C41A22;
  --yellow: #F9E28A;
  --red-tint: #FDECEC;
  --jet: #29272A;
  --ink-700: #4A474B;
  --ink-500: #6F6C70;
  --ink-200: #D7D7D8;
  --ink-100: #EFEFEF;
  --ink-50: #F7F7F7;
  --mouse: #B4B4B4;
  --display: 'Red Hat Display', system-ui, -apple-system, sans-serif;
  --text: 'Red Hat Text', system-ui, -apple-system, sans-serif;
  --script: 'Dancing Script', cursive;
  --shadow-sm: 0 2px 6px rgba(41,39,42,.08);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--text); color: var(--jet); background: #fff; overflow-x: hidden; }
img { max-width: 100%; }
a { color: inherit; }

@keyframes rc-pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.35; transform:scale(.78); } }

.kicker { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 800; text-decoration: none; border: 0; cursor: pointer; white-space: nowrap; transition: background .14s, transform .14s, box-shadow .14s; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--red); color: #fff; padding: 11px 20px; font-size: 14px; border-radius: 10px; box-shadow: 0 10px 28px rgba(226,0,0,.28); }
.btn--primary:hover { background: var(--red-800); }
.nav__cta { margin-left: 12px; }

/* hero CTA pill (campaign style) */
.btn-hero {
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: clamp(16px,1.8vw,21px) clamp(44px,6vw,74px);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(226,0,0,.34);
  transition: background .14s, transform .14s, box-shadow .14s;
}
.btn-hero:hover { background: var(--red-800); transform: translateY(-2px); }
.btn-hero:active { transform: scale(.98); }

.btn-book {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px,2.2vw,22px);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 18px 52px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(226,0,0,.32);
  transition: background .14s, transform .14s;
}
.btn-book:hover { background: var(--red-800); transform: translateY(-2px); }
.btn-book:active { transform: scale(.98); }

.btn-grab {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(16px,1.9vw,19px);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(226,0,0,.3);
  transition: background .14s, transform .14s;
}
.btn-grab:hover { background: var(--red-800); }
.btn-grab:hover { transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--ink-100); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 24px; flex-wrap: wrap; }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 26px; width: auto; display: block; }
.nav__links { display: flex; gap: 26px; font-family: var(--display); font-weight: 600; font-size: 14px; margin-left: auto; }
.nav__links a { color: var(--jet); text-decoration: none; }
.nav__links a:hover { color: var(--red); }

/* ---------- Hero ---------- */
.hero { width: 100%; background: #3E93D2; }
.hero__img { display: block; width: 100%; height: auto; }
.hero-cta { background: #fff; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: clamp(24px,3.4vw,40px) 20px clamp(22px,3vw,36px); }
.hero-cta__note { font-family: var(--display); font-weight: 700; font-size: clamp(13px,1.5vw,15px); letter-spacing: .06em; text-transform: uppercase; color: var(--red-deep); text-align: center; }

/* ---------- Countdown ---------- */
.countdown { background: var(--red); color: #fff; padding: clamp(46px,7vw,78px) 24px; text-align: center; }
.countdown__inner { max-width: 1000px; margin: 0 auto; }
.countdown__kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: clamp(13px,1.7vw,17px); letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); }
.countdown__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); animation: rc-pulse 1.4s ease-in-out infinite; }
.countdown__title { font-family: var(--display); font-weight: 900; font-size: clamp(32px,5.6vw,58px); line-height: 1; letter-spacing: -.02em; margin: 12px 0 0; text-transform: uppercase; }
.countdown__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(10px,2.4vw,22px); margin: 32px 0 8px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cd-box { min-width: clamp(70px,17vw,128px); padding: clamp(14px,2.6vw,24px) 10px; background: #fff; border-radius: 18px; box-shadow: 0 18px 44px rgba(120,0,0,.4); }
.cd-num { font-family: var(--display); font-weight: 900; font-size: clamp(40px,9.5vw,76px); line-height: 1; letter-spacing: -.03em; color: var(--red-deep); font-variant-numeric: tabular-nums; display: block; }
.cd-label { font-family: var(--display); font-weight: 700; font-size: clamp(11px,1.6vw,14px); letter-spacing: .18em; text-transform: uppercase; opacity: .95; }
.countdown__note { font-family: var(--text); font-size: clamp(15px,2vw,19px); margin: 20px auto 0; max-width: 40ch; opacity: .96; }

/* ---------- Offer ---------- */
.offer { background: #fff; padding: clamp(54px,8vw,100px) 24px; }
.offer__inner { max-width: 1080px; margin: 0 auto; }
.offer__head { text-align: center; max-width: 680px; margin: 0 auto; }
.offer__title { font-family: var(--display); font-weight: 900; font-size: clamp(29px,4.8vw,50px); line-height: 1.04; letter-spacing: -.02em; margin: 10px 0 12px; color: var(--jet); }
.offer__lead { font-family: var(--text); font-size: clamp(16px,2.2vw,19px); line-height: 1.5; color: var(--ink-700); margin: 0; }
.offer__cards { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; align-items: stretch; }

.deal {
  flex: 1 1 320px;
  position: relative;
  background: var(--yellow);
  border-radius: 20px;
  padding: clamp(26px,3.4vw,38px);
  box-shadow: 0 14px 34px rgba(41,39,42,.12);
  display: flex;
  flex-direction: column;
}
.deal--best { box-shadow: 0 22px 48px rgba(196,26,34,.28); outline: 4px solid var(--red); outline-offset: -4px; }
.deal__ribbon { position: absolute; top: 0; right: 0; background: var(--red); color: var(--yellow); font-family: var(--display); font-weight: 900; font-size: clamp(11px,1.4vw,14px); letter-spacing: .12em; text-transform: uppercase; padding: 9px 16px; border-bottom-left-radius: 14px; border-top-right-radius: 17px; }
.deal__head { display: flex; align-items: center; gap: 13px; }
.deal__icon { flex: none; width: clamp(44px,5vw,56px); height: clamp(44px,5vw,56px); border-radius: 50%; background: var(--red-deep); display: inline-flex; align-items: center; justify-content: center; }
.deal__label { font-family: var(--display); font-weight: 900; font-size: clamp(15px,1.9vw,20px); letter-spacing: .03em; text-transform: uppercase; color: var(--red-deep); line-height: 1.1; }
.deal__pct { font-family: var(--display); font-weight: 900; font-size: clamp(52px,8.4vw,84px); line-height: .9; letter-spacing: -.03em; color: var(--red-deep); margin-top: 14px; }
.deal__pct span { font-size: .52em; letter-spacing: 0; }
.deal__coderow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 22px; }
.deal__codelabel { font-family: var(--display); font-weight: 800; font-size: clamp(14px,1.7vw,18px); color: var(--red-deep); }
.deal__hint { font-family: var(--text); font-size: 13px; color: #8A5B12; margin-top: 12px; }

.code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-deep);
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(16px,2vw,21px);
  letter-spacing: .04em;
  color: var(--yellow);
  box-shadow: 0 8px 20px rgba(196,26,34,.32);
  transition: transform .14s, background .14s;
}
.code:hover { background: #A9151C; }
.code:active { transform: scale(.97); }

.offer__cta { text-align: center; margin-top: 40px; }
.offer__finehint { font-family: var(--text); font-size: 13px; color: var(--ink-500); margin: 14px 0 0; }

/* ---------- Promo band ---------- */
.promo { background: #fff; color: var(--jet); }
.promo__inner { max-width: 1000px; margin: 0 auto; padding: clamp(50px,7vw,92px) 24px; text-align: center; }
.promo__img { display: block; width: 100%; height: auto; border-radius: 18px; box-shadow: 0 26px 58px rgba(41,39,42,.28); }
.promo__title { font-family: var(--display); font-weight: 900; font-size: clamp(28px,4.4vw,46px); line-height: 1.06; letter-spacing: -.02em; margin: clamp(30px,4vw,46px) 0 18px; color: var(--red-deep); text-transform: uppercase; }
.promo__text { font-family: var(--text); font-size: clamp(16px,2.1vw,20px); line-height: 1.6; margin: 0 auto 28px; max-width: 60ch; color: var(--ink-700); }

/* ---------- Terms ---------- */
.terms { background: var(--ink-50); padding: clamp(44px,6vw,78px) 24px; }
.terms__inner { max-width: 860px; margin: 0 auto; }
.terms__head { text-align: center; margin-bottom: 26px; }
.terms__title { font-family: var(--display); font-weight: 900; font-size: clamp(25px,3.8vw,38px); letter-spacing: -.02em; margin: 8px 0 0; color: var(--jet); }
.accordion { background: #fff; border: 1px solid var(--ink-200); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 0; cursor: pointer; padding: 22px 26px; text-align: left; }
.accordion__label { font-family: var(--display); font-weight: 800; font-size: clamp(16px,2.2vw,20px); color: var(--jet); }
.accordion__chev { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--red-tint); display: inline-flex; align-items: center; justify-content: center; transition: transform .22s cubic-bezier(.2,.7,.2,1); }
.accordion__trigger[aria-expanded="true"] .accordion__chev { transform: rotate(180deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .36s cubic-bezier(.2,.7,.2,1); }
.accordion__body { padding: 4px 26px 28px; border-top: 1px solid var(--ink-100); }
.term-row { display: grid; grid-template-columns: minmax(120px,180px) 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--ink-100); align-items: start; }
.term-row:first-child { padding-top: 18px; }
.term-row__term { font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--red); }
.term-row__detail { font-family: var(--text); font-size: 15px; line-height: 1.55; color: var(--ink-700); }
.terms__fine { font-family: var(--text); font-size: 12px; line-height: 1.6; color: var(--ink-500); margin: 22px 4px 0; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--jet); color: #fff; padding: clamp(44px,6vw,68px) 24px 32px; }
.footer__inner { max-width: 1120px; margin: 0 auto; }
.footer__top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer__brand { max-width: 300px; }
.footer__logo { height: 24px; width: auto; display: block; }
.footer__tagline { font-family: var(--text); font-size: 14px; line-height: 1.55; color: var(--mouse); margin: 12px 0 0; }
.footer__coltitle { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-family: var(--text); font-size: 14px; color: var(--mouse); text-decoration: none; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid var(--ink-700); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer__bottom span { font-family: var(--text); font-size: 13px; color: var(--mouse); }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 24px); background: var(--jet); color: #fff; font-family: var(--display); font-weight: 700; font-size: 14px; padding: 13px 22px; border-radius: 999px; box-shadow: 0 18px 44px rgba(0,0,0,.32); opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s; z-index: 60; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .deal { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .term-row { grid-template-columns: 1fr; gap: 4px; }
  .deal__coderow { padding-top: 18px; }
  .btn-book { padding: 16px 34px; }
}
