:root {
  --ink: #f6f3ec;
  --muted: #b9b3a6;
  --paper: #0b0b0c;
  --surface: #151514;
  --line: rgba(246, 243, 236, 0.12);
  --accent: #00a2e8;
  --accent-2: #00a2e8;
  --logo-blue: #00a2e8;
  --logo-blue-deep: #005eb8;
  --pink: #ff3d8a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 1.25rem;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 12, 0.88);
  border-bottom: 1px solid var(--line);
  overflow-x: clip;
}

.nav-wrap {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: 0.92rem;
}

.brand-name span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  white-space: nowrap;
  background: var(--logo-blue);
  color: #fff;
}

.btn:hover {
  background: var(--logo-blue-deep);
}

.btn-book,
.btn-wa {
  background: var(--logo-blue);
  color: #fff;
}

@media (max-width: 799px) {
  .nav-wrap {
    width: min(1120px, calc(100% - 1rem));
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0 0.65rem;
    min-height: 0;
  }

  .brand { min-width: 0; flex: 1 1 auto; }

  .brand img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .brand-name { min-width: 0; font-size: 0.8rem; }

  .nav-actions {
    flex: 1 1 100%;
    flex-shrink: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 0.55rem 0.45rem;
    font-size: 0.78rem;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.15) 0%, rgba(11,11,12,0.25) 40%, rgba(11,11,12,0.92) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto 2.5rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
}

.hero p {
  max-width: 38rem;
  font-size: 1.05rem;
  color: #efeae0;
  margin: 0 0 1.4rem;
}

.price-chip {
  display: inline-flex;
  flex-direction: column;
  background: var(--accent);
  color: #111;
  border-radius: var(--radius);
  padding: 1rem 1.2rem 1.05rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
}

.price-chip b {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.price-chip span {
  font-weight: 700;
  font-size: 0.92rem;
}

.section {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.6rem;
}

.lead { color: var(--muted); max-width: 40rem; }

.split {
  display: grid;
  gap: 1.5rem;
}

.split img {
  width: 100%;
  height: min(420px, 70vw);
  object-fit: cover;
  border-radius: var(--radius);
}

.about-frame {
  position: relative;
  width: min(100%, 22.5rem);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius);
  justify-self: center;
  background: #0b0b0c;
}

.about-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.specs {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
}

.specs div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
}

.specs dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.specs dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
}

.price-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.price-card {
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.price-card.featured {
  background: linear-gradient(180deg, #22150f, #151514);
  border-color: var(--accent);
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0.4rem 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
}

.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.gallery a:first-child {
  grid-column: 1 / -1;
}

.gallery a:first-child img { height: 240px; }

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.metric {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
}

.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 700;
}

.map-note {
  margin-top: 1.2rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 1rem;
}

.lightbox.open { display: grid; }

.lightbox img {
  max-width: min(100%, 960px);
  max-height: 88svh;
  border-radius: 0.8rem;
}

.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}

@media (min-width: 800px) {
  .split { grid-template-columns: minmax(16rem, 22.5rem) 1fr; align-items: center; }
  .about-frame { width: 100%; justify-self: stretch; }
  .cards, .price-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery a:first-child { grid-column: auto; }
  .gallery img, .gallery a:first-child img { height: 220px; }
  .metrics { grid-template-columns: repeat(4, 1fr); }
  .hero-copy { margin-bottom: 4rem; }
}
