﻿:root {
  --bg: #090909;
  --surface: #121110;
  --surface-soft: #181614;
  --surface-elevated: #1f1b18;
  --text: #f4efe8;
  --muted: #b9ab98;
  --accent: #cfac67;
  --accent-strong: #e3be74;
  --accent-soft: #8f7344;
  --line: rgba(207, 172, 103, 0.26);
  --line-soft: rgba(255, 255, 255, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  --container: min(1140px, calc(100% - 2.4rem));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background:
    radial-gradient(circle at 15% -20%, rgba(74, 53, 29, 0.52) 0%, transparent 42%),
    radial-gradient(circle at 90% 0%, rgba(44, 36, 25, 0.45) 0%, transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(rgba(255, 255, 255, 0.02), transparent 30%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.inline-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--accent);
  opacity: 0.95;
}

.inline-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.6rem, 8.5vw, 7rem) 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.3rem;
}

.section-head h2 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.01em;
  line-height: 1.06;
  margin-bottom: 0.9rem;
}

.section-head p,
.section-head .lead {
  color: var(--muted);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #b88947, #e0c285);
  box-shadow: 0 0 18px rgba(216, 181, 106, 0.45);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease, background-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.67);
  backdrop-filter: blur(14px);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(160deg, #1a1611, #302517);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  font-size: 0.92rem;
  color: #ede4d7;
  transition: color 220ms ease;
}

.nav a:not(.btn) {
  position: relative;
  padding-bottom: 0.08rem;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c99753, #efcc87);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible,
.nav a:not(.btn).is-active {
  color: var(--accent-strong);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after,
.nav a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 230ms ease, box-shadow 230ms ease, border-color 230ms ease,
    background-color 230ms ease, color 230ms ease;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  transform: translateX(-160%);
  transition: transform 480ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(170%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--small {
  padding: 0.62rem 1rem;
  font-size: 0.83rem;
}

.btn--primary {
  background: linear-gradient(135deg, #ddb970 0%, #b88947 100%);
  color: #17120c;
  box-shadow: 0 16px 30px rgba(161, 118, 52, 0.3);
  animation: ctaPulse 3.8s ease-in-out infinite;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn--text {
  border: none;
  padding-left: 0.2rem;
  color: var(--muted);
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding-top: 5.5rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(90px, 16vh, 180px);
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.94));
  pointer-events: none;
  z-index: 1;
}

.hero-image,
.hero-overlay,
.hero-noise,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/images/img_7368.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform, background-position;
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(110deg, rgba(7, 7, 7, 0.84) 12%, rgba(10, 10, 10, 0.52) 44%, rgba(7, 7, 7, 0.9) 100%);
}

.hero-noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  opacity: 0.2;
}

.hero-glow {
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.24;
  mix-blend-mode: screen;
}

.hero-glow--one {
  inset: 8% auto auto -14%;
  width: min(460px, 58vw);
  height: min(460px, 58vw);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(236, 190, 119, 0.65), rgba(236, 190, 119, 0));
  animation: glowFloat 9s ease-in-out infinite;
}

.hero-glow--two {
  inset: auto -12% 0 auto;
  width: min(400px, 55vw);
  height: min(400px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(202, 145, 63, 0.56), rgba(202, 145, 63, 0));
  animation: glowFloat 10.5s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
}

.hero h1 {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  max-width: 14ch;
  text-wrap: balance;
}

.hero-copy {
  margin-top: 1.25rem;
  max-width: 56ch;
  color: #d3cabd;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.78rem;
}

.hero-location {
  margin-top: 1rem;
  max-width: 60ch;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(227, 190, 116, 0.45);
  color: rgba(233, 223, 210, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
  display: grid;
  gap: 0.26rem;
}

.hero-location .with-icon {
  color: inherit;
}

.hero-facts {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 760px;
}

.hero-facts article {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(20, 18, 16, 0.86), rgba(10, 9, 9, 0.82));
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
  animation: factFloat 7s ease-in-out infinite;
}

.hero-facts article:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-facts article:nth-child(3) {
  animation-delay: 0.9s;
}

.hero-facts h2 {
  font-family: "Bodoni Moda", Georgia, serif;
  color: var(--accent);
  font-size: 1.28rem;
}

.hero-facts p {
  color: #d4cabc;
  font-size: 0.86rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  animation: float 2.2s ease-in-out infinite;
  z-index: 2;
}

.about {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  min-height: 440px;
  position: relative;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent);
  pointer-events: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 640ms ease;
}

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

.feature-strip {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-pill {
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(20, 19, 18, 0.92), rgba(10, 9, 9, 0.95));
  position: relative;
  overflow: hidden;
}

.feature-pill::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-18deg);
  animation: sheen 7s ease-in-out infinite;
}

.feature-pill h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-pill p {
  color: var(--muted);
  font-size: 0.88rem;
}

.services {
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 16% 0 auto;
  height: 520px;
  background: radial-gradient(circle at 30% 45%, rgba(208, 168, 95, 0.11), transparent 60%);
  pointer-events: none;
}

.price-update {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(207, 172, 103, 0.4);
  background: linear-gradient(145deg, rgba(48, 35, 17, 0.45), rgba(16, 14, 12, 0.48));
  color: #efe1d1;
}

.price-update strong {
  color: var(--accent-strong);
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-column {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--surface-elevated), var(--surface));
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.price-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0, rgba(207, 172, 103, 0.16), transparent 45%);
  pointer-events: none;
}

.price-column h3 {
  font-family: "Bodoni Moda", Georgia, serif;
  color: #f4eadb;
  letter-spacing: 0.01em;
  margin-bottom: 0.95rem;
  font-size: 1.2rem;
}

.price-list {
  list-style: none;
  display: grid;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.62rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  transition: transform 220ms ease, color 220ms ease;
}

.price-list li:first-child {
  border-top: 0;
}

.price-list li:hover {
  transform: translateX(3px);
}

.price-list span {
  color: #dfd4c7;
  font-size: 0.94rem;
}

.price-list .with-icon {
  gap: 0.35rem;
}

.price-list .inline-icon {
  width: 0.86rem;
  height: 0.86rem;
  transform: translateY(1px);
}

.price-list strong {
  color: var(--accent-strong);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-list li.is-highlight {
  position: relative;
  border-top-style: solid;
  border-top-color: rgba(227, 190, 116, 0.45);
}

.price-list li.is-highlight::after {
  content: "";
  position: absolute;
  left: -0.55rem;
  right: -0.55rem;
  top: 0.25rem;
  bottom: 0.25rem;
  border-radius: 10px;
  border: 1px solid rgba(227, 190, 116, 0.3);
  background: linear-gradient(90deg, rgba(227, 190, 116, 0.08), rgba(227, 190, 116, 0));
  pointer-events: none;
  animation: borderPulse 3.4s ease-in-out infinite;
}

.gallery {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 82px;
  gap: 0.9rem;
}

.gallery-item {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #0c0c0b;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item--hero {
  grid-column: span 8;
  grid-row: span 5;
}

.gallery-item--wide {
  grid-column: span 8;
  grid-row: span 3;
}

.gallery-item--tall {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 35%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.76));
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before,
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease, filter 620ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.08) !important;
  filter: saturate(1.08);
}

.gallery-item.reveal.is-visible img {
  animation: mediaDrift 10s ease-in-out infinite alternate;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.benefit-card {
  background: linear-gradient(155deg, rgba(22, 21, 20, 0.95), rgba(10, 9, 9, 0.95));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 172, 103, 0.35);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.benefit-card h3 {
  margin: 0.8rem 0 0.45rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.contact-card,
.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, var(--surface-elevated), var(--surface));
  overflow: hidden;
}

.contact-card {
  padding: 1.5rem;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 1.5rem;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
  padding: 0.95rem 1rem;
  border-radius: 14px;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-line .inline-icon {
  width: 0.86rem;
  height: 0.86rem;
}

.contact-line strong {
  font-size: 1.01rem;
}

.hours h3 {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.hours h3 .inline-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.hours ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.hours li span {
  color: var(--muted);
}

.contact-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.map-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.map-card iframe {
  border: 0;
  width: 100%;
  min-height: 350px;
  flex: 1;
  filter: grayscale(1) contrast(1.08);
}

.map-overlay {
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.map-overlay div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(207, 172, 103, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  color: #f0e6d8;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(207, 172, 103, 0.75);
  background: rgba(207, 172, 103, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080808;
}

.footer-inner {
  min-height: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.84rem;
  color: #ab9f8f;
}

.footer-inner strong {
  color: #e6ddcf;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  padding: 2rem 1rem;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1024px, 94vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.lightbox p {
  margin-top: 0.9rem;
  text-align: center;
  color: #d7cebf;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.lightbox-nav--prev {
  left: clamp(0.5rem, 3vw, 2rem);
}

.lightbox-nav--next {
  right: clamp(0.5rem, 3vw, 2rem);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(207, 172, 103, 0.22);
  border-color: rgba(207, 172, 103, 0.8);
  transform: translateY(-50%) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal.reveal-up {
  transform: translateY(26px) scale(0.985);
}

.reveal.reveal-left {
  transform: translateX(-34px) scale(0.98);
}

.reveal.reveal-right {
  transform: translateX(34px) scale(0.98);
}

.reveal.reveal-zoom {
  transform: scale(0.92);
}

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

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(161, 118, 52, 0.3);
  }
  50% {
    box-shadow: 0 18px 36px rgba(216, 181, 106, 0.48);
  }
}

@keyframes heroBreath {
  0% {
    transform: scale(1.08) translateY(0);
  }
  100% {
    transform: scale(1.13) translateY(-10px);
  }
}

@keyframes factFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes mediaDrift {
  0% {
    transform: scale(1.02) translateY(0);
  }
  100% {
    transform: scale(1.07) translateY(-6px);
  }
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -6%) scale(1.06);
  }
}

@keyframes borderPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes sheen {
  0%,
  70%,
  100% {
    transform: translateX(-170%) skewX(-18deg);
  }
  85% {
    transform: translateX(340%) skewX(-18deg);
  }
}

@media (max-width: 1140px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-rows: 78px;
  }
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 380px;
  }

  .price-board {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 0.7rem;
  }

  .gallery-item,
  .gallery-item--hero,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.2rem;
    right: 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    gap: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 230ms ease, transform 230ms ease;
  }

  .nav a:not(.btn) {
    padding: 0.68rem 0.8rem;
    border-radius: 10px;
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .nav a:not(.btn):hover,
  .nav a:not(.btn):focus-visible,
  .nav a:not(.btn).is-active {
    background: rgba(255, 255, 255, 0.08);
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 95vh;
    min-height: 95dvh;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-copy {
    max-width: 44ch;
  }

  .hero-location {
    max-width: 44ch;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .contact-actions .btn {
    flex: 1;
  }

  .footer-inner {
    padding: 1rem 0;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1140px, calc(100% - 1.2rem));
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }

  .hero-cta {
    gap: 0.6rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta .btn--text {
    width: auto;
    padding-left: 0;
  }

  .hero-location {
    font-size: 0.84rem;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .hours li {
    font-size: 0.86rem;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text small {
    font-size: 0.61rem;
  }

  .map-card iframe {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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