:root {
  --bg: #0f0b08;
  --surface: #1a120d;
  --surface-strong: #23170f;
  --gold: #c79a45;
  --gold-light: #e0b86a;
  --text: #f7efe6;
  --muted: #b8a99b;
  --border: rgba(199, 154, 69, 0.25);
  --border-strong: rgba(224, 184, 106, 0.48);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(199, 154, 69, 0.12), transparent 26rem),
    linear-gradient(180deg, #140d08 0%, var(--bg) 38%, #080604 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body::selection {
  background: rgba(224, 184, 106, 0.35);
}

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.05;
  overflow-wrap: break-word;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  background: rgba(15, 11, 8, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: fit-content;
  color: var(--gold-light);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(224, 184, 106, 0.12);
  color: var(--text);
  font-size: 12px;
}

.main-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 10px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--border);
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #150d07;
  box-shadow: 0 18px 38px rgba(199, 154, 69, 0.2);
}

.btn-outline {
  border-color: var(--border-strong);
  background: rgba(247, 239, 230, 0.06);
  color: var(--gold-light);
}

.btn-soft {
  border-color: rgba(247, 239, 230, 0.2);
  background: rgba(247, 239, 230, 0.12);
  color: var(--text);
}

.header-cta {
  min-height: 40px;
  padding: 10px 16px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 66px);
  align-items: end;
  overflow: hidden;
  padding: 96px 16px 24px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.96), rgba(15, 11, 8, 0.72) 48%, rgba(15, 11, 8, 0.36)),
    linear-gradient(180deg, rgba(15, 11, 8, 0.42), rgba(15, 11, 8, 0.92));
}

.hero-content {
  min-width: 0;
  width: min(100%, 920px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(40px, 8vw, 86px);
}

.hero-lead {
  max-width: 760px;
  color: var(--text);
  font-size: 18px;
}

.hero-actions,
.center-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.hero-panel {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.hero-panel article,
.info-card,
.food-card,
.events-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(247, 239, 230, 0.08), rgba(199, 154, 69, 0.08)), rgba(26, 18, 13, 0.88);
  box-shadow: var(--shadow);
}

.hero-panel article {
  min-height: 118px;
  padding: 18px;
}

.hero-panel strong {
  display: block;
  color: var(--gold-light);
  font-size: 18px;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 58px 16px;
}

.section-split,
.online-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.section-copy,
.section-heading {
  max-width: 780px;
}

.section-copy h2,
.section-heading h2,
.events-card h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 56px);
}

.section-copy p,
.section-heading p,
.events-card p {
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 24px 0;
}

.feature-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(247, 239, 230, 0.06);
  color: var(--text);
  font-weight: 800;
}

.media-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card.tall img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.section-online {
  width: min(100%, 1380px);
}

.online-layout {
  margin-top: 26px;
}

.info-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(199, 154, 69, 0.18), rgba(26, 18, 13, 0.98)),
    var(--surface);
}

.card-kicker {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
}

.club-data {
  display: grid;
  gap: 10px;
  margin: 0;
}

.club-data div {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: rgba(15, 11, 8, 0.42);
}

.club-data dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.club-data dd {
  margin: 0;
}

.club-data button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(224, 184, 106, 0.14);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.club-data button.is-copied {
  background: rgba(224, 184, 106, 0.28);
}

.time-badge {
  width: fit-content;
  margin: 24px 0;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 13px 16px;
  background: rgba(224, 184, 106, 0.14);
  color: var(--gold-light);
  font-weight: 950;
}

.food-section {
  width: min(100%, 1380px);
}

.food-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.food-card {
  overflow: hidden;
}

.food-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}

.food-card div {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 18px;
}

.food-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: 22px;
}

.food-card p {
  margin: 0;
}

.events-card {
  display: grid;
  gap: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(224, 184, 106, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(26, 18, 13, 0.95), rgba(15, 11, 8, 0.98));
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.contact-card {
  display: grid;
  gap: 8px;
  min-height: 160px;
  align-content: end;
  padding: 18px;
}

.contact-card span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 22px;
  line-height: 1.15;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.4;
}

.site-footer {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 30px 16px 92px;
  background: #090604;
  color: var(--muted);
}

.site-footer strong {
  color: var(--gold-light);
  font-size: 20px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

.site-footer small {
  color: rgba(184, 169, 155, 0.82);
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 50;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 239, 230, 0.34);
  border-radius: 999px;
  background: #25d366;
  color: #061a0c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .hero-actions,
  .center-actions {
    grid-template-columns: repeat(3, minmax(0, max-content));
  }

  .hero-panel,
  .food-grid,
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 28px;
  }

  .main-nav {
    grid-column: auto;
    justify-content: center;
  }

  .hero {
    min-height: calc(100vh - 68px);
    padding: 120px 44px 34px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 980px);
  }

  .section {
    padding: 78px 44px;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 48px;
  }

  .section-split.reverse {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  }

  .section-split.reverse .section-copy {
    grid-column: 2;
  }

  .section-split.reverse .media-card {
    grid-column: 1;
    grid-row: 1;
  }

  .online-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 26px;
  }

  .media-card.tall img {
    aspect-ratio: 4 / 5;
  }

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

  .events-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 38px;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr) minmax(220px, 0.8fr);
    align-items: start;
    padding: 34px 44px;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }

  .floating-whatsapp {
    left: auto;
    min-width: 132px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }
}

@media (min-width: 1180px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    width: 100%;
    min-width: 0;
  }

  .btn {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    min-height: auto;
    width: 100%;
    max-width: 100vw;
    padding-top: 54px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }

  .hero h1 {
    max-width: min(100%, 20rem);
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: min(100%, 21rem);
    font-size: 16px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .food-card div {
    min-height: 0;
  }

  .floating-whatsapp {
    display: none;
  }
}
