﻿:root {
  --bg: #111214;
  --bg2: #1c1d20;
  --surface: #202226;
  --surface2: #2a2c31;
  --text: #f5f5f5;
  --muted: #b8bbc2;

  --red: #d11e18;
  --red-dark: #730f0c;
  --red-soft: rgba(209, 30, 24, 0.2);
  --line: rgba(255, 255, 255, 0.14);

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 26px;

  --font-head: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1400px 800px at 50% -10%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus { left: 12px; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 16, 18, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 22px;
  background: linear-gradient(180deg, #f13a31, #87120d 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__tag {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav__cta {
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(209, 30, 24, 0.45);
  background: linear-gradient(135deg, rgba(125, 18, 13, 0.72), rgba(209, 30, 24, 0.35));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.nav__cta:hover { border-color: rgba(209, 30, 24, 0.75); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
}

.nav-toggle__bars {
  width: 22px;
  height: 14px;
  display: block;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(244, 241, 234, 0.85);
  border-radius: 2px;
}

.nav-toggle__bars::before { top: 2px; }
.nav-toggle__bars::after { bottom: 2px; }

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  padding: 14px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(116, 17, 13, 0.9), rgba(209, 30, 24, 0.65));
  border: 1px solid rgba(209, 30, 24, 0.5);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.fab:hover { border-color: rgba(255, 67, 59, 0.85); }

.hero {
  position: relative;
  min-height: calc(86vh - 64px);
  display: flex;
  align-items: center;
  padding: 64px 0 44px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, #f1f1f1 0%, #c8c8c8 38%, #7a7a7a 62%, #2c2c2c 84%, #121212 100%);
  filter: contrast(1.03);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  margin: 0 auto;
  max-width: 980px;
  animation: hero-fade-in 700ms ease-out both;
}

.hero-logo__top {
  margin: 0 0 14px;
  color: rgba(26, 26, 26, 0.7);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 16px);
}

.hero-logo__main {
  margin: 0;
  display: flex;
  justify-content: center;
  line-height: 1;
}

.hero-logo__image {
  width: min(880px, 88vw);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(20, 0, 0, 0.18));
}

.hero-logo__bottom {
  margin: 12px 0 0;
  color: rgba(27, 27, 27, 0.74);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.1vw, 16px);
}

.hero-slogan {
  margin: 8px 0 0;
  color: rgba(24, 24, 24, 0.74);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(13px, 2vw, 22px);
  text-transform: uppercase;
}

.hero-slogan__tag {
  margin: 0;
  color: rgba(30, 30, 30, 0.62);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.24em;
  font-size: clamp(11px, 1.3vw, 15px);
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  justify-content: center;
  animation: hero-fade-in 700ms ease-out both;
  animation-delay: 120ms;
}

.hero-separator {
  margin: 26px auto 0;
  width: min(620px, 92%);
  display: grid;
  justify-items: center;
  gap: 6px;
  animation: hero-fade-in 700ms ease-out both;
  animation-delay: 240ms;
}

.hero-separator::before,
.hero-separator::after {
  content: "";
  width: min(520px, 100%);
  height: 1px;
  background: rgba(25, 25, 25, 0.28);
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero__actions,
  .hero-separator {
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 600;
}

.btn--primary {
  border-color: rgba(209, 30, 24, 0.5);
  background: linear-gradient(135deg, rgba(115, 15, 12, 0.92), rgba(209, 30, 24, 0.72));
}

.btn--primary:hover { border-color: rgba(255, 67, 59, 0.9); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.04); }

.hero .btn--ghost {
  color: #171717;
  border-color: rgba(15, 15, 15, 0.32);
  background: rgba(255, 255, 255, 0.4);
}

.btn--full {
  width: 100%;
  text-align: center;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head { margin-bottom: 22px; }

.kicker {
  color: rgba(243, 73, 66, 0.95);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 54px);
  margin: 6px 0 10px;
}

.section__lead {
  color: rgba(244, 241, 234, 0.82);
  max-width: 70ch;
  margin: 0;
  line-height: 1.7;
}

.section__foot { margin-top: 16px; }

.link {
  color: #ff5f58;
  border-bottom: 1px solid rgba(255, 95, 88, 0.36);
}

.link:hover { border-bottom-color: rgba(255, 95, 88, 0.8); }

.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  background: rgba(32, 34, 38, 0.84);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.card__title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 10px;
}

.card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 88, 0.28);
  background: rgba(255, 95, 88, 0.1);
  font-size: 13px;
}

.card__price span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.card__price strong {
  color: #ffd7d5;
  letter-spacing: 0.03em;
}

.card__text {
  margin: 0;
  color: rgba(244, 241, 234, 0.82);
  line-height: 1.7;
}

.card__dropdown {
  margin-top: 12px;
  border: 1px solid rgba(255, 95, 88, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.card__dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #ffd7d5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card__dropdown summary::-webkit-details-marker {
  display: none;
}

.card__dropdown summary::after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  color: #ff8f8a;
}

.card__dropdown[open] summary::after {
  content: "-";
}

.card__dropdown p {
  margin: 0;
  padding: 0 12px 12px;
  color: rgba(244, 241, 234, 0.82);
  line-height: 1.7;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card--combo {
  border-color: rgba(255, 95, 88, 0.5);
  background: linear-gradient(180deg, rgba(115, 15, 12, 0.3), rgba(32, 34, 38, 0.9));
}

.card--combo .card__price {
  border-color: rgba(255, 95, 88, 0.45);
  background: rgba(255, 95, 88, 0.14);
}

.chip {
  font-size: 12px;
  color: rgba(244, 241, 234, 0.78);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 88, 0.28);
  background: rgba(255, 95, 88, 0.08);
}

.gallery {
  position: relative;
}

.gallery__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px;
  border-radius: 18px;
}

.gallery__track::-webkit-scrollbar { height: 10px; }

.gallery__track::-webkit-scrollbar-thumb {
  background: rgba(255, 95, 88, 0.32);
  border-radius: 999px;
}

.gallery__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.gallery__item {
  flex: 0 0 320px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 95, 88, 0.2);
  background: rgba(0, 0, 0, 0.28);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 250ms ease, filter 250ms ease;
  filter: contrast(1.05) saturate(1.04);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: contrast(1.12) saturate(1.08);
}

.gallery__hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.prose p {
  margin: 10px 0 0;
  color: rgba(244, 241, 234, 0.82);
  line-height: 1.8;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.reviews {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review {
  border: 1px solid var(--line);
  background: rgba(32, 34, 38, 0.84);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.review__stars {
  margin: 0 0 10px;
  color: #ff5f58;
  letter-spacing: 0.2em;
  font-size: 14px;
}

.review__text {
  margin: 0;
  line-height: 1.7;
  color: rgba(244, 241, 234, 0.86);
}

.review__meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.reviews__actions {
  display: flex;
  justify-content: flex-start;
}

.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.booking__box {
  border: 1px solid var(--line);
  background: rgba(32, 34, 38, 0.84);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.booking__box--soft {
  background: rgba(32, 34, 38, 0.6);
}

.booking__title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 22px;
}

.booking__text {
  margin: 0 0 12px;
  color: rgba(244, 241, 234, 0.82);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  color: rgba(244, 241, 234, 0.86);
}

.hours li:last-child { border-bottom: none; }

.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.whatsapp-panel {
  border: 1px solid var(--line);
  background: rgba(32, 34, 38, 0.84);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  max-width: 720px;
}

.whatsapp-panel__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 24px;
}

.whatsapp-panel__text {
  margin: 12px 0 18px;
  color: rgba(244, 241, 234, 0.84);
  line-height: 1.7;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.95);
  padding: 34px 0 18px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr 1.2fr;
  gap: 16px;
  align-items: start;
}

.footer__brand {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 28px;
  color: #ff5f58;
}

.footer__title {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer__muted {
  color: var(--muted);
  line-height: 1.7;
}

.footer__map iframe {
  width: 100%;
  height: 170px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    margin: 0;
    padding: 14px;
    background: rgba(16, 16, 18, 0.95);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav.is-open { display: flex; }
  .nav__cta { text-align: center; }

  .gallery__item {
    flex-basis: 86vw;
    height: 260px;
  }

  .hero-logo__image {
    width: min(720px, 92vw);
  }

  .hero__actions .btn {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .hero-logo__top {
    letter-spacing: 0.2em;
    font-size: clamp(10px, 2.6vw, 13px);
  }

  .hero-logo__bottom {
    letter-spacing: 0.14em;
    font-size: clamp(10px, 3vw, 13px);
  }

  .hero-slogan {
    font-size: clamp(12px, 4vw, 18px);
    letter-spacing: 0.16em;
  }

  .hero-slogan__tag {
    font-size: clamp(10px, 3.2vw, 13px);
    letter-spacing: 0.2em;
  }

  .hero-separator {
    margin-top: 22px;
    width: 100%;
  }

  body {
    padding-bottom: 88px;
  }

  .fab {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    border-radius: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 14px 16px;
    font-size: 19px;
  }
}

@media (max-width: 560px) {
  .hero-logo {
    max-width: 100%;
  }

  .hero-logo__image {
    width: 94vw;
  }

  .hero-logo__top {
    margin-bottom: 10px;
    letter-spacing: 0.14em;
    font-size: clamp(9px, 2.9vw, 11px);
  }

  .hero-logo__bottom {
    margin-top: 10px;
    letter-spacing: 0.1em;
    font-size: clamp(9px, 2.8vw, 11px);
  }

  .hero__actions {
    margin-top: 20px;
    gap: 10px;
  }

  .hero__actions .btn {
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 15px;
  }
}
