@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #12110f;
  --ink-soft: #24211d;
  --paper: #f7f1e5;
  --paper-light: #fffaf1;
  --red: #c9332b;
  --red-dark: #a5231e;
  --gold: #f1b544;
  --gold-light: #f8d98a;
  --sea: #007b89;
  --white: #fff;
  --muted: #6f685f;
  --line: rgba(18, 17, 15, 0.14);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(28, 20, 12, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 84px;
  --font-display: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 700;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--sea));
  box-shadow: 0 0 16px rgba(241, 181, 68, 0.48);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.section {
  padding: 130px 0;
}

.section-shell,
.header-shell,
.footer-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.section-heading {
  max-width: 830px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.scrolled {
  background: rgba(247, 241, 229, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(30, 20, 10, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(18, 17, 15, 0.08);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}

.language-toggle span:not(.language-active) {
  color: #9c958a;
}

.language-toggle .language-active {
  color: var(--red);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

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

.button:hover svg:last-child {
  transform: translateX(3px);
}

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

.button-red:hover {
  background: var(--red-dark);
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
}

.button-ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button-ghost:hover {
  color: var(--white);
  background: var(--ink);
}

.button-cream {
  color: var(--ink);
  background: var(--paper);
}

.button-cream:hover {
  background: var(--white);
}

.button-outline {
  border-color: var(--ink);
}

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

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 10% 20%, rgba(241, 181, 68, 0.16), transparent 28%),
    var(--paper);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: calc(860px - var(--header-height));
  overflow: hidden;
  animation: hero-visual-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0, transparent 22%),
    linear-gradient(180deg, rgba(18, 17, 15, 0.06), rgba(18, 17, 15, 0.34));
  content: "";
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  z-index: 3;
  right: -80px;
  bottom: -90px;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(241, 181, 68, 0.72);
  border-radius: 50%;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: contrast(1.03);
}

[data-parallax] {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.06);
  will-change: transform;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  top: 54px;
  right: 42px;
  display: grid;
  align-content: center;
  width: 112px;
  height: 112px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
  animation: stamp-float 4.8s ease-in-out 1.1s infinite;
}

.hero-stamp span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-stamp strong {
  margin: 2px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-copy {
  z-index: 5;
  align-self: center;
  width: min(670px, calc(100% - 56px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 70px 56px 70px 0;
  grid-column: 1;
  grid-row: 1;
}

.hero-copy > * {
  opacity: 0;
  animation: hero-copy-in 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 180ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 270ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 390ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 500ms;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4.1rem, 7.4vw, 7.6rem);
  font-weight: 700;
  line-height: 0.91;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-description {
  max-width: 570px;
  margin-bottom: 34px;
  color: #4e4942;
  font-size: clamp(1.02rem, 1.4vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-scroll {
  position: absolute;
  z-index: 6;
  bottom: 28px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero-scroll i {
  display: inline-block;
  width: 54px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: scroll-line 1.8s ease-in-out infinite;
}

.marquee {
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 20px 0;
  gap: 24px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marquee i {
  color: var(--gold);
  font-size: 0.5rem;
  font-style: normal;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

@keyframes hero-visual-in {
  from {
    clip-path: inset(0 0 100% 0);
  }

  to {
    clip-path: inset(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes stamp-float {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }

  50% {
    transform: translateY(-9px) rotate(3deg);
  }
}

@keyframes scroll-line {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.35);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.experience {
  background:
    linear-gradient(rgba(18, 17, 15, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 15, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.experience .section-heading {
  margin-bottom: 74px;
}

.experience-grid {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: 1.15fr 0.82fr 0.76fr;
}

.experience figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.experience figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-main {
  height: 580px;
}

.experience-side {
  height: 420px;
}

.experience figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.74));
  content: "";
}

.experience figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  color: var(--white);
  gap: 12px;
}

.experience figcaption span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
}

.experience figcaption strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.experience-copy {
  padding: 10px 18px 44px;
}

.experience-copy p {
  color: #4d4841;
}

.experience-copy p:first-child {
  color: var(--ink);
  font-size: 1.18rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.menu-section {
  color: var(--white);
  background: var(--ink);
}

.menu-intro {
  display: grid;
  align-items: end;
  margin-bottom: 62px;
  gap: 54px;
  grid-template-columns: 1.3fr 0.7fr;
}

.menu-intro > p {
  max-width: 440px;
  margin-bottom: 6px;
  color: #bdb6ab;
}

.flavor-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 310px 310px;
}

.flavor-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.flavor-card-large {
  grid-row: 1 / 3;
}

.flavor-card-accent {
  grid-column: 2 / 4;
}

.flavor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flavor-card:hover img {
  transform: scale(1.035);
}

.flavor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.86));
}

.flavor-copy {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.flavor-copy > span {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
}

.flavor-copy h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
}

.flavor-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 24px;
}

.menu-footer p {
  margin-bottom: 0;
  color: #aaa399;
  font-size: 0.86rem;
}

.menu-footer strong {
  color: var(--gold);
}

.ocean-section {
  display: grid;
  min-height: 800px;
  background: var(--gold);
  grid-template-columns: 0.85fr 1fr;
  grid-template-rows: 1fr auto;
}

.ocean-image {
  grid-row: 1 / 3;
  overflow: hidden;
}

.ocean-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ocean-copy {
  align-self: center;
  max-width: 650px;
  padding: 90px 80px 54px;
}

.ocean-copy .eyebrow {
  color: var(--red);
}

.ocean-copy h2 {
  margin-bottom: 32px;
}

.ocean-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: #40331d;
}

.ocean-quote {
  display: grid;
  align-items: end;
  padding: 36px 80px 44px;
  border-top: 1px solid rgba(18, 17, 15, 0.2);
  gap: 12px;
  grid-template-columns: auto 1fr;
}

.ocean-quote > span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.75;
}

.ocean-quote blockquote {
  max-width: 600px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.3;
}

.ocean-quote small {
  color: #66522f;
  font-size: 0.68rem;
  font-weight: 700;
  grid-column: 2;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 0, rgba(201, 51, 43, 0.3), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(0, 123, 137, 0.26), transparent 32%),
    var(--ink);
}

.services::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
  pointer-events: none;
}

.services-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: clamp(52px, 7vw, 108px);
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
}

.services-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.services-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5vw, 5.9rem);
}

.services-intro > p:not(.eyebrow) {
  max-width: 480px;
  color: #bcb5aa;
  font-size: 1rem;
}

.plaza-portal {
  position: relative;
  margin-top: 52px;
  padding: 28px 30px 30px;
  overflow: hidden;
  color: var(--ink);
  background: var(--gold);
  border-radius: 2px 24px 2px 2px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.plaza-portal::after {
  position: absolute;
  top: -50px;
  right: -45px;
  width: 150px;
  height: 150px;
  border: 25px solid rgba(201, 51, 43, 0.16);
  border-radius: 50%;
  content: "";
}

.plaza-portal-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plaza-portal strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.plaza-portal p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: #57431f;
  font-size: 0.83rem;
}

.services-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 288px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  flex-direction: column;
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 128px;
  height: 128px;
  border: 20px solid var(--gold);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.service-card.reveal.is-visible:hover {
  z-index: 2;
  border-color: rgba(241, 181, 68, 0.58);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
  transform: translateY(-7px);
}

.service-card:hover::after {
  opacity: 0.14;
  transform: scale(1);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  color: var(--gold);
  border: 1px solid rgba(241, 181, 68, 0.5);
  border-radius: 50%;
  place-items: center;
  transition:
    color 280ms ease,
    background 280ms ease,
    transform 280ms ease;
}

.service-card:hover .service-icon {
  color: var(--ink);
  background: var(--gold);
  transform: rotate(-8deg) scale(1.05);
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 11px;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-bottom: 0;
  color: #aaa399;
  font-size: 0.82rem;
}

.service-card-cta {
  justify-content: flex-end;
  color: var(--ink);
  background: var(--red);
  border-color: var(--red);
}

.service-card-cta .service-number {
  color: rgba(255, 255, 255, 0.52);
}

.service-card-cta .service-cta-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card-cta h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.service-card-cta .button {
  align-self: flex-start;
  margin-top: 18px;
}

.service-card-cta.reveal.is-visible:hover {
  background: var(--red-dark);
  border-color: var(--gold);
}

.service-note {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 34px auto 0;
  color: #7f786e;
  font-size: 0.72rem;
  text-align: right;
}

.services-brandmark {
  position: absolute;
  top: 42px;
  left: clamp(28px, 4vw, 70px);
  display: grid;
  width: 168px;
  height: 168px;
  padding: 26px;
  overflow: hidden;
  background: #f6efe3;
  border: 1px solid rgba(241, 181, 68, 0.58);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  opacity: 0.94;
  place-items: center;
  pointer-events: none;
}

.services-brandmark img {
  width: 100%;
  height: auto;
}

.plaza-directory {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 17, 15, 0.035) 1px, transparent 1px),
    #eee6d8;
  background-size: 66px 66px;
}

.plaza-watermark {
  position: absolute;
  top: 52px;
  right: -0.05em;
  color: rgba(201, 51, 43, 0.045);
  font-family: var(--font-display);
  font-size: clamp(10rem, 27vw, 29rem);
  font-weight: 800;
  letter-spacing: -0.11em;
  line-height: 0.78;
  pointer-events: none;
  user-select: none;
}

.plaza-header {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  margin-bottom: 64px;
  gap: clamp(36px, 7vw, 100px);
  grid-template-columns: 1.15fr 0.85fr;
}

.plaza-intro {
  max-width: 480px;
  padding-bottom: 8px;
}

.plaza-intro > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.plaza-business-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plaza-business {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: 0 18px 58px rgba(43, 28, 14, 0.12);
  grid-template-rows: auto 1fr;
  transition:
    box-shadow 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.plaza-business.reveal.is-visible:hover {
  z-index: 2;
  box-shadow: 0 30px 80px rgba(43, 28, 14, 0.2);
  transform: translateY(-8px);
}

.plaza-business-media {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f7f2e9;
}

.plaza-business-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(18, 17, 15, 0.16));
  content: "";
  pointer-events: none;
}

.plaza-business-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.plaza-business:hover .plaza-business-media img {
  transform: scale(1.018);
}

.plaza-business-bubble {
  color: var(--white);
  background: var(--sea);
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  grid-template-rows: none;
}

.plaza-business-bubble .plaza-business-media {
  aspect-ratio: 16 / 9;
  background: #63b5c3;
}

.plaza-business-bubble .plaza-business-media::after {
  background: linear-gradient(90deg, transparent 70%, rgba(18, 17, 15, 0.12));
}

.plaza-business-bubble .plaza-business-copy {
  justify-content: center;
  min-height: 0;
  padding: clamp(34px, 4vw, 62px);
}

.plaza-business-bubble .plaza-business-tag {
  color: var(--ink);
  background: var(--gold);
}

.plaza-business.plaza-business-bubble p {
  color: rgba(255, 255, 255, 0.78);
}

.plaza-business-bubble h3 {
  font-size: clamp(2.25rem, 3.6vw, 4rem);
}

.plaza-business-bubble .directory-link {
  color: var(--gold);
}

.plaza-business-copy {
  position: relative;
  display: flex;
  min-height: 238px;
  padding: 28px 28px 30px;
  flex-direction: column;
}

.plaza-business-tag {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 5px 10px;
  color: var(--red-dark);
  background: rgba(201, 51, 43, 0.09);
  border-radius: 99px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plaza-business h3 {
  margin-bottom: 13px;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.plaza-business p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.plaza-business small {
  margin-top: auto;
  color: var(--sea);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-link {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--sea);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 800;
}

.plaza-information-row {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 70px;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
}

.plaza-story,
.plaza-connect {
  min-height: 510px;
  padding: clamp(42px, 6vw, 74px);
}

.plaza-story {
  color: var(--ink);
  background: var(--gold);
}

.plaza-story h3,
.plaza-connect h3 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

.plaza-story > p:not(.eyebrow) {
  max-width: 580px;
  color: #5b4722;
}

.plaza-connect {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 100%, rgba(241, 181, 68, 0.22), transparent 34%),
    var(--sea);
}

.plaza-connect-links {
  display: grid;
  margin-bottom: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.plaza-connect-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
}

.plaza-connect-links svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.plaza-connect-links a:hover svg {
  transform: translateX(5px);
}

.plaza-partners {
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.plaza-partners img {
  width: 100%;
  height: 68px;
  padding: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
}

.locations {
  background: var(--paper-light);
}

.locations-header {
  display: grid;
  align-items: end;
  margin-bottom: 64px;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
}

.locations-header > p {
  max-width: 460px;
  margin-bottom: 8px;
  color: var(--muted);
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.location-card {
  position: relative;
  display: grid;
  min-height: 560px;
  padding: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  grid-template-rows: auto 1fr auto;
}

.location-card::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 270px;
  height: 270px;
  border: 46px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.09;
}

.location-card-dark {
  color: var(--white);
  background: var(--ink);
}

.location-card-gold {
  color: var(--ink);
  background: var(--gold);
}

.location-number {
  width: max-content;
  padding: 6px 11px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 0.64rem;
  font-weight: 700;
}

.location-card > div:nth-child(2) {
  align-self: center;
}

.location-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card-gold .location-label {
  color: var(--red-dark);
}

.location-card h3 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.location-card address {
  max-width: 420px;
  margin-bottom: 30px;
  font-style: normal;
  opacity: 0.72;
}

.location-card dl {
  margin: 0;
}

.location-card dl div {
  display: grid;
  padding: 14px 0;
  border-top: 1px solid currentColor;
  opacity: 0.76;
  gap: 14px;
  grid-template-columns: 92px 1fr;
}

.location-card dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card dd {
  margin: 0;
  font-size: 0.82rem;
}

.button-location {
  z-index: 2;
  align-self: end;
  justify-self: start;
  border-color: currentColor;
}

.location-card-dark .button-location:hover {
  color: var(--ink);
  background: var(--white);
}

.location-card-gold .button-location:hover {
  color: var(--white);
  background: var(--ink);
}

.schedule-note {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.map-preview-grid {
  display: grid;
  margin-top: 66px;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.map-preview-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-preview-center {
  order: 1;
}

.map-preview-plaza {
  order: 2;
}

.map-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px 24px;
  gap: 20px;
}

.map-preview-heading div {
  display: grid;
}

.map-preview-heading span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.map-preview-heading strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.map-preview-heading a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--sea);
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
}

.map-preview-grid iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.social-section {
  display: grid;
  min-height: 620px;
  color: var(--white);
  background: var(--sea);
  grid-template-columns: 0.8fr 1.2fr;
}

.social-photo {
  overflow: hidden;
}

.social-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-copy {
  align-self: center;
  max-width: 820px;
  padding: 90px 80px;
}

.social-copy h2 {
  margin-bottom: 46px;
}

.social-copy h2 a {
  display: inline-block;
  color: var(--gold);
  border-bottom: 0.07em solid currentColor;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.social-links a:hover {
  color: var(--sea);
  background: var(--white);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links .icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(241, 181, 68, 0.28), transparent 30%),
    radial-gradient(circle at 85% 90%, rgba(201, 51, 43, 0.16), transparent 26%);
  content: "";
}

.contact-shell {
  position: relative;
  z-index: 2;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  max-width: 850px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.contact-shell > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: rgba(201, 51, 43, 0.055);
  font-family: Georgia, serif;
  font-size: min(34vw, 520px);
  font-style: italic;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-8deg);
  user-select: none;
}

.site-footer {
  padding: 54px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-shell {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

.brand-footer .brand-copy small {
  color: #aaa399;
}

.footer-shell > p {
  margin-bottom: 0;
  color: #c1bbb0;
  text-align: center;
}

.footer-shell > p small {
  color: #777169;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: #c1bbb0;
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
}

.mobile-action-bar {
  display: none;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 28px;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale, 1));
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-left {
  --reveal-x: -34px;
  --reveal-y: 0px;
}

.reveal-right {
  --reveal-x: 34px;
  --reveal-y: 0px;
}

.reveal-scale {
  --reveal-y: 18px;
  --reveal-scale: 0.965;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 1000px);
  }

  .main-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-copy {
    margin-left: 36px;
    padding-right: 28px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 6rem);
  }

  .experience-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .experience-copy {
    padding-right: 0;
  }

  .experience-side {
    display: none;
  }

  .ocean-copy,
  .ocean-quote,
  .social-copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .services-layout {
    gap: 44px;
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  }

  .service-card {
    min-height: 276px;
    padding: 26px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
    --shell: calc(100% - 32px);
  }

  .section {
    padding: 90px 0;
  }

  .site-header {
    background: rgba(247, 241, 229, 0.95);
    border-color: var(--line);
    backdrop-filter: blur(16px);
  }

  .header-shell {
    justify-content: space-between;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .menu-toggle {
    z-index: 102;
    display: block;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 auto;
    display: grid;
    align-content: center;
    height: calc(100dvh - var(--header-height));
    margin: 0;
    padding: 40px 28px 90px;
    color: var(--white);
    background: var(--ink);
    gap: 0;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 3.1rem);
    letter-spacing: -0.04em;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: var(--header-height) 0 0;
    flex-direction: column-reverse;
  }

  .hero-copy {
    width: var(--shell);
    margin: 0 auto;
    padding: 58px 0 68px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.6rem, 13vw, 6.3rem);
  }

  .hero-visual {
    width: 100%;
    min-height: 560px;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
  }

  .hero-scroll {
    display: none;
  }

  .experience .section-heading {
    margin-bottom: 48px;
  }

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

  .experience-main {
    height: 520px;
  }

  .experience-copy {
    padding: 30px 0 0;
  }

  .menu-intro,
  .locations-header {
    gap: 28px;
    grid-template-columns: 1fr;
  }

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

  .services-intro {
    position: static;
    display: grid;
    align-items: end;
    gap: 28px;
    grid-template-columns: 1fr 0.78fr;
  }

  .services-intro .eyebrow,
  .services-intro h2 {
    grid-column: 1;
  }

  .services-intro > p:not(.eyebrow) {
    grid-column: 1;
  }

  .plaza-portal {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .service-note {
    text-align: left;
  }

  .plaza-header {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .plaza-business-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plaza-business-media {
    height: auto;
  }

  .plaza-information-row {
    grid-template-columns: 1fr;
  }

  .map-preview-grid {
    grid-template-columns: 1fr;
  }

  .flavor-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px 300px;
  }

  .flavor-card-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .flavor-card-accent {
    grid-column: 1 / 3;
  }

  .ocean-section {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .ocean-copy {
    padding: 72px 38px 44px;
  }

  .ocean-quote {
    padding: 34px 38px 42px;
  }

  .location-card {
    min-height: 620px;
    padding: 36px;
  }

  .social-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .social-copy {
    padding: 70px 36px;
  }

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

  .footer-shell > p {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    padding-bottom: 66px;
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .section {
    padding: 78px 0;
  }

  .brand-copy small {
    display: none;
  }

  .language-toggle {
    padding-right: 0;
  }

  .hero-copy {
    padding: 46px 0 56px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-stamp {
    top: 28px;
    right: 24px;
    width: 92px;
    height: 92px;
  }

  .hero-visual::after {
    right: -72px;
    bottom: -62px;
    width: 250px;
    height: 250px;
    border-width: 38px;
  }

  .experience-main {
    height: 420px;
  }

  .experience-grid {
    gap: 0;
  }

  .menu-intro {
    margin-bottom: 42px;
  }

  .flavor-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 400px);
  }

  .flavor-card,
  .flavor-card-large,
  .flavor-card-accent {
    grid-column: auto;
    grid-row: auto;
  }

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

  .menu-footer .button {
    width: 100%;
  }

  .services-intro {
    display: block;
  }

  .plaza-portal {
    margin-top: 38px;
  }

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

  .service-card {
    min-height: 248px;
  }

  .plaza-header {
    margin-bottom: 42px;
  }

  .plaza-business-grid {
    grid-template-columns: 1fr;
  }

  .plaza-business-media {
    height: auto;
  }

  .plaza-business-bubble {
    grid-template-columns: 1fr;
  }

  .plaza-business-bubble .plaza-business-copy {
    min-height: 250px;
    padding: 34px 26px 38px;
  }

  .plaza-business-copy {
    min-height: 214px;
    padding: 26px 24px 28px;
  }

  .plaza-information-row {
    margin-top: 50px;
  }

  .plaza-story,
  .plaza-connect {
    min-height: 0;
    padding: 48px 24px;
  }

  .plaza-partners {
    grid-template-columns: 1fr 1fr;
  }

  .map-preview-grid {
    margin-top: 48px;
  }

  .map-preview-heading {
    align-items: flex-start;
    min-height: 108px;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .map-preview-grid iframe {
    height: 330px;
  }

  .services-brandmark {
    top: 18px;
    right: 22px;
    left: auto;
    width: 82px;
    height: 82px;
    padding: 13px;
    opacity: 0.94;
  }

  .ocean-section {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .ocean-image {
    height: 570px;
  }

  .ocean-copy {
    padding: 68px 24px 44px;
  }

  .ocean-quote {
    padding: 34px 24px 48px;
  }

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

  .location-card {
    min-height: 590px;
    padding: 30px 26px;
  }

  .location-card dl div {
    grid-template-columns: 78px 1fr;
  }

  .social-section {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .social-photo {
    height: 420px;
  }

  .social-copy {
    padding: 66px 24px 74px;
  }

  .social-copy h2 {
    margin-bottom: 38px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
    padding-inline: 18px;
    font-size: 0.82rem;
  }

  .site-footer {
    padding: 40px 0;
  }

  .footer-shell {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .mobile-action-bar a:first-child {
    background: var(--red);
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none;
    will-change: auto;
  }
}
