:root {
  --bg: #070707;
  --bg-soft: #111111;
  --bg-panel: rgba(255, 255, 255, 0.028);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --muted-strong: #d5d5d5;
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --success: #67f28a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.025) 0, transparent 18%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 45%, #070707 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.brand-mark-logo {
  overflow: hidden;
  padding: 3px;
  background: #050505;
}

.brand-mark-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  display: block;
}

.header-brand-mark {
  width: 168px;
  height: 74px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 0;
}

.header-brand-mark img {
  object-fit: contain;
  transform: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong,
.footer-brand strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.68rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 56px 0 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.event-card,
.service-card,
.media-card,
.contact-panel,
.contact-form,
.story-quote,
.setup-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
}

.hero-brand-lockup {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.hero-brand-text {
  display: grid;
  gap: 6px;
}

.hero-brand-text .eyebrow {
  margin: 0;
}

.hero-brand-name {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.045);
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 7.2vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 4px;
  max-width: 10ch;
}

.hero-title span {
  display: block;
}

.hero-title-soft {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.44em;
  letter-spacing: 0.03em;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.lead,
.story-copy p,
.service-card p,
.event-card p,
.media-card p,
.contact-panel p,
.form-note,
.contact-list dd,
.setup-panel li {
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #050505;
  background: var(--accent);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.button-whatsapp {
  color: #f5f5f5;
  border-color: rgba(103, 242, 138, 0.32);
  background: linear-gradient(180deg, rgba(35, 211, 102, 0.28), rgba(17, 110, 55, 0.18));
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: rgba(103, 242, 138, 0.58);
  background: linear-gradient(180deg, rgba(45, 229, 115, 0.34), rgba(20, 128, 64, 0.24));
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 28px;
  background: #111111;
}

.vinyl-ring {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(255, 255, 255, 0.2) 19%, rgba(255, 255, 255, 0.2) 20%, transparent 21% 28%, rgba(255, 255, 255, 0.12) 29%, rgba(255, 255, 255, 0.12) 30%, transparent 31% 38%, rgba(255, 255, 255, 0.08) 39%, transparent 40%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 58%);
  filter: blur(0.3px);
}

.hero-logo-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.hero-stats {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-stats article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.024) 45%, rgba(255, 255, 255, 0.014) 100%);
}

.hero-stats strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
}

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

.section {
  padding: 64px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.event-grid,
.service-grid,
.media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-card,
.service-card,
.media-card {
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.service-kicker,
.quote-label,
.contact-list dt {
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-layout,
.contact-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-photo {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.038);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.setup-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 0.9fr) minmax(220px, 0.85fr);
  gap: 20px;
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.setup-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.setup-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}

.setup-copy {
  color: var(--muted-strong);
  line-height: 1.65;
}

.setup-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-panel li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(103, 242, 138, 0.8);
}

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

.contact-panel,
.contact-form {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.034);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-whatsapp-button {
  width: 100%;
  margin-top: 8px;
}

.contact-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(103, 242, 138, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Archivo", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link-button:hover,
.contact-link-button:focus-visible {
  border-color: rgba(103, 242, 138, 0.54);
  background: rgba(103, 242, 138, 0.08);
}

.contact-list dd {
  margin: 8px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
}

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

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

.contact-form span {
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 24px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-brand-logo {
  width: 116px;
  height: 72px;
}

.footer-links a,
.site-footer p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero,
  .story-layout,
  .contact-layout,
  .setup-panel,
  .event-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .story-layout,
  .contact-layout,
  .setup-panel,
  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    padding: 16px 18px;
    border-radius: 28px;
  }

  .brand-mark {
    width: 74px;
    border-radius: 16px;
  }

  .header-brand-mark {
    width: 138px;
    height: 60px;
  }

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

  .brand-copy small {
    font-size: 0.74rem;
    letter-spacing: 0.13em;
  }

  .nav-toggle {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

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

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

  .event-grid,
  .service-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.65rem, 7.6vw, 2.35rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: none;
    font-size: clamp(1.55rem, 8vw, 2.3rem);
  }

  .hero-copy,
  .hero-card,
  .event-card,
  .service-card,
  .media-card,
  .contact-panel,
  .contact-form,
  .story-photo,
  .setup-panel {
    padding: 22px;
  }

  .setup-photo img {
    min-height: 260px;
  }

  .hero {
    gap: 10px;
    padding-top: 28px;
    overflow: hidden;
  }

  .hero-card {
    order: 1;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-copy {
    order: 2;
    padding: 6px 8px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-brand-lockup {
    display: none;
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .story-layout {
    gap: 20px;
  }

  .hero-visual {
    min-height: 250px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero-logo-image {
    width: min(100%, 390px);
    height: min(80vw, 390px);
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.36));
  }

  .lead {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-title {
    gap: 2px;
    margin-top: 10px;
    max-width: 7ch;
  }

  .hero-title-soft {
    font-size: 0.38em;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.56);
  }

  .hero-stats {
    display: none;
  }

  .vinyl-ring {
    display: none;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
  }

  .button {
    width: 100%;
  }

  .story-photo {
    padding: 0;
    width: 100%;
    margin: 6px 0 0;
  }

  .story-photo img {
    min-height: 0;
    height: 240px;
    max-height: 240px;
    object-position: center 68%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 52px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }
}
