:root {
  --wood: #4b2b13;
  --wood-dark: #241105;
  --gold: #f7c95f;
  --gold-2: #fff0b7;
  --leaf: #2f7d44;
  --cream: #fff7e8;
  --paper: #fffaf2;
  --text: #25170c;
  --muted: #725a43;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(36, 17, 5, .20);
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(247,201,95,.20), transparent 35%),
    linear-gradient(180deg, #fff9ee 0%, #fff 40%, #fff7e8 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image:
    linear-gradient(45deg, var(--wood) 25%, transparent 25%),
    linear-gradient(-45deg, var(--wood) 25%, transparent 25%);
  background-size: 32px 32px;
  z-index: -1;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--gold);
  color: var(--wood-dark);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus { left: 12px; }

.top-bar {
  background: linear-gradient(90deg, var(--wood-dark), var(--wood));
  color: var(--gold-2);
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,242,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(75,43,19,.12);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--wood-dark);
  background:
    radial-gradient(circle at 30% 25%, #fff8d7, transparent 30%),
    linear-gradient(135deg, var(--gold), #aa651e);
  box-shadow: 0 12px 30px rgba(170, 101, 30, .30);
  font-family: Georgia, serif;
  font-weight: 900;
  font-size: 30px;
}

.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 700;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  color: var(--wood);
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
  transition: width .25s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--wood-dark);
  background: linear-gradient(135deg, var(--gold), #ffd98b);
  box-shadow: 0 14px 30px rgba(247,201,95,.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: var(--wood-dark);
  border-radius: 14px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
  border-radius: 99px;
}

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

.hero {
  width: 100%;
  min-height: 780px;
  display: grid;
  place-items: center;
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--wood-dark);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  opacity: .72;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(247,201,95,.10), transparent 30%),
    linear-gradient(90deg, rgba(36,17,5,.95) 0%, rgba(36,17,5,.72) 44%, rgba(36,17,5,.25) 100%),
    linear-gradient(0deg, rgba(36,17,5,.80), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -2px;
}

.hero p {
  max-width: 660px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--wood-dark);
  background: linear-gradient(135deg, var(--gold), #fff0a3 45%, #b97926);
  box-shadow: 0 16px 35px rgba(247,201,95,.35);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #1fb75a, #078b39);
  box-shadow: 0 16px 35px rgba(31,183,90,.24);
}

.btn.full {
  width: 100%;
}

.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 16px 35px rgba(247,201,95,.35); }
  50% { box-shadow: 0 16px 60px rgba(247,201,95,.65); }
}

.hero-stats {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats div {
  min-width: 145px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.11);
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  font-family: Georgia, serif;
}

.hero-stats span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 13px;
}

.floating-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-notes span {
  position: absolute;
  bottom: -40px;
  color: rgba(247,201,95,.58);
  font-size: 42px;
  animation: floatNote 9s linear infinite;
}

.floating-notes span:nth-child(1) { left: 12%; animation-delay: .5s; }
.floating-notes span:nth-child(2) { left: 40%; animation-delay: 2s; }
.floating-notes span:nth-child(3) { left: 68%; animation-delay: 4s; }
.floating-notes span:nth-child(4) { left: 84%; animation-delay: 1s; }

@keyframes floatNote {
  from { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  to { transform: translateY(-920px) rotate(18deg); opacity: 0; }
}

.trust-strip {
  width: min(1080px, calc(100% - 32px));
  margin: -56px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  background: rgba(75,43,19,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip div {
  background: var(--paper);
  padding: 22px;
  font-weight: 900;
  color: var(--wood);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2,
.split h2,
.contact-copy h2 {
  margin: 14px 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  color: var(--wood-dark);
}

.section-heading p,
.split p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-card {
  padding: 28px;
  border: 1px solid rgba(75,43,19,.12);
  border-radius: var(--radius);
  background: rgba(255,250,242,.86);
  box-shadow: 0 16px 42px rgba(36,17,5,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(247,201,95,.65);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7cc, #f4ca66);
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--wood-dark);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.packages {
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(47,125,68,.13), transparent 32%),
    linear-gradient(135deg, #fffaf2, #fff2cc);
  border-top: 1px solid rgba(75,43,19,.10);
  border-bottom: 1px solid rgba(75,43,19,.10);
}

.packages .split {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 28px;
  align-items: center;
}

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

.steps div {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(75,43,19,.10);
  border-radius: 20px;
  padding: 16px;
}

.steps strong {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wood);
  color: var(--gold);
}

.steps span {
  font-weight: 900;
  color: var(--wood);
}

.price-card {
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36,17,5,.94), rgba(75,43,19,.92)),
    url("../img/dueto-marimba.jpg") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(247,201,95,.22), transparent 40%);
  pointer-events: none;
}

.price-card > * {
  position: relative;
}

.price-card h3 {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
}

.name {
  font-family: Georgia, serif;
  font-size: 44px !important;
  color: var(--white) !important;
  margin: 12px 0 4px !important;
}

.big-phone {
  color: var(--gold) !important;
  font-size: 34px !important;
  font-weight: 1000;
  margin: 0 0 16px !important;
}

.note {
  color: rgba(255,255,255,.80) !important;
}

.zones {
  padding-bottom: 44px;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.zone-grid span {
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(47,125,68,.94), rgba(75,43,19,.92));
  font-weight: 1000;
  box-shadow: 0 16px 38px rgba(47,125,68,.18);
}

.gallery {
  padding-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wood);
  box-shadow: 0 18px 45px rgba(36,17,5,.16);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(36,17,5,.74);
  backdrop-filter: blur(8px);
  font-weight: 900;
}

.contact {
  padding-top: 56px;
}

.contact-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(247,201,95,.18), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(75,43,19,.10);
}

.contact-copy {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(36,17,5,.90), rgba(75,43,19,.88)),
    url("../img/marimba-sax.jpg") center/cover;
  color: var(--white);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255,255,255,.82);
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--wood);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(75,43,19,.16);
  background: #fffdf8;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  outline-color: var(--gold);
}

.field textarea {
  resize: vertical;
}

.field.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #20c463, #0a8f3c);
  box-shadow: 0 18px 40px rgba(10,143,60,.35);
  font-weight: 1000;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 26px;
  border-top: 1px solid rgba(75,43,19,.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer strong {
  color: var(--wood-dark);
  font-family: Georgia, serif;
  font-size: 22px;
}

.footer a {
  color: var(--wood);
  font-weight: 1000;
}

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

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

@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(36,17,5,.92) 0%, rgba(36,17,5,.75) 55%, rgba(36,17,5,.88) 100%);
  }

  .hero-content {
    padding-top: 80px;
  }

  .trust-strip,
  .services-grid,
  .packages .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item.large {
    grid-row: auto;
  }

  .field.two {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand strong { font-size: 16px; }
  .brand small { font-size: 11px; }
  .brand-mark { width: 46px; height: 46px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-actions .btn,
  .contact-buttons .btn {
    width: 100%;
  }

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

  .trust-strip {
    margin-top: -34px;
  }

  .section {
    padding: 64px 0;
  }

  .steps,
  .zone-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 14px;
    border-radius: 26px;
  }

  .floating-whatsapp span {
    display: none;
  }
}
