@font-face {
  font-family: 'Hind Siliguri';
  font-weight: 400;
  src: url('../shared/assets/fonts/HindSiliguri-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Hind Siliguri';
  font-weight: 700;
  src: url('../shared/assets/fonts/HindSiliguri-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif Bengali';
  font-weight: 400;
  src: url('../shared/assets/fonts/NotoSerifBengali-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif Bengali';
  font-weight: 700;
  src: url('../shared/assets/fonts/NotoSerifBengali-Bold.woff2') format('woff2');
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F7F5EF;
  --bg-soft: #EFEAE0;
  --paper: #FFFFFF;
  --ink: #14241C;
  --ink-soft: #33463B;
  --muted: #64746B;
  --emerald: #0D7A52;
  --emerald-dark: #0A5C3F;
  --emerald-deep: #083D2B;
  --emerald-soft: #E3F1EA;
  --gold: #E9A23B;
  --gold-dark: #C9831F;
  --gold-soft: #FBEED8;
  --line: #DFD8C8;
  --danger: #C0392B;
  --radius: 16px;
  --shadow-sm: 0 4px 14px rgba(20, 36, 28, 0.07);
  --shadow-md: 0 16px 38px -16px rgba(20, 36, 28, 0.28);
  --font-ui: 'Hind Siliguri', sans-serif;
  --font-body: 'Noto Serif Bengali', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% -6%, rgba(233, 162, 59, 0.22), transparent 42%),
    radial-gradient(circle at 92% 12%, rgba(13, 122, 82, 0.12), transparent 46%);
}

h1, h2, h3 { font-family: var(--font-ui); line-height: 1.3; color: var(--ink); }
p, li { font-family: var(--font-body); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: var(--font-ui); }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section[id] { scroll-margin-top: 64px; }

:focus-visible { outline: 3px solid var(--emerald); outline-offset: 2px; }

/* ---------- top bar ---------- */
.topbar { background: var(--ink); padding: 12px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}
.brand em {
  font-style: normal;
  color: var(--gold);
}
.topbar-order {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.topbar-order:hover { background: #fbbf5d; }

/* ---------- hero ---------- */
.hero { padding: 40px 0 44px; }
.hero-grid { display: grid; gap: 34px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--emerald-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line, #ddd);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  display: inline-block;
}

.hero-title {
  font-size: clamp(30px, 7vw, 50px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 20px 0 12px;
  color: var(--ink);
}
.hero-title .hl { color: var(--emerald); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.85;
}

/* price line */
.price-lead {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--emerald-dark);
}
.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 6px;
}
.price-strike {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}
.price-main {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.price-save {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  font-weight: 700;
  font-size: 15px;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-note {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 8px;
}
.price-note b { color: var(--emerald-dark); font-family: var(--font-ui); }

/* CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-cta {
  background: linear-gradient(135deg, #10b576, var(--emerald) 55%, var(--emerald-dark));
  color: #FFFFFF;
  box-shadow: 0 12px 26px -10px rgba(13, 122, 82, 0.55);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(13, 122, 82, 0.6); }
.btn-cta:active { transform: translateY(0); }
.btn-block { width: 100%; }

.hero-cta-row { margin-top: 26px; }
.cod-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--emerald-dark);
  font-weight: 600;
}

/* hero covers */
.hero-covers { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cover-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 4px 8px;
}
.cover-tile {
  position: relative;
  width: clamp(100px, 28vw, 150px);
  flex-shrink: 0;
  margin: 0;
}
.cover-tile.t1 { z-index: 1; transform: rotate(-5deg); margin-right: -12px; }
.cover-tile.t2 { z-index: 3; margin-right: -12px; margin-bottom: -6px; }
.cover-tile.t3 { z-index: 2; transform: rotate(5deg); }
.cover-tile img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 22px 40px -18px rgba(20, 36, 28, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.cover-tile figcaption {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(20, 36, 28, 0.25);
}
.cover-caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- trust strip ---------- */
.trust-strip { background: var(--emerald-deep); }
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  padding: 16px 20px;
}
.trust-inner span {
  color: #EAF5EE;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- sections ---------- */
.section { padding: 60px 0; }
.sec-head {
  max-width: 660px;
  margin: 0 auto 36px;
  text-align: center;
}
.sec-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.sec-head h2 {
  font-size: clamp(24px, 4.6vw, 34px);
  font-weight: 700;
  margin-bottom: 10px;
}
.sec-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
}

/* role cards */
.role-section { background: rgba(255, 255, 255, 0.6); }
.role-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.role-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--emerald);
}
.role-card:nth-child(2) { border-top-color: var(--gold); }
.role-card:nth-child(3) { border-top-color: var(--ink); }
.role-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.role-card:nth-child(2) .role-num { color: var(--gold-dark); background: var(--gold-soft); }
.role-card:nth-child(3) .role-num { color: var(--ink-soft); background: #ECEBE6; }
.role-card h3 { font-size: 21px; margin-bottom: 8px; }
.role-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.role-desc b { color: var(--ink); }

/* ---------- value band ---------- */
.value-section {
  background: linear-gradient(150deg, var(--emerald-dark), var(--emerald-deep));
  padding: 64px 0;
  color: #FFFFFF;
}
.value-section .sec-head { margin-bottom: 28px; }
.value-section .sec-kicker { color: #FFFFFF; background: rgba(255, 255, 255, 0.16); }
.value-title { color: #FFFFFF; font-size: clamp(26px, 5vw, 38px); }
.value-title .hl2 { color: var(--gold); }
.value-box { max-width: 620px; margin: 0 auto; text-align: center; }
.value-rows { max-width: 460px; margin: 4px auto 10px; color: #FFFFFF; }
.vrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 4px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  font-size: 15px;
  font-weight: 600;
}
.vrow .strike { opacity: 0.7; text-decoration: line-through; font-weight: 400; }
.vrow.bundle {
  border-bottom: none;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 18px;
  border-radius: 14px;
}
.vrow.bundle .big { font-size: 30px; font-weight: 700; color: var(--gold); line-height: 1; }
.vrow.save-row { border-bottom: none; margin-top: 4px; }
.vrow.save-row span:last-child { font-size: 24px; font-weight: 700; color: var(--gold); }
.value-save {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
  line-height: 1.8;
}
.value-save b { color: var(--gold); font-family: var(--font-ui); }
.value-tagline {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 8px;
}
.value-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.value-note b { color: var(--gold); font-family: var(--font-ui); }
.value-box .btn-cta {
  background: linear-gradient(135deg, #F6B952, var(--gold) 55%, var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 12px 26px -10px rgba(233, 162, 59, 0.6);
}
.value-box .btn-cta:hover { box-shadow: 0 16px 34px -10px rgba(233, 162, 59, 0.75); }

/* ---------- books ---------- */
.books-section { background: rgba(255, 255, 255, 0.72); }
.book-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.book-row:last-child { margin-bottom: 0; }
.book-cover { text-align: center; }
.book-cover img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.book-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.book-info { min-width: 0; }
.book-info h3 { font-size: 24px; margin: 14px 0 4px; }
.book-auth {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.book-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.why-list { list-style: none; margin-top: 14px; display: grid; gap: 9px; }
.why-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.7;
}
.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--emerald);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-sample { margin-top: 16px; }
.book-sample a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--emerald-dark);
  background: var(--emerald-soft);
  border: 1px solid transparent;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.18s ease;
}
.book-sample a:hover { background: var(--gold-soft); border-color: var(--gold); }

/* ---------- who ---------- */
.who-section { background: rgba(255, 255, 255, 0.6); }
.who-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.who-grid li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

/* ---------- social proof ---------- */
.social-section { background: rgba(255, 255, 255, 0.72); }
.rating-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.rating-strip span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.rating-strip b { color: var(--gold-dark); font-size: 14.5px; }

/* ---------- offer ---------- */
.offer-frame { background: rgba(255, 255, 255, 0.6); padding: 56px 0; }
.offer-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 24px 60px -28px rgba(20, 36, 28, 0.4);
}
.offer-title {
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 18px;
  color: var(--emerald-dark);
}
.offer-list { list-style: none; max-width: 420px; margin: 0 auto 22px; }
.offer-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 2px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.offer-list li span:last-child { font-weight: 700; color: var(--ink); }
.offer-list .strike {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
}
.offer-list .offer-now {
  border-bottom: none;
  background: var(--gold-soft);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 4px;
}
.offer-list .offer-now span:first-child { color: var(--emerald-dark); font-weight: 700; }
.offer-list .offer-now .offer-price { font-size: 32px; }
.offer-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}
.offer-price { font-size: 32px; font-weight: 700; color: var(--gold-dark); line-height: 1; }
.offer-foot {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ---------- order ---------- */
.order-section { background: rgba(255, 255, 255, 0.72); padding: 60px 0; }
.order-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.order-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-md);
}
.order-form-wrap .sec-kicker { margin-top: 0; }
.order-form-wrap h2 { font-size: clamp(22px, 4vw, 28px); margin: 4px 0 8px; }
.order-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  background: #FCFAF2;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(13, 122, 82, 0.16);
}
.field input::placeholder,
.field textarea::placeholder { color: #A8B2AB; }
.field textarea { resize: vertical; min-height: 88px; }

/* summary */
.order-summary {
  background: var(--ink);
  color: #EAF5EE;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}
.summary-title {
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  font-size: 14.5px;
}
.sum-row span:last-child { font-weight: 700; }
.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  margin-top: 12px;
  padding: 14px 0 2px;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
}
.sum-total span:last-child { font-size: 22px; color: var(--gold); }
.summary-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
}
.order-form-wrap .btn-cta { margin-top: 6px; }

/* ---------- faq ---------- */
.faq-section { background: rgba(255, 255, 255, 0.6); padding: 60px 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
summary {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding-right: 28px;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--emerald);
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  padding: 44px 0 108px;
}
.footer-brand { font-size: 16px; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; }
.footer-brand em { font-style: normal; color: var(--gold); }
.disclaimer { margin-top: 10px; color: rgba(255, 255, 255, 0.45); font-size: 12px; }

/* ---------- sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 10px 10px 10px 18px;
  box-shadow: 0 16px 40px -8px rgba(20, 36, 28, 0.6);
}
.sticky-price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 19px;
  font-weight: 700;
}
.sticky-price .strike {
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.55);
}
.sticky-btn {
  background: linear-gradient(135deg, #F6B952, var(--gold) 55%, var(--gold-dark));
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ---------- tablet & desktop ---------- */
@media (min-width: 620px) {
  .role-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid li:last-child { grid-column: 1 / -1; }
}

@media (min-width: 820px) {
  .container { padding: 0 28px; }
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 60px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; }
  .cover-tile { width: 178px; }
  .cover-tile.t1, .cover-tile.t2 { margin-right: -24px; }
  .book-row { grid-template-columns: 224px 1fr; gap: 30px; padding: 28px 26px; }
  .book-row.flip .book-cover { order: 2; }
  .book-row.flip .book-info { order: 1; }
  .order-grid { grid-template-columns: 1.05fr 0.95fr; gap: 32px; }
  .order-summary { position: sticky; top: 24px; }
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 56px; }
}

@media (min-width: 1024px) {
  .cover-tile { width: 196px; }
  .cover-tile.t1 { margin-right: -30px; }
  .cover-tile.t2 { margin-right: -30px; }
  .container { padding: 0 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}