:root {
  --ink: #25151a;
  --muted: #6e5e61;
  --paper: #fff9f4;
  --surface: #ffffff;
  --rose: #d94f74;
  --coral: #ff7f5c;
  --teal: #0f9c94;
  --gold: #d7a843;
  --line: #eaded8;
  --shadow: 0 20px 55px rgba(80, 41, 49, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 249, 244, 0.92);
  border-bottom: 1px solid rgba(234, 222, 216, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  grid-column: 2;
  gap: 10px;
  min-width: 0;
  justify-self: center;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 0 0 2px rgba(217, 79, 116, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  grid-column: 3;
  gap: clamp(12px, 3vw, 28px);
  justify-self: end;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--rose);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(37, 21, 26, 0.84) 0%, rgba(37, 21, 26, 0.62) 39%, rgba(37, 21, 26, 0.18) 78%),
    linear-gradient(0deg, rgba(255, 249, 244, 0.95), rgba(255, 249, 244, 0) 28%);
}

.hero-content {
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 72px 0 96px;
  color: #fff;
}

.hero-logo {
  display: block;
  width: clamp(126px, 16vw, 190px);
  height: clamp(126px, 16vw, 190px);
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff1e9;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.95;
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

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

.button,
.choose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--rose);
}

.button.secondary {
  color: #25151a;
  background: #fff;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro div {
  padding: 22px;
  background: var(--surface);
}

.stat {
  display: block;
  margin-bottom: 7px;
  color: var(--rose);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.section-heading {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-heading h2,
.custom-band h2 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.custom-band p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 14px 14px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 35px rgba(80, 41, 49, 0.08);
}

.package-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--line);
}

.package-card.featured {
  border-color: rgba(217, 79, 116, 0.5);
  box-shadow: var(--shadow);
}

.package-card[hidden] {
  display: none;
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding: 0 8px;
}

.package-top span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-top strong {
  color: var(--rose);
  font-size: 1.45rem;
}

.package-card h3 {
  margin-bottom: 14px;
  padding: 0 8px;
  font-size: 1.35rem;
}

.package-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding-left: 26px;
  padding-right: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.bilingual-list li strong,
.bilingual-list li span {
  display: block;
}

.bilingual-list li strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.bilingual-list li span {
  color: var(--muted);
  font-size: 0.9rem;
}

.choose {
  margin-top: auto;
  margin-inline: 8px;
  color: #fff;
  background: var(--ink);
}

.choose:hover {
  background: var(--rose);
}

.custom-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 32px;
  align-items: center;
  padding: 64px clamp(18px, 6vw, 86px);
  background: #fff;
  border-block: 1px solid var(--line);
}

.custom-band p:last-child {
  margin-bottom: 0;
}

.contact {
  padding-top: 74px;
}

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

.contact-link {
  display: grid;
  gap: 8px;
  min-width: min(100%, 310px);
  padding: 22px;
  border-radius: 8px;
  color: #fff;
}

.contact-link span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.whatsapp {
  background: #128c7e;
}

.email {
  background: var(--rose);
}

.instagram {
  background: var(--ink);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

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

  .custom-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .brand {
    align-self: center;
    text-align: center;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(37, 21, 26, 0.8) 0%, rgba(37, 21, 26, 0.66) 58%, rgba(37, 21, 26, 0.1) 100%),
      linear-gradient(0deg, rgba(255, 249, 244, 0.96), rgba(255, 249, 244, 0) 22%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 92px;
  }

  .intro,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .button,
  .choose,
  .contact-link {
    width: 100%;
  }
}
