:root {
  --bg: #080808;
  --bg-soft: #101010;
  --surface: rgba(17, 17, 17, 0.86);
  --surface-strong: #141414;
  --surface-soft: #1b1b1b;
  --line: rgba(201, 160, 74, 0.22);
  --line-strong: rgba(201, 160, 74, 0.48);
  --gold: #c9a04a;
  --gold-bright: #f2cb78;
  --gold-muted: #8f6a27;
  --text: #f5f0e6;
  --text-soft: #c7c0b4;
  --text-dim: #8f8a81;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 160, 74, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(201, 160, 74, 0.1), transparent 20%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.has-cookie-banner {
  padding-bottom: 120px;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 75%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 75%);
  opacity: 0.25;
  z-index: -1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 18px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  min-height: var(--header-height);
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.74);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-logo-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.brand-text strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 1.52rem;
  font-weight: 400;
}

.brand-accent {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav-panel a {
  white-space: nowrap;
}

.nav-panel a {
  position: relative;
  padding: 12px 16px;
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: color 220ms ease, transform 220ms ease, background 220ms ease;
  border-radius: 999px;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--text);
  background: rgba(201, 160, 74, 0.12);
  transform: translateY(-1px);
}

.language-switcher {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 160, 74, 0.44);
  background: linear-gradient(180deg, rgba(22, 18, 12, 0.96), rgba(9, 9, 9, 0.96));
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(201, 160, 74, 0.12), 0 10px 30px rgba(0, 0, 0, 0.32);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.lang-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 203, 120, 0.72);
}

.flag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 4px 12px rgba(0, 0, 0, 0.22);
}

.flag-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.active-flag.is-hidden {
  display: none;
}

.lang-code {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.lang-arrow {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
  transition: transform 220ms ease;
}

.lang-arrow svg {
  width: 100%;
  height: 100%;
}

.language-switcher.is-open .lang-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 184px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(201, 160, 74, 0.28);
  background: linear-gradient(180deg, rgba(17, 14, 10, 0.98), rgba(6, 6, 6, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.lang-option:hover,
.lang-option.is-active {
  background: rgba(201, 160, 74, 0.14);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 88px) 0 96px;
}

.hero-media,
.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.72) 8%, rgba(6, 6, 6, 0.2) 50%, rgba(6, 6, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.18), rgba(6, 6, 6, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  min-height: calc(100svh - var(--header-height) - 184px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold-bright);
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.location-media h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8.2rem);
}

.hero-description,
.section-heading p,
.about-copy p,
.booking-copy p,
.footer-description {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-floating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: min(520px, 100%);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.cookie-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.cookie-copy a {
  color: var(--gold-bright);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #121212;
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-float {
  position: relative;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-width: 1px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  animation: heroFloat 4.6s ease-in-out infinite;
}

.hero-float::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242, 203, 120, 0.72), rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-float-primary {
  animation-delay: 0s;
}

.hero-float-secondary {
  animation-delay: 0.65s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #121212;
  box-shadow: 0 18px 32px rgba(201, 160, 74, 0.26);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.section {
  position: relative;
  padding: 110px 0;
}

.about-section,
.gallery-section,
.reviews-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 100%);
}

.split-layout,
.location-grid,
.booking-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.18) 100%);
}

.image-frame img {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-frame.large img {
  aspect-ratio: 5 / 4;
}

.about-copy h2,
.section-heading h2,
.location-media h2,
.booking-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-highlights div,
.detail-card,
.review-card,
.booking-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about-highlights div {
  padding: 22px;
}

.about-highlights strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.about-highlights span {
  color: var(--text-soft);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-heading.compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-section {
  padding-top: 92px;
}

.pricing-list-shell {
  max-width: 980px;
}

.pricing-list-title {
  margin: 0 0 34px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.96;
  color: var(--text);
}

.pricing-list {
  border-top: 1px solid rgba(201, 160, 74, 0.24);
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 160, 74, 0.24);
}

.pricing-service {
  display: grid;
  gap: 6px;
}

.pricing-service span {
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  color: var(--text);
}

.pricing-service small {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.pricing-value {
  flex: 0 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
}

.gallery-shell {
  position: relative;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
}

.carousel-slide {
  min-width: calc(100% / 3);
  padding: 0 10px;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.carousel-control {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.carousel-control:hover {
  transform: translateY(-2px);
  background: rgba(201, 160, 74, 0.14);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}

.location-section {
  padding-top: 86px;
}

.location-media {
  display: grid;
  align-content: start;
  gap: 14px;
}

.location-media .image-frame.large {
  margin-top: -10px;
}

.location-content {
  display: grid;
  gap: 24px;
}

.location-grid {
  align-items: start;
}

.map-card,
.booking-form {
  padding: 18px;
}

.map-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 24px;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.detail-card {
  padding: 24px;
}

.detail-card h3,
.site-footer h3 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.detail-card p,
.site-footer p {
  margin: 0 0 8px;
  color: var(--text-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  padding: 28px;
}

.stars {
  margin-bottom: 16px;
  color: #ffca46;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.review-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
}

.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.booking-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(201, 160, 74, 0.12);
  border: 1px solid var(--line);
  color: var(--text);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 10px;
}

.field-group label {
  color: var(--text);
  font-weight: 600;
}

.field-group input,
.field-group select {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 14, 14, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.field-group select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-bright) 50%),
    linear-gradient(135deg, var(--gold-bright) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field-group select option {
  background: #121212;
  color: var(--text);
}

.field-group select option[value=""] {
  color: var(--text-soft);
}

.field-group input:focus,
.field-group select:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(201, 160, 74, 0.12);
}

.field-group input::placeholder {
  color: var(--text-dim);
}

.site-footer {
  padding: 36px 0 44px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.4));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  align-items: start;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-logo-wrap {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, filter 220ms ease;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(201, 160, 74, 0.15);
}

.social-links svg,
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: 54px;
  height: 54px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--gold-bright);
  box-shadow: none;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.42));
}

.whatsapp-float:hover {
  background: transparent;
  color: #25d366;
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.5));
}

.whatsapp-float svg {
  width: 52px;
  height: 52px;
}

.footer-bottom-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 28px;
}

.footer-copy {
  margin: 0;
  justify-self: start;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.2;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-legal-links a:hover {
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.footer-credit {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-credit span {
  color: var(--gold-bright);
  font-weight: 700;
}

.footer-credit:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-slide {
    min-width: calc(100% / 2);
  }

  .footer-grid,
  .split-layout,
  .location-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 920px) {
  .carousel-slide img {
    aspect-ratio: 4 / 4.8;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-wrap {
    min-height: 78px;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: relative;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    gap: 8px;
    min-width: 260px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-actions {
    gap: 10px;
    margin-left: auto;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .brand-text strong {
    font-size: 1.34rem;
  }

  .brand-accent {
    font-size: 0.92rem;
    letter-spacing: 0.18em;
  }

  .brand-text small {
    font-size: 0.8rem;
  }

  .language-switcher {
    order: 1;
    margin-right: 8px;
  }

  .site-nav {
    order: 2;
  }

  .lang-trigger {
    min-width: 94px;
    justify-content: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 0;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 150px);
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-media .image-frame.large {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 100% - 28px);
  }

  .nav-wrap {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand-text strong {
    font-size: 1.24rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-accent {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .language-switcher {
    position: relative;
  }

  .lang-trigger {
    min-height: 44px;
    padding: 8px 12px 8px 10px;
    gap: 8px;
  }

  .flag-icon {
    width: 24px;
    height: 24px;
  }

  .language-menu {
    min-width: 170px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.2rem);
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 132px);
    align-items: end;
    padding-bottom: 18px;
  }

  .hero-media {
    background: #050505;
  }

  .hero-canvas {
    transform: scale(1.18);
  }

  .hero-floating-actions {
    width: min(340px, 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-inline: auto;
  }

  .hero-floating-actions .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .section {
    padding: 82px 0;
  }

  .about-highlights,
  .reviews-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    align-items: flex-start;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .pricing-service span,
  .pricing-value {
    font-size: 1.05rem;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .carousel-slide {
    min-width: 100%;
    padding: 0;
  }

  .carousel-slide img {
    aspect-ratio: 4 / 4.9;
  }

  .booking-form,
  .map-card {
    padding: 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 46px;
    height: 46px;
  }

  .footer-legal-links {
    gap: 16px;
  }

  .footer-bottom-line {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .footer-bottom-line {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy,
  .footer-legal-links {
    justify-self: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-canvas {
    transform: scale(1.24);
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .hero-floating-actions {
    width: min(312px, 100%);
    gap: 12px;
  }

  .lang-trigger {
    min-width: 88px;
    padding: 8px 10px;
  }

  .hero-floating-actions .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.91rem;
  }

  body.has-cookie-banner {
    padding-bottom: 156px;
  }

  .carousel-slide img,
  .image-frame.large img,
  .image-frame img {
    aspect-ratio: 4 / 5.2;
  }

  .cookie-banner-inner {
    padding: 16px;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .pricing-row {
    gap: 14px;
    padding: 18px 0;
  }

  .pricing-service span,
  .pricing-value {
    font-size: 0.98rem;
  }
}