:root {
  --ink: #131313;
  --paper: #fafaf6;
  --soft: #f1f1ec;
  --surface: #ffffff;
  --line: rgba(19, 19, 19, 0.12);
  --yellow: #f7db15;
  --white: #fff;
  --muted: rgba(19, 19, 19, 0.64);
  --radius: 8px;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img,
iframe {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 22px;
}

.nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(19, 19, 19, 0.68);
  color: var(--white);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  display: none;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 10.5 12 3l9 7.5V21a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1V10.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 10.5 12 3l9 7.5V21a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1V10.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.brand span {
  white-space: nowrap;
}

.nav-short {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14.5px;
  font-weight: 750;
  line-height: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav-social,
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  white-space: nowrap;
}

.nav-social svg,
.nav-whatsapp svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.button,
.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.light {
  background: var(--surface);
  color: var(--ink);
}

.nav-cta-short {
  display: none;
}

.page-hero {
  position: relative;
  min-height: min(760px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 126px 24px 64px;
  color: var(--white);
  background: #111;
}

.page-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-image) center center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.14)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-inner,
.inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  justify-items: start;
}

.section-label {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.5;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.hero-actions,
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.section {
  padding: clamp(62px, 8vw, 96px) 24px;
}

.simple-main {
  padding-top: 94px;
}

.title-band {
  padding: clamp(30px, 5vw, 48px) 24px;
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
}

.title-band h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1;
  text-shadow: none;
}

.simple-map {
  padding: clamp(34px, 5vw, 58px) 24px;
}

.simple-map .map-panel {
  height: min(450px, 58vw);
  min-height: 360px;
}

.tariff-title {
  margin-bottom: 26px;
  text-align: center;
}

.tariff-title h2 {
  max-width: none;
}

.simple-contact {
  padding: clamp(34px, 5vw, 58px) 24px clamp(62px, 7vw, 92px);
}

.simple-contact.soft {
  background: var(--soft);
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.contact-intro h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  text-shadow: none;
}

.contact-intro p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.simple-contact .contact-form {
  width: min(820px, 100%);
  margin: 0 auto;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
  text-wrap: balance;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.dark .lead {
  color: rgba(255, 255, 255, 0.68);
}

.use-grid,
.amenity-grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.use-card,
.amenity,
.plan,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.use-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
}

.icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.use-card h3,
.amenity h3,
.plan h3,
.info-card h3 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.use-card p,
.amenity p,
.plan p,
.plan-copy,
.info-card p {
  color: var(--muted);
  line-height: 1.5;
}

.amenity {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-top: 5px solid var(--yellow);
}

.plans {
  margin-top: 6px;
}

.plan {
  min-height: 470px;
  display: grid;
  grid-template-rows: auto auto minmax(72px, auto) minmax(136px, auto) auto;
  align-content: start;
  gap: 20px;
  padding: 28px;
}

.plan.featured {
  background: var(--yellow);
  border-color: var(--yellow);
}

.price {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.plan-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.plan-highlight {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.plan ul {
  min-height: 136px;
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  font-weight: 750;
  line-height: 1.42;
}

.plan li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--yellow);
}

.plan.featured li::before {
  background: var(--ink);
}

.plan .button {
  align-self: end;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.map-panel,
.contact-form,
.contact-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.info-card .button {
  width: fit-content;
  margin-top: 2px;
}

.instagram-strip {
  position: relative;
  margin-top: 28px;
}

.instagram-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.instagram-track::-webkit-scrollbar {
  display: none;
}

.instagram-card {
  min-height: 650px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.instagram-card iframe {
  width: 100%;
  height: 650px;
  border: 0;
  background: var(--white);
}

.instagram-controls {
  display: none;
}

.carousel-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.carousel-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.carousel-button:disabled {
  opacity: 0.32;
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.22);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 18px;
  background: var(--ink);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
}

.cta-panel h2 {
  max-width: none;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.04;
}

.cta-panel p {
  margin-top: 10px;
  color: rgba(19, 19, 19, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.cta-panel .button {
  background: var(--ink);
  color: var(--white);
}

.contact-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 126px 24px 64px;
  color: var(--white);
  background: #111;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.contact-form,
.contact-side {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(19, 19, 19, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 0 14px;
  outline: none;
}

.form-field textarea {
  min-height: 124px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(19, 19, 19, 0.46);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.form-status {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-line {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong,
.contact-line a {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

footer {
  padding: 26px 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

footer .inner {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
  }

  .nav-actions {
    gap: 6px;
  }

  .brand span,
  .nav-whatsapp span,
  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .nav-links > a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    border-radius: 7px;
  }

  .nav-social,
  .nav-whatsapp {
    min-width: 34px;
    padding: 0 5px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .page-hero {
    min-height: 680px;
  }

  .use-grid,
  .amenity-grid,
  .plans,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-track {
    grid-auto-columns: minmax(300px, calc((100% - 16px) / 2));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px;
  }

  .brand {
    display: inline-flex;
    flex: 0 0 34px;
    min-height: 38px;
    justify-content: center;
  }

  .brand img {
    display: none;
  }

  .brand::before {
    display: block;
  }

  .nav {
    gap: 6px;
    padding: 0 8px;
  }

  .nav-full {
    display: none;
  }

  .nav-short {
    display: inline;
  }

  .nav-links {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    gap: 4px;
    font-size: 11.5px;
  }

  .nav-actions {
    gap: 4px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .page-hero,
  .contact-hero {
    min-height: 680px;
    padding: 118px 18px 38px;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy,
  .lead {
    font-size: 16px;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .simple-main {
    padding-top: 76px;
  }

  .title-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .simple-map {
    padding-left: 18px;
    padding-right: 18px;
  }

  .simple-map .map-panel {
    height: 360px;
  }

  .hero-inner {
    gap: 18px;
  }

  .amenity-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .plan,
  .amenity,
  .use-card,
  .contact-form,
  .contact-side,
  .info-card {
    padding: 20px;
  }

  .instagram-card {
    min-height: 620px;
  }

  .instagram-card iframe {
    height: 620px;
  }

  .instagram-track {
    grid-auto-columns: minmax(300px, 88%);
  }

  .instagram-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
  }

  .map-panel iframe {
    min-height: 340px;
  }
}

@media (max-width: 370px) {
  .nav {
    gap: 6px;
    padding: 0 8px;
  }

  .brand {
    flex-basis: 32px;
    min-height: 36px;
  }

  .brand::before {
    width: 20px;
    height: 20px;
  }

  .nav-links {
    gap: 3px;
    font-size: 10.5px;
  }

  .nav-actions {
    gap: 3px;
  }

  .nav-links > a {
    padding: 0 2px;
  }

  .nav-social,
  .nav-whatsapp {
    min-width: 28px;
  }

  .nav-cta {
    padding: 0 8px;
  }
}
