:root {
  --ivory: #f7f3ea;
  --warm-white: #fffcf7;
  --burgundy: #7b2e35;
  --burgundy-soft: #a85663;
  --burgundy-pale: #ead5d8;
  --terracotta: #c46a35;
  --champagne: #b86a75;
  --espresso: #3a2a24;
  --ink: #2e2926;
  --muted: #6d6661;
  --sage: #6f7862;
  --line: rgba(58, 42, 36, 0.14);
  --shadow: 0 24px 70px rgba(58, 42, 36, 0.1);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

a:hover {
  color: var(--burgundy);
}

:focus-visible {
  outline: 3px solid rgba(196, 106, 53, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--burgundy);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--warm-white);
  animation: loaderAutoHide 1ms linear 3200ms forwards;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(58, 42, 36, 0.08);
  pointer-events: none;
}

.loader-brand {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(62vw, 260px);
}

.loader-brand img {
  width: 100%;
  height: auto;
}

.loader-line {
  position: relative;
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: rgba(58, 42, 36, 0.16);
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: var(--burgundy);
  animation: loaderLine 1300ms ease-in-out infinite;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

@keyframes loaderLine {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(86%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.container-lux {
  width: min(calc(100% - 32px), 1180px);
  margin-inline: auto;
  margin-block: 0;
}

.section > .container-lux,
.section-compact > .container-lux,
.breadcrumb-band > .container-lux {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.section-compact {
  padding: clamp(48px, 6vw, 84px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 260px;
}

.section-ivory {
  background: var(--ivory);
}

.section-white {
  background: var(--warm-white);
}

.section-brown {
  background: var(--espresso);
  color: var(--warm-white);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.35vw, 2rem);
}

h4 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

.lead-text {
  max-width: 760px;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.74;
}

.text-balance {
  text-wrap: balance;
}

.text-soft {
  color: rgba(255, 252, 247, 0.76);
}

.btn-lux,
.btn-lux-outline,
.btn-lux-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn-lux {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 18px 38px rgba(123, 46, 53, 0.22);
}

.btn-lux:hover {
  transform: translateY(-2px);
  background: #64252b;
  color: #fff;
}

.btn-lux-outline {
  color: var(--espresso);
  border-color: rgba(58, 42, 36, 0.28);
  background: transparent;
}

.btn-lux-outline:hover {
  transform: translateY(-2px);
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.btn-lux-light {
  color: var(--warm-white);
  border-color: rgba(255, 252, 247, 0.46);
  background: rgba(255, 252, 247, 0.08);
  backdrop-filter: blur(8px);
}

.btn-lux-light:hover {
  transform: translateY(-2px);
  background: var(--warm-white);
  color: var(--espresso);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 12px 0;
  color: var(--warm-white);
  transition: padding 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  padding: 8px 0;
  color: var(--espresso);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 16px 40px rgba(58, 42, 36, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 58px;
}

.site-nav .container-lux {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 3.2vw, 54px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: currentColor;
}

.brand-logo-stack {
  position: relative;
  display: block;
  width: 170px;
  aspect-ratio: 3160 / 656;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  transition: opacity 220ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.header-solid .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.header-solid .brand-logo-dark {
  opacity: 1;
}

.brand-copy {
  display: none;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-toggler {
  border: 1px solid rgba(255, 252, 247, 0.42);
  border-radius: 999px;
  padding: 8px 10px;
  color: currentColor;
}

.site-header.is-scrolled .navbar-toggler,
.site-header.header-solid .navbar-toggler {
  border-color: rgba(58, 42, 36, 0.18);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.site-header.is-scrolled .navbar-toggler-icon,
.site-header.header-solid .navbar-toggler-icon {
  filter: none;
}

.main-menu {
  align-items: center;
  gap: 4px;
}

.main-menu .nav-link {
  color: currentColor;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.92;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: var(--burgundy-pale);
}

.site-header.is-scrolled .main-menu .nav-link:hover,
.site-header.is-scrolled .main-menu .nav-link.active,
.site-header.header-solid .main-menu .nav-link:hover,
.site-header.header-solid .main-menu .nav-link.active {
  color: var(--burgundy);
}

.nav-split {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-split > .dropdown-toggle {
  width: 28px;
  min-width: 28px;
  padding-inline: 0;
}

.nav-split > .dropdown-toggle::after {
  margin-left: 0;
}

.dropdown-menu {
  z-index: 1100;
  min-width: 220px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown-item {
  border-radius: 6px;
  color: var(--espresso);
  font-size: 0.84rem;
  padding: 10px 12px;
  white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--burgundy);
  background: var(--burgundy-pale);
}

.nav-cta {
  margin-left: 10px;
  padding-inline: 18px;
  min-height: 42px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 252, 247, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.08);
}

.site-header.is-scrolled .language-switch,
.site-header.header-solid .language-switch {
  border-color: rgba(58, 42, 36, 0.16);
  background: rgba(58, 42, 36, 0.04);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 4px 8px;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.language-option:hover,
.language-option.active {
  color: var(--espresso);
  background: var(--warm-white);
}

.site-header.is-scrolled .language-option:hover,
.site-header.is-scrolled .language-option.active,
.site-header.header-solid .language-option:hover,
.site-header.header-solid .language-option.active {
  color: #fff;
  background: var(--burgundy);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--warm-white);
  background: var(--espresso);
}

.hero-small {
  min-height: 72vh;
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 14, 11, 0.72), rgba(20, 14, 11, 0.34) 52%, rgba(20, 14, 11, 0.16)),
    linear-gradient(0deg, rgba(20, 14, 11, 0.66), rgba(20, 14, 11, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 160px 0 clamp(54px, 9vw, 96px);
}

.hero-content h1 {
  max-width: 950px;
  color: var(--warm-white);
}

.hero-content p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 252, 247, 0.84);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 252, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.breadcrumb-band {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.breadcrumb {
  margin: 0;
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb .active {
  color: var(--burgundy);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.editorial-grid > *,
.card-grid > *,
.value-list > *,
.footer-main > *,
.row > * {
  min-width: 0;
}

.editorial-grid.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.editorial-copy > * + * {
  margin-top: 22px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ivory);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-frame:not(.parallax-frame):hover img {
  transform: scale(1.035);
}

.image-frame.tall img {
  min-height: 560px;
}

.parallax-frame {
  min-height: 420px;
}

.parallax-frame img {
  min-height: calc(100% + 90px);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  will-change: transform;
}

.parallax-frame:hover img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.1);
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(320px, calc(100% - 36px));
  padding: 18px;
  border-radius: var(--radius);
  color: var(--warm-white);
  background: rgba(58, 42, 36, 0.72);
  backdrop-filter: blur(10px);
}

.image-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.image-caption span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 252, 247, 0.74);
  font-size: 0.86rem;
  line-height: 1.5;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat-item {
  padding: clamp(24px, 4vw, 36px);
  background: var(--warm-white);
}

.stat-number {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.stat-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lux-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.78);
  contain: layout;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.lux-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 46, 53, 0.28);
  background: #fff;
  box-shadow: 0 20px 48px rgba(58, 42, 36, 0.08);
}

.lux-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(168, 86, 99, 0.38);
  border-radius: 999px;
  color: var(--burgundy);
  font-size: 1.16rem;
}

.lux-card h3,
.lux-card h4 {
  margin-bottom: 12px;
}

.lux-card h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.12;
}

.lux-card p {
  font-size: 0.86rem;
  line-height: 1.58;
}

.media-card {
  display: grid;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--espresso);
}

.media-card > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.media-card::after {
  content: "";
  grid-area: 1 / 1;
  background: linear-gradient(0deg, rgba(26, 18, 14, 0.76), rgba(26, 18, 14, 0.06) 62%);
}

.media-card:hover > img {
  transform: scale(1.04);
}

.media-card-content {
  z-index: 1;
  grid-area: 1 / 1;
  align-self: end;
  padding: 28px;
}

.media-card h3 {
  color: #fff;
}

.media-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  display: grid;
  gap: 28px;
}

.gallery-section + .gallery-section {
  margin-top: clamp(58px, 8vw, 96px);
}

.gallery-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.gallery-section-head p {
  max-width: 560px;
}

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

.photo-tile {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ivory);
  cursor: zoom-in;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 240ms ease;
}

.photo-tile::after {
  content: "\F62C";
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 22, 18, 0.62);
  font-family: "bootstrap-icons";
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  filter: brightness(0.72);
  transform: scale(1.04);
}

.photo-tile:hover::after,
.photo-tile:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  padding: clamp(18px, 4vw, 42px);
  color: #fff;
  background: rgba(20, 14, 11, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: transparent;
}

.lightbox-close:hover {
  color: var(--espresso);
  background: #fff;
}

.lightbox-image-wrap {
  display: grid;
  place-items: center;
  min-height: 0;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.slideshow-full {
  width: var(--viewport-width, 100vw);
  margin-left: calc((100% - var(--viewport-width, 100vw)) / 2);
  overflow: hidden;
  min-height: clamp(325px, 33.75vw, 525px);
  background: var(--espresso);
}

.slideshow-track {
  display: flex;
  width: max-content;
  animation: slideshowMove 46s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

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

.slideshow-slide {
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(260px, 27vw, 420px);
  width: clamp(260px, 27vw, 420px);
  aspect-ratio: 4 / 5;
  height: clamp(325px, 33.75vw, 525px);
  overflow: hidden;
  background: var(--ivory);
}

.slideshow-slide.small {
  flex-basis: clamp(260px, 27vw, 420px);
}

.slideshow-full[data-animate] {
  opacity: 1;
  transform: none;
}

.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease, filter 260ms ease;
}

.slideshow-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(31, 22, 18, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.slideshow-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(0deg, rgba(31, 22, 18, 0.62), rgba(31, 22, 18, 0));
  pointer-events: none;
  transition: height 260ms ease, background 260ms ease;
}

.slideshow-caption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  max-width: 360px;
  color: #fff;
  opacity: 0.88;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease, text-shadow 260ms ease;
}

.slideshow-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.05;
}

.slideshow-caption span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  transition: color 260ms ease;
}

.slideshow-slide:hover img {
  filter: brightness(0.62) saturate(0.94);
  transform: scale(1.06);
}

.slideshow-slide:hover::before {
  opacity: 1;
}

.slideshow-slide:hover::after {
  height: 100%;
  background: linear-gradient(0deg, rgba(31, 22, 18, 0.76), rgba(31, 22, 18, 0.2));
}

.slideshow-slide:hover .slideshow-caption {
  opacity: 1;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.44);
  transform: translateY(-4px);
}

.slideshow-slide:hover .slideshow-caption span {
  color: rgba(255, 255, 255, 0.94);
}

@keyframes slideshowMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 22px;
}

.timeline-year {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
}

.timeline-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  font-weight: 700;
}

.value-pill i {
  color: var(--burgundy);
}

.document-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 18px 60px rgba(58, 42, 36, 0.07);
}

.document-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: var(--burgundy);
  background: var(--ivory);
  font-size: 2rem;
}

.document-card p {
  margin: 12px 0 22px;
}

.disabled-link {
  cursor: not-allowed;
  opacity: 0.68;
  pointer-events: none;
}

.photo-signage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.signage-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(250px, calc(100% - 28px));
  padding: 10px 13px;
  border: 1px solid rgba(255, 252, 247, 0.46);
  border-radius: 999px;
  color: var(--warm-white);
  background: rgba(58, 42, 36, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(20, 14, 11, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.signage-pin i {
  color: #f5d8bd;
}

.signage-pin-structure {
  left: 12%;
  top: 32%;
}

.signage-pin-frascati {
  right: 9%;
  top: 18%;
}

.signage-pin-medical {
  right: 12%;
  bottom: 22%;
}

.goog-te-banner-frame,
.goog-te-gadget-icon,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.feature-list li::before {
  content: "\F26E";
  color: var(--burgundy-soft);
  font-family: "bootstrap-icons";
}

.legal-content {
  max-width: 900px;
}

.legal-content > * + * {
  margin-top: 22px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.legal-content h3 {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content a {
  color: var(--burgundy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-frame {
  overflow: hidden;
  height: min(64vh, 560px);
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 18px 60px rgba(58, 42, 36, 0.07);
}

.form-label {
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-control,
.form-select {
  min-height: 52px;
  border-color: rgba(58, 42, 36, 0.2);
  border-radius: var(--radius);
  background-color: #fff;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 0.2rem rgba(123, 46, 53, 0.12);
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #24543a;
  background: #edf7f0;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  color: #7b2e35;
  background: #f7e9eb;
}

.form-privacy-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-privacy-note a {
  color: var(--burgundy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.antispam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.recaptcha-wrap {
  min-height: 78px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(42%, 0.9fr);
  width: var(--viewport-width, 100vw);
  min-height: clamp(360px, 46vw, 520px);
  margin-left: calc((100% - var(--viewport-width, 100vw)) / 2);
  padding: 0;
  border-radius: 0;
  color: var(--warm-white);
  background: #5b3038;
}

.cta-band::before {
  display: none;
}

.cta-band::after {
  display: none;
}

.cta-band-image {
  grid-column: 2;
  grid-row: 1 / span 10;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 46vw, 520px);
  object-fit: cover;
}

.cta-band > * {
  position: relative;
  z-index: 1;
  grid-column: 1;
  margin-left: clamp(24px, 12vw, 245px);
  margin-right: clamp(24px, 6vw, 86px);
}

.cta-band > .cta-band-image {
  z-index: 0;
  grid-column: 2;
  grid-row: 1 / span 10;
  margin: 0;
}

.cta-band > .section-kicker {
  align-self: end;
  margin-top: clamp(56px, 8vw, 104px);
}

.cta-band > h2:first-of-type {
  align-self: end;
  margin-top: clamp(56px, 8vw, 104px);
}

.cta-band h2 {
  max-width: 620px;
  color: var(--warm-white);
}

.cta-band .section-kicker {
  color: rgba(255, 252, 247, 0.82);
}

.cta-band p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 252, 247, 0.78);
}

.cta-band .hero-actions {
  margin-top: 28px;
  margin-bottom: clamp(56px, 8vw, 104px);
}

.site-footer {
  background: #251a16;
  color: var(--warm-white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 0.8fr;
  gap: 38px;
  padding: clamp(56px, 8vw, 92px) 0;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 22px;
  border-radius: 0;
  background: transparent;
}

.footer-main h2,
.footer-main h3 {
  color: var(--warm-white);
}

.footer-main h3 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main p,
.footer-main li,
.footer-main a {
  color: rgba(255, 252, 247, 0.72);
  font-size: 0.94rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 252, 247, 0.12);
  color: rgba(255, 252, 247, 0.58);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: rgba(255, 252, 247, 0.82);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(58, 42, 36, 0.16);
  border-radius: 999px;
  color: var(--espresso);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: 0 16px 34px rgba(58, 42, 36, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 940;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.26);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.floating-whatsapp i {
  font-size: 1.28rem;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #1ebe57;
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.34);
}

body.open-day-popup-active {
  overflow: hidden;
}

body.open-day-popup-active #site-header,
body.open-day-popup-active main,
body.open-day-popup-active #site-footer,
body.open-day-popup-active .back-to-top,
body.open-day-popup-active .floating-whatsapp {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.open-day-popup {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 28px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.open-day-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.open-day-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 22, 18, 0.4);
  backdrop-filter: blur(5px);
}

.open-day-popup-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 430px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(255, 252, 247, 0.62);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 34px 90px rgba(31, 22, 18, 0.3);
  transform: translateY(12px) scale(0.98);
  transition: transform 240ms ease;
}

.open-day-popup.is-visible .open-day-popup-panel {
  transform: translateY(0) scale(1);
}

.open-day-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(58, 42, 36, 0.12);
  border-radius: 999px;
  color: var(--espresso);
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 12px 28px rgba(58, 42, 36, 0.12);
}

.open-day-popup-close:hover {
  color: #fff;
  background: var(--burgundy);
}

.open-day-popup-copy {
  position: relative;
  z-index: 2;
  margin: 14px 14px 0;
  padding: clamp(18px, 4vw, 24px);
  border: 1px solid rgba(58, 42, 36, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.95);
  box-shadow: 0 18px 44px rgba(58, 42, 36, 0.12);
}

.open-day-popup-copy h2 {
  max-width: calc(100% - 44px);
  margin-bottom: 12px;
  color: var(--burgundy);
  font-size: clamp(1.52rem, 5vw, 2.05rem);
}

.open-day-popup-copy p {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.open-day-popup-copy p + p {
  margin-top: 10px;
}

.open-day-popup-copy strong {
  color: var(--burgundy);
  font-weight: 800;
}

.open-day-popup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.open-day-popup-actions p {
  font-weight: 800;
}

.open-day-popup-whatsapp {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 18px;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.open-day-popup-whatsapp:hover {
  background: #1ebe57;
}

.open-day-popup-image {
  width: 100%;
  height: clamp(300px, 50vh, 460px);
  padding: 12px 14px 18px;
  object-fit: contain;
  background: var(--ivory);
}

@media(max-width: 767px) {
  .floating-whatsapp {
    left: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .open-day-popup {
    padding: 14px;
  }

  .open-day-popup-panel {
    width: min(94vw, 410px);
    max-height: calc(100svh - 28px);
  }

  .open-day-popup-copy {
    margin: 12px 12px 0;
    padding: 18px;
  }

  .open-day-popup-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .open-day-popup-whatsapp {
    width: 100%;
  }

  .open-day-popup-image {
    height: clamp(240px, 44vh, 380px);
    padding: 10px 12px 14px;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="image"] {
  transform: translateY(34px) scale(0.985);
}

[data-animate="image"].is-visible {
  transform: translateY(0) scale(1);
}

@media(min-width: 992px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media(min-width: 1200px) {
  .nav-split .dropdown-menu {
    inset: 100% auto auto 0 !important;
    transform: translate3d(0, 0, 0) !important;
    bottom: auto !important;
    top: 100% !important;
  }
}

@media(max-width: 1199px) {
  .site-nav .container-lux {
    align-items: flex-start !important;
    flex-wrap: wrap;
  }

  .brand-lockup,
  .navbar-toggler {
    flex: 0 0 auto;
  }

  .navbar-collapse {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 14px;
    padding: 22px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 252, 247, 0.98);
    color: var(--espresso);
    box-shadow: var(--shadow);
  }

  .nav-split .dropdown-menu {
    position: static !important;
    transform: none !important;
    flex: 0 0 100%;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none;
  }

  .main-menu {
    align-items: stretch;
  }

  .nav-split {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }

  .nav-split > .nav-link:not(.dropdown-toggle) {
    flex: 1 1 auto;
  }

  .nav-split > .dropdown-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 42px;
  }

  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-cta {
    margin: 14px 0 0;
  }

  .language-switch {
    width: fit-content;
    margin: 14px 0 0;
    color: var(--espresso);
  }

  .language-option.active,
  .language-option:hover {
    color: #fff;
    background: var(--burgundy);
  }
}

@media(max-width: 991px) {
  .editorial-grid,
  .editorial-grid.reverse {
    grid-template-columns: 1fr;
  }

  .editorial-grid.reverse .editorial-copy {
    order: -1;
  }

  .card-grid,
  .card-grid.two,
  .card-grid.three,
  .service-card-grid,
  .value-list,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .media-card,
  .media-card > img {
    min-height: 360px;
  }
}

@media(max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container-lux,
  .hero-content {
    width: min(calc(100% - 48px), 1180px);
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.62rem, 7vw, 2.15rem);
  }

  .hero-content h1,
  .hero-content p,
  .editorial-copy h2,
  .lead-text,
  .editorial-copy p,
  .section-kicker,
  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-content p,
  .editorial-copy p,
  .lead-text {
    width: 100%;
    max-width: min(100%, 34ch);
  }

  .section-kicker,
  .eyebrow {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .section-kicker::before,
  .eyebrow::before {
    width: 28px;
  }

  .section {
    padding: clamp(48px, 12vw, 72px) 0;
  }

  .section-compact {
    padding: clamp(36px, 10vw, 56px) 0;
  }

  .site-nav .container-lux {
    padding-inline: 12px;
  }

  .navbar-collapse {
    padding: 16px;
    max-height: calc(100vh - 86px);
  }

  .main-menu .nav-link {
    font-size: 0.76rem;
    padding-block: 0.7rem;
  }

  .brand-logo-stack {
    width: 122px;
  }

  .brand-copy {
    display: none;
  }

  .site-header {
    padding: 10px 0;
  }

  .hero,
  .hero-small {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
  }

  .stat-strip,
  .card-grid,
  .card-grid.two,
  .card-grid.three,
  .value-list,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .document-card {
    grid-template-columns: 1fr;
  }

  .signage-pin {
    max-width: 210px;
    font-size: 0.68rem;
  }

  .signage-pin-structure {
    left: 8%;
    top: 22%;
  }

  .signage-pin-frascati {
    right: 6%;
    top: 46%;
  }

  .signage-pin-medical {
    right: 8%;
    bottom: 12%;
  }

  .gallery-section-head {
    display: grid;
  }

  .image-frame img,
  .image-frame.tall img {
    min-height: 330px;
  }

  .media-card,
  .media-card > img {
    min-height: 320px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta-band::after {
    display: none;
  }

  .cta-band-image {
    grid-column: 1;
    grid-row: auto;
    order: 10;
    min-height: 230px;
    height: 230px;
  }

  .cta-band > .cta-band-image {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .cta-band > * {
    margin-left: 20px;
    margin-right: 20px;
  }

  .slideshow-slide,
  .slideshow-slide.small {
    flex-basis: 74vw;
    width: 74vw;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    height: 92.5vw;
    min-height: 320px;
    max-height: 400px;
  }

  .slideshow-full {
    min-height: 320px;
  }

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

  .photo-tile {
    aspect-ratio: 4 / 3;
  }

  .gallery-lightbox {
    padding: 16px;
  }
}

@media(prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .slideshow-track {
    animation: none;
  }

  .loader-line::after {
    animation: none;
  }
}
