:root {
  --obsidian: #121212;
  --cream: #f2efec;
  --paper: #ffffff;
  --ink: #54564f;
  --muted: #8d8d86;
  --gold: #d4af37;
  --emerald: #2f6f39;
  --pink: #e91d7d;
  --wine: #a61f67;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}

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

.package-header {
  align-items: center;
  background: rgba(18, 18, 18, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: white;
  display: flex;
  gap: 10px;
}

.brand img {
  filter: drop-shadow(0 10px 22px rgba(233, 29, 125, 0.32));
  height: 46px;
  object-fit: contain;
  width: 52px;
}

.brand strong {
  color: white;
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.92;
}

.brand span span {
  color: rgba(255, 255, 255, 0.64);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 4px;
  text-transform: uppercase;
}

.package-header nav {
  align-items: center;
  display: flex;
  gap: 12px;
}

.package-header nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.package-header .whatsapp {
  background: linear-gradient(135deg, var(--gold), #fff1ad 52%, var(--pink));
  border-radius: 999px;
  color: #111;
  padding: 12px 18px;
}

.package-hero {
  background:
    linear-gradient(180deg, rgba(242, 239, 236, 0.78), rgba(242, 239, 236, 0.98)),
    var(--hero-image) center / cover;
  padding: clamp(58px, 8vw, 94px) clamp(18px, 5vw, 76px) 42px;
  text-align: center;
}

.package-hero p:first-child {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  color: #53554f;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.02;
}

.subtitle {
  color: #7d7d78;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  line-height: 1.35;
  margin: 18px auto 0;
  max-width: 900px;
}

.category-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px auto 0;
  max-width: 1080px;
}

.category-strip a {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(84, 86, 79, 0.13);
  color: var(--ink);
  display: grid;
  font-weight: 800;
  min-height: 72px;
  padding: 16px;
  place-items: center;
}

.plans {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1500px;
  padding: 38px clamp(18px, 5vw, 76px) 80px;
}

.plan-card {
  background: var(--paper);
  display: grid;
  gap: 24px;
  justify-items: center;
  min-height: 700px;
  padding: clamp(28px, 4vw, 58px) clamp(22px, 3vw, 44px);
  text-align: center;
}

.plan-card h2 {
  color: #565852;
  font-size: clamp(22px, 2vw, 34px);
}

.price {
  color: #777873;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 82px);
  font-style: italic;
  letter-spacing: 0;
  line-height: 0.95;
}

.price small {
  font-family: var(--sans);
  font-size: 26px;
  font-style: normal;
  vertical-align: top;
}

.rule {
  background: #405640;
  height: 3px;
  width: 112px;
}

.plan-card ul {
  color: #969790;
  display: grid;
  font-size: 18px;
  gap: 18px;
  line-height: 1.65;
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-card .book {
  color: var(--emerald);
  font-size: 17px;
  font-weight: 900;
  margin-top: auto;
}

.detail-story {
  background: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 76px);
}

.detail-story h2 {
  color: var(--wine);
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 0.08em;
}

.detail-story p {
  color: #777873;
  font-size: 17px;
  line-height: 1.85;
  margin: 18px 0 0;
}

.detail-story img {
  aspect-ratio: 1.45;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.package-footer {
  align-items: center;
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 76px);
}

.package-footer strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
}

.package-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.package-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.package-footer .footer-meta {
  color: rgba(255, 255, 255, 0.58);
  flex-basis: 100%;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.social-icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
  width: 42px;
}

.social-icon svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.social-icon:hover,
.social-icon:focus-visible {
  background: rgba(233, 29, 125, 0.16);
  border-color: rgba(233, 29, 125, 0.48);
  transform: translateY(-2px);
}

.floating-contact {
  bottom: 94px;
  display: grid;
  gap: 14px;
  position: fixed;
  right: 18px;
  z-index: 60;
}

.floating-contact a {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  display: flex;
  height: 62px;
  justify-content: center;
  transition: transform 0.2s ease;
  width: 62px;
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  transform: translateY(-3px);
}

.floating-contact svg {
  fill: white;
  height: 31px;
  width: 31px;
}

.floating-call {
  background: var(--pink);
}

.floating-whatsapp {
  background: #008b0a;
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 980px) {
  .plans,
  .detail-story {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .package-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-header nav {
    flex-wrap: wrap;
  }

  .package-header .whatsapp {
    display: none;
  }

  .package-footer .footer-meta {
    text-align: left;
  }

  .package-footer nav {
    justify-content: flex-start;
  }

  .floating-contact {
    bottom: 88px;
    right: 12px;
  }

  .floating-contact a {
    height: 54px;
    width: 54px;
  }

  h1 {
    letter-spacing: 0.08em;
  }

  .category-strip {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 28px 20px;
  }

  .price {
    font-size: 52px;
  }

  .plan-card ul {
    font-size: 16px;
  }

  .mobile-booking-bar {
    background: rgba(8, 8, 8, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    bottom: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 0.85fr 1.15fr;
    left: 0;
    padding: 10px;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-booking-bar a {
    align-items: center;
    border-radius: 999px;
    color: white;
    display: flex;
    font-weight: 900;
    justify-content: center;
    min-height: 52px;
  }

  .mobile-booking-bar a:first-child {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mobile-booking-bar a:last-child {
    background: linear-gradient(135deg, #0f7a53, #19c487 58%, var(--pink));
  }
}
