/* ========================================================================
   Sculpt Pilates — private concept · home.css (home page sections)
   ======================================================================== */

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* --- Hero ------------------------------------------------------------- */

.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: max(calc(100vh - 76px), 640px);
  min-height: max(calc(100svh - 76px), 640px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-bright);
}
.home-hero__media,
.home-hero__scrim {
  position: absolute;
  inset: 0;
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}
.home-hero__scrim {
  background: linear-gradient(
    180deg,
    rgba(24, 19, 16, 0.62) 0%,
    rgba(24, 19, 16, 0.14) 24%,
    rgba(24, 19, 16, 0.28) 52%,
    rgba(24, 19, 16, 0.82) 100%
  );
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--concept-height) + var(--header-height) + 48px);
  padding-bottom: clamp(84px, 12vh, 148px);
}
.home-hero .display {
  max-width: 15ch;
  color: var(--paper-bright);
}
.home-hero__lede {
  max-width: 44ch;
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--on-ink);
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 38px;
}
.home-hero__scroll {
  color: var(--paper-bright);
}
/* Hero intro motion */
.home-hero__inner > * {
  animation: heroRise 1s var(--ease) both;
}
.home-hero .display {
  animation-delay: 0.08s;
}
.home-hero__lede {
  animation-delay: 0.16s;
}
.home-hero__actions {
  animation-delay: 0.24s;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

/* --- Essential proof line -------------------------------------------- */

.essentials {
  display: grid;
  align-items: center;
  min-height: 76px;
  padding: 0;
  background: var(--ink);
  color: var(--paper-bright);
  border-bottom: 1px solid var(--line-light);
}
.essentials__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
  min-height: 76px;
  gap: 0;
  margin: 0 auto;
  list-style: none;
}
.essentials__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 clamp(12px, 2.2vw, 26px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  color: var(--on-ink);
}
.essentials__list li + li {
  border-left: 1px solid var(--line-light);
}
.essentials__list i {
  display: none;
}

/* --- Le studio -------------------------------------------------------- */

.studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
}
.studio__media {
  position: relative;
}
.studio__photo {
  position: relative;
  z-index: 2;
  aspect-ratio: 1500 / 1322;
}
.studio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.studio__glow {
  position: absolute;
  inset: -8% -6% -8% -6%;
  z-index: 1;
  background: radial-gradient(
    60% 55% at 50% 45%,
    rgba(216, 164, 95, 0.42),
    rgba(216, 164, 95, 0) 70%
  );
  filter: blur(8px);
}
.studio__copy .lede {
  margin-top: 24px;
}
.studio__copy p + p {
  margin-top: 18px;
  color: var(--on-paper-soft);
}
.studio__copy .text-link {
  margin-top: 26px;
}

/* --- Les cours (dark) ------------------------------------------------- */

.courses {
  position: relative;
  background: var(--ink);
  color: var(--paper-bright);
  overflow: hidden;
}
.courses__deco {
  position: absolute;
  top: -4%;
  right: -6%;
  width: min(46%, 520px);
  opacity: 0.16;
  pointer-events: none;
}
.courses__header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.courses__header h2 {
  color: var(--paper-bright);
}
.courses__header p {
  color: var(--on-ink);
  max-width: 40ch;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.course-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 34px 26px 40px 0;
  border-top: 1px solid var(--line-light);
  transition: border-color 300ms var(--ease);
}
.course-card + .course-card {
  padding-left: 26px;
  border-left: 1px solid var(--line-light);
}
.course-card__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--amber);
  transition: color 300ms var(--ease);
}
.course-card h3 {
  color: var(--paper-bright);
}
.course-card p {
  color: var(--on-ink);
  font-size: 14.5px;
  line-height: 1.55;
}
.course-card__level {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.course-card:hover {
  border-top-color: var(--amber);
}
.course-card:hover .course-card__num {
  color: var(--amber-soft);
}
.courses__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  margin-top: clamp(40px, 5vw, 64px);
}

/* --- Première séance -------------------------------------------------- */

.first {
  position: relative;
  overflow: hidden;
  background: var(--paper-bright);
}
.first::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent 72%);
  opacity: 0.45;
  content: "";
}
.first__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 7vw, 96px);
  align-items: end;
}
.first__heading h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6.3vw, 5.35rem);
  text-wrap: balance;
}
.first__heading .lede {
  margin-top: 24px;
  color: var(--on-paper-soft);
}
.first__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(52px, 7vw, 86px) 0 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--line-strong);
}
.first__facts li {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 138px;
  padding: 28px clamp(22px, 3.5vw, 48px) 30px 0;
}
.first__facts li + li {
  padding-right: clamp(22px, 3.5vw, 48px);
  padding-left: clamp(22px, 3.5vw, 48px);
  border-left: 1px solid var(--line);
}
.first__facts li:last-child {
  padding-right: 0;
}
.first__facts span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.first__facts strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--on-paper);
}
.first__facts small {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--on-paper-soft);
}

/* --- Rituels ---------------------------------------------------------- */

.rituals {
  position: relative;
  overflow: hidden;
  background: var(--paper-dim);
}
.rituals::before {
  position: absolute;
  top: -42%;
  right: -8%;
  width: min(48vw, 620px);
  aspect-ratio: 0.76;
  border-radius: 52% 48% 42% 58% / 62% 40% 60% 38%;
  background: rgba(143, 154, 120, 0.13);
  transform: rotate(12deg);
  content: "";
  pointer-events: none;
}
.rituals__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.rituals__copy .lede {
  margin-top: 24px;
  color: var(--on-paper-soft);
}
.rituals__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}
.rituals__details li {
  display: grid;
  gap: 5px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--line-strong);
}
.rituals__details li:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
}
.rituals__details strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
}
.rituals__details span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* --- Planning Bsport -------------------------------------------------- */

.schedule {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-bright);
}
.schedule::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(216, 164, 95, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(216, 164, 95, 0.025),
    0 0 0 180px rgba(216, 164, 95, 0.018);
  content: "";
  pointer-events: none;
}
.schedule__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: end;
}
.schedule__intro h2 {
  max-width: 13ch;
  color: var(--paper-bright);
}
.schedule__context {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 42ch;
  padding-bottom: 6px;
}
.schedule__context p {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  color: var(--on-ink);
}
.schedule__frame {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line-light-strong);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}
.schedule__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 13px clamp(18px, 3vw, 32px);
  border-bottom: 1px solid rgba(24, 19, 16, 0.12);
  background: var(--paper-dim);
  color: var(--on-paper-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.schedule__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--on-paper);
}
.schedule__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(143, 154, 120, 0.14);
}
.schedule__stage {
  position: relative;
  min-height: 680px;
  background: #fff;
}
.schedule__gate {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  min-height: 680px;
  background: var(--paper-bright);
}
.schedule__gate[hidden],
.schedule__frame-content[hidden] {
  display: none;
}
.schedule__week {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 18px 12px;
  padding: clamp(42px, 6vw, 76px);
  background:
    linear-gradient(rgba(24, 19, 16, 0.045) 1px, transparent 1px) 0 112px / 100% 74px,
    radial-gradient(circle at 20% 18%, rgba(216, 164, 95, 0.16), transparent 36%),
    var(--paper-bright);
}
.schedule__week span {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--sand-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}
.schedule__week i {
  align-self: start;
  height: 62%;
  min-height: 230px;
  border: 1px solid rgba(24, 19, 16, 0.09);
  border-radius: 3px;
  background:
    linear-gradient(var(--amber), var(--amber)) 9px 18% / calc(100% - 18px) 3px no-repeat,
    linear-gradient(var(--sage), var(--sage)) 9px 48% / calc(100% - 18px) 3px no-repeat,
    linear-gradient(var(--sand), var(--sand)) 9px 74% / calc(100% - 18px) 3px no-repeat,
    rgba(255, 255, 255, 0.56);
  opacity: 0.72;
}
.schedule__week i:nth-of-type(2) {
  height: 78%;
}
.schedule__week i:nth-of-type(3) {
  height: 54%;
}
.schedule__week i:nth-of-type(4) {
  height: 86%;
}
.schedule__week i:nth-of-type(5) {
  height: 68%;
}
.schedule__gate-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(44px, 6vw, 78px);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 164, 95, 0.16), transparent 32%),
    var(--ink-2);
  color: var(--paper-bright);
}
.schedule__gate-copy > span {
  margin-bottom: 18px;
  color: var(--amber-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.schedule__gate-copy h3 {
  max-width: 11ch;
  color: var(--paper-bright);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}
.schedule__gate-copy p {
  max-width: 31ch;
  margin-top: 20px;
  color: var(--on-ink);
}
.schedule__gate-copy .button {
  margin-top: 30px;
}
.schedule__loading,
.schedule__error {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 40px;
  background: #fff;
  color: var(--on-paper-soft);
  text-align: center;
}
.schedule__loading[hidden],
.schedule__error[hidden] {
  display: none;
}
.schedule__loading > i {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(193, 135, 62, 0.24);
  border-top-color: var(--amber-deep);
  border-radius: 48% 52% 57% 43% / 44% 55% 45% 56%;
  animation: schedule-spin 1.1s linear infinite;
}
.schedule__loading span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.schedule__error p {
  max-width: 34ch;
}
.schedule__frame-content {
  display: block;
  width: 100%;
  height: clamp(720px, 82vh, 900px);
  border: 0;
  background: #fff;
}
.schedule__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--on-ink-soft);
}
.schedule__foot a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-soft);
}

@keyframes schedule-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Venir ------------------------------------------------------------ */

.visit {
  position: relative;
  overflow: hidden;
  background: var(--paper-bright);
}
.visit::before {
  position: absolute;
  right: -13vw;
  bottom: -46%;
  width: min(48vw, 680px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(193, 135, 62, 0.11);
  border-radius: 48% 52% 58% 42% / 42% 60% 40% 58%;
  box-shadow:
    0 0 0 64px rgba(193, 135, 62, 0.025),
    0 0 0 128px rgba(193, 135, 62, 0.018);
  transform: rotate(-12deg);
  content: "";
  pointer-events: none;
}
.visit__eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.visit__eyebrow::after {
  width: min(160px, 24vw);
  height: 1px;
  background: linear-gradient(90deg, var(--amber-deep), transparent);
  content: "";
}
.visit__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 292px);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  padding-block: clamp(38px, 5vw, 62px);
  border-block: 1px solid var(--line-strong);
}
.visit__address {
  min-width: 0;
  margin: 0;
  font-style: normal;
}
.visit__address-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.visit__address strong {
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: clamp(6.2rem, 11vw, 9.6rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.055em;
}
.visit__street {
  display: grid;
  gap: 13px;
  min-width: 0;
  font-size: clamp(2.4rem, 4.7vw, 4.55rem);
  line-height: 0.94;
  text-wrap: balance;
}
.visit__street small {
  color: var(--on-paper-soft);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.visit__actions {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.visit__directions {
  width: 100%;
}
.visit__social {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--on-paper);
}
.visit__social > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.visit__social small {
  min-width: 0;
  overflow: hidden;
  color: var(--on-paper-soft);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.visit__social i {
  font-style: normal;
  transition: transform 220ms var(--ease);
}
.visit__social:hover i,
.visit__social:focus-visible i {
  transform: translate(2px, -2px);
}

/* --- Responsive ------------------------------------------------------- */

@media (max-width: 940px) {
  .home-hero {
    min-height: max(calc(100vh - 104px), 600px);
    min-height: max(calc(100svh - 104px), 600px);
  }
  .essentials__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 104px;
  }
  .essentials {
    min-height: 104px;
  }
  .essentials__list li {
    min-height: 52px;
    padding: 0 16px;
  }
  .essentials__list li + li {
    border-left: 0;
  }
  .essentials__list li:nth-child(even) {
    border-left: 1px solid var(--line-light);
  }
  .essentials__list li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }
  .studio__grid,
  .rituals__grid {
    grid-template-columns: 1fr;
  }
  .studio__media {
    width: 100%;
    max-width: 680px;
  }
  .courses__header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .course-card:nth-child(even) {
    padding-left: 26px;
    border-left: 1px solid var(--line-light);
  }
  .first__top,
  .schedule__intro,
  .schedule__gate {
    grid-template-columns: 1fr;
  }
  .schedule__gate {
    grid-template-rows: minmax(220px, 0.65fr) minmax(340px, 1fr);
  }
  .schedule__week {
    padding: 34px clamp(28px, 7vw, 58px);
  }
  .schedule__week i {
    min-height: 140px;
  }
  .schedule__gate-copy {
    padding: clamp(36px, 7vw, 58px);
  }
  .visit__panel {
    grid-template-columns: 1fr;
  }
  .visit__actions {
    grid-template-columns: minmax(230px, 0.7fr) minmax(260px, 1fr);
    align-items: end;
  }
}

@media (max-width: 640px) {
  .home-hero .display {
    max-width: 100%;
  }
  .home-hero__lede {
    font-size: 1rem;
    line-height: 1.52;
  }
  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }
  .essentials__list {
    padding-inline: 20px;
  }
  .essentials__list li {
    font-size: 8.5px;
    letter-spacing: 0.12em;
  }
  .studio__photo {
    aspect-ratio: 1500 / 1322;
  }
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .course-card,
  .course-card + .course-card,
  .course-card:nth-child(odd),
  .course-card:nth-child(even) {
    padding: 24px 14px 26px 0;
    border-left: 0;
  }
  .course-card:nth-child(even) {
    padding-right: 0;
    padding-left: 16px;
    border-left: 1px solid var(--line-light);
  }
  .course-card h3 {
    font-size: 1.35rem;
  }
  .course-card p {
    font-size: 13px;
  }
  .first__heading h2 {
    max-width: 100%;
  }
  .first__top .button {
    width: 100%;
  }
  .first__facts {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
  .first__facts li,
  .first__facts li + li,
  .first__facts li:last-child {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 5px 16px;
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
  }
  .first__facts li + li {
    border-top: 1px solid var(--line);
  }
  .first__facts small {
    grid-column: 2;
  }
  .rituals__grid {
    gap: 44px;
  }
  .rituals__details {
    grid-template-columns: 1fr;
  }
  .rituals__details li,
  .rituals__details li:nth-child(even) {
    padding: 19px 0;
    border-left: 0;
  }
  .schedule > .shell {
    padding-inline: 12px;
  }
  .schedule__intro,
  .schedule__foot {
    margin-inline: 10px;
  }
  .schedule__frame {
    margin-top: 42px;
  }
  .schedule__bar {
    min-height: 50px;
    padding-inline: 16px;
  }
  .schedule__bar > span:last-child {
    max-width: 18ch;
    text-align: right;
  }
  .schedule__stage,
  .schedule__gate {
    min-height: 650px;
  }
  .schedule__gate {
    grid-template-rows: 218px 1fr;
  }
  .schedule__week {
    gap: 12px 7px;
    padding: 28px 18px;
  }
  .schedule__week i {
    min-height: 105px;
  }
  .schedule__gate-copy {
    padding: 34px 26px 38px;
  }
  .schedule__gate-copy h3 {
    font-size: 2.15rem;
  }
  .schedule__gate-copy .button {
    width: 100%;
  }
  .schedule__frame-content {
    height: clamp(620px, 80svh, 760px);
  }
  .schedule__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .visit__panel {
    gap: 34px;
    padding-block: 32px 38px;
  }
  .visit__address-line {
    gap: clamp(17px, 6vw, 28px);
    align-items: center;
  }
  .visit__address strong {
    font-size: clamp(4.9rem, 24vw, 7rem);
  }
  .visit__street {
    gap: 9px;
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }
  .visit__street small {
    font-size: 8.5px;
    letter-spacing: 0.17em;
  }
  .visit__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .home-hero {
    min-height: max(calc(100vh - 104px), 516px);
    min-height: max(calc(100svh - 104px), 516px);
  }
  .home-hero__inner {
    padding-top: calc(var(--concept-height) + var(--header-height) + 28px);
    padding-bottom: 52px;
  }
  .home-hero .display {
    font-size: 2.65rem;
  }
  .home-hero__lede {
    margin-top: 20px;
    font-size: 0.92rem;
  }
  .home-hero__actions {
    gap: 12px;
    margin-top: 24px;
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
  .course-card,
  .course-card + .course-card,
  .course-card:nth-child(odd),
  .course-card:nth-child(even) {
    padding: 23px 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__inner > * {
    animation: none;
  }
  .schedule__loading > i {
    animation: none;
  }
}
