:root {
  color-scheme: light only;
  --color-bg: #ffffff;
  --color-ink: #0a0a0a;
  --color-black: #000000;
  --color-accent: #c41e3a;
  --color-muted: #555555;
  --color-sand: #f6f2f0;
  --font-base: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-script: "Great Vibes", "Angela White", "Playfair Display", cursive;
  --radius-pill: 999px;
  --radius-card: 16px;
  --shadow-card: 0 20px 45px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-base);
  background: #ffffff;
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px;
  gap: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.page {
  width: 100%;
  max-width: 640px;
  background: var(--color-bg);
  border-radius: 40px 40px 0 0;
  padding: 32px 28px 40px;
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.25);
}

section+section {
  margin-top: 32px;
}

.profile {
  text-align: center;
}

.profile__image {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border: 4px solid var(--color-black);
  border-radius: 50%;
  overflow: hidden;
}

.profile__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  margin: 0 0 6px;
}

.profile__subline {
  font-family: var(--font-serif);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.profile__frequency {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 6px 0 18px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.socials__link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transition: color 0.2s ease;
}

.socials__link i {
  font-size: 28px;
  line-height: 1;
  color: var(--color-black);
  transition: color 0.2s ease;
}

.socials__link:hover i,
.socials__link:focus-visible i {
  color: var(--color-accent);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
  min-height: 54px;
}

.cta--filled {
  background: var(--color-black);
  color: var(--color-bg);
}

.cta--outline {
  border-color: var(--color-black);
  color: var(--color-black);
}

.cta--accent {
  background: linear-gradient(135deg, #c41e3a 0%, #7d0f23 100%);
  color: var(--color-bg);
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 18px 30px rgba(196, 30, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.cta--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.cta--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(196, 30, 58, 0.4);
}

.cta--review {
  background: var(--color-black);
  color: var(--color-bg);
  border-radius: 8px;
  font-weight: 600;
  padding-inline: 32px;
  margin-top: 12px;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.section-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2rem;
}

.video-caption {
  text-align: center;
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.info-block {
  border: 2px dashed var(--color-black);
  border-radius: 24px;
  padding: 20px 22px;
  background: var(--color-sand);
}

.info-block h2 {
  margin-top: 0;
  font-family: var(--font-serif);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--color-black);
  box-shadow: var(--shadow-card);
  background: var(--color-black);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-lite {
  position: relative;
  isolation: isolate;
  cursor: pointer;
}

.video-lite__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.video-lite__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-lite__play {
  position: absolute;
  inset: 0;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}

.video-lite__play-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-lite__play-icon::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}

.video-lite__play:hover .video-lite__play-icon,
.video-lite__play:focus-visible .video-lite__play-icon {
  transform: scale(1.05);
  background: rgba(196, 30, 58, 0.95);
}

.video-lite.is-loaded .video-lite__poster,
.video-lite.is-loaded .video-lite__play {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

@media (max-width: 480px) {
  .video-lite__play-icon {
    width: 58px;
    height: 58px;
  }
}

.mantra p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
}

.visual-break {
  background: var(--color-bg);
}

.visual-break__banner {
  background: var(--color-black);
  color: var(--color-bg);
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 16px;
  border-radius: 18px 18px 0 0;
}

.visual-break__gallery {
  display: flex;
  gap: 12px;
  padding: 24px 4px 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.visual-break__gallery::-webkit-scrollbar {
  display: none;
}

.visual-break__card {
  border: 3px solid var(--color-black);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4;
  min-width: 70%;
  scroll-snap-align: start;
}

.visual-break__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dates {
  text-align: center;
}

.dates header {
  margin-bottom: 24px;
}

.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  margin: 4px 0 4px;
}

.dates h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin: 6px 0;
}

.subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.dates__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dates__feature-video {
  margin: 20px 0 24px;
}

.iconic-story {
  position: relative;
  background: var(--color-sand);
  border-radius: 28px;
  padding: 32px 24px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.iconic-story__scribble {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.iconic-story__media {
  margin: 0;
}

.iconic-story__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 18px 0 0;
}

.iconic-story__vertical {
  position: absolute;
  right: 12px;
  top: 40px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  letter-spacing: 0.35em;
  font-size: 0.9rem;
  color: var(--color-black);
}

.reviews {
  background: #f3f3f3;
  padding: 28px 24px;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible;
}

.reviews h2 {
  margin: 0;
  font-size: 1.2rem;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.star {
  color: #fbbc04;
  font-size: 1.2rem;
}

.reviews__score {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 600;
}

.reviews__carousel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews__controls {
  position: relative;
  display: block;
  padding: 0;
}

.carousel__viewport {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel__viewport::-webkit-scrollbar {
  display: none;
}

.carousel__control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-black);
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}

.carousel__control--prev {
  left: -18px;
}

.carousel__control--next {
  right: -18px;
}

.carousel__control[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel__control:not([disabled]):hover,
.carousel__control:not([disabled]):focus-visible {
  background: var(--color-black);
  color: var(--color-bg);
  border-color: var(--color-black);
}

@media (min-width: 600px) {
  .carousel__control--prev {
    left: -28px;
  }

  .carousel__control--next {
    right: -28px;
  }
}

.review-card {
  background: var(--color-bg);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}

.review-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.review-card__name {
  margin: 0;
  font-weight: 600;
}

.review-card__date {
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.review-card__stars {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: #fbbc04;
}

.review-card__text {
  margin: 0;
  line-height: 1.65;
  font-size: 1rem;
  word-break: break-word;
}

.review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.review-card__more {
  border: none;
  background: none;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
}

.review-card__dots {
  display: flex;
  gap: 6px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #c4c4c4;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel__dot.is-active {
  width: 28px;
  background: var(--color-accent);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4c4c4;
}

.dot--active {
  background: var(--color-accent);
}

.visual-break__card figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.dates__item {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  border-radius: 24px;
  padding: 22px 24px;
  isolation: isolate;
}

.dates__location {
  font-family: var(--font-base);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.dates__date {
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dates__meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-base);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
}

.section-heading__lede {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 48ch;
}

.testimonial-rail {
  position: relative;
}

.testimonial-rail__track {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonial-pill {
  border: 2px solid var(--color-black);
  border-radius: 28px;
  padding: 20px 20px 24px;
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.testimonial-pill__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.testimonial-pill__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-pill__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-pill__quote p {
  margin: 0;
}

.testimonial-pill__name {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-frame--portfolio {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-testimonial {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  padding: 24px;
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-testimonial__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.video-testimonial__title {
  margin: 4px 0;
  font-size: 1.2rem;
}

.video-testimonial__meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.video-testimonial__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.video-testimonial__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-testimonial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.mood-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mood-gallery__viewport {
  border-radius: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.02);
  padding-bottom: 12px;
  scroll-padding-left: 12px;
}

.mood-gallery__track {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.mood-gallery__scroll-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0 auto 14px;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.mood-gallery__hint-arrow {
  font-size: 1.4rem;
}

.mood-gallery__hint-text {
  font-weight: 500;
}

.mood-gallery__item {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  background: #000;
}

.mood-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .mood-gallery__item {
    flex: 0 0 520px;
  }
}

.video-testimonial__grid figure {
  margin: 0;
  display: block;
}

@media (min-width: 640px) {
  .video-testimonial {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .testimonial-rail__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-left: 12px;
    gap: 16px;
    padding: 8px 4px 12px 12px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-rail__track::-webkit-scrollbar {
    height: 4px;
  }

  .testimonial-rail__track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-pill);
  }

  .testimonial-pill {
    flex: 0 0 calc(100% - 56px);
    min-width: 260px;
    scroll-snap-align: start;
  }
}

.review-track {
  display: flex;
  gap: 16px;
  padding: 4px 0 12px;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.contact {
  background: #f3f3f3;
  padding: 28px 24px;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__cta {
  width: 100%;
}

.contact__note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.contact--footer {
  margin-bottom: -16px;
}

@media (min-width: 640px) {
  .contact--footer {
    margin-bottom: -24px;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.calendly-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  align-items: stretch;
  justify-content: stretch;
}

.calendly-modal.is-visible {
  display: flex;
}

.calendly-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.calendly-modal__dialog {
  position: relative;
  background: var(--color-bg);
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 20px 28px;
  color: var(--color-ink);
}

.calendly-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  height: 100%;
}

.calendly-modal__hint {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.calendly-modal__frame {
  flex: 1;
  width: 100%;
  min-height: 60vh;
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.calendly-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-bg);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendly-modal__close:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.calendly-modal__dialog:focus {
  outline: none;
}

.faq {
  background: var(--color-bg);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
}

.faq__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-ink);
}

.faq__icon {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq__button[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__panel {
  padding: 0 20px 18px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  background: var(--color-black);
  color: var(--color-bg);
  text-align: center;
  padding: 28px 20px 36px;
  border-radius: 0 0 24px 24px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.25);
}

.site-footer p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.site-footer__nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__nav a {
  color: var(--color-bg);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.site-footer__nav a:hover {
  border-color: var(--color-bg);
}

.page--legal {
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal__nav {
  margin-bottom: 24px;
}

.legal__back {
  width: fit-content;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal__header h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 6vw, 2.8rem);
}

.legal__section {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legal__section:first-of-type {
  padding-top: 0;
  border-top: none;
}

.legal__section h2,
.legal__section h3,
.legal__section h4 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
}

.legal__section p {
  margin: 0 0 16px;
  line-height: 1.7;
}

.legal address {
  font-style: normal;
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal a {
  color: var(--color-accent);
  word-break: break-word;
}

.legal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__list li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.95rem;
}

.legal__list span {
  font-weight: 600;
  min-width: 120px;
  color: var(--color-black);
}

@media (min-width: 720px) {
  .page--legal {
    padding: 48px 56px 64px;
  }

  .legal__back {
    min-width: 0;
  }
}

@media (min-width: 768px) {
  body {
    padding: 48px 24px;
  }

  .page {
    padding-inline: 52px;
  }

  .visual-break__card {
    min-width: 30%;
  }

  .dates__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dates__grid .cta {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonial-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 14px);
  }

  .review-card {
    flex: 0 0 100%;
  }
}

.cta--iconic-red {
  background: #c41e3a;
  color: var(--color-bg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
}

.cta--iconic-red:hover {
  background: #a01830;
  box-shadow: 0 12px 24px rgba(196, 30, 58, 0.25);
}