﻿:root {
  color-scheme: light;
  --bg: #f7f2e9;
  --bg-alt: #fbf6ee;
  --ink: #151310;
  --ink-invert: #fefbf6;
  --muted: #5a534b;
  --navy: #0c1723;
  --navy-soft: rgba(12, 23, 35, 0.85);
  --gold: #d9b062;
  --gold-strong: #b47c2f;
  --accent: #9b6a2e;
  --whatsapp: #1f8f4f;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.1);
  --outline: rgba(21, 19, 16, 0.12);
  --shadow: 0 24px 55px rgba(14, 12, 10, 0.18);
  --radius: 28px;
}

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

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 176, 98, 0.25), transparent 45%),
    radial-gradient(circle at 88% 16%, rgba(12, 23, 35, 0.18), transparent 50%),
    linear-gradient(180deg, #fdfaf6 0%, #f7f2e9 50%, #f0e9de 100%);
  min-height: 100vh;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(12, 23, 35, 0.06), transparent 42%),
    linear-gradient(18deg, rgba(217, 176, 98, 0.08), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(1120px, 100%);
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(10, 16, 26, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-invert);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Marcellus", "Work Sans", serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(217, 176, 98, 0.2);
  position: relative;
  display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 999px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  width: 16px;
  height: 3px;
}

.brand-mark::after {
  width: 3px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  min-height: 48px;
}

.btn:focus-visible {
  outline: 3px solid rgba(217, 176, 98, 0.5);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #f1c26d, #d39a41);
  color: #2c1b0b;
  box-shadow: 0 16px 32px rgba(217, 176, 98, 0.35);
}

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

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 143, 79, 0.28);
}

.btn-whatsapp:hover {
  background: #17723f;
  transform: translateY(-2px);
}

.btn-slim {
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-slim:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  color: #fff;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 150px 0 120px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 16, 26, 0.92) 5%, rgba(10, 16, 26, 0.6) 55%, rgba(10, 16, 26, 0.4) 100%);
  z-index: 1;
}

.hero-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 176, 98, 0.35), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12), transparent 45%);
  z-index: 2;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 32px;
}

.hero-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Marcellus", "Work Sans", serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0 18px;
}

.hero-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-pillrow span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panels {
  display: grid;
  gap: 16px;
}

.panel {
  border-radius: 22px;
  padding: 18px 20px;
  background: rgba(12, 20, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.panel-verse p {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.panel-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.panel-schedule h3,
.panel-address h3 {
  margin-bottom: 10px;
}

.panel-schedule {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.panel-schedule div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-schedule span {
  color: rgba(255, 255, 255, 0.8);
}

.panel-address p {
  margin: 0 0 12px;
  font-weight: 600;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.carousel-image.is-active {
  opacity: 1;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.carousel-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  filter: blur(2px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.call-band {
  background: linear-gradient(135deg, rgba(12, 23, 35, 0.95), rgba(155, 106, 46, 0.95));
  color: #fff;
  padding: 52px 0;
  text-align: center;
}

.call-text {
  font-family: "Marcellus", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 10px;
}

.call-ref {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.68rem;
  opacity: 0.85;
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 28px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.68rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.section-header p {
  color: var(--muted);
  margin: 0;
}

.pillar-grid {
  display: grid;
  gap: 18px;
}

.pillar-card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--outline);
  box-shadow: 0 16px 28px rgba(20, 16, 12, 0.08);
  backdrop-filter: blur(12px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(217, 176, 98, 0.2);
  margin-bottom: 14px;
  position: relative;
}

.pillar-icon::before,
.pillar-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--gold-strong);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pillar-icon::before {
  width: 18px;
  height: 3px;
}

.pillar-icon::after {
  width: 3px;
  height: 18px;
}

.cards {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--outline);
  box-shadow: 0 16px 28px rgba(20, 16, 12, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -50px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(217, 176, 98, 0.2), transparent 70%);
  opacity: 0.8;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 23, 35, 0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
}

.card-time {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  margin: 12px 0 6px;
}

.address {
  font-weight: 600;
}

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

.section-action {
  display: flex;
  justify-content: flex-start;
}

.faq details {
  background: var(--glass);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 12px;
  border: 1px solid var(--outline);
  box-shadow: 0 10px 20px rgba(20, 16, 12, 0.06);
  backdrop-filter: blur(10px);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}

.section-call {
  background: linear-gradient(135deg, rgba(12, 23, 35, 0.12), rgba(217, 176, 98, 0.18));
}

.callout {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  align-items: center;
  backdrop-filter: blur(12px);
}

.site-footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--outline);
  font-size: 0.9rem;
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .panel,
  .pillar-card,
  .card,
  .faq details,
  .callout {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .panel:hover,
  .pillar-card:hover,
  .card:hover,
  .faq details:hover,
  .callout:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.22);
    border-color: rgba(217, 176, 98, 0.4);
  }
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

main section {
  scroll-margin-top: 120px;
}

@media (min-width: 768px) {
  .brand {
    font-size: 1.15rem;
  }

  .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
  }

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

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

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

  .callout {
    grid-template-columns: 1fr auto;
  }

  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 96vh;
  }
}

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

  .btn,
  .carousel-image,
  .carousel-dot {
    transition: none;
  }
}

html {
  scroll-behavior: smooth;
}
