:root {
  --ivory: #f7f2ec;
  --ivory-deep: #eee4da;
  --paper: #fffaf5;
  --rose: #d8a7a8;
  --rose-soft: #efd5d2;
  --rose-pale: #f3e5e1;
  --plum: #4b2638;
  --plum-deep: #2d1722;
  --ink: #30242a;
  --ink-soft: #706369;
  --taupe: #a5958d;
  --white: #fff;
  --line: rgba(75, 38, 56, 0.14);
  --shadow: 0 24px 80px rgba(60, 37, 46, 0.1);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: Inter, Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

body.menu-is-open {
  overflow: hidden;
}

body.is-translating #app {
  opacity: 0.35;
  transition: opacity 180ms ease;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--plum);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  padding: 10px 16px;
  color: var(--white);
  background: var(--plum);
  border-radius: 100px;
  transform: translateY(-150%);
  transition: transform 200ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ivory);
  transition: opacity 600ms var(--ease), visibility 600ms;
}

.page-loader__gem {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--rose);
  transform: rotate(45deg);
  animation: loader 1.4s var(--ease) infinite;
}

.page-loader__gem::before,
.page-loader__gem::after {
  position: absolute;
  content: "";
  background: var(--plum);
}

.page-loader__gem::before {
  top: 50%;
  left: -8px;
  width: 62px;
  height: 1px;
}

.page-loader__gem::after {
  top: -8px;
  left: 50%;
  width: 1px;
  height: 62px;
}

body.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
}

.announcement {
  position: relative;
  z-index: 91;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 20px;
  color: var(--rose-pale);
  background: var(--plum-deep);
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 236, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 242, 236, 0.94);
  box-shadow: 0 8px 30px rgba(52, 32, 41, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand__gem {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--plum);
  border-radius: 50% 50% 48% 52%;
  transform: rotate(45deg);
}

.brand__gem::before,
.brand__gem::after,
.brand__gem span {
  position: absolute;
  content: "";
  background: var(--plum);
}

.brand__gem::before {
  width: 1px;
  height: 45px;
}

.brand__gem::after {
  width: 45px;
  height: 1px;
}

.brand__gem span {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid var(--rose);
  transform: rotate(45deg);
}

.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__type strong {
  font-family: var(--font-display);
  font-size: 1.44rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.brand__type small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
  margin-left: auto;
  margin-right: clamp(20px, 3vw, 48px);
}

.desktop-nav__link {
  position: relative;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.desktop-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.desktop-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms var(--ease), box-shadow 250ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark,
.button--plum {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 10px 25px rgba(75, 38, 56, 0.16);
}

.button--dark:hover,
.button--plum:hover {
  background: var(--plum-deep);
  box-shadow: 0 14px 34px rgba(75, 38, 56, 0.24);
}

.button--light {
  color: var(--plum);
  background: var(--white);
}

.button--light:hover {
  background: var(--rose-pale);
}

.header-booking {
  min-height: 42px;
  padding: 10px 17px;
}

.header-booking .icon {
  width: 1rem;
  height: 1rem;
}

.language-picker {
  position: relative;
}

.language-picker__trigger {
  display: flex;
  min-width: 62px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.language-picker__trigger .icon {
  width: 13px;
  height: 13px;
  transition: transform 250ms ease;
}

.language-picker.is-open .language-picker__trigger .icon {
  transform: rotate(180deg);
}

.language-picker__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: var(--shadow);
}

.language-picker__menu[hidden] {
  display: none;
}

.language-picker__menu p {
  margin: 4px 8px 8px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-picker__option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-picker__option:hover,
.language-picker__option:focus-visible,
.language-picker__option.is-active {
  background: var(--rose-pale);
}

.language-picker__option span {
  font-size: 0.82rem;
  font-weight: 600;
}

.language-picker__option small {
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle .icon {
  grid-area: 1 / 1;
  transition: opacity 200ms ease, transform 300ms var(--ease);
}

.menu-toggle__close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}

.menu-is-open .menu-toggle__open {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.menu-is-open .menu-toggle__close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 114px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(239, 213, 210, 0.72), transparent 34%),
    linear-gradient(135deg, var(--ivory) 0%, #f9f2eb 60%, #edddd4 100%);
}

.hero__glow {
  position: absolute;
  top: 8%;
  left: -8vw;
  width: 36vw;
  min-width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 167, 168, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255, 255, 255, 0.1), 0 0 0 12vw rgba(216, 167, 168, 0.04);
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: calc(100svh - 114px);
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(36px, 6vw, 90px);
  padding-block: 70px 100px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--plum);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--rose-soft);
}

.hero__title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero__title {
  max-width: 700px;
  font-size: clamp(3.5rem, 6.3vw, 6.8rem);
}

.hero__title span {
  display: block;
}

.hero__title em,
.contact__intro h2 em {
  display: block;
  color: var(--plum);
  font-weight: 400;
  text-decoration: none;
}

.hero__title em {
  position: relative;
  width: max-content;
  max-width: 100%;
  font-size: 0.91em;
}

.hero__title em::after {
  position: absolute;
  right: -4%;
  bottom: 0.04em;
  left: -2%;
  z-index: -1;
  height: 0.14em;
  border-radius: 100%;
  content: "";
  background: var(--rose-soft);
  transform: rotate(-1.5deg);
}

.hero__body {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  line-height: 1.75;
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.text-link .icon {
  width: 18px;
  transition: transform 300ms var(--ease);
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.hero__facts {
  display: flex;
  gap: clamp(22px, 4vw, 56px);
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero__facts > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero__facts strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.hero__facts span {
  max-width: 100px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 530px;
}

.hero__image-wrap {
  position: absolute;
  inset: 4% -8vw 4% 0;
  overflow: hidden;
  border-radius: 48% 0 0 48% / 50% 0 0 50%;
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(247, 242, 236, 0.14), transparent 25%);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  transition: transform 1.2s var(--ease);
}

.hero__visual:hover img {
  transform: scale(1.025);
}

.hero__seal {
  position: absolute;
  right: -3%;
  bottom: 5%;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px;
  color: var(--rose-pale);
  border: 5px solid rgba(255, 250, 245, 0.7);
  border-radius: 50%;
  background: var(--plum);
  box-shadow: 0 18px 45px rgba(75, 38, 56, 0.22);
  text-align: center;
}

.hero__seal span {
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__seal .icon {
  width: 15px;
}

.hero__orbit {
  position: absolute;
  top: 9%;
  right: -8%;
  width: 94%;
  height: 80%;
  border: 1px solid rgba(75, 38, 56, 0.2);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-10deg);
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  display: block;
  width: 20px;
  height: 31px;
  border: 1px solid var(--taupe);
  border-radius: 20px;
}

.hero__scroll i::after {
  display: block;
  width: 3px;
  height: 7px;
  margin: 6px auto;
  border-radius: 10px;
  content: "";
  background: var(--plum);
  animation: scroll-dot 1.8s ease infinite;
}

.marquee {
  overflow: hidden;
  padding: 15px 0;
  color: var(--rose-pale);
  background: var(--plum);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 38s linear infinite;
}

.marquee__track span {
  padding-inline: 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.section {
  position: relative;
  padding-block: clamp(100px, 11vw, 160px);
}

.section-title {
  max-width: 790px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-title--light {
  color: var(--white);
}

.section-intro {
  max-width: 490px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-bottom: 64px;
}

.section-heading--split .section-intro {
  justify-self: end;
}

.section-heading--center {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 64px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 140px);
}

.about__visual {
  position: relative;
  align-self: start;
}

.about__arch {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.15;
  padding: 10px;
  border: 1px solid rgba(75, 38, 56, 0.18);
  border-radius: 48% 48% 18px 18px / 30% 30% 18px 18px;
  background: var(--paper);
}

.about__arch::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  content: "";
}

.about__arch img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  filter: sepia(0.15) saturate(0.78) contrast(0.96);
  object-fit: cover;
}

.about__visual > p {
  margin: 14px 10px 0;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.about__spark {
  position: absolute;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--plum);
  border-radius: 50%;
  background: var(--rose-soft);
}

.about__spark .icon {
  width: 25px;
  height: 25px;
}

.about__spark--one {
  top: 8%;
  right: -30px;
}

.about__spark--two {
  bottom: 12%;
  left: -24px;
  width: 48px;
  height: 48px;
  color: var(--rose-soft);
  background: var(--plum);
}

.about__spark--two .icon {
  width: 18px;
}

.about__content {
  align-self: center;
  padding-top: 20px;
}

.about__copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 42px;
  color: var(--ink-soft);
}

.about__copy p {
  margin: 0;
}

.about__copy p:first-child::first-letter {
  float: left;
  margin: 6px 8px 0 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 0.7;
}

.about__signature {
  margin: 35px 0 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
}

.about__stats {
  grid-column: 1 / -1;
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.about-stat {
  display: flex;
  min-height: 134px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 25px;
  text-align: left;
}

.about-stat + .about-stat {
  border-left: 1px solid var(--line);
}

.about-stat strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 400;
}

.about-stat span {
  max-width: 120px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.services {
  background: var(--paper);
}

.services::before {
  position: absolute;
  top: 40px;
  right: 4vw;
  width: 210px;
  height: 210px;
  border: 1px solid var(--rose-soft);
  border-radius: 50%;
  content: "";
  opacity: 0.6;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px 42px 8px 8px;
  background: var(--ivory);
  transition: color 450ms var(--ease), background 450ms var(--ease), transform 450ms var(--ease), box-shadow 450ms ease;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  border-radius: 42px 8px 8px 8px;
  background: var(--rose-pale);
}

.service-card:hover,
.service-card:has(details[open]) {
  color: var(--white);
  background: var(--plum);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}

.service-card__number {
  color: var(--ink-soft);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--plum);
  border: 1px solid var(--rose);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.33);
  transition: color 350ms ease, border-color 350ms ease, transform 500ms var(--ease);
}

.service-card:hover .service-card__icon,
.service-card:has(details[open]) .service-card__icon {
  color: var(--rose-soft);
  border-color: rgba(255, 255, 255, 0.25);
  transform: rotate(12deg);
}

.service-card:hover .service-card__number,
.service-card:has(details[open]) .service-card__number {
  color: var(--rose-soft);
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.service-card > p {
  margin: 16px 0 30px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  transition: color 350ms ease;
}

.service-card:hover > p,
.service-card:has(details[open]) > p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card__details {
  margin-top: auto;
}

.service-card__details summary {
  display: grid;
  min-height: 46px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  cursor: pointer;
  grid-template-columns: 1fr auto auto;
  list-style: none;
}

.service-card__details summary::-webkit-details-marker {
  display: none;
}

.service-card__details summary > span {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__details summary small {
  margin-right: 12px;
  color: var(--ink-soft);
  font-size: 0.6rem;
}

.service-card:hover .service-card__details summary small,
.service-card:has(details[open]) .service-card__details summary small {
  color: var(--rose-soft);
}

.service-card__details summary i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-card__details summary i .icon {
  width: 13px;
  height: 13px;
  transition: transform 300ms var(--ease);
}

.service-card__details[open] summary i .icon {
  transform: rotate(45deg);
}

.service-card__details ul {
  display: grid;
  gap: 9px;
  max-height: 170px;
  margin: 12px 0 0;
  padding: 4px 4px 4px 0;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.78);
  list-style: none;
  scrollbar-color: var(--rose) transparent;
  scrollbar-width: thin;
}

.service-card__details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.service-card__details li .icon {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  color: var(--rose-soft);
}

.journey {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--plum-deep);
}

.journey::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(120deg, transparent 0 52%, rgba(216, 167, 168, 0.05) 52% 52.2%, transparent 52.2%),
    radial-gradient(circle at 84% 9%, rgba(216, 167, 168, 0.14), transparent 29%);
}

.journey__orb {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(239, 213, 210, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(239, 213, 210, 0.018), 0 0 0 100px rgba(239, 213, 210, 0.012);
}

.journey__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 10vw, 150px);
}

.journey__intro {
  position: sticky;
  top: calc(var(--header-height) + 60px);
  align-self: start;
}

.journey__intro > p:last-child {
  max-width: 480px;
  margin: 36px 0 0;
  line-height: 1.8;
}

.journey__steps {
  display: grid;
}

.journey-step {
  position: relative;
  display: grid;
  min-height: 230px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 55px 1fr auto;
  gap: 25px;
}

.journey-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.journey-step > span {
  align-self: start;
  padding-top: 8px;
  color: var(--rose);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.journey-step h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
}

.journey-step p {
  max-width: 420px;
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.journey-step > .icon {
  width: 25px;
  height: 25px;
  color: var(--rose);
  transition: transform 500ms var(--ease);
}

.journey-step:hover > .icon {
  transform: rotate(45deg) scale(1.2);
}

.values {
  overflow: hidden;
}

.values::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 75%;
  height: 45%;
  border-radius: 50% 50% 0 0;
  content: "";
  background: var(--rose-pale);
  filter: blur(1px);
  transform: translateX(-50%);
}

.values__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 330px;
  padding: 36px;
  border: 1px solid rgba(75, 38, 56, 0.1);
  border-radius: 180px 180px 14px 14px;
  background: rgba(255, 250, 245, 0.88);
  box-shadow: 0 16px 45px rgba(75, 38, 56, 0.06);
  text-align: center;
  backdrop-filter: blur(8px);
}

.value-card > span {
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.value-card__line {
  width: 1px;
  height: 50px;
  margin: 12px auto 25px;
  background: var(--rose);
}

.value-card h3 {
  margin: 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.value-card p {
  max-width: 280px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.team {
  background: var(--paper);
}

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

.team-card {
  position: relative;
}

.team-card__portrait {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: 180px 180px 12px 12px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.82), transparent 25%),
    linear-gradient(145deg, var(--rose-pale), #d7c0bb);
}

.team-card:nth-child(2) .team-card__portrait {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.75), transparent 25%),
    linear-gradient(145deg, #e6d8cc, #c9aea6);
}

.team-card:nth-child(3) .team-card__portrait {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.78), transparent 25%),
    linear-gradient(145deg, #eadbd8, #cba3a4);
}

.team-card__portrait > span {
  position: relative;
  z-index: 2;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-style: italic;
  opacity: 0.82;
}

.team-card__portrait > i {
  position: absolute;
  right: 12%;
  bottom: -8%;
  left: 12%;
  height: 65%;
  border-radius: 50% 50% 0 0;
  background: rgba(75, 38, 56, 0.12);
  transform: scale(1.2);
}

.team-card__portrait > b {
  position: absolute;
  top: 12%;
  right: 17%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--rose-soft);
  border-radius: 50%;
  background: var(--plum);
}

.team-card__portrait > b .icon {
  width: 18px;
}

.team-card__copy {
  padding: 23px 8px 0;
}

.team-card__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.team-card__copy p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products {
  overflow: hidden;
  background: var(--rose-pale);
}

.products__header {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  gap: 35px;
  align-items: end;
  margin-bottom: 65px;
}

.products__header .eyebrow {
  align-self: start;
}

.products__header .section-intro {
  margin: 0;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(75, 38, 56, 0.12);
  border-radius: 10px;
  background: rgba(255, 250, 245, 0.56);
  transition: background 350ms ease, transform 400ms var(--ease);
}

.product-card:hover {
  background: var(--paper);
  transform: translateY(-7px);
}

.product-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.product-card__object {
  position: relative;
  display: grid;
  height: 220px;
  place-items: center;
}

.product-card__object span {
  position: absolute;
  bottom: 20px;
  width: 76px;
  height: 135px;
  border: 1px solid rgba(75, 38, 56, 0.25);
  border-radius: 22px 22px 9px 9px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(216, 167, 168, 0.42));
  box-shadow: inset 10px 0 20px rgba(255, 255, 255, 0.45), 0 20px 40px rgba(75, 38, 56, 0.12);
}

.product-card__object span::before {
  position: absolute;
  top: -20px;
  left: 13px;
  width: 48px;
  height: 25px;
  border-radius: 7px 7px 2px 2px;
  content: "";
  background: var(--plum);
}

.product-card__object i {
  position: absolute;
  right: 21%;
  bottom: 18px;
  width: 85px;
  height: 85px;
  border: 1px solid rgba(75, 38, 56, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(12deg);
}

.product-card[data-product="skincare"] .product-card__object span {
  width: 115px;
  height: 75px;
  border-radius: 50% 50% 13px 13px;
}

.product-card[data-product="skincare"] .product-card__object span::before {
  top: -12px;
  left: 7px;
  width: 99px;
  height: 17px;
}

.product-card[data-product="sun"] .product-card__object span {
  width: 58px;
  height: 150px;
  border-radius: 30px 30px 13px 13px;
}

.product-card[data-product="jewellery"] .product-card__object span {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.product-card[data-product="jewellery"] .product-card__object span::before {
  inset: 22px;
  width: auto;
  height: auto;
  border: 1px solid var(--plum);
  border-radius: 50%;
  background: transparent;
}

.product-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.product-card p {
  position: relative;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.contact {
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.contact__intro {
  align-self: center;
}

.contact__intro h2 em {
  font-size: 0.92em;
}

.contact__intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.contact__cards {
  border-top: 1px solid var(--line);
}

.contact-card {
  display: grid;
  min-height: 150px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 55px 1fr auto;
  gap: 20px;
}

.contact-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--plum);
  border: 1px solid var(--rose);
  border-radius: 50%;
}

.contact-card__icon .icon {
  width: 18px;
}

.contact-card p {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.contact-card > a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.contact-card > a:hover {
  color: var(--white);
  background: var(--plum);
  transform: rotate(-35deg);
}

.contact-card > a .icon {
  width: 16px;
}

.hours-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  min-width: min(360px, 100%);
  justify-content: space-between;
  gap: 25px;
  font-size: 0.86rem;
}

.hours-list strong {
  font-weight: 650;
}

.hours-list strong.is-closed {
  color: var(--rose);
}

.booking {
  padding-block: 0 clamp(90px, 10vw, 140px);
  background: var(--paper);
}

.booking__card {
  position: relative;
  display: grid;
  min-height: 380px;
  align-items: center;
  overflow: hidden;
  padding: clamp(45px, 7vw, 85px);
  color: rgba(255, 255, 255, 0.72);
  border-radius: 16px 120px 16px 16px;
  background: var(--plum);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.booking__card::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.018), 0 0 0 100px rgba(255, 255, 255, 0.012);
}

.booking__card > div {
  position: relative;
  z-index: 2;
}

.booking__card h2 {
  max-width: 740px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.booking__card > div > p:last-child {
  max-width: 540px;
  margin: 25px 0 0;
}

.booking__action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  justify-self: end;
  text-align: center;
}

.booking__action small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.booking__line {
  position: absolute;
  bottom: -200px;
  left: 18%;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(216, 167, 168, 0.18);
  border-radius: 48% 52% 44% 56%;
  transform: rotate(20deg);
}

.booking__line--two {
  bottom: -225px;
  left: 22%;
  transform: rotate(35deg);
}

.site-footer {
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.67);
  background: var(--plum-deep);
}

.site-footer__grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.5fr 0.65fr 0.7fr 1fr;
  gap: 55px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__gem {
  border-color: var(--rose-soft);
}

.brand--footer .brand__gem::before,
.brand--footer .brand__gem::after {
  background: var(--rose-soft);
}

.brand--footer .brand__type small {
  color: var(--rose);
}

.site-footer__brand > p {
  max-width: 280px;
  margin: 25px 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.site-footer__column h2 {
  margin: 0 0 20px;
  color: var(--rose-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__column nav,
.social-links,
.site-footer__contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.site-footer__link,
.social-links a,
.site-footer__contact a {
  font-size: 0.78rem;
  transition: color 200ms ease;
}

.site-footer__link:hover,
.social-links a:hover,
.site-footer__contact a:hover {
  color: var(--white);
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links .icon {
  width: 16px;
  height: 16px;
}

.site-footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.03em;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  border: 5px solid rgba(247, 242, 236, 0.82);
  border-radius: 50%;
  background: #236b4b;
  box-shadow: 0 10px 30px rgba(35, 107, 75, 0.28);
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 14px 40px rgba(35, 107, 75, 0.38);
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp .icon {
  width: 24px;
  height: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.services__grid .reveal {
  transition-delay: calc(var(--card-index) * 45ms);
}

.team__grid .reveal {
  transition-delay: calc(var(--team-index) * 90ms);
}

@keyframes loader {
  0%,
  100% {
    opacity: 0.4;
    transform: rotate(45deg) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: rotate(225deg) scale(1);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: -1;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 45px max(24px, calc((100% - 940px) / 2)) 35px;
    color: var(--white);
    background: var(--plum-deep);
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 350ms var(--ease), transform 350ms var(--ease), visibility 350ms;
  }

  .menu-is-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__link {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6vw, 4rem);
    line-height: 1.15;
  }

  .mobile-menu__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .mobile-menu__bottom > a:last-child {
    font-size: 0.8rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    gap: 35px;
  }

  .hero__title {
    font-size: clamp(3.35rem, 6.8vw, 5.2rem);
  }

  .service-card {
    grid-column: span 6;
  }

  .products__header {
    grid-template-columns: 1fr 1.5fr;
  }

  .products__header .eyebrow {
    grid-column: 1 / -1;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 45px;
    padding-block: 72px 90px;
  }

  .hero__visual {
    min-height: 470px;
  }

  .hero__image-wrap {
    inset: 0 -18px;
    border-radius: 180px 180px 18px 18px;
  }

  .hero__orbit {
    top: -3%;
    right: -5%;
    width: 110%;
    height: 100%;
  }

  .hero__seal {
    right: 2%;
    bottom: -28px;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading--split,
  .about,
  .journey__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 15px;
  }

  .section-heading--split .section-intro {
    justify-self: start;
  }

  .about__visual {
    width: min(430px, 82%);
    margin-inline: auto;
  }

  .about__content {
    padding-top: 0;
  }

  .about__stats {
    margin-top: 0;
  }

  .about-stat {
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .about-stat span {
    max-width: 150px;
  }

  .journey__intro {
    position: relative;
    top: auto;
  }

  .values__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    width: min(460px, 100%);
    margin-inline: auto;
  }

  .team-card {
    display: grid;
    align-items: center;
    grid-template-columns: 0.8fr 1fr;
    gap: 24px;
  }

  .team-card__portrait {
    min-height: 330px;
  }

  .products__header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .products__header .eyebrow {
    grid-column: auto;
  }

  .contact__grid {
    gap: 65px;
  }

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

  .booking__action {
    align-items: flex-start;
    justify-self: start;
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr;
    row-gap: 50px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 68px;
  }

  .announcement {
    min-height: 30px;
  }

  .announcement p {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .brand {
    gap: 8px;
  }

  .brand__gem {
    width: 31px;
    height: 31px;
  }

  .brand__type strong {
    font-size: 1.18rem;
  }

  .brand__type small {
    font-size: 0.45rem;
  }

  .header-booking {
    display: none;
  }

  .language-picker__trigger {
    min-width: 53px;
    min-height: 40px;
  }

  .language-picker__menu {
    right: -50px;
  }

  .hero__inner {
    padding-top: 55px;
  }

  .hero__title {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero__body {
    margin-top: 24px;
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__facts {
    gap: 20px;
    justify-content: space-between;
    margin-top: 34px;
  }

  .hero__facts > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hero__visual {
    min-height: 370px;
  }

  .hero__seal {
    width: 105px;
    height: 105px;
    padding: 14px;
    border-width: 4px;
  }

  .hero__seal span {
    font-size: 0.46rem;
  }

  .section {
    padding-block: 90px;
  }

  .section-title {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .section-heading--split,
  .section-heading--center {
    margin-bottom: 45px;
  }

  .about {
    gap: 55px;
  }

  .about__visual {
    width: 88%;
  }

  .about__copy {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

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

  .about-stat {
    min-height: 105px;
    flex-direction: row;
    text-align: left;
  }

  .about-stat + .about-stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-stat strong {
    min-width: 105px;
  }

  .services__grid {
    display: block;
  }

  .service-card {
    min-height: 360px;
    margin-bottom: 14px;
    padding: 27px;
  }

  .service-card__top {
    margin-bottom: 48px;
  }

  .journey-step {
    grid-template-columns: 34px 1fr;
    gap: 15px;
  }

  .journey-step > .icon {
    display: none;
  }

  .journey-step h3 {
    font-size: 2.1rem;
  }

  .value-card {
    min-height: 310px;
    padding-inline: 25px;
  }

  .team-card {
    display: block;
  }

  .team-card + .team-card {
    margin-top: 20px;
  }

  .team-card__portrait {
    min-height: 360px;
  }

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

  .product-card {
    min-height: 350px;
  }

  .product-card__object {
    height: 190px;
  }

  .contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact__actions .text-link {
    justify-content: center;
  }

  .contact-card {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .contact-card > a {
    display: none;
  }

  .hours-list li {
    min-width: 0;
    flex-direction: column;
    gap: 0;
  }

  .booking {
    width: 100%;
    padding-bottom: 0;
  }

  .booking__card {
    min-height: 500px;
    padding: 55px 25px;
    border-radius: 0;
  }

  .booking__action {
    align-items: stretch;
    width: 100%;
  }

  .site-footer {
    padding-top: 65px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
