:root {
  --bg: #0b0c0d;
  --bg-soft: #101214;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f0e9;
  --muted: #b8b1a7;
  --gold: #d8b36a;
  --red: #a12620;
  --green: #25d366;
  --max: 1280px;
  --radius: 26px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font: 16px/1.6 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top, rgba(216, 179, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #090909 0%, #101214 42%, #0c0f11 100%);
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.brand-copy strong,
.eyebrow,
.chip {
  font-family: "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.02em;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 3px solid rgba(216, 179, 106, 0.7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: #121212;
  background: #f5f0e9;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.container {
  width: min(94vw, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #f1d7a5, #9b6e2d);
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 0.12rem;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.primary-nav a:not(.button) {
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.primary-nav a:not(.button):hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #cf3d34);
  box-shadow: 0 16px 34px rgba(161, 38, 32, 0.28);
}

.button-secondary {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(216, 179, 106, 0.36);
}

.section {
  padding: clamp(3.75rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section[id] {
  scroll-margin-top: 5.8rem;
}

.eyebrow,
.chip {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.chip {
  padding: 7px 12px;
  border: 1px solid rgba(216, 179, 106, 0.28);
  border-radius: 999px;
}

.hero {
  padding-top: clamp(3.4rem, 7vw, 5rem);
}

.hero-grid,
.split-grid,
.contact-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.hero h1 {
  margin: 1rem 0 1.1rem;
  max-width: 12ch;
  font-size: clamp(2.15rem, 6vw, 3.75rem);
  line-height: 0.97;
}

.lead,
.card p,
.panel p,
.gallery-card p,
.belt-card p,
.contact-panel p,
.contact-panel address,
.site-footer p {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
}

.panel,
.card,
.belt-card,
.gallery-card,
.contact-panel,
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.panel,
.card,
.belt-card,
.contact-panel {
  padding: clamp(1rem, 2vw, 1.75rem);
}

.card,
.belt-card,
.contact-panel {
  height: 100%;
}

.panel {
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216, 179, 106, 0.15), transparent 44%);
  pointer-events: none;
}

.panel > * {
  position: relative;
}

.section-head {
  max-width: 72ch;
  margin-bottom: 1.8rem;
}

.section-head h2,
.panel h2,
.contact-panel h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.08;
}

.card h3,
.belt-card h3,
.gallery-card h3,
.contact-panel h3 {
  margin: 0.8rem 0 0.7rem;
  color: var(--gold);
  font-size: 1.16rem;
  line-height: 1.2;
}

.button-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row {
  margin-top: 1.7rem;
}

.tag-row {
  margin-top: 1.4rem;
}

.tag-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.stat {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.08rem;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.stack-list,
.mini-list,
.contact-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.stack-list li,
.mini-list li,
.contact-list li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.stack-list strong,
.mini-list strong,
.contact-list strong,
.card strong {
  color: var(--text);
}

.cards-grid,
.schedule-grid,
.belt-grid,
.gallery-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.schedule-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
}

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

.schedule-overview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
}

.schedule-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1rem, 1.5vw, 1.35rem);
}

.schedule-card-time {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.belt-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.belt {
  width: 100%;
  height: 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.belt-white { background: linear-gradient(90deg, #f5f5f5, #d9d9d9); }
.belt-blue { background: linear-gradient(90deg, #2352d5, #6a8cff); }
.belt-purple { background: linear-gradient(90deg, #6334a5, #9d6fe0); }
.belt-brown { background: linear-gradient(90deg, #5b3923, #8b5c3b); }
.belt-black { background: linear-gradient(90deg, #111111, #3f3f3f); }
.belt-gray { background: linear-gradient(90deg, #7a7a7a, #c2c2c2); }
.belt-yellow { background: linear-gradient(90deg, #caa11a, #f1d357); }
.belt-orange { background: linear-gradient(90deg, #d86f1d, #f3a34a); }
.belt-green { background: linear-gradient(90deg, #1f7d4b, #46ba76); }

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.gallery-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #111214;
}

.gallery-card figcaption {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1rem, 1.6vw, 1.3rem);
}

.gallery-card h3,
.gallery-card p {
  margin: 0;
}

address {
  font-style: normal;
}

.contact-panel address {
  margin-top: 1rem;
}

.contact-grid {
  align-items: stretch;
}

.contact-list span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.map-frame {
  overflow: hidden;
  height: 100%;
  min-height: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  filter: grayscale(0.18) contrast(1.05);
}

.site-footer {
  padding: clamp(1.2rem, 3.5vw, 1.8rem) 0;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 2vw, 1.2rem);
}

.site-footer h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.site-footer p {
  margin: 0.65rem 0 0;
  max-width: 58ch;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--muted);
}

.site-footer nav a:hover {
  color: var(--gold);
}

.copyright {
  font-size: 0.94rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 45;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #0f8c49);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.32);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .schedule-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
  }

  .js .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    grid-column: 1 / -1;
    gap: 0.55rem;
  }

  .js .primary-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 0.85rem;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(9, 9, 9, 0.96);
    box-shadow: var(--shadow);
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  }

  .js .primary-nav.is-open {
    max-height: 560px;
    opacity: 1;
    padding: 0.85rem;
    border-color: var(--line);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a:not(.button) {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .primary-nav .button,
  .button-row .button,
  .tag-row span {
    width: 100%;
  }

  .button-row,
  .tag-row {
    flex-direction: column;
    align-items: stretch;
  }

  .stats,
  .schedule-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.25rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .section-head h2,
  .panel h2,
  .contact-panel h2 {
    font-size: clamp(1.45rem, 7.5vw, 1.95rem);
  }

  .panel,
  .card,
  .belt-card,
  .contact-panel {
    padding: 1rem;
  }

  .gallery-card figcaption {
    padding: 1rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
