@charset "UTF-8";
@import url("bootstrap.min.css");
:root {
  --av-background: #f9f5ec;
  --av-foreground: #13110f;
  --av-card: #fefbf6;
  --av-primary: #a97e2c;
  --av-primary-foreground: #fefbf6;
  --av-secondary: #ebe7df;
  --av-muted: #e8e4dd;
  --av-muted-foreground: #585550;
  --av-border: rgba(169, 126, 44, 0.25);
  --av-input: rgba(169, 126, 44, 0.25);
  --av-ring: rgba(169, 126, 44, 0.5);
  --av-danger: #cc272e;
  --av-display: Playfair Display, Georgia, serif;
  --av-sans: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --av-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, monospace;
  --av-radius: 0.25rem;
  --av-ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --av-container: 90rem;
  --av-gutter: 1.5rem;
  --av-bg: var(--av-background);
  --av-fg: var(--av-foreground);
  --av-accent: var(--av-primary);
  --av-muted-fg: var(--av-muted-foreground);
  --aventyz-accent: var(--av-primary);
  --aventyz-cream: var(--av-background);
  --aventyz-ink: var(--av-foreground);
  --aventyz-display: var(--av-display);
  --aventyz-ease: var(--av-ease-cinema);
}

@media (min-width: 48rem) {
  :root {
    --av-gutter: 2.5rem;
  }
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  height: 3.5rem;
  color: #ffffff;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header__inner {
  width: min(100%, 90rem);
  height: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  justify-self: start;
  align-items: center;
}

.site-header__brand img {
  display: block;
  width: auto;
  height: 2rem;
  object-fit: contain;
  transition: transform 0.2s ease;
}
@media (min-width: 768px) {
  .site-header__brand img {
    height: 2.5rem;
  }
}

.site-header__brand:hover img {
  transform: scale(1.05);
}

.site-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.site-header__nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-header__nav-link:hover {
  color: #ffffff;
}

.site-header__nav-link.is-active {
  color: #a97e2c;
}

.site-header__actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 1rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.language-switcher__link {
  padding-bottom: 0.125rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.language-switcher__link:hover {
  color: #ffffff;
}

.language-switcher__link.is-active {
  color: #a97e2c;
  border-bottom-color: #a97e2c;
}

.language-switcher__separator {
  color: rgba(255, 255, 255, 0.3);
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__cta:hover {
  color: #000000;
  background: #ffffff;
}

.site-header__toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
  color: inherit;
  border: 0;
  background: transparent;
}

.site-header__toggle span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.site-header__drawer {
  overflow: hidden;
  max-height: 0;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  visibility: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.5s;
}

.site-header__drawer.is-open {
  max-height: 24rem;
  visibility: visible;
  transition-delay: 0s;
}

.site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.site-header__mobile-nav a {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__mobile-nav a.is-active {
  color: #a97e2c;
}

@media (min-width: 48rem) {
  .site-header {
    height: 4rem;
  }
  .site-header__inner {
    padding-inline: 2.5rem;
  }
  .site-header__brand img {
    height: 2.5rem;
  }
  .site-header__nav, .site-header__cta {
    display: flex;
  }
  .site-header__toggle, .site-header__drawer {
    display: none;
  }
}
@media (min-width: 64rem) {
  .site-header__nav {
    gap: 2.5rem;
  }
}
.site-footer {
  color: #13110f;
  background: #f9f5ec;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}

.site-footer__main,
.site-footer__meta-inner {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-footer__main {
  padding-block: 5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer__diamond {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  background: #a97e2c;
  transform: rotate(45deg);
}

.site-footer__statement {
  max-width: 28rem;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.site-footer__statement span {
  color: transparent;
  -webkit-text-stroke: 1px #a97e2c;
}

.site-footer__heading,
.site-footer__contact,
.site-footer__nav {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__heading {
  margin: 0 0 0.75rem;
  color: #a97e2c;
}

.site-footer__contact > a {
  display: block;
  width: fit-content;
  color: #13110f;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-decoration: none;
  text-transform: none;
}

.site-footer__contact > a + a {
  margin-top: 0.25rem;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.75rem;
}

.site-footer__socials a {
  display: inline-flex;
  color: #13110f;
}

.site-footer__socials svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__socials svg path[d="M2 9h4v12H2z"] {
  fill: currentColor;
  stroke: none;
}

.site-footer__nav a {
  display: block;
  width: fit-content;
  color: rgba(19, 17, 15, 0.7);
  text-decoration: none;
}

.site-footer__nav a + a {
  margin-top: 0.75rem;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #a97e2c;
}

.site-footer__meta {
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}

.site-footer__meta-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  padding-block: 1.5rem;
  color: #585550;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .site-footer__main, .site-footer__meta-inner {
    padding-inline: 2.5rem;
  }
  .site-footer__statement {
    font-size: 3rem;
  }
  .site-footer__meta-inner {
    flex-direction: row;
  }
}
.home-page {
  overflow: hidden;
  color: #13110f;
  background: #f9f5ec;
}

.home-container {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.home-section {
  padding-block: 8rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}
.home-section--first {
  padding-top: 0;
  border-top: 0;
}

.home-section--major {
  padding-block: 8rem;
}

.home-surface {
  background: rgba(254, 251, 246, 0.3);
}

.home-heading {
  margin: 1.5rem 0 0;
  font: 400 clamp(3rem, 7vw, 4.5rem)/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-transform: uppercase;
}

.home-copy {
  margin: 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.home-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #a97e2c;
  font: 400 0.625rem/normal "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.home-kicker::before, .home-kicker--both::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  flex: none;
  background: #a97e2c;
  transform: rotate(45deg);
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  color: #fefbf6;
  background: #a97e2c;
  font: 400 0.6875rem/1.25 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
}

.home-button span {
  transition: transform 0.2s;
}

.home-button:hover {
  color: #fefbf6;
  background: #13110f;
}

.home-button:hover span {
  transform: translateX(0.25rem);
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  color: #a97e2c;
  border-bottom: 1px solid;
  font: 400 0.6875rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.home-text-link:hover {
  gap: 1.25rem;
  color: #a97e2c;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
  color: #ffffff;
  background: #000000;
  text-align: center;
  overflow: hidden;
}

.home-hero__layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  transition: transform 0.12s linear;
}

.home-hero__layer video, .home-hero__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__layer--mid {
  z-index: 1;
  opacity: 0.1;
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(249, 245, 236, 0.3), transparent 50%, #f9f5ec), radial-gradient(ellipse at center, transparent 55%, #f9f5ec 100%);
}

.home-hero__atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.home-hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 72rem);
  padding-top: 6rem;
  will-change: transform;
  transition: transform 0.12s linear;
}

.home-hero__eyebrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  font: 400 0.625rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.home-hero__eyebrows .home-kicker {
  color: #a97e2c;
}

.home-hero h1 {
  margin: 1.5rem 0 0;
  font: 400 11vw/0.9 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
}

.home-hero__stroke {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
}

.home-hero__subtitle {
  max-width: 48rem;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #000000;
}

.home-hero__subtitle i {
  width: 4rem;
  height: 2px;
  flex: 0 0 auto;
  background: #a97e2c;
}

.home-hero__subtitle p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.625;
}

.home-hero .home-button {
  margin-top: 3rem;
}

.home-hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #585550;
  font: 400 0.625rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.home-hero__scroll i {
  width: 1px;
  height: 3rem;
  background: linear-gradient(transparent, #a97e2c, transparent);
}

.home-enter {
  opacity: 0;
  animation: home-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-enter--fade {
  animation-name: home-fade;
  animation-duration: 1.2s;
  animation-delay: 0.2s;
}

.home-enter--title-one {
  animation-delay: 0.1s;
}

.home-enter--title-two {
  animation-delay: 0.25s;
}

.home-enter--subtitle {
  animation-delay: 0.45s;
}

.home-enter--cta {
  animation-delay: 0.6s;
}

@keyframes home-enter {
  from {
    opacity: 0;
    transform: translateY(2.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes home-fade {
  to {
    opacity: 1;
  }
}
.home-intro__media {
  aspect-ratio: 16/9;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.home-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro .home-copy {
  font-size: 0.875rem;
}

.home-section__heading {
  max-width: 48rem;
  margin-bottom: 5rem;
}

.home-services__list {
  border-block: 1px solid rgba(169, 126, 44, 0.25);
}

.home-service {
  display: grid;
  gap: 1.5rem;
  align-items: baseline;
  padding: 2.5rem 0.5rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}

.home-service:first-child {
  border-top: 0;
}

.home-service__number {
  color: #a97e2c;
  font: 0.75rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.home-service h3 {
  margin: 0;
  font: 400 1.875rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.home-service p {
  margin: 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.home-service__feature {
  color: rgba(169, 126, 44, 0.8);
  font: 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-social .home-copy {
  max-width: 60ch;
}

.home-visual__title {
  max-width: 56rem;
  line-height: 0.95;
}

.home-visual__grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.visual-card__media {
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.visual-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card h3, .home-concierge h3 {
  margin: 0 0 0.75rem;
  font: 400 1.5rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.visual-card p {
  margin: 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.home-events {
  position: relative;
  padding-block: 10rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.home-events__media, .home-contact__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}

.home-events__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249, 245, 236, 0.7), rgba(249, 245, 236, 0.6), #f9f5ec);
}

.home-events__media img, .home-contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-events .home-container, .home-contact .home-container {
  position: relative;
  z-index: 1;
}

.home-events .home-heading {
  max-width: 64rem;
  margin-top: 2rem;
}

.home-saut__title {
  max-width: 56rem;
}

.home-saut__copy {
  margin-top: 3rem;
}

.home-saut__lead {
  margin: 0;
  color: rgba(19, 17, 15, 0.9);
  font-size: 1rem;
  line-height: 1.625;
}

.home-saut__grid {
  display: grid;
  gap: 1px;
  margin-top: 5rem;
  padding: 1px;
  background: rgba(169, 126, 44, 0.25);
}

.saut-pillar {
  height: 100%;
  padding: 2rem;
  background: #f9f5ec;
}

.saut-pillar__number {
  display: block;
  margin-bottom: 1rem;
  color: #a97e2c;
  font: 0.625rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.saut-pillar h3 {
  margin: 0 0 1rem;
  font: 400 1.875rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.saut-pillar p {
  margin: 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.home-marquee {
  padding-block: 1.5rem;
  border-block: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.home-marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: home-marquee 30s linear infinite;
}

.home-marquee__track span {
  white-space: nowrap;
  font: 400 1.875rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.home-marquee__track i {
  width: 0.5rem;
  height: 0.5rem;
  background: #a97e2c;
  transform: rotate(45deg);
}

@keyframes home-marquee {
  to {
    transform: translateX(-50%);
  }
}
.home-concierge__features {
  margin-top: 1rem;
}

.home-concierge__media {
  aspect-ratio: 16/10;
  margin-bottom: 2rem;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.home-concierge__media img, .home-concierge__extras img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.home-concierge h3 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.home-concierge__extras {
  max-width: 48rem;
  margin: 4rem auto 0;
}

.home-concierge__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #a97e2c;
  font: 0.625rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.home-concierge__divider i {
  height: 1px;
  flex: 1;
  background: rgba(169, 126, 44, 0.25);
}

.home-concierge__extras .col-4 > div {
  aspect-ratio: 1;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.home-concierge__extras .col-4 > div:hover img {
  transform: scale(1.05);
}

.home-partners {
  padding-block: 6rem;
}

.home-partners__heading {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.home-partners__heading .home-kicker {
  justify-content: center;
}

.home-partners__heading .home-copy {
  margin: 1.5rem auto 0;
}

.home-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(169, 126, 44, 0.25);
}

.home-partners__grid > div {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #f9f5ec;
}

.home-partners__grid img {
  width: auto;
  max-width: 100%;
  max-height: 6rem;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.5s;
}

.home-partners__grid > div:hover img {
  opacity: 1;
}

@media (max-width: 47.999rem) {
  .home-partners__grid {
    background: #f9f5ec;
  }
}
.home-contact {
  position: relative;
  padding-block: 8rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
  text-align: center;
  overflow: hidden;
}

.home-contact__media {
  opacity: 0.3;
}

.home-contact__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #f9f5ec, rgba(249, 245, 236, 0.8), rgba(249, 245, 236, 0.4));
}

.home-contact .home-kicker {
  justify-content: center;
}

.home-contact .home-heading {
  max-width: 64rem;
  margin-inline: auto;
}

.home-contact .home-copy {
  max-width: 36rem;
  margin: 2rem auto 0;
  font-size: 1rem;
}

.home-contact .home-button {
  margin-top: 3rem;
  padding: 1.25rem 2.5rem;
}

@media (max-width: 47.999rem) {
  .home-intro {
    padding-bottom: 3rem;
  }
  .home-services {
    padding-top: 3rem;
  }
}
@media (min-width: 48rem) {
  .home-container {
    padding-inline: 2.5rem;
  }
  .home-section--major {
    padding-block: 12rem;
  }
  .home-heading {
    font-size: 4.5rem;
  }
  .home-copy, .home-intro .home-copy {
    font-size: 1rem;
  }
  .home-hero {
    padding-inline: 2.5rem;
  }
  .home-hero h1 {
    font-size: 8vw;
  }
  .home-hero__subtitle i {
    width: 6rem;
  }
  .home-hero__subtitle p {
    font-size: 1rem;
  }
  .home-service {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-block: 3rem;
  }
  .home-service__number {
    grid-column: span 1;
  }
  .home-service h3 {
    grid-column: span 4;
    font-size: 2.25rem;
  }
  .home-service p {
    grid-column: span 5;
  }
  .home-service__feature {
    grid-column: span 2;
    text-align: right;
  }
  .home-visual__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .visual-card h3 {
    font-size: 1.875rem;
  }
  .home-events {
    padding-block: 14rem;
  }
  .home-saut__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .saut-pillar {
    padding: 2.5rem;
  }
  .home-marquee__track span {
    font-size: 3rem;
  }
  .home-concierge h3 {
    font-size: 3rem;
  }
  .home-partners {
    padding-block: 8rem;
  }
  .home-partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-partners__grid > div {
    padding: 1.5rem;
  }
  .home-partners__grid img {
    max-height: 9rem;
  }
  .home-contact {
    padding-block: 12rem;
  }
}
@media (min-width: 64rem) {
  .home-saut__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .home-enter {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .home-marquee__track {
    animation-play-state: paused;
  }
}
.home-hero__layer--base {
  overflow: hidden;
}
.home-hero__layer--base iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

/* =========================================================
   HOME PAGE — MOBILE
   ========================================================= */
@media (max-width: 47.999rem) {
  /* Global mobile container */
  .home-container {
    padding-inline: 1.25rem;
  }
  /* General section spacing */
  .home-section,
  .home-section--major {
    padding-block: 3.5rem;
  }
  .home-intro {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }
  .home-services {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }
  /* Section typography */
  .home-heading {
    margin-top: 1rem;
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    line-height: 0.9;
  }
  .home-kicker {
    gap: 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
  }
  .home-copy {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .home-section__heading {
    margin-bottom: 2.5rem;
  }
  .home-text-link {
    margin-top: 1.25rem;
  }
  .home-button {
    padding: 1rem 1.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
  }
  /* Hero */
  .home-hero {
    min-height: 100svh;
    padding-inline: 1.25rem;
  }
  .home-hero__content {
    width: 100%;
    margin-inline: auto;
    padding-top: 4rem;
    text-align: center;
  }
  .home-hero__eyebrows {
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }
  .home-hero h1 {
    width: 100%;
    margin-top: 1.25rem;
    font-size: clamp(3rem, 16vw, 5rem);
    line-height: 0.85;
    text-align: center;
  }
  .home-hero__subtitle {
    width: 100%;
    margin-top: 1.75rem;
    gap: 0.75rem;
  }
  .home-hero__subtitle i {
    width: 2rem;
  }
  .home-hero__subtitle p {
    max-width: 18rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .home-hero .home-button {
    margin-top: 1.75rem;
  }
  .home-hero__scroll {
    bottom: 1.25rem;
    gap: 0.5rem;
    font-size: 0.5625rem;
  }
  .home-hero__scroll i {
    height: 2rem;
  }
  /* Vimeo background */
  .home-hero__layer--base {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .home-hero__layer--base iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100%;
    border: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
  /* Introduction */
  .home-intro .row {
    --bs-gutter-y: 2rem;
  }
  .home-intro__media {
    margin-bottom: 1.5rem;
  }
  .home-intro .home-copy {
    font-size: 0.875rem;
  }
  /* Services */
  .home-services__list {
    margin-top: 0;
  }
  .home-service {
    gap: 1rem;
    padding: 1.75rem 0.5rem;
  }
  .home-service__number {
    font-size: 0.75rem;
  }
  .home-service h3 {
    font-size: 1.75rem;
    line-height: 0.95;
  }
  .home-service p {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  .home-service__feature {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
  }
  /* Visual Storytelling */
  .home-visual__title {
    line-height: 0.9;
  }
  .home-visual__grid {
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .visual-card__media {
    margin-bottom: 1rem;
  }
  .visual-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  .visual-card p {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  /* Events */
  .home-events {
    padding-block: 5rem;
  }
  .home-events .home-heading {
    margin-top: 1.25rem;
  }
  /* SAUT */
  .home-saut__copy {
    margin-top: 1.5rem;
  }
  .home-saut__lead {
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  .home-saut__grid {
    margin-top: 2.5rem;
  }
  .saut-pillar {
    padding: 1.5rem;
  }
  .saut-pillar__number {
    margin-bottom: 0.75rem;
  }
  .saut-pillar h3 {
    margin-bottom: 0.75rem;
    font-size: 1.625rem;
  }
  .saut-pillar p {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  /* Marquee */
  .home-marquee {
    padding-block: 1rem;
  }
  .home-marquee__track {
    gap: 1.25rem;
  }
  .home-marquee__track span {
    font-size: 1.5rem;
  }
  /* Concierge and Athletes */
  .home-concierge__features {
    margin-top: 2.5rem;
  }
  .home-concierge__features .row {
    --bs-gutter-y: 2.5rem;
  }
  .home-concierge__media {
    margin-bottom: 1.25rem;
  }
  .home-concierge h3 {
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
  }
  .home-concierge__extras {
    margin-top: 2.5rem;
  }
  .home-concierge__divider {
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
  }
  .home-concierge__extras .row {
    --bs-gutter-x: .5rem;
  }
  /* Partners */
  .home-partners {
    padding-block: 3.5rem;
  }
  .home-partners__heading {
    margin-bottom: 2.5rem;
  }
  .home-partners__heading .home-copy {
    margin-top: 1rem;
  }
  .home-partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #f9f5ec;
  }
  .home-partners__grid > div {
    padding: 0.75rem;
  }
  .home-partners__grid img {
    max-height: 4.5rem;
  }
  /* Contact CTA */
  .home-contact {
    padding-block: 5rem;
  }
  .home-contact .home-copy {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
  .home-contact .home-button {
    margin-top: 1.75rem;
    padding: 1rem 1.5rem;
  }
}
.about-page {
  color: #13110f;
  background: #f9f5ec;
  overflow: hidden;
}

.about-container {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #a97e2c;
  font: 400 0.625rem/normal "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about-kicker::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  flex: none;
  background: #a97e2c;
  transform: rotate(45deg);
}

.about-hero {
  padding-block: 10rem 6rem;
}

.about-hero h1 {
  margin: 2rem 0 0;
  font: 400 11vw/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.about-hero h1 span {
  display: block;
}

.about-text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px #a97e2c;
}

.about-hero__lead {
  max-width: 42rem;
  margin: 3rem 0 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.about-feature {
  padding-bottom: 6rem;
}

.about-feature__media {
  aspect-ratio: 21/9;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.about-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: about-ken-burns 18s ease-out both;
}

@keyframes about-ken-burns {
  to {
    transform: scale(1.12) translate(-1%, -1%);
  }
}
.about-values {
  padding-block: 6rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}

.about-values__grid {
  display: grid;
  gap: 3rem;
}

.about-values article > span {
  display: block;
  margin-bottom: 1.5rem;
  color: #a97e2c;
  font: 0.75rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.about-values h2 {
  margin: 0 0 1rem;
  font: 400 1.875rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.about-team {
  padding-block: 6rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
  background: rgba(254, 251, 246, 0.3);
}

.about-team__title {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font: 400 2.25rem/0.9 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.about-team__grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-member__portrait {
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(169, 126, 44, 0.25);
  background: linear-gradient(145deg, rgba(169, 126, 44, 0.1), #f9f5ec);
}

.team-member__portrait span {
  color: rgba(169, 126, 44, 0.4);
  font: 400 4.5rem/1 "Playfair Display", Georgia, serif;
  text-transform: uppercase;
}

.team-member > p {
  margin: 0 0 0.5rem;
  color: #a97e2c;
  font: 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-member h3 {
  margin: 0;
  font: 400 1.25rem/1.1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.about-cta {
  padding-block: 8rem;
  text-align: center;
}

.about-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  color: #fefbf6;
  background: #a97e2c;
  font: 0.6875rem/1.25 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

.about-cta a:hover {
  color: #fefbf6;
  background: #13110f;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

@media (min-width: 48rem) {
  .about-container {
    padding-inline: 2.5rem;
  }
  .about-hero h1 {
    font-size: 7vw;
  }
  .about-hero__lead {
    font-size: 1rem;
  }
  .about-values, .about-team {
    padding-block: 8rem;
  }
  .about-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5rem;
  }
  .about-values h2 {
    font-size: 2.25rem;
  }
  .about-team__title {
    font-size: 3.75rem;
  }
  .about-team__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .about-cta {
    padding-block: 8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .about-feature__media img {
    animation: none;
  }
}
/* =========================================================
   ABOUT PAGE — MOBILE SPACING
   ========================================================= */
@media (max-width: 47.999rem) {
  .about-container {
    padding-inline: 1.25rem;
  }
  /* Hero */
  .about-hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }
  .about-kicker {
    gap: 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
  }
  .about-hero h1 {
    margin-top: 1.25rem;
    font-size: clamp(3rem, 15vw, 4.75rem);
    line-height: 0.88;
  }
  .about-hero__lead {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  /* Main feature image */
  .about-feature {
    padding-bottom: 3.5rem;
  }
  .about-feature__media {
    aspect-ratio: 4/3;
  }
  /* Values */
  .about-values {
    padding-block: 3.5rem;
  }
  .about-values__grid {
    gap: 2.5rem;
  }
  .about-values article > span {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
  }
  .about-values h2 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
  }
  .about-values p {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  /* Team */
  .about-team {
    padding-block: 3.5rem;
  }
  .about-team__title {
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 0.95;
  }
  .about-team__grid {
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .team-member__portrait {
    margin-bottom: 0.75rem;
    padding: 1rem;
  }
  .team-member__portrait span {
    font-size: 3.5rem;
  }
  .team-member > p {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
  }
  .team-member h3 {
    font-size: 1.125rem;
  }
  /* Final CTA */
  .about-cta {
    padding-block: 4rem;
  }
  .about-cta a {
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
  }
}
.services-page {
  color: #13110f;
  background: #f9f5ec;
  overflow: hidden;
}

.services-container {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.services-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #a97e2c;
  font: 0.625rem/normal "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.services-kicker::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  flex: none;
  background: #a97e2c;
  transform: rotate(45deg);
}

.services-hero {
  position: relative;
  padding-block: 10rem 6rem;
  overflow: hidden;
}

.services-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
}

.services-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249, 245, 236, 0.6), rgba(249, 245, 236, 0.7), #f9f5ec);
}

.services-hero .services-container {
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  max-width: 64rem;
  margin: 2rem 0 0;
  font: 400 10vw/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-transform: uppercase;
}

.services-hero__lead {
  max-width: 42rem;
  margin: 3rem 0 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.services-marquee {
  padding-block: 1.5rem;
  border-block: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.services-marquee__track {
  display: flex;
  width: max-content;
  animation: services-marquee 30s linear infinite;
  will-change: transform;
}

.services-marquee__row {
  display: flex;
  flex: none;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.services-marquee__row span {
  white-space: nowrap;
  font: 400 1.875rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.services-marquee__row i {
  width: 0.5rem;
  height: 0.5rem;
  flex: none;
  background: #a97e2c;
  transform: rotate(45deg);
}

@keyframes services-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.services-list {
  padding-block: 6rem;
}

.expertise-card {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding-top: 3rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}

.expertise-card + .expertise-card {
  margin-top: 6rem;
}

.expertise-card__number {
  color: #a97e2c;
  font: 0.75rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.expertise-card__media {
  aspect-ratio: 4/5;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.expertise-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.expertise-card__media:hover img {
  transform: scale(1.05);
}

.expertise-card__content h2 {
  margin: 0;
  font: 400 2.25rem/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.expertise-card__content p {
  margin: 1.5rem 0 0;
  color: rgba(19, 17, 15, 0.9);
  font-size: 0.875rem;
  line-height: 1.625;
}

.expertise-card__content > span {
  display: block;
  margin-top: 1.5rem;
  color: #a97e2c;
  font: 0.6875rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-saut {
  padding-block: 8rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
  background: rgba(254, 251, 246, 0.3);
}

.services-saut h2 {
  max-width: 56rem;
  margin: 2rem 0 0;
  font: 400 3rem/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-transform: uppercase;
}

.services-saut__copy {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-saut__copy p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.625;
}

.services-saut__copy p:last-child {
  color: #585550;
}

.services-saut__grid {
  display: grid;
  gap: 1px;
  margin-top: 5rem;
  padding: 1px;
  background: rgba(169, 126, 44, 0.25);
}

.saut-pillar {
  height: 100%;
  padding: 2rem;
  background: #f9f5ec;
}

.saut-pillar__number {
  display: block;
  margin-bottom: 1rem;
  color: #a97e2c;
  font: 0.625rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.saut-pillar h3 {
  margin: 0 0 1rem;
  font: 400 1.875rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.saut-pillar p {
  margin: 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.services-cta {
  padding: 8rem 1.5rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
  text-align: center;
}

.services-cta h2 {
  max-width: 56rem;
  margin: 0 auto;
  font: 400 3rem/0.95 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-transform: uppercase;
}

.services-cta h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #a97e2c;
}

.services-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1.25rem 2.5rem;
  color: #fefbf6;
  background: #a97e2c;
  font: 0.6875rem/1.25 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

.services-cta a:hover {
  color: #fefbf6;
  background: #13110f;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

@media (min-width: 48rem) {
  .services-container {
    padding-inline: 2.5rem;
  }
  .services-hero h1 {
    font-size: 7vw;
  }
  .services-hero__lead {
    font-size: 1rem;
  }
  .services-marquee__row span {
    font-size: 3rem;
  }
  .expertise-card {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .expertise-card__number {
    grid-column: span 1;
  }
  .expertise-card__media {
    grid-column: span 4;
  }
  .expertise-card__media--reverse {
    order: 3;
  }
  .expertise-card__content {
    grid-column: span 7;
  }
  .expertise-card__content h2 {
    font-size: 3.75rem;
  }
  .expertise-card__content p {
    font-size: 1rem;
  }
  .services-saut h2, .services-cta h2 {
    font-size: 4.5rem;
  }
  .services-saut__copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-saut__copy p:first-child {
    font-size: 1rem;
  }
  .services-saut__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .saut-pillar {
    padding: 2.5rem;
  }
  .services-cta {
    padding-inline: 2.5rem;
  }
}
@media (min-width: 64rem) {
  .services-saut__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .services-marquee__track {
    animation-play-state: paused;
  }
}
/* =========================================================
   SERVICES PAGE — MOBILE SPACING
   ========================================================= */
@media (max-width: 47.999rem) {
  .services-container {
    padding-inline: 1.25rem;
  }
  /* Hero */
  .services-hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }
  .services-kicker {
    gap: 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
  }
  .services-hero h1 {
    margin-top: 1.25rem;
    font-size: clamp(2.5rem, 11vw, 3.75rem);
    line-height: 0.88;
  }
  .services-hero__lead {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  /* Marquee */
  .services-marquee {
    padding-block: 1rem;
  }
  .services-marquee__row {
    gap: 1.25rem;
    padding-right: 1.25rem;
  }
  .services-marquee__row span {
    font-size: 1.5rem;
  }
  .services-marquee__row i {
    width: 0.375rem;
    height: 0.375rem;
  }
  /* Expertise cards */
  .services-list {
    padding-block: 3.5rem;
  }
  .expertise-card {
    gap: 1.5rem;
    padding-top: 2rem;
  }
  .expertise-card + .expertise-card {
    margin-top: 3.5rem;
  }
  .expertise-card__number {
    font-size: 0.75rem;
  }
  .expertise-card__media {
    aspect-ratio: 4/5;
  }
  .expertise-card__content h2 {
    font-size: 2.25rem;
    line-height: 0.9;
  }
  .expertise-card__content p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
  }
  .expertise-card__content > span {
    margin-top: 1rem;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
  }
  /* SAUT section */
  .services-saut {
    padding-block: 3.5rem;
  }
  .services-saut h2 {
    margin-top: 1.25rem;
    font-size: 2.5rem;
    line-height: 0.9;
  }
  .services-saut__copy {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .services-saut__copy p {
    font-size: 0.875rem;
    line-height: 1.55;
  }
  .services-saut__grid {
    margin-top: 2.5rem;
  }
  .saut-pillar {
    padding: 1.5rem;
  }
  .saut-pillar__number {
    margin-bottom: 0.75rem;
  }
  .saut-pillar h3 {
    margin-bottom: 0.75rem;
    font-size: 1.625rem;
  }
  .saut-pillar p {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
  /* Final CTA */
  .services-cta {
    padding: 4rem 1.25rem;
  }
  .services-cta h2 {
    font-size: 2.5rem;
    line-height: 0.95;
  }
  .services-cta a {
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
  }
}
/* Remove only the lines surrounding SAUT pillars on very small screens */
@media (max-width: 379.98px) {
  .services-saut__grid {
    gap: 0.75rem;
    padding: 0;
    background: transparent;
  }
  .services-saut .saut-pillar {
    border: 0;
  }
}
.cases-page {
  color: #13110f;
  background: #f9f5ec;
  overflow: hidden;
}

.cases-container {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.cases-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #a97e2c;
  font: 400 0.625rem/normal "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.cases-kicker::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  flex: none;
  background: #a97e2c;
  transform: rotate(45deg);
}

.cases-hero {
  padding-block: 10rem 6rem;
}

.cases-hero h1 {
  max-width: 64rem;
  margin: 2rem 0 0;
  font: 400 12vw/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-transform: uppercase;
}

.cases-list {
  padding-bottom: 8rem;
}

.cases-list .cases-container {
  display: grid;
  gap: 8rem;
}

.case-study {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.case-study__media {
  aspect-ratio: 4/5;
  border: 1px solid rgba(169, 126, 44, 0.25);
  overflow: hidden;
}

.case-study__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study__meta {
  margin: 0 0 1.5rem;
  color: #a97e2c;
  font: 400 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.case-study__content > h2 {
  margin: 0 0 2.5rem;
  font: 400 2.25rem/0.9 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.case-detail {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(169, 126, 44, 0.4);
}

.case-detail + .case-detail {
  margin-top: 2rem;
}

.case-detail h3 {
  margin: 0 0 0.5rem;
  color: #a97e2c;
  font: 400 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-detail p {
  margin: 0;
  color: rgba(19, 17, 15, 0.9);
  font-size: 0.875rem;
  line-height: 1.625;
}

.cases-approach {
  padding-block: 6rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
  background: rgba(254, 251, 246, 0.3);
}

.cases-approach .cases-container {
  display: grid;
  gap: 2.5rem;
}

.cases-approach h2 {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font: 400 2.25rem/0.9 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-transform: uppercase;
}

.cases-approach__content {
  align-self: end;
}

.cases-approach__content > p {
  max-width: 55ch;
  margin: 0;
  color: #585550;
  font-size: 1rem;
  line-height: 1.625;
}

.cases-approach__content a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  color: #a97e2c;
  border: 1px solid #a97e2c;
  font: 400 0.6875rem/1.25 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s, background-color 0.2s;
}

.cases-approach__content a:hover {
  color: #fefbf6;
  background: #a97e2c;
}

.cases-partners {
  padding-block: 6rem;
  border-top: 1px solid rgba(169, 126, 44, 0.25);
}

.cases-partners__heading {
  margin-bottom: 4rem;
  text-align: center;
}

.cases-partners__heading .cases-kicker {
  justify-content: center;
}

.cases-partners__heading h2 {
  margin: 1.5rem 0 0;
  font: 400 2.25rem/0.9 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.cases-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(169, 126, 44, 0.25);
}

.cases-partners__grid > div {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #f9f5ec;
}

.cases-partners__grid img {
  width: auto;
  max-width: 100%;
  max-height: 4rem;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.5s;
}

.cases-partners__grid > div:hover img {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

@media (min-width: 40rem) {
  .cases-partners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 48rem) {
  .cases-container {
    padding-inline: 2.5rem;
  }
  .cases-hero h1 {
    font-size: 9vw;
  }
  .cases-list .cases-container {
    gap: 12rem;
  }
  .case-study {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4rem;
  }
  .case-study__visual {
    grid-column: span 7;
  }
  .case-study__content {
    position: sticky;
    top: 8rem;
    grid-column: span 5;
  }
  .case-study--reverse .case-study__visual {
    order: 2;
  }
  .case-study--reverse .case-study__content {
    order: 1;
  }
  .case-study__content > h2 {
    font-size: 3rem;
  }
  .cases-approach {
    padding-block: 8rem;
  }
  .cases-approach .cases-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .cases-approach__heading {
    grid-column: span 5;
  }
  .cases-approach__content {
    grid-column: span 7;
    padding-left: 3rem;
  }
  .cases-approach h2, .cases-partners__heading h2 {
    font-size: 3rem;
  }
  .cases-approach__content > p {
    font-size: 1.125rem;
  }
  .cases-partners {
    padding-block: 8rem;
  }
  .cases-partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cases-partners__grid > div {
    padding: 2rem;
  }
  .cases-partners__grid img {
    max-height: 5rem;
  }
}
@media (min-width: 64rem) {
  .cases-partners__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.contact-page {
  min-height: 100vh;
  color: #13110f;
  background: #f9f5ec;
  overflow: hidden;
}

.contact-section {
  padding-block: 10rem 8rem;
}

.contact-container {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  gap: 3rem;
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #a97e2c;
  font: 400 0.625rem/normal "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.contact-kicker::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  flex: none;
  background: #a97e2c;
  transform: rotate(45deg);
}

.contact-intro h1 {
  margin: 2rem 0 0;
  font: 400 3rem/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-transform: uppercase;
}

.contact-intro__body {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

.contact-direct {
  margin-top: 3rem;
}

.contact-direct > p {
  margin: 0 0 0.75rem;
  color: #a97e2c;
  font: 0.75rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  display: block;
  width: fit-content;
  color: #13110f;
  font-size: 1.25rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-direct a:hover {
  color: #a97e2c;
}

.contact-panel {
  position: relative;
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: 2.5rem;
}

.contact-form__pair {
  display: grid;
  gap: 2.5rem;
}

.contact-field {
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(169, 126, 44, 0.25);
  transition: border-color 0.2s;
}

.contact-field:focus-within {
  border-color: #a97e2c;
}

.contact-field.is-invalid {
  border-color: #cc272e;
}

.contact-field > label {
  display: block;
  margin-bottom: 0.75rem;
  color: #585550;
  font: 400 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.contact-field input, .contact-field select {
  width: 100%;
  padding: 0;
  color: #13110f;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  font: 400 1.25rem/1.3 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
}

.contact-field input::placeholder {
  color: rgba(88, 85, 80, 0.4);
  font: 1rem/1.3 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: normal;
}

.contact-field__error {
  margin: 0.5rem 0 0;
  color: #cc272e;
  font: 400 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-field__error[hidden] {
  display: none;
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  color: #13110f;
  border: 0;
  background: transparent;
  text-align: left;
  font: 400 1.25rem/1.3 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
}

.custom-select__trigger.is-placeholder {
  color: rgba(88, 85, 80, 0.4);
  font: 1rem/1.3 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: normal;
}

.custom-select__trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.2s;
}

.custom-select.is-open .custom-select__trigger svg {
  transform: rotate(180deg);
}

.custom-select.is-enhanced select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.custom-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  max-height: 18rem;
  padding: 0.5rem;
  border: 1px solid rgba(169, 126, 44, 0.25);
  background: #fefbf6;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.custom-select__menu[hidden] {
  display: none;
}

.custom-select__option {
  width: 100%;
  padding: 0.75rem;
  color: #13110f;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.4;
}

.custom-select__option:hover, .custom-select__option:focus, .custom-select__option.is-active {
  color: #fefbf6;
  background: #a97e2c;
  outline: 0;
}

.contact-form__status {
  min-height: 1.25rem;
  margin: 0;
  color: #cc272e;
  font-size: 0.8125rem;
}

.contact-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  color: #a97e2c;
  border: 1px solid #a97e2c;
  background: transparent;
  transition: color 0.2s, background-color 0.2s;
}

.contact-submit > span:first-child {
  font: 400 1.5rem/1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contact-submit > span:last-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font: 0.75rem/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.contact-submit i {
  font-style: normal;
  transition: transform 0.2s;
}

.contact-submit:hover {
  color: #fefbf6;
  background: #a97e2c;
}

.contact-submit:hover i {
  transform: translateX(0.25rem);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.55;
}

.contact-success {
  padding: 2.5rem;
  border: 1px solid #a97e2c;
  text-align: center;
  animation: contact-success-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-success[hidden] {
  display: none;
}

.contact-success__mark {
  margin: 0 0 1.5rem;
  color: #a97e2c;
  font: 400 0.625rem/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.contact-success h2 {
  margin: 0 0 1.5rem;
  font: 400 2.25rem/0.95 "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contact-success > p:last-child {
  max-width: 28rem;
  margin: 0 auto;
  color: #585550;
  font-size: 0.875rem;
  line-height: 1.625;
}

@keyframes contact-success-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

@media (min-width: 48rem) {
  .contact-container {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 5rem;
    padding-inline: 2.5rem;
  }
  .contact-intro {
    position: sticky;
    top: 8rem;
    grid-column: span 5;
    align-self: start;
  }
  .contact-panel {
    grid-column: span 7;
  }
  .contact-intro h1 {
    font-size: 4.5rem;
  }
  .contact-intro__body {
    font-size: 1rem;
  }
  .contact-form__pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-field input, .contact-field select, .custom-select__trigger {
    font-size: 1.5rem;
  }
  .contact-success {
    padding: 4rem;
  }
  .contact-success h2 {
    font-size: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .contact-success {
    animation: none;
  }
}
.error-page {
  min-height: 100vh;
  color: #ffffff;
  background: #000000;
  overflow: hidden;
}

.error-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 8rem;
}

.error-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 60rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 126, 44, 0.22), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-container {
  position: relative;
  z-index: 1;
  width: min(100%, 90rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.error-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  color: #a97e2c;
  font: 400 0.625rem/normal "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.error-kicker::before, .error-kicker::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background: #a97e2c;
  transform: rotate(45deg);
}

.error-code {
  margin: 2rem 0 0;
  color: transparent;
  font: 400 clamp(8rem, 30vw, 24rem)/0.7 "Playfair Display", Georgia, serif;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}

.error-hero h1 {
  margin: 2.5rem 0 0;
  font: 400 clamp(3rem, 7vw, 5rem)/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.error-copy {
  max-width: 34rem;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
}

.error-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  color: #fefbf6;
  background: #a97e2c;
  font: 400 0.6875rem/1.25 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.25em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s, background-color 0.2s;
}

.error-link span {
  transition: transform 0.2s;
}

.error-link:hover {
  color: #000000;
  background: #ffffff;
}

.error-link:hover span {
  transform: translateX(0.25rem);
}

@media (min-width: 48rem) {
  .error-container {
    padding-inline: 2.5rem;
  }
  .error-copy {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-link span {
    transition: none;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: var(--av-background);
}

body {
  margin: 0;
  color: var(--av-foreground);
  background: var(--av-background);
  font-family: var(--av-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  color: var(--av-primary-foreground);
  background: var(--av-primary);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--av-primary);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--av-display);
  font-style: normal;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 0.85;
  text-wrap: balance;
}

::selection {
  color: var(--av-primary-foreground);
  background: var(--av-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--av-primary);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.home-heading,
.home-hero h1,
.home-service h3,
.visual-card h3,
.home-concierge h3,
.saut-pillar h3 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variation-settings: normal !important;
  font-optical-sizing: auto;
  font-synthesis: none !important;
  letter-spacing: -0.035em;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

/*# sourceMappingURL=style.css.map */
