:root {
  --bg: #f8f7f3;
  --paper: #ffffff;
  --ink: #171311;
  --muted: #756d65;
  --line: rgba(23, 19, 17, 0.12);
  --champagne: #d8b875;
  --champagne-soft: #f2e7cb;
  --burgundy: #6e2335;
  --dark: #11100f;
  --shadow: 0 22px 70px rgba(23, 19, 17, 0.14);
  --radius: 8px;
  --section: clamp(76px, 10vw, 136px);
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  overflow-x: hidden;
}

body,
button,
a {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 247, 243, 0.94);
  box-shadow: 0 10px 30px rgba(23, 19, 17, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.price-card,
.value-list,
.compare-panel,
.closing {
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.nav-links {
  gap: 24px;
  font-size: 14px;
  color: currentColor;
}

.nav-links a,
.header-cta {
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 0.72;
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 82px) 88px;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.92) 0%, rgba(13, 12, 11, 0.72) 38%, rgba(13, 12, 11, 0.18) 78%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.82) 0%, rgba(13, 12, 11, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.hero-service,
.section-number,
.plan-name,
.price-block span,
.gift-box span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service {
  margin: 0 0 18px;
  color: var(--champagne);
}

.hero h1,
.section h2,
.closing h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 102px);
}

.hero p:not(.hero-service) {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

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

.button-primary,
.button-featured {
  color: #171311;
  background: var(--champagne);
  box-shadow: 0 14px 35px rgba(216, 184, 117, 0.24);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button-card {
  width: 100%;
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 66px);
  bottom: 52px;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: min(330px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(17, 16, 15, 0.56);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  font-size: 18px;
}

.hero-note span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: var(--section) clamp(20px, 6vw, 82px);
}

.section-heading,
.pricing-intro,
.faq-heading {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.section-number {
  color: var(--burgundy);
}

.section h2,
.closing h2 {
  font-size: clamp(34px, 5vw, 68px);
}

.section-copy {
  max-width: 680px;
  margin-top: 24px;
}

.section-copy p,
.pricing-intro p,
.compare-copy p,
.reserve-card p,
.closing p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.purpose-grid article {
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.purpose-grid span {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.purpose-grid p,
.value-list p,
.faq-list p,
.plan-fit,
.include-list,
.gift-box p,
.compare-panel p,
.video-proof-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.video-proof-copy {
  max-width: 650px;
  margin-top: 22px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  min-width: 0;
}

.video-card {
  position: relative;
  display: grid;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 231, 203, 0.72)),
    radial-gradient(circle at 84% 8%, rgba(216, 184, 117, 0.58), transparent 38%);
  box-shadow: 0 18px 50px rgba(23, 19, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.video-card-dark {
  color: #fff;
  border-color: rgba(216, 184, 117, 0.4);
  background:
    linear-gradient(145deg, rgba(17, 16, 15, 0.94), rgba(110, 35, 53, 0.9)),
    radial-gradient(circle at 78% 0%, rgba(216, 184, 117, 0.36), transparent 42%);
}

.video-card div {
  position: relative;
  z-index: 1;
}

.video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #171311;
  box-shadow: 0 16px 42px rgba(23, 19, 17, 0.14);
}

.video-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
}

.video-card p {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card-dark p {
  color: var(--champagne);
}

.video-card h3 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.video-card div > span {
  display: inline-flex;
  margin-top: 22px;
  color: var(--burgundy);
  font-weight: 900;
}

.video-card-dark div > span {
  color: var(--champagne);
}

.pricing-section {
  background: #fff;
}

.pricing-intro {
  margin-bottom: 38px;
}

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

.price-card {
  position: relative;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(23, 19, 17, 0.1);
}

.price-card-featured {
  margin-top: -18px;
  color: #fff;
  border-color: rgba(216, 184, 117, 0.55);
  background: linear-gradient(155deg, #18110f 0%, #2a1517 58%, #6e2335 100%);
  box-shadow: var(--shadow);
}

.price-card-featured .plan-fit,
.price-card-featured .include-list,
.price-card-featured .gift-box p,
.price-card-featured .price-block small {
  color: rgba(255, 255, 255, 0.78);
}

.recommend-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #171311;
  background: var(--champagne);
  font-size: 12px;
  font-weight: 900;
}

.price-card-top {
  display: grid;
  gap: 10px;
  padding-right: 86px;
}

.plan-name {
  color: var(--burgundy);
}

.price-card-featured .plan-name,
.price-card-featured .gift-box span {
  color: var(--champagne);
}

.price-card h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.04;
}

.price-block {
  display: grid;
  gap: 6px;
}

.price-block strong {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
}

.price-block small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.include-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.include-list li {
  position: relative;
  padding-left: 24px;
}

.include-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
}

.gift-box {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(216, 184, 117, 0.42);
  border-radius: var(--radius);
  background: rgba(216, 184, 117, 0.12);
}

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

.value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-list article {
  min-height: 180px;
  padding: 28px;
  background: var(--paper);
}

.value-list h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.compare-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #fff;
}

.compare-copy {
  display: grid;
  gap: 20px;
}

.compare-copy .button {
  justify-self: start;
  margin-top: 8px;
}

.compare-panel {
  align-items: stretch;
  gap: 12px;
}

.compare-panel article {
  flex: 1;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.compare-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--burgundy);
  font-weight: 800;
}

.compare-panel strong {
  display: block;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
}

.compare-panel small {
  display: block;
  margin: 7px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.compare-plus {
  align-self: center;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #171311;
  background: var(--champagne);
  font-size: 24px;
  font-weight: 800;
}

.compare-panel .compare-featured {
  color: #fff;
  border-color: rgba(216, 184, 117, 0.55);
  background: #171311;
}

.compare-panel .compare-featured span {
  color: var(--champagne);
}

.compare-panel .compare-featured small,
.compare-panel .compare-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.reserve-section {
  background:
    linear-gradient(rgba(248, 247, 243, 0.86), rgba(248, 247, 243, 0.86)),
    radial-gradient(circle at 20% 30%, rgba(216, 184, 117, 0.35), transparent 42%),
    #fff;
}

.reserve-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(23, 19, 17, 0.08);
  text-align: center;
}

.reserve-card h2 {
  margin-top: 18px;
}

.reserve-card p {
  max-width: 670px;
  margin: 20px auto 28px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-top: 36px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list details p {
  padding: 0 22px 22px;
}

.closing {
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 82px);
}

.closing div {
  max-width: 840px;
}

.closing p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 150px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  background: #1f8f4a;
  box-shadow: 0 18px 40px rgba(31, 143, 74, 0.28);
  font-size: 14px;
  font-weight: 900;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .purpose-grid,
  .value-list,
  .video-grid,
  .compare-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .price-card-featured {
    margin-top: 0;
  }

  .compare-panel {
    flex-direction: column;
  }

  .compare-plus {
    margin: -2px auto;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 170px;
    font-size: 14px;
    line-height: 1.05;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 108px 18px 132px;
  }

  .hero-content {
    width: 100%;
    max-width: 340px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(13, 12, 11, 0.94) 0%, rgba(13, 12, 11, 0.72) 62%, rgba(13, 12, 11, 0.22) 100%),
      linear-gradient(0deg, rgba(13, 12, 11, 0.88) 0%, rgba(13, 12, 11, 0) 52%);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 38px);
    line-height: 1.08;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero-service {
    max-width: 290px;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero p:not(.hero-service) {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .reserve-card .button,
  .closing .button {
    width: 100%;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 22px;
    width: calc(100% - 36px);
    max-width: 340px;
  }

  .section {
    padding: 68px 18px;
  }

  .section h2,
  .closing h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .price-card,
  .value-list article,
  .purpose-grid article,
  .compare-panel article,
  .video-card {
    padding: 22px;
  }

  .video-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .video-frame {
    width: 100%;
    max-width: calc(100vw - 80px);
  }

  .pricing-grid {
    display: flex;
    gap: 14px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-grid::-webkit-scrollbar {
    height: 6px;
  }

  .pricing-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(23, 19, 17, 0.18);
  }

  .pricing-grid .price-card {
    flex: 0 0 min(84vw, 380px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .price-card-top {
    padding-right: 0;
  }

  .recommend-badge {
    position: static;
    width: max-content;
    order: -1;
  }

  .reserve-card {
    padding: 28px 20px;
    text-align: left;
  }

  .reserve-card p {
    margin-left: 0;
  }

  .closing {
    padding: 68px 18px 92px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 29;
    display: block;
    padding: 10px 12px;
    background: rgba(248, 247, 243, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 -10px 30px rgba(23, 19, 17, 0.1);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 999px;
    color: #fff;
    background: #1f8f4a;
    font-weight: 900;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(33px, 8.8vw, 36px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
