:root {
  --blue: #001473;
  --blue-deep: #000b4b;
  --gold: #a07850;
  --charcoal: #1e1e19;
  --ivory: #f5f2eb;
  --ivory-deep: #ebe6dc;
  --white: #ffffff;
  --whatsapp: #25d366;
  --font-editorial: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --font-ui: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-gutter: clamp(24px, 5vw, 76px);
  --section-space: clamp(96px, 11vw, 168px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-ui);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: 96px;
}

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

.site-page {
  overflow: hidden;
  position: relative;
}

.section-shell {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.66);
}

.brand-header {
  align-items: center;
  background: rgba(245, 242, 235, 0.95);
  border-bottom: 1px solid rgba(30, 30, 25, 0.13);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 96px;
  padding: 0 var(--page-gutter);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: inline-flex;
  width: clamp(176px, 15vw, 226px);
}

.brand-logo img {
  display: block;
  height: auto;
  width: 100%;
}

.header-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 48px);
}

.header-nav a,
.header-cta {
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-nav a {
  padding: 15px 0;
  position: relative;
}

.header-nav a::after {
  background: var(--gold);
  bottom: 8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-self: end;
  padding: 15px 0;
}

.header-cta span:last-child {
  color: var(--blue);
  font-size: 18px;
  transition: transform 180ms ease;
}

.header-cta:hover span:last-child {
  transform: translate(3px, -3px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  min-height: calc(100svh - 96px);
}

.hero-copy {
  align-self: center;
  padding: 58px clamp(42px, 6vw, 96px) 68px clamp(42px, 7vw, 112px);
}

.hero h1,
.heritage h2,
.jewels-heading h2,
.atelier h2,
.experience h2,
.final-cta h2 {
  font-family: var(--font-editorial);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(56px, 5.5vw, 88px);
  line-height: 0.97;
  margin-bottom: 0;
  max-width: 760px;
}

h1 em,
h2 em {
  color: var(--blue);
  font-weight: 400;
}

.hero-body {
  color: rgba(30, 30, 25, 0.7);
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.65;
  margin: 28px 0 30px;
  max-width: 570px;
}

.primary-button,
.outline-button,
.light-button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 14px;
  height: 58px;
  justify-content: center;
  letter-spacing: 0.12em;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.primary-button {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: white;
}

.primary-button:hover {
  background: #071b7c;
  border-color: #071b7c;
}

.primary-button span:last-child,
.outline-button span:last-child,
.light-button span:last-child {
  font-size: 16px;
  margin-left: 12px;
}

.button-icon {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.microcopy {
  color: rgba(30, 30, 25, 0.54);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin: 12px 0 0;
}

.hero-visual {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-images,
.hero-image,
.hero-visual__shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  animation: hero-cycle 15.6s infinite ease-in-out;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  width: 100%;
}

.hero-image--1 {
  animation-delay: 0s;
}

.hero-image--2 {
  animation-delay: -10.4s;
}

.hero-image--3 {
  animation-delay: -5.2s;
}

@keyframes hero-cycle {
  0% {
    opacity: 1;
    transform: scale(1.012);
  }
  28% {
    opacity: 1;
  }
  33.333% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-visual__shade {
  background: linear-gradient(180deg, transparent 58%, rgba(0, 8, 42, 0.7));
  pointer-events: none;
  z-index: 2;
}

.hero-caption {
  bottom: 31px;
  color: white;
  display: flex;
  font-size: 9px;
  font-style: normal;
  font-weight: 650;
  justify-content: space-between;
  left: 32px;
  letter-spacing: 0.14em;
  position: absolute;
  right: 148px;
  text-transform: uppercase;
  z-index: 3;
}

.carousel-progress {
  bottom: 32px;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 28px);
  position: absolute;
  right: 32px;
  z-index: 4;
}

.carousel-progress__item {
  background: rgba(255, 255, 255, 0.48);
  height: 2px;
  overflow: hidden;
  position: relative;
}

.carousel-progress__item::after {
  animation: carousel-progress 15.6s infinite linear;
  background: white;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
}

.carousel-progress__item--1::after {
  animation-delay: 0s;
}

.carousel-progress__item--2::after {
  animation-delay: -10.4s;
}

.carousel-progress__item--3::after {
  animation-delay: -5.2s;
}

@keyframes carousel-progress {
  0% {
    transform: scaleX(0);
  }
  28%,
  33.333% {
    transform: scaleX(1);
  }
  33.334%,
  100% {
    transform: scaleX(0);
  }
}

.heritage {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  grid-template-columns: 0.42fr 1fr 0.9fr;
  min-height: 900px;
  padding-bottom: var(--section-space);
  padding-top: var(--section-space);
}

.heritage-intro {
  align-self: stretch;
  border-right: 1px solid rgba(30, 30, 25, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding-right: clamp(22px, 3vw, 46px);
}

.heritage-year {
  color: rgba(0, 20, 115, 0.09);
  font-family: var(--font-editorial);
  font-size: clamp(72px, 9vw, 138px);
  letter-spacing: -0.06em;
  line-height: 0.76;
  margin: 0;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.heritage h2,
.jewels-heading h2,
.atelier h2,
.experience h2,
.final-cta h2 {
  font-size: clamp(45px, 4.4vw, 66px);
  line-height: 1.03;
  margin-bottom: 0;
}

.heritage-text {
  border-top: 1px solid rgba(30, 30, 25, 0.16);
  margin-top: 38px;
  padding-top: 28px;
}

.heritage-text p {
  color: rgba(30, 30, 25, 0.68);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 570px;
}

.heritage-signature {
  display: block;
  height: auto;
  margin-top: 34px;
  width: clamp(160px, 14vw, 210px);
}

.editorial-frame,
.jewel-card figure,
.atelier-visual,
.final-cta__visual {
  background: var(--ivory-deep);
  overflow: hidden;
  position: relative;
}

.heritage-visual {
  aspect-ratio: 4 / 5;
  margin-bottom: -70px;
  margin-top: 70px;
}

.editorial-frame img,
.jewel-card img,
.atelier-visual img,
.final-cta__visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.editorial-frame figcaption,
.atelier-visual figcaption {
  background: var(--ivory);
  bottom: 0;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0.14em;
  padding: 16px 20px;
  position: absolute;
  text-transform: uppercase;
}

.jewels-section {
  background: white;
  padding-bottom: var(--section-space);
  padding-top: var(--section-space);
}

.jewels-heading {
  align-items: end;
  display: grid;
  gap: clamp(42px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  margin-bottom: clamp(68px, 8vw, 116px);
}

.jewels-heading h2 {
  max-width: 850px;
}

.jewels-heading > p {
  color: rgba(30, 30, 25, 0.66);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 6px;
  max-width: 450px;
}

.jewel-grid {
  display: grid;
  gap: 74px 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jewel-card {
  color: var(--charcoal);
  display: block;
  text-decoration: none;
}

.jewel-card:nth-child(3n + 2) {
  transform: translateY(52px);
}

.jewel-card figure {
  aspect-ratio: 3 / 4;
  margin-bottom: 25px;
}

.jewel-card img {
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.jewel-card:hover img {
  transform: scale(1.025);
}

.jewel-card__copy > div {
  align-items: baseline;
  display: flex;
  gap: 15px;
}

.jewel-card__number {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.jewel-card h3 {
  font-family: var(--font-editorial);
  font-size: clamp(27px, 2.3vw, 35px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0;
}

.jewel-card p {
  color: rgba(30, 30, 25, 0.62);
  font-size: 14px;
  line-height: 1.65;
  margin: 13px 0 15px 34px;
  max-width: 340px;
}

.editorial-link {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 9px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.15em;
  margin-left: 34px;
  text-transform: uppercase;
}

.editorial-link span {
  font-size: 14px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 130px;
}

.outline-button {
  border: 1px solid var(--blue);
  color: var(--blue);
}

.outline-button:hover {
  background: var(--blue);
  color: white;
}

.atelier {
  background: var(--blue);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
}

.atelier-visual {
  min-height: 890px;
  margin: 0;
}

.atelier-visual::after {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 8, 42, 0.55));
  content: "";
  inset: 0;
  position: absolute;
}

.atelier-visual figcaption {
  background: transparent;
  color: white;
  left: 30px;
  padding: 0;
  z-index: 2;
  bottom: 30px;
}

.atelier-copy {
  align-self: center;
  padding: clamp(76px, 9vw, 140px) clamp(46px, 8vw, 126px);
}

.atelier h2 {
  color: white;
}

.atelier h2 em {
  color: #d2b392;
}

.atelier-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.72;
  margin: 28px 0 0;
  max-width: 600px;
}

.atelier-list {
  list-style: none;
  margin: 42px 0 42px;
  padding: 0;
}

.atelier-list li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  min-height: 56px;
  text-transform: uppercase;
}

.atelier-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.atelier-list span {
  color: #d2b392;
  font-size: 9px;
  margin-right: 22px;
}

.light-button {
  background: white;
  border: 1px solid white;
  color: var(--blue);
}

.light-button:hover {
  background: transparent;
  color: white;
}

.experience {
  display: grid;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  padding-bottom: var(--section-space);
  padding-top: var(--section-space);
}

.experience-heading {
  align-self: center;
}

.experience h2 {
  max-width: 750px;
}

.experience-heading > p:last-child {
  color: rgba(30, 30, 25, 0.67);
  font-size: 16px;
  line-height: 1.72;
  margin: 32px 0 0;
  max-width: 580px;
}

.experience-visual {
  aspect-ratio: 4 / 5;
  margin: 0;
}

.experience-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.experience-list li {
  border-top: 1px solid rgba(30, 30, 25, 0.2);
  min-height: 124px;
  padding: 22px 28px 24px 0;
}

.experience-list li:nth-child(3n + 2),
.experience-list li:nth-child(3n + 3) {
  padding-left: 28px;
}

.experience-list span {
  color: var(--gold);
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}

.experience-list strong {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.final-cta {
  background: var(--blue-deep);
  color: white;
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(0, 1.16fr);
}

.final-cta__visual {
  margin: 0;
  min-height: 740px;
}

.final-cta__visual::after {
  background: linear-gradient(90deg, transparent 70%, rgba(0, 11, 75, 0.32));
  content: "";
  inset: 0;
  position: absolute;
}

.final-cta__copy {
  align-self: center;
  padding: clamp(78px, 10vw, 150px) clamp(48px, 10vw, 150px);
}

.final-cta h2 {
  color: white;
  max-width: 800px;
}

.final-cta__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.72;
  margin: 30px 0 34px;
  max-width: 610px;
}

.final-cta__microcopy {
  color: rgba(255, 255, 255, 0.52);
  display: block;
  font-size: 10px;
  letter-spacing: 0.06em;
  margin-top: 13px;
}

.site-footer {
  align-items: start;
  background: var(--ivory);
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  padding: 78px var(--page-gutter) 32px;
}

.footer-brand img {
  display: block;
  height: auto;
  width: 190px;
}

.footer-brand p,
.footer-address {
  color: rgba(30, 30, 25, 0.62);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}

.footer-brand p {
  margin: 24px 0 0;
  max-width: 340px;
}

.footer-address {
  margin: 0;
}

.footer-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-actions a {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-actions a span {
  font-size: 15px;
}

.footer-icon {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.footer-legal {
  border-top: 1px solid rgba(30, 30, 25, 0.15);
  color: rgba(30, 30, 25, 0.42);
  font-size: 9px;
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
  margin: 22px 0 0;
  padding-top: 24px;
  text-transform: uppercase;
}

.whatsapp-float {
  align-items: center;
  background: var(--whatsapp);
  border: 3px solid white;
  border-radius: 999px;
  bottom: 26px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  color: white;
  display: flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 26px;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
  width: 62px;
  z-index: 40;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  fill: currentColor;
  height: 31px;
  width: 31px;
}

.whatsapp-float span {
  display: none;
}

@media (max-width: 1120px) {
  .brand-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .heritage {
    gap: 40px;
    grid-template-columns: 0.3fr 1fr 0.86fr;
  }

  .jewel-grid {
    column-gap: 24px;
  }

  .atelier-copy,
  .final-cta__copy {
    padding-left: 54px;
    padding-right: 54px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: 110px;
  }

  .brand-header {
    height: 84px;
    padding: 0 34px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  .brand-logo {
    width: 190px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    min-height: calc(100svh - 84px);
  }

  .hero-copy {
    padding-left: 42px;
    padding-right: 38px;
  }

  .hero h1 {
    font-size: clamp(49px, 6.7vw, 68px);
  }

  .heritage {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  }

  .heritage-intro {
    display: none;
  }

  .jewels-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .jewel-card:nth-child(3n + 2) {
    transform: none;
  }

  .jewel-card:nth-child(even) {
    transform: translateY(46px);
  }

  .atelier,
  .final-cta {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  }

  .atelier-visual {
    min-height: 760px;
  }

  .atelier h2,
  .final-cta h2 {
    font-size: clamp(39px, 5vw, 52px);
  }

  .experience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-list li:nth-child(3n + 2),
  .experience-list li:nth-child(3n + 3) {
    padding-left: 0;
  }

  .experience-list li:nth-child(even) {
    padding-left: 26px;
  }

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

  .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: 22px;
    --section-space: 84px;
  }

  .brand-header {
    height: 76px;
    padding: 0 20px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  .brand-logo {
    width: 166px;
  }

  .header-cta {
    border: 1px solid var(--blue);
    color: var(--blue);
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
  }

  .header-cta span:first-child {
    display: none;
  }

  .header-cta span:last-child {
    font-size: 17px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    padding: 44px 22px 38px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 59px);
    line-height: 0.98;
  }

  .hero-body {
    font-size: 15px;
    line-height: 1.58;
    margin: 22px 0 24px;
  }

  .primary-button,
  .outline-button,
  .light-button {
    justify-content: center;
    padding: 0 18px;
    width: 100%;
  }

  .primary-button span:last-child,
  .outline-button span:last-child,
  .light-button span:last-child {
    margin-left: auto;
  }

  .hero-visual {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .hero-caption {
    bottom: 68px;
    left: 22px;
    right: 22px;
  }

  .carousel-progress {
    bottom: 25px;
    left: 22px;
    right: auto;
  }

  .heritage {
    display: flex;
    flex-direction: column;
  }

  .heritage h2,
  .jewels-heading h2,
  .atelier h2,
  .experience h2,
  .final-cta h2 {
    font-size: clamp(39px, 11vw, 50px);
    line-height: 1.04;
  }

  .heritage-text {
    margin-top: 30px;
  }

  .heritage-signature {
    width: 188px;
  }

  .heritage-visual {
    aspect-ratio: 4 / 5;
    margin: 30px 0 0;
    width: 100%;
  }

  .jewels-heading {
    gap: 24px;
    margin-bottom: 54px;
  }

  .jewel-grid {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .jewel-card:nth-child(even) {
    transform: none;
  }

  .jewel-card figure {
    aspect-ratio: 4 / 5;
  }

  .jewel-card h3 {
    font-size: 31px;
  }

  .jewel-card p,
  .editorial-link {
    margin-left: 31px;
  }

  .section-action {
    margin-top: 72px;
  }

  .atelier,
  .final-cta {
    display: flex;
    flex-direction: column;
  }

  .atelier-visual,
  .final-cta__visual {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .atelier-copy,
  .final-cta__copy {
    padding: 76px 22px 84px;
  }

  .atelier-copy > p:not(.eyebrow),
  .final-cta__copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .experience {
    display: flex;
    flex-direction: column;
    gap: 54px;
  }

  .experience-heading > p:last-child {
    font-size: 15px;
    margin-top: 26px;
  }

  .experience-visual {
    aspect-ratio: 4 / 5;
    width: 100%;
  }

  .experience-list {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .experience-list li,
  .experience-list li:nth-child(even) {
    min-height: 105px;
    padding: 20px 0;
  }

  .experience-list span {
    margin-bottom: 18px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 64px 22px 100px;
  }

  .footer-brand img {
    width: 175px;
  }

  .footer-legal {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 16px;
    gap: 10px;
    height: 54px;
    padding: 0 18px;
    right: 16px;
    width: auto;
  }

  .whatsapp-float svg {
    height: 24px;
    width: 24px;
  }

  .whatsapp-float span {
    display: inline;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
}

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

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

  .hero-image {
    animation: none !important;
    opacity: 0;
  }

  .hero-image--1 {
    opacity: 1;
  }

  .carousel-progress__item::after {
    animation: none !important;
  }

  .carousel-progress__item--1::after {
    transform: scaleX(1);
  }
}
