/*
 * Hero accueil — direction « éditorial romantique contemporain ».
 * Chargé en dernier afin d'isoler la nouvelle composition des anciennes
 * couches responsive sans modifier les autres pages du site.
 */

.page--home .hero {
  --hero-ink: #181511;
  --hero-cream: #f6f1eb;
  --hero-taupe: #baa796;
  --hero-brown: #4a392d;
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #e9e3dc;
}

html.has-js .page--home .hero__media,
html.has-js .page--home .topbar,
html.has-js .page--home .hero__eyebrow,
html.has-js .page--home .hero__subtitle,
html.has-js .page--home .hero__actions,
html.has-js .page--home .hero__footer {
  animation: none;
}

html.has-js:not(.hero-ready) .page--home .hero__media {
  opacity: 0;
  transform: scale(1.055);
}

html.has-js:not(.hero-ready) .page--home .topbar {
  opacity: 0;
  transform: translate(-50%, -18px);
}

html.has-js:not(.hero-ready) .page--home .hero__eyebrow,
html.has-js:not(.hero-ready) .page--home .hero__subtitle,
html.has-js:not(.hero-ready) .page--home .hero__actions,
html.has-js:not(.hero-ready) .page--home .hero__footer {
  opacity: 0;
  transform: translateY(16px);
}

html.has-js.hero-ready .page--home .hero__media {
  animation: home-hero-image-reveal 1.25s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

html.has-js.hero-ready .page--home .topbar {
  animation: home-hero-nav-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.06s both;
}

html.has-js.hero-ready .page--home .hero__eyebrow {
  animation: home-hero-copy-reveal 0.68s cubic-bezier(0.2, 0.72, 0.2, 1) 0.18s both;
}

html.has-js.hero-ready .page--home .hero__subtitle {
  animation: home-hero-copy-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.42s both;
}

html.has-js.hero-ready .page--home .hero__actions {
  animation: home-hero-copy-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.5s both;
}

html.has-js.hero-ready .page--home .hero__footer {
  animation: home-hero-copy-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.65s both;
}

html.has-js.hero-ready.hero-skip-intro .page--home .hero__media,
html.has-js.hero-ready.hero-skip-intro .page--home .topbar,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__eyebrow,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__subtitle,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__actions,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__footer {
  opacity: 1;
  animation: none;
}

html.has-js.hero-ready.hero-skip-intro .page--home .hero__media,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__eyebrow,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__subtitle,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__actions,
html.has-js.hero-ready.hero-skip-intro .page--home .hero__footer {
  transform: none;
}

html.has-js.hero-ready.hero-skip-intro .page--home .topbar {
  transform: translateX(-50%);
}

html.has-js.hero-ready.hero-skip-intro .page--home .hero__title-curtain {
  display: none;
  animation: none;
}

.page--home .hero__media {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  animation: home-hero-image-reveal 1.25s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.page--home .hero__background {
  position: absolute;
  inset: -1.5%;
  width: 103%;
  height: 103%;
  object-fit: cover;
  object-position: 59% center;
  transform: scale(1.015);
  filter: none;
}

.page--home .hero__veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 238, 0.86) 0%,
      rgba(247, 243, 238, 0.74) 26%,
      rgba(247, 243, 238, 0.46) 47%,
      rgba(247, 243, 238, 0.2) 60%,
      rgba(247, 243, 238, 0.02) 72%
    ),
    linear-gradient(180deg, rgba(26, 21, 17, 0.08) 0%, transparent 24%, transparent 75%, rgba(26, 21, 17, 0.15) 100%);
}

.page--home .hero__floral {
  position: absolute;
  left: -22px;
  bottom: -44px;
  z-index: -1;
  width: clamp(250px, 22vw, 420px);
  height: auto;
  opacity: 0.38;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.78);
}

.page--home .topbar {
  position: absolute;
  top: clamp(18px, 2vw, 30px);
  left: 50%;
  z-index: 40;
  width: min(calc(100% - clamp(32px, 4vw, 72px)), 1540px);
  min-height: 68px;
  padding: 8px 10px 8px 12px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(246, 241, 235, 0.7);
  box-shadow: 0 12px 38px rgba(52, 43, 35, 0.08);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  transform: translateX(-50%);
  animation: home-hero-nav-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.06s both;
}

.page--home .brand {
  position: relative;
  inset: auto;
  width: 88px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 18px;
}

.page--home .brand:focus-visible {
  outline: 2px solid var(--hero-brown);
  outline-offset: 3px;
}

.page--home .brand__logo {
  position: static;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  transform: none;
}

.page--home .menu {
  position: static;
  inset: auto;
  width: 100%;
  transform: none;
}

.page--home .menu__list {
  min-height: 0;
  padding: 0;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 30px);
  border-radius: 0;
  background: transparent;
}

.page--home .menu__link {
  position: relative;
  padding: 12px 0;
  color: var(--hero-ink);
  font-size: clamp(14px, 0.92vw, 17px);
  letter-spacing: 0.015em;
}

.page--home .menu__link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.page--home .menu__link:hover,
.page--home .menu__link:focus-visible,
.page--home .menu__link[aria-current="page"] {
  color: var(--hero-brown);
}

.page--home .menu__link:hover::before,
.page--home .menu__link:focus-visible::before,
.page--home .menu__link[aria-current="page"]::before {
  transform: scaleX(1);
  transform-origin: left;
}

.page--home .menu__link:focus-visible {
  border-radius: 2px;
  box-shadow: none;
  outline: 2px solid rgba(74, 57, 45, 0.48);
  outline-offset: 5px;
}

.page--home .menu__link--dropdown {
  padding-inline: 0;
}

.page--home .menu__link--dropdown::before {
  right: 16px;
}

.page--home .nav-dropdown__menu {
  top: calc(100% + 7px);
  min-width: 280px;
  padding: 9px;
  border: 1px solid rgba(74, 57, 45, 0.12);
  border-radius: 18px;
  background: rgba(248, 244, 239, 0.96);
  box-shadow: 0 20px 50px rgba(42, 34, 28, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page--home .nav-dropdown__link {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
}

.page--home .nav-dropdown__link:hover,
.page--home .nav-dropdown__link:focus-visible {
  background: rgba(186, 167, 150, 0.22);
  color: var(--hero-brown);
}

.page--home .topbar__cta {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 57, 45, 0.16);
  border-radius: 999px;
  background: var(--hero-brown);
  color: #fffaf5;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(74, 57, 45, 0.16);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.page--home .topbar__cta:hover {
  background: #2f2823;
  box-shadow: 0 11px 24px rgba(47, 40, 35, 0.2);
}

.page--home .topbar__cta:focus-visible {
  outline: 2px solid #fffaf5;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(74, 57, 45, 0.42);
}

.page--home .hero__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(40px, 6vw, 118px);
  z-index: 2;
  width: min(54vw, 880px);
  max-width: 880px;
  padding: clamp(20px, 3vh, 32px) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: none;
  overflow: visible;
}

.page--home .hero__eyebrow {
  margin: 0 0 clamp(32px, 2.7vw, 44px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(24, 21, 17, 0.76);
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(247, 243, 238, 0.66);
  animation: home-hero-copy-reveal 0.68s cubic-bezier(0.2, 0.72, 0.2, 1) 0.18s both;
}

.page--home .hero__eyebrow > span {
  width: clamp(34px, 3vw, 54px);
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.page--home .hero__title {
  /*
   * Above the Beyond dessine de grandes boucles bien au-delà de ses métriques
   * déclarées. Cette zone de peinture supplémentaire évite que WebKit ne
   * tronque les extrémités lorsqu'un calque voisin est animé. Les marges
   * négatives compensent le padding afin de conserver exactement la mise en
   * page visible.
   */
  margin: -0.78em -0.72em -1em;
  padding: 0.78em 0.72em 1em;
  color: var(--hero-ink);
  display: grid;
  gap: clamp(2px, 0.35vw, 7px);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: 0;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  text-shadow: 0 1px 14px rgba(247, 243, 238, 0.66);
  animation: none;
  transform: none;
  filter: none;
  clip-path: none;
  contain: none;
  will-change: auto;
}

.page--home .hero__title-stage {
  position: relative;
  width: fit-content;
  max-width: 100%;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  animation: none;
  transform: none;
  filter: none;
  clip-path: none;
  contain: none;
  will-change: auto;
}

.page--home .hero__title-curtain {
  display: none;
}

html.has-js .page--home .hero__title-curtain {
  position: absolute;
  top: 0;
  right: -46vw;
  bottom: 0;
  left: -48px;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, #f7f3ee 0%, #f5f0ea 66%, #eee6df 100%);
  /*
   * Une opacité quasi opaque force WebKit à peindre le titre derrière le
   * rideau avant le début du fondu, au lieu de différer le rendu des swashes.
   */
  opacity: 0.999;
  will-change: opacity;
  pointer-events: none;
}

html.has-js.hero-ready .page--home .hero__title-curtain {
  animation: home-hero-title-curtain-fade 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.42s both;
}

.page--home .hero__eyebrow,
.page--home .hero__subtitle,
.page--home .hero__actions {
  position: relative;
  z-index: 2;
}

.page--home .hero__title-line {
  display: block;
  width: fit-content;
  padding: 0.08em 0.16em 0.22em;
  overflow: visible;
}

.page--home .hero__title-line--editorial {
  font-family: "Above The Beyond Hero", "Brush Script MT", cursive;
  font-size: clamp(50px, 3.7vw, 76px);
  line-height: 1;
  letter-spacing: 0.005em;
}

.page--home .hero__title-line--script {
  margin-top: 0;
  margin-left: clamp(22px, 2.8vw, 54px);
  font-family: "Above The Beyond Hero", "Brush Script MT", cursive;
  font-size: clamp(54px, 4vw, 82px);
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
}

.page--home .hero__subtitle {
  max-width: 47ch;
  margin: clamp(24px, 2vw, 34px) 0 0;
  color: rgba(24, 21, 17, 0.78);
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.35;
  text-wrap: pretty;
  text-shadow: 0 1px 14px rgba(247, 243, 238, 0.66);
  animation: home-hero-copy-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.42s both;
}

.page--home .hero__subtitle-dropcap {
  display: inline-block;
  /*
   * Le D calligraphié dépasse les métriques déclarées par la fonte. La zone
   * de peinture supplémentaire évite que WebKit tranche ses boucles lorsque
   * le sous-titre termine son animation, sans modifier l'espacement du texte.
   */
  margin: 0 calc(0.08em - 0.22em) 0 -0.22em;
  padding-inline: 0.22em;
  overflow: visible;
  font-family: "Above The Beyond Script", "Brush Script MT", cursive;
  font-size: 1.8em;
  line-height: 1.05;
  vertical-align: 0.12em;
}

.page--home .hero__actions {
  margin-top: clamp(26px, 2.3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  animation: home-hero-copy-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.5s both;
}

.page--home .hero__button {
  min-height: 54px;
  padding: 0 clamp(20px, 1.6vw, 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: clamp(15px, 0.94vw, 17px);
  line-height: 1.2;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.page--home .hero__button--primary {
  background: var(--hero-brown);
  color: #fffaf5;
  box-shadow: 0 10px 26px rgba(74, 57, 45, 0.18);
}

.page--home .hero__button--primary:hover {
  background: #2f2823;
  box-shadow: 0 14px 30px rgba(47, 40, 35, 0.24);
}

.page--home .hero__button--secondary {
  border-color: rgba(74, 57, 45, 0.28);
  background: rgba(248, 244, 239, 0.45);
  color: var(--hero-ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page--home .hero__button--secondary:hover {
  border-color: rgba(74, 57, 45, 0.48);
  background: rgba(248, 244, 239, 0.78);
}

.page--home .hero__button:focus-visible {
  outline: 2px solid var(--hero-brown);
  outline-offset: 4px;
}

.page--home .hero__footer {
  position: absolute;
  right: clamp(28px, 3.2vw, 62px);
  bottom: clamp(22px, 2.5vw, 40px);
  left: clamp(40px, 6vw, 118px);
  z-index: 3;
  min-height: 48px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  border-top: 1px solid rgba(24, 21, 17, 0.22);
  animation: home-hero-copy-reveal 0.72s cubic-bezier(0.2, 0.72, 0.2, 1) 0.65s both;
}

.page--home .hero__specialties {
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 32px);
  color: rgba(24, 21, 17, 0.7);
  font-size: clamp(12px, 0.8vw, 15px);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.page--home .hero__specialties span {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 32px);
}

.page--home .hero__specialties span:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.58;
}

.page--home .hero__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page--home .hero__socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 21, 17, 0.16);
  border-radius: 50%;
  background: rgba(248, 244, 239, 0.48);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.page--home .hero__socials a:hover {
  border-color: rgba(24, 21, 17, 0.34);
  background: rgba(248, 244, 239, 0.84);
}

.page--home .hero__socials a:focus-visible {
  outline: 2px solid var(--hero-brown);
  outline-offset: 3px;
}

.page--home .hero__socials img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.page--home .hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--hero-ink);
  text-decoration: none;
  font-size: clamp(13px, 0.82vw, 15px);
  white-space: nowrap;
}

.page--home .hero__scroll-arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 21, 17, 0.28);
  border-radius: 50%;
  font-size: 17px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.page--home .hero__scroll:hover .hero__scroll-arrow {
  background: var(--hero-brown);
  color: #fffaf5;
  transform: translateY(3px);
}

.page--home .hero__scroll:focus-visible {
  border-radius: 20px;
  outline: 2px solid var(--hero-brown);
  outline-offset: 4px;
}

.page--home .sticky-nav[data-sticky-nav] {
  background: rgba(225, 212, 200, 0.88);
  border-bottom: 1px solid rgba(74, 57, 45, 0.13);
  box-shadow: 0 10px 30px rgba(42, 34, 28, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

@media (max-width: 1240px) and (min-width: 861px) {
  .page--home .topbar {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .page--home .brand {
    width: 78px;
  }

  .page--home .brand__logo {
    width: auto;
    height: 47px;
  }

  .page--home .menu__list {
    gap: clamp(10px, 1.25vw, 18px);
  }

  .page--home .menu__link {
    font-size: clamp(13px, 1.2vw, 15px);
  }

  .page--home .topbar__cta {
    min-height: 46px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .page--home .hero__content {
    top: 0;
    left: 40px;
    width: min(56vw, 680px);
    max-width: 680px;
    padding-top: 0;
  }

  .page--home .hero__title-line--editorial {
    font-size: clamp(40px, 3.7vw, 50px);
  }

  .page--home .hero__title-line--script {
    margin-left: clamp(18px, 2.4vw, 30px);
    font-size: clamp(42px, 4vw, 54px);
  }

  .page--home .hero__subtitle {
    max-width: 44ch;
    font-size: clamp(16px, 1.55vw, 19px);
  }

  .page--home .hero__footer {
    left: 40px;
    right: 30px;
  }

  .page--home .hero__specialties {
    gap: 13px;
    font-size: 11px;
  }

  .page--home .hero__specialties span {
    gap: 13px;
  }
}

@media (max-width: 1000px) and (min-width: 861px) {
  .page--home .topbar {
    grid-template-columns: 92px minmax(0, 1fr);
    padding-right: 18px;
  }

  .page--home .topbar__cta {
    display: none;
  }

  .page--home .hero__socials {
    display: none;
  }
}

@media (max-width: 860px) {
  .page--home .hero {
    min-height: max(760px, 100svh);
    display: grid;
    grid-template-rows: minmax(430px, 57svh) auto;
    overflow: hidden;
    background: var(--hero-cream);
  }

  .page--home .hero::before {
    content: none;
  }

  .page--home .topbar {
    display: none;
  }

  .page--home .hero__media {
    position: relative;
    inset: auto;
    grid-row: 1;
    z-index: -3;
    min-height: 430px;
  }

  .page--home .hero__background {
    inset: -1%;
    width: 102%;
    height: 102%;
    object-position: 66% 47%;
    transform: scale(1.01);
  }

  .page--home .hero__veil {
    inset: 64px 0 auto;
    z-index: -2;
    height: calc(57svh - 64px);
    min-height: 366px;
    background:
      linear-gradient(180deg, rgba(38, 31, 26, 0.08) 0%, transparent 32%, transparent 68%, rgba(246, 241, 235, 0.86) 100%),
      linear-gradient(90deg, rgba(246, 241, 235, 0.24) 0%, transparent 45%);
  }

  .page--home .hero__floral {
    left: -26px;
    bottom: -18px;
    z-index: 1;
    width: clamp(155px, 42vw, 205px);
    opacity: 0.26;
  }

  .page--home .hero__content {
    position: relative;
    inset: auto;
    grid-row: 2;
    z-index: 2;
    width: calc(100% - 28px);
    max-width: 620px;
    min-height: 0;
    margin: -34px auto 0;
    padding: 27px clamp(15px, 4.3vw, 22px) 30px;
    align-self: start;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px 28px 0 0;
    background: rgba(246, 241, 235, 0.95);
    box-shadow: 0 -18px 48px rgba(43, 35, 29, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: none;
  }

  .page--home .hero__eyebrow {
    margin-bottom: 30px;
    justify-content: center;
    gap: 10px;
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
    text-shadow: none;
  }

  .page--home .hero__eyebrow > span {
    display: none;
  }

  .page--home .hero__title {
    width: 100%;
    margin: -0.58em -0.45em -0.72em;
    padding: 0.58em 0.45em 0.72em;
    text-align: center;
    text-shadow: none;
  }

  .page--home .hero__title-stage {
    width: 100%;
  }

  html.has-js .page--home .hero__title-curtain {
    inset: 0 -32px;
    border-radius: inherit;
    background: #f6f1eb;
  }

  .page--home .hero__title-line {
    width: max-content;
    max-width: none;
    margin-inline: auto;
    padding: 0.08em 0.12em 0.28em;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .page--home .hero__title-line--editorial {
    font-size: clamp(29px, 8.5vw, 44px);
    line-height: 1.02;
    letter-spacing: 0.005em;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .page--home .hero__title-line--script {
    margin: 0 auto;
    font-size: clamp(25px, 8vw, 48px);
    line-height: 1.04;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .page--home .hero__subtitle {
    width: 100%;
    max-width: 38ch;
    margin: 12px auto 0;
    padding: 12px 8px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(24, 21, 17, 0.74);
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.42;
    text-align: center;
    text-shadow: none;
    overflow: visible;
  }

  .page--home .hero__subtitle br {
    display: none;
  }

  .page--home .hero__subtitle-dropcap {
    margin: -0.32em -0.04em -0.26em -0.55em;
    padding: 0.32em 0.2em 0.26em 0.55em;
    font-size: 1.65em;
    line-height: 1;
    vertical-align: 0.08em;
  }

  .page--home .hero__actions {
    width: 100%;
    margin-top: 23px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .page--home .hero__button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .page--home .hero__button--secondary {
    min-height: 44px;
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
    text-decoration-color: rgba(74, 57, 45, 0.34);
    text-underline-offset: 5px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .page--home .hero__button--secondary:hover {
    border-color: transparent;
    background: rgba(186, 167, 150, 0.12);
    transform: none;
  }

  .page--home .hero__footer {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: auto;
    z-index: 4;
    min-height: 0;
    padding: 0;
    display: block;
    border: 0;
    animation-delay: 0.65s;
  }

  .page--home .hero__specialties,
  .page--home .hero__socials {
    display: none;
  }

  .page--home .hero__scroll {
    gap: 9px;
    font-size: 12px;
  }

  .page--home .hero__scroll > span:first-child {
    display: none;
  }

  .page--home .hero__scroll-arrow {
    width: 34px;
    height: 34px;
    background: rgba(246, 241, 235, 0.74);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .page--home .sticky-nav[data-sticky-nav] {
    background: rgba(213, 195, 179, 0.88);
  }
}

@media (max-width: 410px) {
  .page--home .hero {
    grid-template-rows: minmax(410px, 54svh) auto;
  }

  .page--home .hero__media {
    min-height: 410px;
  }

  .page--home .hero__veil {
    height: calc(54svh - 64px);
    min-height: 346px;
  }

  .page--home .hero__content {
    width: calc(100% - 20px);
    min-width: 0;
    max-width: calc(100% - 20px);
    margin-top: -28px;
    padding: 23px 15px 26px;
    border-radius: 24px 24px 0 0;
  }

  .page--home .hero__eyebrow {
    margin-bottom: 27px;
    font-size: 10px;
  }

  .page--home .hero__title-line--editorial {
    font-size: clamp(29px, 8.5vw, 35px);
  }

  .page--home .hero__title-line--script {
    font-size: clamp(25px, 8vw, 33px);
  }

  .page--home .hero__subtitle {
    margin-top: 11px;
    font-size: 15px;
    line-height: 1.42;
  }

  .page--home .hero__actions {
    margin-top: 18px;
  }
}

@media (max-width: 340px) {
  .page--home .hero__content {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding-inline: 15px;
  }

  .page--home .hero__eyebrow {
    font-size: 9px;
  }

  .page--home .hero__title-line--editorial {
    font-size: 29px;
  }

  .page--home .hero__title-line--script {
    font-size: clamp(25px, 8vw, 27px);
  }

  .page--home .hero__subtitle {
    font-size: 14px;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .page--home .hero {
    min-height: max(680px, 100svh);
  }

  .page--home .hero__content {
    top: 0;
    padding-top: 0;
    padding-bottom: 22px;
  }

  .page--home .hero__eyebrow {
    margin-bottom: 24px;
  }

  .page--home .hero__subtitle {
    margin-top: 21px;
  }

  .page--home .hero__actions {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page--home .hero__media,
  .page--home .topbar,
  .page--home .hero__eyebrow,
  .page--home .hero__subtitle,
  .page--home .hero__actions,
  .page--home .hero__footer {
    animation: none;
  }

  html.has-js.hero-ready .page--home .hero__media,
  html.has-js.hero-ready .page--home .topbar,
  html.has-js.hero-ready .page--home .hero__eyebrow,
  html.has-js.hero-ready .page--home .hero__subtitle,
  html.has-js.hero-ready .page--home .hero__actions,
  html.has-js.hero-ready .page--home .hero__footer {
    animation: none;
  }

  html.has-js .page--home .hero__title-curtain {
    display: none;
    animation: none;
  }

  .page--home .topbar__cta,
  .page--home .menu__link::before,
  .page--home .hero__button,
  .page--home .hero__socials a,
  .page--home .hero__scroll-arrow,
  .page--home .sticky-nav[data-sticky-nav] {
    transition: none;
  }
}

@keyframes home-hero-image-reveal {
  from {
    opacity: 0;
    transform: scale(1.055);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes home-hero-nav-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes home-hero-copy-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-hero-title-curtain-fade {
  from {
    opacity: 0.999;
  }

  to {
    opacity: 0;
  }
}
