:root {
  --ink: #16120d;
  --text: #322a22;
  --muted: #756a5c;
  --ivory: #fffaf1;
  --porcelain: #f6efe3;
  --paper: #ffffff;
  --emerald: #063c31;
  --emerald-2: #0d5a47;
  --deep: #071e1b;
  --wine: #771827;
  --gold: #b88731;
  --gold-2: #e5c06c;
  --line: rgba(22, 18, 13, 0.12);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 90px rgba(21, 15, 8, 0.18);
  --soft-shadow: 0 18px 46px rgba(21, 15, 8, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
}

body.menu-open,
body.splash-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--porcelain);
}

.section.dark {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 60, 49, 0.98), rgba(7, 30, 27, 0.98)),
    var(--deep);
}

.section.tight {
  padding: 62px 0;
}

.section-header {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
.serif {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.7rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.75rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.28;
}

p {
  margin-bottom: 18px;
  color: var(--muted);
}

.dark h1,
.dark h2,
.dark h3,
.page-hero h1,
.hero h1,
.hero h2,
.hero h3,
.site-footer h3,
.splash-panel h2 {
  color: var(--paper);
}

.dark p,
.page-hero p,
.hero p,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow-line::before,
.eyebrow-line::after {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: rgba(184, 135, 49, 0.76);
}

.btn.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn.ghost {
  color: var(--emerald);
  background: transparent;
  border-color: var(--gold);
}

.btn.ghost:hover {
  color: var(--paper);
  background: var(--emerald);
  border-color: var(--emerald);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.top-bar {
  background: var(--deep);
  border-bottom: 1px solid rgba(229, 192, 108, 0.2);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  font-size: 0.82rem;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.top-contact a,
.top-social a {
  color: rgba(255, 255, 255, 0.88);
}

.top-contact a:hover,
.top-social a:hover {
  color: var(--gold-2);
}

.nav-shell {
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid rgba(184, 135, 49, 0.24);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 178px;
  height: 72px;
  object-fit: contain;
}

.brand-name {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--emerald);
  border: 0;
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--emerald);
  font-size: 0.94rem;
  font-weight: 900;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--paper);
  font-weight: 900;
  background: var(--emerald);
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(7, 30, 27, 0.9), rgba(6, 60, 49, 0.64), rgba(119, 24, 39, 0.22)),
    var(--hero-image) center/cover;
}

.hero {
  min-height: 770px;
}

.hero::after,
.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, var(--ivory), rgba(255, 250, 241, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: end;
  min-height: 770px;
  padding: 108px 0 112px;
}

.hero-copy {
  max-width: 800px;
}

.hero-copy p {
  max-width: 690px;
  font-size: 1.1rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-card {
  padding: 26px;
  background: rgba(7, 30, 27, 0.62);
  border: 1px solid rgba(229, 192, 108, 0.34);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-card h3 {
  margin-top: 20px;
}

.quick-facts {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 11px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-facts strong {
  color: var(--gold-2);
  text-align: right;
}

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

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 450px;
  padding: 86px 0 74px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: 3.75rem;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -64px;
  overflow: hidden;
  background: rgba(184, 135, 49, 0.34);
  border: 1px solid rgba(184, 135, 49, 0.28);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat {
  min-height: 120px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.stat strong {
  display: block;
  color: var(--emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.image-duo,
.image-mosaic {
  display: grid;
  gap: 14px;
}

.image-duo {
  grid-template-columns: 0.85fr 1fr;
  align-items: end;
}

.image-duo img,
.image-mosaic img,
.feature-card img,
.room-card img,
.event-card img,
.membership-card img {
  width: 100%;
  object-fit: cover;
}

.image-duo img {
  height: 420px;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.image-duo img:first-child {
  height: 330px;
}

.image-mosaic {
  grid-template-columns: repeat(4, 1fr);
}

.image-mosaic img {
  height: 230px;
  border-radius: 14px;
}

.image-mosaic .wide {
  grid-column: span 2;
}

.feature-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.room-card,
.event-card,
.membership-card,
.contact-card,
.form-card,
.info-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.feature-card img,
.room-card img,
.event-card img,
.membership-card img {
  height: 250px;
}

.card-body {
  padding: 24px;
}

.card-body p:last-child,
.info-panel p:last-child {
  margin-bottom: 0;
}

.feature-band {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(6, 60, 49, 0.96), rgba(119, 24, 39, 0.72)),
    var(--band-image) center/cover;
}

.feature-band h2 {
  color: var(--paper);
}

.feature-band-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: center;
}

.logo-panel {
  padding: 26px;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(229, 192, 108, 0.36);
  border-radius: 18px;
}

.logo-panel img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-list span {
  padding: 10px 14px;
  color: var(--emerald);
  font-weight: 900;
  background: rgba(229, 192, 108, 0.2);
  border: 1px solid rgba(184, 135, 49, 0.36);
  border-radius: 999px;
}

.dark .pill-list span,
.feature-band .pill-list span {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 60, 49, 0.96), rgba(119, 24, 39, 0.88)),
    var(--deep);
  border: 1px solid rgba(229, 192, 108, 0.28);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel h3 {
  color: var(--paper);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-icon {
  min-height: 126px;
  padding: 18px;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(184, 135, 49, 0.22);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.feature-icon svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  color: var(--emerald);
}

.feature-icon strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.membership-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--emerald), #02241e);
  border: 1px solid rgba(229, 192, 108, 0.52);
  border-radius: 18px;
}

.membership-price h3 {
  color: var(--paper);
}

.price {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.discount-badge {
  display: grid;
  width: 138px;
  height: 138px;
  color: var(--deep);
  text-align: center;
  place-items: center;
  background: radial-gradient(circle, #fff6c9, var(--gold-2));
  border: 5px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}

.discount-badge strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
}

.form-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: start;
}

.form-card {
  padding: 30px;
}

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

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

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

label {
  color: var(--emerald);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(22, 18, 13, 0.16);
  border-radius: 12px;
  outline: none;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 135, 49, 0.15);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 12px 14px;
  color: var(--emerald);
  font-weight: 900;
  background: rgba(13, 90, 71, 0.1);
  border: 1px solid rgba(13, 90, 71, 0.16);
  border-radius: 12px;
}

.form-status.is-visible {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.site-footer {
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 192, 108, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(7, 30, 27, 0.99), rgba(6, 60, 49, 0.96)),
    var(--deep);
}

.footer-club {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 46px 0 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-frame {
  position: relative;
  display: grid;
  width: min(440px, 92vw);
  min-height: 132px;
  place-items: center;
  padding: 16px 44px;
  border: 1px solid rgba(229, 192, 108, 0.36);
  border-radius: 10px;
}

.footer-logo-frame::before,
.footer-logo-frame::after {
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(229, 192, 108, 0.86));
}

.footer-logo-frame::before {
  right: calc(100% + 16px);
}

.footer-logo-frame::after {
  left: calc(100% + 16px);
  transform: rotate(180deg);
}

.footer-logo {
  width: min(320px, 100%);
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.footer-club p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.footer-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.15fr 1.1fr 1.35fr;
  gap: 34px;
  padding: 36px 0 38px;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.footer-column li {
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--gold-2);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-button,
.whatsapp-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.social-button {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.social-button:hover {
  background: var(--gold);
}

.social-button svg,
.whatsapp-button svg {
  width: 21px;
  height: 21px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a {
  color: var(--gold-2);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 18px 10px 10px;
  color: var(--paper);
  font-weight: 900;
  background: #18a957;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(24, 169, 87, 0.38);
}

.whatsapp-button {
  background: rgba(255, 255, 255, 0.16);
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 30, 27, 0.86);
  backdrop-filter: blur(12px);
}

.splash.is-visible {
  display: flex;
}

.splash-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(246, 239, 227, 0.98));
  border: 1px solid rgba(229, 192, 108, 0.5);
  border-radius: 22px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.42);
}

.splash-panel img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 16px;
}

.splash-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 18px;
  color: var(--text);
}

.splash-content h2 {
  color: var(--emerald);
  font-size: 2.4rem;
}

.splash-content p {
  color: var(--muted);
}

.splash-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--paper);
  place-items: center;
  background: var(--emerald);
  border: 0;
  border-radius: 50%;
}

.splash-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .primary-nav {
    gap: 16px;
  }

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

  .feature-list,
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .nav-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 124px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    color: var(--paper);
    background: var(--deep);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-actions {
    justify-self: end;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .feature-band-inner,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 82px 0 120px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  h1,
  .page-hero h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 64px 0;
  }

  .brand-logo {
    width: 138px;
    height: 58px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .primary-nav {
    top: 112px;
  }

  .hero-actions,
  .inline-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: auto;
  }

  .hero-card {
    padding: 20px;
  }

  .stats-band,
  .feature-grid,
  .cards-grid,
  .contact-grid,
  .feature-list,
  .footer-columns,
  .form-grid,
  .image-duo,
  .image-mosaic,
  .membership-price,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .footer-club {
    padding-top: 38px;
  }

  .footer-logo-frame {
    width: 100%;
    min-height: 108px;
    padding: 12px 24px;
  }

  .footer-logo-frame::before,
  .footer-logo-frame::after {
    display: none;
  }

  .footer-logo {
    height: 82px;
  }

  .image-mosaic .wide {
    grid-column: auto;
  }

  .image-duo img,
  .image-duo img:first-child,
  .image-mosaic img,
  .feature-card img,
  .room-card img,
  .event-card img,
  .membership-card img {
    height: 240px;
  }

  .discount-badge {
    width: 116px;
    height: 116px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }

  .splash {
    padding: 14px;
  }

  .splash-panel {
    padding: 14px;
  }

  .splash-content {
    padding: 8px;
  }
}
