:root {
  color-scheme: dark;
  --bg: #111318;
  --panel: #1b2028;
  --panel-2: #242a34;
  --ink: #f2eadb;
  --muted: #b9b1a0;
  --line: #343b47;
  --brass: #dca35a;
  --brass-2: #f1c47f;
  --olive: #66785f;
  --olive-dark: #263127;
  --ox: #d77262;
  --shadow: 12px 12px 0 rgba(0, 0, 0, 0.45);
  --radius: 6px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(242, 234, 219, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 219, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 58px 58px;
  color: var(--ink);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px 12px 16px;
  background: rgba(17, 19, 24, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.52);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand [data-brand-name] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--brass);
  background: #0c0e12;
  border: 1px solid var(--brass);
  border-radius: 4px;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms var(--ease);
  content: "";
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--brass);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    box-shadow 160ms var(--ease),
    transform 160ms var(--ease),
    background 160ms var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.7);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ox);
  outline-offset: 3px;
}

.button-primary {
  background: var(--brass);
  color: #111318;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #0c0e12;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset: 82px 16px auto;
  z-index: 28;
  display: none;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 16px;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.95) 0%, rgba(17, 19, 24, 0.78) 42%, rgba(17, 19, 24, 0.5) 100%),
    radial-gradient(70% 70% at 76% 15%, rgba(220, 163, 90, 0.24), transparent 58%);
  content: "";
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop svg {
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.72fr);
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 78px 0 58px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 72px;
  font-weight: 1000;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-line span {
  padding: 10px 12px;
  background: rgba(12, 14, 18, 0.7);
  border: 1px solid var(--line);
  border-left-color: var(--brass);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.booking-card,
.guide-panel,
.proof-section,
.calendar-shell {
  background: rgba(27, 32, 40, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  overflow: hidden;
}

.card-top {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.card-top span,
.section-number {
  color: var(--brass-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-top strong {
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.class-date {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
}

.class-date div {
  display: grid;
  min-height: 82px;
  place-items: center;
  background: #101217;
  border: 1px solid var(--brass);
}

.class-date div span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.class-date div strong {
  color: var(--brass);
  font-size: 38px;
  line-height: 0.8;
}

.class-date p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.4;
}

.class-date p strong,
.class-date p span {
  display: block;
}

.class-date p strong {
  color: var(--ink);
  font-size: 15px;
}

.need-to-know {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.need-to-know div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 10px 20px;
  background: rgba(16, 18, 23, 0.7);
}

.need-to-know span {
  color: var(--brass-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.need-to-know strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.seat-meter {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.seat-meter div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.seat-meter span,
.seat-meter i {
  height: 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
}

.seat-meter span {
  background: var(--brass);
}

.seat-meter i {
  background: transparent;
}

.seat-meter p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.quick-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  background: #101217;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
}

.quick-form .button {
  width: 100%;
  margin-top: 4px;
}

.booking-confirmation {
  display: none;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 20px;
  background: var(--olive-dark);
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.booking-confirmation.is-visible {
  display: grid;
}

.booking-confirmation svg {
  width: 24px;
  height: 24px;
  color: var(--brass);
}

.education-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: end;
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.class-details {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
  padding: 46px 0 24px;
}

.details-heading {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 26px 0;
}

.details-heading h2 {
  margin-top: 10px;
}

.details-grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 12px;
}

.detail-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 196px;
  padding: 22px;
  background: rgba(27, 32, 40, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-card > span {
  color: var(--brass-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-card strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 1000;
  line-height: 1.02;
  text-transform: uppercase;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-card strong {
  color: var(--brass);
  font-size: 62px;
  line-height: 0.9;
}

.bring-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  column-gap: 22px;
  align-items: start;
}

.bring-card > span,
.bring-card > strong,
.bring-card > p {
  grid-column: 1;
}

.bring-card ul {
  grid-row: 1 / span 3;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bring-card li {
  position: relative;
  min-height: 42px;
  padding: 12px 12px 12px 34px;
  background: #101217;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.bring-card li::before {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 9px;
  height: 9px;
  background: var(--brass);
  content: "";
}

h2 {
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 1000;
  line-height: 0.98;
  text-transform: uppercase;
}

.education-band p,
.section-heading p,
.guide-panel p,
.booking-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.learn-section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 8px 0 12px;
}

.curriculum-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.curriculum-list article {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.4fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.curriculum-list article > span {
  color: var(--brass);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.curriculum-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.guide-section {
  padding: 18px 0 88px;
}

.guide-panel {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
}

.guide-cover {
  display: grid;
  min-height: 390px;
  align-content: end;
  gap: 15px;
  padding: 26px;
  background:
    repeating-linear-gradient(135deg, rgba(242, 234, 219, 0.05) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #1f222a, #13151a);
  border: 1px solid var(--brass);
}

.guide-cover span,
.guide-cover small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-cover strong {
  max-width: 220px;
  color: var(--brass);
  font-size: 45px;
  font-weight: 1000;
  line-height: 0.94;
  text-transform: uppercase;
}

.guide-panel h2 {
  margin: 10px 0 18px;
}

.guide-form {
  display: grid;
  gap: 12px;
  max-width: 470px;
  margin-top: 6px;
}

.guide-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guide-form .button {
  width: 100%;
  margin-top: 4px;
}

.guide-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.guide-success {
  display: none;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 470px;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--olive-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-success.is-visible {
  display: grid;
}

.guide-success svg {
  width: 24px;
  height: 24px;
  color: var(--brass);
}

.guide-success strong {
  display: block;
  color: var(--ink);
}

.guide-success span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.guide-success a {
  color: var(--brass);
  font-weight: 850;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 1fr;
  gap: 30px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 34px 36px;
  border-right: 1px solid var(--line);
}

blockquote > span {
  position: absolute;
  top: 8px;
  left: 18px;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
}

blockquote p {
  position: relative;
  margin-bottom: 14px;
  font-size: 31px;
  font-weight: 950;
  line-height: 1.13;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.proof-points {
  display: grid;
}

.proof-points div {
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.proof-points div:last-child {
  border-bottom: 0;
}

.proof-points strong {
  color: var(--brass-2);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-points span {
  color: var(--muted);
  line-height: 1.45;
}

.faq-section {
  padding: 88px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  display: grid;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: -4px 22px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.booking-section {
  padding: 86px 0;
  background: #0d0f13;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: start;
}

.booking-copy h2 {
  margin: 10px 0 18px;
}

.booking-checks {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.booking-checks span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.booking-checks span:last-child {
  border-bottom: 1px solid var(--line);
}

.calendar-shell {
  overflow: hidden;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-top a {
  color: var(--brass);
}

.calendar-embed {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 42px;
  text-align: center;
}

.calendar-embed > svg {
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  color: var(--brass);
}

.calendar-embed h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.calendar-embed p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.55;
}

.calendar-embed.has-iframe {
  display: block;
  min-height: 760px;
  padding: 0;
  text-align: left;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  height: 760px;
  border: 0;
}

.closing-cta {
  padding: 74px 0;
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  background: var(--brass);
  border-radius: var(--radius);
  color: #101217;
  box-shadow: var(--shadow);
}

.closing-inner h2 {
  color: #101217;
}

.closing-inner p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(16, 18, 23, 0.78);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.closing-actions {
  display: grid;
  gap: 12px;
}

.closing-actions .button-primary {
  background: #101217;
  color: var(--ink);
}

.funnel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  color: #101217;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.funnel-link svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  padding: 34px 0 42px;
  background: #0b0d11;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  display: none;
  align-items: center;
  gap: 12px;
  width: min(calc(100% - 32px), 390px);
  padding: 10px;
  background: rgba(17, 19, 24, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.sticky-cta.is-visible {
  display: flex;
}

.sticky-cta span {
  flex: 1;
  padding-left: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.sticky-cta .button {
  min-height: 38px;
  padding: 10px 14px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 60px;
  }

  .hero-grid,
  .class-details,
  .education-band,
  .guide-panel,
  .proof-section,
  .booking-grid,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    min-height: auto;
  }

  .booking-card {
    max-width: 620px;
  }

  .proof-section {
    gap: 0;
  }

  blockquote {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    background-size: 42px 42px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 24px), var(--max));
    margin-top: 10px;
  }

  .brand [data-brand-name] {
    max-width: 150px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero-grid {
    padding: 54px 0 42px;
  }

  h1 {
    max-width: 360px;
    font-size: 46px;
    line-height: 0.98;
  }

  h2 {
    font-size: 37px;
    line-height: 1.02;
  }

  .hero-copy > p {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    display: grid;
  }

  .booking-card {
    width: 100%;
  }

  .class-date,
  .need-to-know div,
  .details-grid,
  .bring-card,
  .bring-card ul,
  .curriculum-list article,
  .faq-grid,
  .guide-form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .education-band,
  .class-details,
  .learn-section,
  .faq-section,
  .booking-section,
  .closing-cta {
    padding: 56px 0;
  }

  .guide-section {
    padding: 0 0 56px;
  }

  .details-heading {
    padding: 0;
  }

  .detail-card,
  .bring-card {
    min-height: auto;
  }

  .bring-card > span,
  .bring-card > strong,
  .bring-card > p,
  .bring-card ul {
    grid-column: auto;
    grid-row: auto;
  }

  .guide-panel {
    padding: 18px;
  }

  .guide-cover {
    min-height: 300px;
  }

  .guide-cover strong {
    font-size: 38px;
  }

  blockquote {
    padding: 28px 24px;
  }

  blockquote p {
    font-size: 25px;
  }

  .calendar-embed {
    min-height: 420px;
    padding: 28px;
  }

  .calendar-embed.has-iframe,
  .calendar-embed iframe {
    min-height: 560px;
  }

  .closing-inner {
    padding: 24px;
  }

  .closing-actions,
  .closing-actions .button,
  .funnel-link {
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

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