:root {
  --black: #0B0B0C;
  --black-deep: #030303;
  --charcoal: #141416;
  --charcoal-2: #1a1a1d;
  --red: #E10600;
  --red-hot: #ff312a;
  --wine: #6B0B0F;
  --ivory: #F3EFE6;
  --muted: rgba(243, 239, 230, 0.72);
  --line: rgba(255,255,255,0.08);
  --line-red: rgba(225, 6, 0, 0.34);
  --radius: 18px;
  --glow: 0 0 16px rgba(225,6,0,.72), 0 0 36px rgba(225,6,0,.22);
  --soft-glow: 0 16px 68px rgba(0,0,0,.48), 0 0 24px rgba(225,6,0,.08);
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ivory);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 5%, rgba(225,6,0,.14), transparent 18rem),
    radial-gradient(circle at 85% 12%, rgba(107,11,15,.28), transparent 22rem),
    linear-gradient(180deg, #020202 0%, #080809 38%, #030303 100%);
}
body.menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0 38%, transparent 76%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.page-light {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  width: 24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  background: radial-gradient(circle, rgba(225,6,0,.22), transparent 68%);
}
.light-a { left: -14rem; top: 6rem; }
.light-b { right: -14rem; top: 28rem; opacity: .72; }

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(225,6,0,.18);
  border-radius: 999px;
  background: rgba(5,5,6,.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 70px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04);
}
.site-header.scrolled {
  background: rgba(5,5,6,.92);
  border-color: rgba(225,6,0,.28);
}
.brand img {
  width: clamp(88px, 8vw, 126px);
  filter: drop-shadow(0 0 14px rgba(225,6,0,.56));
}
.nav-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-menu a {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: rgba(243,239,230,.78);
  transition: color .2s ease, text-shadow .2s ease;
}
.nav-menu a:hover { color: #fff; text-shadow: 0 0 12px rgba(225,6,0,.8); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 11px;
  border: 1px solid rgba(255,84,84,.9);
  background: linear-gradient(180deg, rgba(225,6,0,.24), rgba(107,11,15,.08));
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 0 14px rgba(225,6,0,.42), inset 0 0 20px rgba(225,6,0,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow);
}
.btn {
  min-height: 58px;
  padding: 0 22px;
}
.btn-secondary {
  border-color: rgba(255,255,255,.14);
  background: rgba(0,0,0,.24);
  color: var(--ivory);
  box-shadow: inset 0 0 18px rgba(255,255,255,.02);
}
.btn-secondary:hover { border-color: rgba(255,84,84,.75); }
.btn-large { min-width: min(400px, 100%); min-height: 72px; }

.icon-inline,
.line-icon,
.mini-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--red-hot);
  filter: drop-shadow(0 0 10px rgba(225,6,0,.8));
}
.icon-inline.small { width: 20px; height: 20px; flex-basis: 20px; }
.line-icon {
  width: 62px;
  height: 62px;
}
.mini-icon { width: 20px; height: 20px; }
.asset-icon {
  display: block;
  object-fit: contain;
  object-position: center;
}
.header-cta .icon-inline,
.btn .icon-inline,
.footer-badges .mini-icon,
.hero-badge .mini-icon { color: currentColor; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 765px;
  padding-top: 112px;
  overflow: hidden;
  background: var(--black-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 70% 36%, rgba(225,6,0,.27), transparent 19rem),
    radial-gradient(circle at 20% 48%, rgba(225,6,0,.11), transparent 25rem),
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.96) 26%, rgba(3,3,3,.6) 55%, rgba(3,3,3,.96) 100%);
}
.hero-ornament {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 62% 42%, rgba(109,0,0,.24), transparent 24rem),
    linear-gradient(130deg, transparent 0 48%, rgba(225,6,0,.12) 48.2%, transparent 49%),
    url('assets/hero-blur.webp') center / cover no-repeat;
  opacity: .42;
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.06);
}
.hero-image {
  position: absolute;
  z-index: 2;
  right: max(0px, calc((100vw - 1180px) / 2 - 20px));
  bottom: -16px;
  width: min(54vw, 690px);
  height: calc(100% - 72px);
  opacity: .98;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 77%, transparent 100%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.07) brightness(.7) sepia(.1) hue-rotate(-10deg) drop-shadow(0 0 35px rgba(225,6,0,.16));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, #030303 0%, rgba(3,3,3,.93) 38%, rgba(3,3,3,.32) 66%, rgba(3,3,3,.83) 100%),
    linear-gradient(180deg, rgba(3,3,3,.4) 0%, transparent 36%, #030303 100%);
}
.hero-inner {
  position: relative;
  z-index: 4;
  min-height: 650px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 520px;
  padding-bottom: 34px;
}
.section-line {
  position: relative;
  display: block;
  width: 160px;
  height: 1px;
  margin: 0 0 28px 92px;
  background: linear-gradient(90deg, transparent, rgba(225,6,0,.88), transparent);
  box-shadow: 0 0 14px rgba(225,6,0,.7);
}
.section-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--red);
  box-shadow: 0 0 12px rgba(225,6,0,.95);
}
.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-size: clamp(3.4rem, 6.4vw, 6.6rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.065em;
  color: var(--ivory);
  text-shadow: 0 12px 32px rgba(0,0,0,.64);
}
.hero h1 strong {
  color: var(--red-hot);
  font-weight: 500;
  text-shadow: 0 0 18px rgba(225,6,0,.48);
}
.hero p {
  max-width: 430px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.hero-actions {
  display: grid;
  gap: 14px;
  width: min(430px, 100%);
}
.hero-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(243,239,230,.72);
  font-size: .82rem;
}
.hero-note i { font-style: normal; color: rgba(243,239,230,.45); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; }

.feature-card {
  position: relative;
  z-index: 5;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,20,22,.88), rgba(8,8,9,.75));
  box-shadow: var(--soft-glow), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(14px);
}
.feature-card article {
  min-height: 226px;
  padding: 30px 24px 26px;
  display: grid;
  justify-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.feature-card article:last-child { border-right: 0; }
.feature-card h2 {
  margin: 14px 0 8px;
  font-size: .95rem;
  line-height: 1.18;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.feature-card p {
  margin: 0;
  font-size: .79rem;
  line-height: 1.62;
  color: rgba(243,239,230,.66);
}

.section-block { padding: 34px 0 0; }
.section-block.compact { padding-top: 30px; }
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}
.section-title span {
  width: min(94px, 20vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 16px rgba(225,6,0,.72);
}
.section-title h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.carousel {
  position: relative;
  padding: 0 76px 26px;
}
.carousel-window { overflow: hidden; border-radius: 16px; }
.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.slide { flex: 0 0 100%; }
.experience-card,
.ambience-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,20,22,.86), rgba(6,6,7,.74));
  box-shadow: 0 20px 70px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.03);
}
.experience-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 214px;
}
.experience-card figure,
.ambience-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.experience-card figure::after,
.ambience-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 28%, rgba(5,5,6,.6)), radial-gradient(circle at 22% 55%, rgba(225,6,0,.14), transparent 42%);
}
.experience-card img,
.ambience-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08) brightness(.66);
  transform: scale(1.04);
}
.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 34px 42px 34px 36px;
}
.slide-copy small {
  color: var(--red-hot);
  margin-bottom: 10px;
  font-size: .86rem;
  letter-spacing: .14em;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(225,6,0,.7);
}
.slide-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
.slide-copy p {
  margin: 0;
  max-width: 380px;
  color: rgba(243,239,230,.7);
  font-size: .96rem;
  line-height: 1.68;
}
.carousel-btn {
  position: absolute;
  top: calc(50% - 16px);
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,61,61,.82);
  border-radius: 50%;
  background: rgba(20,20,22,.36);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(225,6,0,.44), inset 0 0 12px rgba(225,6,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.04); box-shadow: var(--glow); }
.carousel-btn.prev { left: 4px; }
.carousel-btn.next { right: 4px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 13px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.carousel-dots button.is-active {
  background: var(--red-hot);
  transform: scale(1.12);
  box-shadow: 0 0 10px rgba(225,6,0,.9);
}

.autoplay-only { padding-inline: 0; }
.autoplay-only .carousel-window { border-radius: 18px; }
.autoplay-only .carousel-track { gap: 0; }
.autoplay-only .slide { flex-basis: 100%; }
.autoplay-only .carousel-dots { margin-top: 14px; }
.autoplay-only .carousel-btn { display: none !important; }
.ambience-only {
  min-height: 380px;
  background: transparent;
  border-color: rgba(255,255,255,.09);
}
.ambience-only figure { height: 380px; }
.ambience-only figure::after {
  background:
    linear-gradient(180deg, rgba(4,4,5,.08), rgba(4,4,5,.18)),
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(225,6,0,.16) 100%);
  backdrop-filter: blur(1px);
}
.ambience-only img { min-height: 380px; filter: saturate(1.14) contrast(1.08) brightness(.68); }

.location {
  margin-top: 18px;
  min-height: 280px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(20,20,22,.92), rgba(8,8,9,.76)),
    radial-gradient(circle at 85% 45%, rgba(225,6,0,.16), transparent 22rem);
  box-shadow: var(--soft-glow), inset 0 1px 0 rgba(255,255,255,.03);
}
.location-copy {
  padding: 34px 0 34px 48px;
  align-self: center;
}
.location h2 {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 500;
}
.location h2 strong { color: var(--red-hot); font-weight: 500; text-shadow: 0 0 14px rgba(225,6,0,.52); }
.info-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: 16px;
}
.info-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: .9rem;
  color: #fff;
}
.info-line p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.52;
  color: rgba(243,239,230,.68);
}
.map-art {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #09090a;
}
.map-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.final-cta {
  position: relative;
  margin-top: 18px;
  min-height: 154px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 28px 42px;
  border: 1px solid rgba(225,6,0,.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 50%, rgba(225,6,0,.42), transparent 14rem),
    radial-gradient(circle at 100% 50%, rgba(225,6,0,.42), transparent 14rem),
    linear-gradient(90deg, rgba(107,11,15,.72), rgba(20,20,22,.92) 38%, rgba(20,20,22,.92) 62%, rgba(107,11,15,.72));
  box-shadow: var(--soft-glow), inset 0 0 50px rgba(225,6,0,.08);
}
.velvet {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  opacity: .52;
  background:
    radial-gradient(circle at 45% 20%, rgba(255,255,255,.14), transparent 1.6rem),
    radial-gradient(circle at 68% 58%, rgba(255,255,255,.1), transparent 2.2rem),
    radial-gradient(circle at 35% 78%, rgba(255,255,255,.09), transparent 2rem),
    repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,.08) 0 18px, rgba(255,255,255,.03) 18px 21px);
}
.velvet.left { left: 0; }
.velvet.right { right: 0; transform: scaleX(-1); }
.final-copy,
.final-cta .btn { position: relative; z-index: 1; }
.final-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 500;
}
.final-copy h2 strong { color: var(--red-hot); font-weight: 500; text-shadow: 0 0 14px rgba(225,6,0,.62); }
.final-copy p {
  margin: 0;
  max-width: 490px;
  color: rgba(243,239,230,.72);
  font-size: .92rem;
  line-height: 1.58;
}

.site-footer {
  padding: 22px 0 28px;
  background: #040404;
}
.footer-inner {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 22px;
  align-items: center;
}
.footer-logo img {
  width: 132px;
  filter: drop-shadow(0 0 12px rgba(225,6,0,.58));
}
.footer-badges {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  align-items: center;
  gap: 20px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  color: rgba(243,239,230,.72);
}
.footer-badges span,
.footer-badges a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.copyright {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: rgba(243,239,230,.52);
  font-size: .78rem;
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    width: calc(100% - 28px);
    height: 66px;
    grid-template-columns: auto 1fr auto;
    border-radius: 16px;
    padding: 10px 12px 10px 14px;
  }
  .brand img { width: 92px; }
  .header-cta,
  .nav-menu { display: none; }
  .menu-toggle {
    justify-self: end;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255,69,69,.82);
    border-radius: 10px;
    background: rgba(20,20,22,.46);
    box-shadow: 0 0 16px rgba(225,6,0,.38), inset 0 0 18px rgba(225,6,0,.08);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--ivory);
    box-shadow: 0 0 8px rgba(225,6,0,.7);
    transition: transform .25s ease, opacity .25s ease;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu.is-open {
    position: absolute;
    display: grid;
    gap: 0;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 8px;
    border: 1px solid rgba(225,6,0,.22);
    border-radius: 16px;
    background: rgba(6,6,7,.97);
    box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 24px rgba(225,6,0,.16);
    backdrop-filter: blur(18px);
  }
  .nav-menu.is-open a {
    padding: 17px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-menu.is-open a:last-child { border-bottom: 0; }

  .hero {
    min-height: 720px;
    padding-top: 86px;
  }
  .hero::before {
    background:
      linear-gradient(90deg, #030303 0%, rgba(3,3,3,.92) 48%, rgba(3,3,3,.54) 70%, rgba(3,3,3,.9) 100%),
      linear-gradient(180deg, rgba(3,3,3,.22), transparent 42%, #030303 100%);
  }
  .hero-image {
    right: -24vw;
    width: 94vw;
    height: 100%;
    opacity: .82;
    mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 70%, transparent 96%);
  }
  .hero-image img {
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.05) contrast(1.07) brightness(.7) sepia(.1) hue-rotate(-10deg) drop-shadow(0 0 35px rgba(225,6,0,.16));
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, #030303 0%, rgba(3,3,3,.92) 48%, rgba(3,3,3,.54) 70%, rgba(3,3,3,.9) 100%),
      linear-gradient(180deg, rgba(3,3,3,.22), transparent 42%, #030303 100%);
  }
  .hero-inner { min-height: 630px; align-items: center; }
  .hero-copy { max-width: 390px; padding-top: 10px; }
  .section-line { width: 118px; margin-left: 72px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(3.15rem, 13vw, 4.95rem); }
  .hero p { max-width: 345px; font-size: .92rem; line-height: 1.58; }
  .hero-actions { width: min(350px, 100%); }
  .btn { min-height: 56px; font-size: .72rem; padding: 0 16px; }
  .feature-card {
    margin-top: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card article { min-height: 204px; padding: 24px 18px 22px; }
  .feature-card article:nth-child(2) { border-right: 0; }
  .feature-card article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }

  .carousel { padding-inline: 0; }
  .carousel-btn { width: 44px; height: 44px; background: rgba(10,10,11,.58); }
  .carousel-btn.prev { left: -10px; }
  .carousel-btn.next { right: -10px; }
  .experience-card { grid-template-columns: 1fr; }
  .experience-card figure { height: 182px; }
  .experience-card figure::after { background: linear-gradient(0deg, rgba(5,5,6,.86), transparent 58%); }
  .slide-copy { padding: 24px 24px 26px; }
  .slide-copy h3 { font-size: 1.78rem; }
  .slide-copy p { font-size: .9rem; }
  .ambience-only,
  .ambience-only figure,
  .ambience-only img { min-height: 300px; height: 300px; }

  .location { grid-template-columns: 1fr; }
  .location-copy { padding: 30px 26px 0; }
  .map-art { min-height: 230px; }
  

  .final-cta {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    text-align: left;
  }
  .btn-large { min-width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-badges {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 8px;
  }
  .footer-badges span,
  .footer-badges a {
    padding-left: 0;
    border-left: 0;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 28px); }
  .hero {
    min-height: 704px;
    padding-top: 84px;
  }
  .hero-copy {
    max-width: 335px;
  }
  .hero-image {
    right: -24vw;
    width: 94vw;
    height: 100%;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 14.8vw, 4.2rem);
    letter-spacing: -.075em;
  }
  .hero p { max-width: 300px; }
  .hero-note { max-width: 310px; gap: 8px; font-size: .74rem; }
  .feature-card { grid-template-columns: 1fr; border-radius: 15px; }
  .feature-card article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .feature-card article:last-child { border-bottom: 0; }
  .feature-card h2 { font-size: .88rem; }
  .feature-card p { max-width: 286px; }
  .section-block { padding-top: 28px; }
  .section-title { gap: 13px; }
  .section-title h2 { font-size: 1rem; letter-spacing: .13em; }
  .section-title span { width: 52px; }
  .experience-card img { min-height: 160px; }
  .experience-card figure { height: 160px; }
  .slide-copy h3 { font-size: 1.64rem; }
  .ambience-only,
  .ambience-only figure,
  .ambience-only img { min-height: 240px; height: 240px; }
  .location h2 { font-size: 2.25rem; }
  
  .final-copy h2 { font-size: 2.1rem; }
  .velvet { width: 120px; }
  .site-footer { padding-bottom: 32px; }
}

/* V8 - troca de fotos por categoria mantendo dimensões dos cards */
.photo-cycle {
  background: #070708;
}
.photo-cycle img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity .72s ease;
}
.photo-cycle img.is-active {
  opacity: 1;
}
.experience-card figure::after,
.ambience-card figure::after {
  z-index: 2;
  pointer-events: none;
}

/* V9 - ajustes finais de preenchimento, rodapé e ambientes */
.experience-card img,
.ambience-card img {
  filter: saturate(1.08) contrast(1.06) brightness(.78);
  transform: scale(1.14);
  transform-origin: center center;
}

.ambience-only img {
  min-height: 380px;
  filter: saturate(1.06) contrast(1.03) brightness(.84);
  transform: scale(1.16);
}

.site-footer {
  padding: 18px 0 26px;
  background: #040404;
}

.footer-inner.simple-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-inner.simple-footer .copyright {
  grid-column: auto;
  margin: 0;
}

@media (max-width: 980px) {
  .footer-inner.simple-footer {
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .experience-card img,
  .ambience-card img {
    transform: scale(1.18);
  }

  .ambience-only,
  .ambience-only figure,
  .ambience-only img {
    min-height: 240px;
    height: 240px;
  }
}


/* VFINAL CORRIGIDA - somente animações + ajuste fino do carrossel de ambientes */
.hero-copy {
  will-change: transform, opacity, filter;
}

.js-enhanced .hero-animate {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition:
    opacity .95s cubic-bezier(.22,.61,.36,1),
    transform .95s cubic-bezier(.22,.61,.36,1),
    filter .95s ease;
}

.js-enhanced .hero-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-enhanced .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity .85s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1),
    filter .85s ease;
  will-change: transform, opacity, filter;
}

.js-enhanced .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Experiências: mantém o padrão aprovado, só com preenchimento mais natural */
.experience-card img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06) brightness(.76);
}

/* Ambientes: sem estourar. Mais próximo, mas preservando a foto inteira com borda discreta */
.ambience-only {
  background: linear-gradient(180deg, rgba(20,20,22,.82), rgba(6,6,7,.82));
}

.ambience-only figure {
  height: 380px;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(225,6,0,.10), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.ambience-only figure::after {
  background:
    linear-gradient(180deg, rgba(4,4,5,.02), rgba(4,4,5,.12)),
    radial-gradient(circle at 50% 50%, transparent 44%, rgba(225,6,0,.07) 100%);
}

.ambience-only img {
  width: 100%;
  height: 100%;
  min-height: auto;
  object-fit: contain;
  object-position: center center;
  background: #09090a;
  border-radius: 12px;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.02) brightness(.90);
}

/* Clique lateral na aba Ambientes */
.clickable-sides .carousel-window {
  position: relative;
  cursor: pointer;
}

.clickable-sides .carousel-window::before,
.clickable-sides .carousel-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.clickable-sides .carousel-window::before {
  left: 0;
  background: linear-gradient(90deg, rgba(225,6,0,.12), transparent 82%);
}

.clickable-sides .carousel-window::after {
  right: 0;
  background: linear-gradient(270deg, rgba(225,6,0,.12), transparent 82%);
}

.clickable-sides .carousel-window:hover::before,
.clickable-sides .carousel-window:hover::after {
  opacity: 1;
}

/* Rodapé final aprovado */
.footer-inner.simple-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-inner.simple-footer .copyright {
  grid-column: auto;
  margin: 0;
}

@media (max-width: 980px) {
  .ambience-only,
  .ambience-only figure {
    min-height: 300px;
    height: 300px;
  }

  .ambience-only figure {
    padding: 8px;
  }

  .ambience-only img {
    transform: scale(1.01);
  }
}

@media (max-width: 560px) {
  .experience-card img {
    transform: scale(1.05);
  }

  .ambience-only,
  .ambience-only figure {
    min-height: 240px;
    height: 240px;
  }

  .ambience-only figure {
    padding: 8px;
  }

  .ambience-only img {
    transform: scale(1);
  }
}

/* AJUSTE FINAL DE FOTOS - molduras maiores e ambientes sem desfoque */
.experience-card {
  min-height: 330px;
}

.experience-card figure {
  min-height: 330px;
}

.experience-card img {
  min-height: 330px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.06) brightness(.82);
}

.experience-card figure::after {
  background:
    linear-gradient(90deg, transparent 45%, rgba(5,5,6,.48)),
    radial-gradient(circle at 22% 55%, rgba(225,6,0,.10), transparent 46%);
}

.ambience-carousel {
  max-width: 1080px;
  margin-inline: auto;
}

.ambience-only {
  min-height: 470px;
}

.ambience-only figure {
  min-height: 470px;
  height: 470px;
  padding: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.01)),
    #070708;
}

.ambience-only figure::after {
  background: linear-gradient(180deg, rgba(4,4,5,.015), rgba(4,4,5,.055));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ambience-only img {
  width: 100%;
  height: 100%;
  min-height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  transform: scale(1);
  filter: saturate(1.08) contrast(1.04) brightness(.96);
}

@media (max-width: 980px) {
  .experience-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .experience-card figure {
    min-height: 310px;
    height: 310px;
  }

  .experience-card img {
    min-height: 310px;
    transform: scale(1.03);
  }

  .experience-card figure::after {
    background: linear-gradient(0deg, rgba(5,5,6,.56), transparent 64%);
  }

  .ambience-only,
  .ambience-only figure {
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 560px) {
  .experience-card figure {
    min-height: 285px;
    height: 285px;
  }

  .experience-card img {
    min-height: 285px;
    transform: scale(1.02);
  }

  .slide-copy {
    padding: 24px 22px 26px;
  }

  .ambience-only,
  .ambience-only figure {
    min-height: 340px;
    height: 340px;
  }

  .ambience-only figure {
    padding: 5px;
  }
}

@media (max-width: 390px) {
  .experience-card figure {
    min-height: 260px;
    height: 260px;
  }

  .experience-card img {
    min-height: 260px;
  }

  .ambience-only,
  .ambience-only figure {
    min-height: 310px;
    height: 310px;
  }
}
