:root {
  --black: #050505;
  --near: #0e0e0e;
  --dark: #171615;
  --paper: #f2eee5;
  --line: rgba(255, 255, 255, .14);
  --soft: #b9b2a6;
  --gold: #c7a052;
  --red: #d71920;
  --ink: #181512;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 76px clamp(18px, 4vw, 58px) 34px;
  background: rgba(5, 5, 5, .92);
  border-bottom: 1px solid var(--line);
}

.logo img {
  width: min(520px, 78vw);
  height: min(520px, 78vw);
  border-radius: 50%;
  object-fit: cover;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 10px 18px;
  color: var(--soft);
  font-size: .92rem;
  font-weight: 700;
  background: rgba(5, 5, 5, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

nav a:hover { color: white; }

.book {
  color: white;
  background: var(--red);
  border-radius: 3px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 520px);
  display: grid;
  align-items: end;
  background: var(--black);
}

.home-hero { background-image: none; }
.shade { position: absolute; inset: 0; background: radial-gradient(circle at 78% 22%, rgba(215,25,32,.18), transparent 24rem), linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.82)); }

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 132px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font: 500 clamp(2.25rem, 4.8vw, 4.5rem)/.98 Georgia, "Times New Roman", serif;
}

h2 {
  margin-bottom: 18px;
  font: 500 clamp(2.1rem, 4.8vw, 4.6rem)/.98 Georgia, "Times New Roman", serif;
}

h3 { margin-bottom: 12px; font-size: 1.18rem; }

.hero-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: #e0d8ca;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 3px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.red { background: var(--red); border-color: var(--red); color: white; }
.ghost { background: rgba(255,255,255,.08); color: white; }
.ghost.dark { background: var(--dark); }

.quick-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, .92);
}

.quick-panel a {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.quick-panel a:last-child { border-right: 0; }
.quick-panel strong, .quick-panel span { display: block; }
.quick-panel span { color: var(--soft); font-size: .92rem; }

.bar-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.bar-stats div {
  padding: 22px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.bar-stats strong, .bar-stats span { display: block; }
.bar-stats strong { color: white; font-size: 1.5rem; }
.bar-stats span { color: var(--soft); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-title {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-title.row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.muted { color: var(--soft); max-width: 760px; }

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

.service-grid article, .price-card {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--dark);
}

.service-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 900;
}

.service-grid p, .price-card p, .price-card span { color: var(--soft); }

.split-section {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 7vw, 90px);
  background: var(--paper);
  color: var(--ink);
}

.split-section p:last-child {
  align-self: center;
  color: #4b443a;
  font-size: 1.08rem;
}

.prices { padding-bottom: 58px; }

.price-card strong {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.price-card.featured {
  border-color: rgba(199, 160, 82, .72);
  background: #211b12;
}

.center-cta { margin-top: 28px; }

.portfolio-preview {
  border-top: 1px solid var(--line);
}

.thumb-grid {
  display: grid;
  gap: 14px;
}

.thumb-grid.compact { grid-template-columns: repeat(4, 1fr); }
.thumb-grid.portfolio { grid-template-columns: repeat(6, 1fr); }

.thumb {
  display: block;
  border: 1px solid var(--line);
  background: #111;
  transition: transform .18s ease, border-color .18s ease;
}

.thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 160, 82, .75);
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.thumb span {
  display: block;
  padding: 12px 12px 0;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
}

.thumb strong {
  display: block;
  min-height: 48px;
  padding: 5px 10px 12px;
  color: white;
  font-size: .88rem;
  line-height: 1.18;
}

.thumb span {
  padding-inline: 10px;
  font-size: .76rem;
}

.lead {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding: 80px max(18px, calc((100vw - 1180px) / 2));
  background: var(--paper);
  color: var(--ink);
}

.lead-copy p:last-child { color: #4b443a; }

.lead-form {
  display: grid;
  gap: 12px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #cabfae;
  border-radius: 3px;
  padding: 14px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.portfolio-top {
  padding: 76px max(18px, calc((100vw - 1180px) / 2)) 42px;
  background: var(--paper);
  color: var(--ink);
}

.portfolio-top h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
}

.portfolio-top p:last-child {
  max-width: 760px;
  color: #50483e;
  font-size: 1.06rem;
}

.portfolio-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 78px;
}

.filter-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--soft);
}

.filter-line a {
  color: var(--gold);
  font-weight: 900;
}

.playlist-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.playlist-cards a {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--dark);
}

.playlist-cards strong, .playlist-cards span { display: block; }
.playlist-cards span { color: var(--soft); margin-top: 6px; }

.footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer span { margin-right: auto; color: white; }

@media (max-width: 920px) {
  .quick-panel, .bar-stats, .service-grid, .price-grid, .thumb-grid.compact, .thumb-grid.portfolio {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-section, .lead {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  .hero-inner { padding-bottom: 42px; }
}

@media (max-width: 620px) {
  .topbar {
    height: auto;
    align-items: center;
    gap: 14px;
  }

  .logo img {
    width: min(320px, 76vw);
    height: min(320px, 76vw);
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 { font-size: clamp(2.1rem, 12vw, 3.4rem); }

  .quick-panel, .bar-stats, .service-grid, .price-grid, .thumb-grid.compact, .thumb-grid.portfolio, .playlist-cards {
    grid-template-columns: 1fr;
  }

  .section, .portfolio-wrap { padding-block: 54px; }
}


.book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-section {
  border-top: 1px solid var(--line);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.social-card {
  border: 1px solid var(--line);
  background: var(--dark);
  padding: 12px;
}

.social-head {
  display: block;
  margin-bottom: 10px;
}

.social-head strong,
.social-head span {
  display: block;
}

.social-head strong {
  color: white;
  margin-bottom: 3px;
  font-size: .98rem;
}

.social-head span {
  color: var(--soft);
  font-size: .82rem;
}

.social-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.social-thumbs a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #0b0b0b;
}

.social-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .18s ease;
}

.social-thumbs a:hover img {
  transform: scale(1.06);
}

@media (max-width: 920px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}


.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.value-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  color: white;
  margin-bottom: 4px;
}

.value-strip span {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 920px) {
  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .value-strip {
    grid-template-columns: 1fr;
  }
}
