/* =============================================
   LAZZFITNESS – Sektion 1 (Hero)
   ============================================= */

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

:root {
  --orange:       #e86024;
  --orange-dark:  #cf5518;
  --white:        #ffffff;
  --muted:        rgba(255, 255, 255, 0.72);
  --border:       rgba(255, 255, 255, 0.14);
  --black:        #0a0a0a;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container:    1280px;
  --gutter:       48px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── Hero wrapper ─────────────────────────── */

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* ─── Background layers ────────────────────── */

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__background-image {
  position: absolute;
  inset: 0;
  background:
    url('assets/images/hero-photo.png') center right / cover no-repeat;
}

.hero__background-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 12%, transparent 30%),
    linear-gradient(90deg,  rgba(0,0,0,.96) 0%, rgba(0,0,0,.9) 35%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.2) 100%),
    linear-gradient(0deg,   rgba(0,0,0,.75) 0%, transparent 28%);
}

/* ─── Header ───────────────────────────────── */

.header {
  position: relative;
  z-index: 2;
  padding-block: 28px;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__image {
  display: block;
  height: 112px;
  width: auto;
  object-fit: contain;
}

/* ─── Buttons ──────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

.btn--ghost {
  padding: 11px 26px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--primary {
  padding: 17px 32px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 0.8125rem;
}

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

.btn__icon {
  flex-shrink: 0;
}

/* ─── Hero content ─────────────────────────── */

.hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero__content {
  padding-block: 48px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 6.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__headline--accent {
  color: var(--orange);
}

.hero__description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
}

/* ─── Features bar ─────────────────────────── */

.features {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.55);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-inline: 28px;
}

.feature:first-child { padding-left: 0; }
.feature:last-child  { padding-right: 0; }

.feature + .feature {
  border-left: 1px solid var(--border);
}

.feature__icon {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 1px;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 6px;
}

.feature__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ─── Responsive ───────────────────────────── */

@media (max-width: 960px) {
  :root { --gutter: 24px; }

  .logo__image {
    height: 88px;
  }

  .footer__brand .logo__image {
    height: 96px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 28px;
  }

  .feature,
  .feature + .feature {
    padding: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }

  .feature:first-child {
    border-top: none;
    padding-top: 0;
  }
}

/* =============================================
   Sektion 2 – Om mig
   ============================================= */

.about {
  background: var(--black);
  padding-block: 96px;
}

.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 56px;
  align-items: center;
}

.about__image-wrap {
  border-radius: 4px;
  overflow: hidden;
}

.about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.about__headline--accent {
  color: var(--orange);
}

.about__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.about__text:last-of-type {
  margin-bottom: 32px;
}

.btn--outline-white {
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline-white .btn__icon {
  color: var(--orange);
}

.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Values list */
.about__values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
}

.value__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}

.value__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .about__grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .about__values {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
  }
}

@media (max-width: 720px) {
  .about {
    padding-block: 64px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__image {
    max-width: 320px;
  }

  .about__values {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Sektion 3 – Testimonials
   ============================================= */

.testimonials {
  background: var(--black);
  padding-block: 96px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testimonials__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  background: #141414;
  border-radius: 6px;
  padding: 36px 28px 32px;
  text-align: center;
  margin: 0;
  min-height: 100%;
}

.testimonial__quote-icon {
  color: var(--orange);
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  opacity: 0.75;
}

.testimonial__quote-icon svg {
  display: block;
}

.testimonial__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.testimonial__author {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
}

@media (max-width: 900px) {
  .testimonials {
    padding-block: 64px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .testimonials__header {
    margin-bottom: 40px;
  }
}

/* =============================================
   Sektion 4 – CTA
   ============================================= */

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
}

.cta__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center / cover no-repeat;
}

.cta__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 30%, rgba(0,0,0,.6) 70%, rgba(0,0,0,.85) 100%),
    rgba(0, 0, 0, 0.55);
}

.cta__image {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__image--left img {
  object-position: 20% center;
  mask-image: linear-gradient(90deg, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, black 40%, transparent 100%);
}

.cta__image--right img {
  object-position: 80% center;
  mask-image: linear-gradient(270deg, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, black 40%, transparent 100%);
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 40px;
  max-width: 520px;
}

.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__headline--accent {
  color: var(--orange);
}

.cta__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}

/* =============================================
   Footer
   ============================================= */

.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__brand .logo__image {
  height: 120px;
}

.footer__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: border-color .2s, color .2s;
}

.footer__social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links,
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__contact a,
.footer__contact span,
.footer__link-btn {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color .2s;
}

.footer__link-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
}

.footer__links a:hover,
.footer__contact a:hover,
.footer__link-btn:hover {
  color: var(--orange);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
}

.footer__contact--accent {
  color: var(--orange) !important;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 20px;
  text-align: center;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 960px) {
  .cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta__image {
    display: none;
  }

  .cta__content {
    max-width: none;
    padding: 72px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Sektion 5 – Booking (modal + teaser)
   ============================================= */

/* ── Teaser sektion ── */
.booking {
  background: var(--black);
  padding-block: 80px 96px;
  text-align: center;
}

.booking__teaser-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.booking__teaser-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.booking__teaser-accent {
  color: var(--orange);
}

.booking__teaser-text {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 400px;
  margin-inline: auto;
}

/* ── Modal overlay ── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
}

.booking-modal.is-open {
  visibility: visible;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  gap: 12px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
}

.booking-modal.is-open .booking-modal__backdrop {
  opacity: 1;
}

.booking-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 375px;
  overflow: visible;
  transform: translateY(-115%);
  transition: transform 0.55s cubic-bezier(0.34, 1.45, 0.64, 1);
  flex-shrink: 0;
}

.booking-modal.is-open .booking-modal__sheet {
  transform: translateY(0);
}

.booking-modal.is-closing .booking-modal__sheet {
  transition: transform 0.38s cubic-bezier(0.55, 0, 1, 0.45);
  transform: translateY(-115%);
}

.booking-modal.is-closing .booking-modal__backdrop {
  opacity: 0;
}

.booking-modal__hint {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  max-width: 375px;
  font-family: var(--font-body);
  transition: color 0.2s, opacity 0.3s;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.booking-modal.is-open .booking-modal__hint {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__hint:hover {
  color: rgba(255, 255, 255, 0.65);
}

.booking-trigger {
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}

body.booking-open {
  overflow: hidden;
}

.booking__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── iPhone frame (realistiske proportioner) ── */
.booking__iphone {
  position: relative;
  width: 100%;
  max-width: 375px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.65));
}

.booking__iphone-body {
  position: relative;
  padding: 11px;
  background: linear-gradient(160deg, #3a3a3a 0%, #1c1c1c 45%, #0a0a0a 100%);
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 0, 0, 0.9),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.booking__iphone-body::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 108px;
  width: 3px;
  height: 26px;
  background: #3a3a3a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 40px 0 #3a3a3a, 0 72px 0 #3a3a3a;
}

.booking__iphone-body::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 148px;
  width: 3px;
  height: 58px;
  background: #3a3a3a;
  border-radius: 0 2px 2px 0;
}

.booking__iphone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 33px;
  background: #000;
  border: none;
  border-radius: 20px;
  z-index: 20;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: grab;
  padding: 0;
}

.booking__iphone-island:active {
  cursor: grabbing;
}

.booking__iphone-screen {
  background: #111;
  border-radius: 42px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: min(720px, calc(100dvh - 100px));
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.booking__iphone-screen::-webkit-scrollbar {
  display: none;
}

.booking__iphone-home {
  width: 134px;
  height: 5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  margin: 10px auto 5px;
}

.booking__card {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #111;
  overflow: hidden;
}

/* Hero image top – fast i toppen, formular scroller under */
.booking__hero {
  position: relative;
  flex-shrink: 0;
  height: min(42vh, 310px);
  min-height: 270px;
  overflow: hidden;
}

.booking__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.booking__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, transparent 30%),
    linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, 0.85) 82%, #111 100%);
}

.booking__badge {
  position: absolute;
  top: 46px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.booking__badge svg {
  color: #f5c518;
}

.booking__tags {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: -22px;
  margin-bottom: 6px;
  padding-inline: 14px;
  flex-shrink: 0;
}

.booking__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(232, 96, 36, 0.45);
  border-radius: 24px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  line-height: 1;
}

.booking__tag-icon {
  flex-shrink: 0;
  color: var(--orange);
  opacity: 0.9;
}

/* Form body – scroller internt, coach forbliver synlig */
.booking__form {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  margin-top: 0;
  padding: 16px 20px 14px;
  position: relative;
  z-index: 2;
  background: #111;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.booking__form::-webkit-scrollbar {
  display: none;
}

.booking__progress-wrap {
  margin-bottom: 22px;
}

.booking__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.booking__progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking__step-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Steps */
.booking__step {
  display: none;
  animation: booking-fade-in 0.35s ease forwards;
}

.booking__step.is-active {
  display: block;
}

.booking__step--error {
  animation: booking-shake 0.4s ease;
}

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

@keyframes booking-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

.booking__question {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 18px;
}

.booking__required {
  color: var(--orange);
}

/* Radio option cards */
.booking__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.booking__option:hover {
  border-color: rgba(232, 96, 36, 0.4);
  background: rgba(232, 96, 36, 0.05);
  transform: translateX(2px);
}

.booking__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking__option-circle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
}

.booking__option input:checked ~ .booking__option-circle {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 12px rgba(232, 96, 36, 0.4);
}

.booking__option input:checked ~ .booking__option-circle::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--white);
  border-radius: 50%;
}

.booking__option input:checked ~ .booking__option-text {
  color: var(--white);
}

.booking__option:has(input:checked) {
  border-color: var(--orange);
  background: rgba(232, 96, 36, 0.1);
}

.booking__option-text {
  font-size: 0.9375rem;
  color: var(--muted);
  transition: color 0.25s;
}

/* Text inputs */
.booking__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking__input {
  width: 100%;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.booking__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.booking__input:focus {
  border-color: var(--orange);
  background: rgba(232, 96, 36, 0.06);
  box-shadow: 0 0 0 3px rgba(232, 96, 36, 0.15);
}

.booking__input--error {
  border-color: #e74c3c;
  animation: booking-shake 0.4s ease;
}

.booking__textarea {
  resize: none;
  min-height: 80px;
}

/* Success */
.booking__step--success {
  text-align: center;
  padding-block: 16px;
}

.booking__step--success.is-active {
  display: block;
}

.booking__success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 96, 36, 0.15);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 1.625rem;
  color: var(--orange);
}

.booking__success-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 8px;
}

/* Navigation */
.booking__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  padding-bottom: 4px;
  border-top: 1px solid var(--border);
}

.booking__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

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

.booking__next {
  margin-left: auto;
  padding: 15px 28px !important;
  font-size: 0.75rem !important;
}

@media (max-height: 800px) {
  .booking__hero {
    height: min(38vh, 260px);
    min-height: 230px;
  }
}

@media (max-width: 520px) {
  .booking {
    padding-block: 56px 72px;
  }

  .booking-modal.is-open {
    padding: 16px 12px;
  }

  .booking-modal__sheet,
  .booking-modal__hint,
  .booking__iphone {
    max-width: min(375px, calc(100vw - 24px));
  }

  .booking__hero {
    height: min(40vh, 280px);
    min-height: 250px;
  }

  .booking__iphone-body::before,
  .booking__iphone-body::after {
    display: none;
  }
}

