/* pahrity landing — single conversion hero; tokens aligned with DESIGN.md */

:root {
  --brand-orange: #ff5f00;
  --brand-orange-hover: #d94f00;
  --brand-ink: #162620;
  --brand-forest: #2d6647;
  --brand-mustard: #ffd939;
  --brand-cream: #fff6ea;
  --brand-earth: #96744e;
  --text-primary: var(--brand-ink);
  --text-secondary: color-mix(in srgb, var(--brand-ink) 82%, var(--brand-cream));
  --text-on-orange: #ffffff;
  --border-earth: rgba(150, 116, 78, 0.14);
  --font-display: Massilia, Fraunces, Georgia, serif;
  --font-body: "Early Sans", Mukta, system-ui, sans-serif;
  --radius-pill: 999px;
  --product-cream: #fcfaf7;
  --product-mute: #f5f2ed;
  --product-soft: #faf9f4;
  --page-gutter: clamp(20px, 4vw, 64px);
  --hero-copy-width: min(640px, 48vw);
}

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

html {
  scroll-behavior: smooth;
  background: #fff6ea;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-primary);
  background: #fff6ea;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* Exclude the React demo island — unlayered `button` reset would otherwise beat
   Tailwind @layer utilities (tabs / toggles lose padding and overlap).
   :where() keeps specificity at 0 so `.btn` / `.btn--primary` still win. */
:where(button):not(:where(#landing-demo-root *)) {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.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;
}

.nav {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: var(--page-gutter);
}

.nav__brand {
  display: inline-flex;
  border-radius: 8px;
}

.nav__logo {
  width: 132px;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 120ms ease;
}

.btn--primary {
  color: var(--text-on-orange);
  background: var(--brand-orange);
}

.btn--primary:hover {
  background: var(--brand-orange-hover);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--hero svg {
  transition: transform 160ms ease;
}

.btn--hero:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: clip;
  background: #fff6ea;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Ribbon bowl — top-right corner, behind demo */
  background-image: url("/assets/ahrea-stuha-a-ilustrace-26.svg?v=bowl");
  background-repeat: no-repeat;
  background-position: right 0% top -20%;
  background-size: min(50vw, 720px) auto;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 0.81, 0.36, 1);
}

.hero[data-view="booking"] .hero__atmosphere {
  opacity: 0.55;
  transform: scale(1.04) translateX(2%);
}

.hero__pitch,
.hero__booking {
  position: relative;
  z-index: 1;
  width: 100%;
  transition:
    opacity 420ms cubic-bezier(0.22, 0.81, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 0.81, 0.36, 1),
    visibility 420ms linear;
}

.hero[data-view="pitch"] .hero__booking,
.hero[data-view="booking"] .hero__pitch {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
}

.hero[data-view="pitch"] .hero__pitch,
.hero[data-view="booking"] .hero__booking {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Copy left + live demo breakout right */
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, var(--hero-copy-width)) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding:
    104px 0 clamp(40px, 5vw, 64px) var(--page-gutter);
}

@media (min-width: 1351px) {
  .hero__pitch,
  .hero__booking {
    min-height: 100%;
  }

  /* Row 1 is a spacer that collapses on short viewports so the copy always
     fits above the fold instead of being pushed out by a fixed row ratio. */
  .hero__layout {
    min-height: 100svh;
    box-sizing: border-box;
    grid-template-rows: minmax(96px, 1fr) auto;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: clamp(24px, 3vw, 48px);
  }

  .hero__copy {
    grid-row: 2;
    align-self: center;
    padding-bottom: clamp(1rem, 3vh, 4rem);
  }

  .demo-stage {
    grid-row: 1 / -1;
    grid-column: 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    padding-top: 76px;
    min-height: 0;
    box-sizing: border-box;
  }

  .booking {
    height: 100%;
    min-height: 100svh;
    align-items: center;
    padding-top: 96px;
    padding-bottom: clamp(32px, 4vw, 56px);
  }

  .hero[data-view="booking"] .hero__atmosphere {
    background-position: right -5% top -18%;
  }
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: var(--hero-copy-width);
  padding-right: clamp(0.5rem, 1.5vw, 1.25rem);
  animation: copy-in 650ms cubic-bezier(0.22, .81, 0.36, 1) both;
}

.hero__eyebrow {
  margin: 0 0 12px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 49px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.48;
}

.hero__benefits {
  max-width: 560px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__benefits li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
}

.hero__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--brand-forest);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2 6.6 11.2 12.5 4.8' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem 0.7rem;
}

.hero__benefits strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

/* Conversion booking view — form left, medallion right */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(260px, 320px);
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  width: 100%;
  min-height: inherit;
  padding:
    104px var(--page-gutter) clamp(40px, 5vw, 64px);
  box-sizing: border-box;
}

.booking__main {
  max-width: 420px;
  animation: booking-panel-in 560ms 40ms cubic-bezier(0.22, 0.81, 0.36, 1) both;
}

.booking__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--brand-forest);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 6px;
  transition: color 140ms ease, transform 120ms ease;
}

.booking__back:hover {
  color: var(--brand-ink);
}

.booking__back:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
}

.booking__main h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.booking__lead {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.48;
}

.booking-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-ink);
}

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

.booking-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.field__input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--brand-earth) 28%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, #fff 70%, var(--brand-cream));
  color: var(--brand-ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field__input::placeholder {
  color: color-mix(in srgb, var(--brand-ink) 40%, transparent);
}

.field__input:hover {
  border-color: color-mix(in srgb, var(--brand-forest) 45%, var(--brand-earth));
}

.field__input:focus {
  outline: none;
  border-color: var(--brand-forest);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-forest) 22%, transparent);
  background: #fff;
}

.field__input--invalid,
.field__input--invalid:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-orange) 20%, transparent);
}

.field__hint {
  margin: 0;
  color: color-mix(in srgb, var(--brand-ink) 58%, var(--brand-cream));
  font-size: 12px;
  line-height: 1.35;
}

.field__error {
  margin: 0;
  color: var(--brand-orange-hover);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.booking-form__submit {
  margin-top: 6px;
  align-self: flex-start;
}

.booking__success {
  animation: booking-panel-in 420ms cubic-bezier(0.22, 0.81, 0.36, 1) both;
}

.booking__success .btn {
  margin-top: 8px;
}

.medallion {
  justify-self: start;
  display: flex;
  flex-direction: column;
  width: min(100%, 300px);
  animation: medallion-in 640ms 90ms cubic-bezier(0.22, 0.81, 0.36, 1) both;
}

.medallion__intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.medallion__rule {
  flex: 0 0 28px;
  width: 28px;
  height: 3px;
  background: var(--brand-orange);
}

.medallion__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--brand-forest);
}

.medallion__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 3 / 4.15;
  min-height: 420px;
  border-radius: 28px;
  background: #3a3835;
  box-shadow:
    0 18px 48px rgba(22, 38, 32, 0.16),
    0 2px 0 color-mix(in srgb, var(--brand-earth) 18%, transparent);
  isolation: isolate;
}

.medallion__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.medallion__blur {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 42%;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 38%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 38%, #000 100%);
}

.medallion__blur-photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 118%;
  height: 245%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  transform: translateX(-50%);
  filter: blur(28px) saturate(0.92);
}

.medallion__veil {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  pointer-events: none;
}

.medallion__veil--top {
  top: 0;
  height: 28%;
  background: linear-gradient(
    180deg,
    rgba(18, 22, 20, 0.48) 0%,
    rgba(18, 22, 20, 0.16) 55%,
    transparent 100%
  );
}

.medallion__veil--bottom {
  bottom: 0;
  height: 48%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(48, 45, 42, 0.48) 40%,
    rgba(42, 40, 37, 0.84) 100%
  );
  backdrop-filter: blur(2px);
}

.medallion__eyebrow {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 22px 20px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.medallion__footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 22px 26px;
  text-align: center;
}

.medallion__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.medallion__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.medallion__status-cue {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-mustard) 72%, #fff);
  box-shadow: 0 0 0 0 rgba(255, 217, 57, 0.45);
  animation: medallion-pulse 2.4s ease-out infinite;
}

.medallion__meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px 16px;
}

.medallion__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.medallion__avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

.medallion__identity-text {
  min-width: 0;
}

.medallion__role {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.medallion__focus {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.medallion__pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 246, 234, 0.94);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

@keyframes medallion-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 217, 57, 0.42);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 217, 57, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 217, 57, 0);
  }
}

@keyframes booking-panel-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes medallion-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Live demo island — breakout right, flat, dominant */
.demo-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  min-width: 0;
  scroll-margin-top: 84px;
}

#landing-demo-root {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 12px 0 0 12px;
  box-shadow:
    -8px 0 32px rgba(22, 38, 32, 0.06),
    0 12px 40px rgba(22, 38, 32, 0.08);
  background: var(--background, #fcfaf7);
  /* Frame only — content reveals separately inside landing-demo.css */
  /* animation: landing-demo-frame-in 640ms 40ms cubic-bezier(0.22, 1, 0.36, 1) both; */
  transform-origin: center right;
}

/* Stroke-dash ribbon loader from /loader.svg (visible until React reveal) */
.landing-demo-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.landing-demo-loader__svg {
  display: block;
  width: auto;
  height: min(18vh, 112px);
  overflow: visible;
}

.landing-demo-loader__track,
.landing-demo-loader__dash {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 180;
}

.landing-demo-loader__track {
  stroke: color-mix(in srgb, var(--brand-mustard) 28%, transparent);
}

.landing-demo-loader__dash {
  stroke: var(--brand-mustard);
  stroke-dasharray: 28 72;
  stroke-dashoffset: 0;
  animation: landing-demo-loader-dash 1.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

#landing-demo-root.is-revealed .landing-demo-loader {
  opacity: 0;
  visibility: hidden;
}

#landing-demo-mount {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  align-self: stretch;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-demo-frame-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes landing-demo-loader-dash {
  to {
    stroke-dashoffset: -100;
  }
}

@media (max-width: 1350px) {
  .hero__layout {
    grid-template-columns: 1fr;
    padding:
      104px var(--page-gutter) clamp(40px, 5vw, 64px);
  }

  .hero__copy {
    max-width: none;
    padding-right: 0;
  }

  #landing-demo-root {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(22, 38, 32, 0.08);
  }

  .booking {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
    padding:
      104px var(--page-gutter) clamp(40px, 5vw, 64px);
  }

  .booking__main {
    width: 100%;
    max-width: 420px;
  }

  .medallion {
    justify-self: center;
    width: min(100%, 320px);
  }

  .medallion__card {
    min-height: 440px;
  }

  @keyframes booking-panel-in {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 735px) {
  .nav {
    height: 68px;
  }

  .nav__inner {
    padding-inline: 20px;
  }

  .nav__logo {
    width: 112px;
  }

  .btn--nav {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 14px;
  }

  .hero__layout {
    gap: 24px;
    padding: 92px 20px 36px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(29px, 8.1vw, 38px);
    line-height: 1.02;
  }

  .hero__lead {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .hero__benefits {
    margin-bottom: 22px;
    gap: 10px;
  }

  .hero__atmosphere {
    background-position: right -10% top -4%;
    background-size: min(72vw, 480px) auto;
  }

  .booking {
    gap: 28px;
    padding: 92px 20px 36px;
  }

  .booking__back {
    margin-bottom: 18px;
  }

  .booking__lead {
    margin-bottom: 22px;
  }

  .booking-form__submit {
    width: 100%;
  }

  .booking__success .btn {
    width: 100%;
  }

  .medallion {
    width: min(100%, 300px);
  }

  .medallion__intro {
    gap: 9px;
    margin-bottom: 12px;
  }

  .medallion__rule {
    flex-basis: 20px;
    width: 20px;
  }

  .medallion__heading {
    font-size: 18px;
  }

  .medallion__card {
    border-radius: 24px;
    min-height: 400px;
  }

  .medallion__eyebrow {
    padding-top: 18px;
    font-size: 11px;
  }

  .medallion__footer {
    padding: 0 18px 22px;
  }

  .medallion__name {
    font-size: clamp(24px, 7vw, 28px);
  }

  .medallion__status {
    font-size: 12px;
  }

  .medallion__meta {
    padding: 0 14px 14px;
  }

  .medallion__avatar {
    width: 34px;
    height: 34px;
  }

  .medallion__role {
    font-size: 12px;
  }

  .medallion__focus {
    font-size: 11px;
  }

  .medallion__pill {
    min-height: 32px;
    padding-inline: 12px;
    font-size: 11px;
  }
}

@media (max-width: 419px) {
  .hero__layout {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(27px, 8.55vw, 32px);
  }

  .hero__actions {
    gap: 8px 18px;
  }

  .btn--hero {
    padding-inline: 20px;
  }

  .hero__atmosphere {
    background-size: min(72vw, 340px) auto;
    opacity: 0.7;
  }

  .medallion {
    width: 100%;
    max-width: 280px;
  }

  .medallion__heading {
    font-size: 17px;
  }

  .medallion__card {
    min-height: 380px;
    aspect-ratio: 3 / 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero[data-view="pitch"] .hero__booking,
  .hero[data-view="booking"] .hero__pitch,
  .hero[data-view="pitch"] .hero__pitch,
  .hero[data-view="booking"] .hero__booking,
  .hero[data-view="booking"] .hero__atmosphere {
    transform: none;
  }

  .landing-demo-loader__dash {
    stroke-dasharray: none;
    opacity: 0.85;
  }

  .medallion__status-cue {
    animation: none;
    box-shadow: 0 0 0 3px rgba(255, 217, 57, 0.22);
  }
}
