/* Tarification Page Styles */

:root {
  --wine-red: #7d3c4e;
  --wine-dark: #673142;
  --cream: #f9f2ee;
  --paper: #fffaf7;
  --text-dark: #1d1c1a;
  --text-light: #605651;
  --border: rgba(125, 60, 78, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(125, 60, 78, 0.08), transparent 36%),
    radial-gradient(circle at bottom right, rgba(244, 217, 200, 0.26), transparent 42%),
    linear-gradient(180deg, #fdf8f6 0%, #f5ede6 100%);
}

.nav--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 242, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125, 60, 78, 0.12);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  position: relative;
  text-decoration: none;
  color: #5b514d;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__link:hover,
.nav__link--active {
  color: var(--wine-red);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--wine-red);
  transition: width 180ms ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  text-decoration: none;
  color: #fff;
  background: var(--wine-red);
  border: 1px solid var(--wine-red);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}

.nav__cta:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.price-hero {
  padding: 8.5rem 2rem 4rem;
}

.price-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine-red);
  margin: 0 0 1rem;
}

.price-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.95;
  margin: 0 auto 1.1rem;
  max-width: 14ch;
  color: var(--text-dark);
}

.price-hero__lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-hero__highlight {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(125, 60, 78, 0.08), rgba(244, 217, 200, 0.3));
  border: 1px solid rgba(125, 60, 78, 0.12);
  box-shadow: 0 14px 28px rgba(125, 60, 78, 0.08);
}

.page-hero__highlight span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wine-red);
}

.page-hero__highlight strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-dark);
}

.page-hero__highlight small {
  color: var(--text-light);
  font-size: 0.9rem;
}

.page-hero {
  padding: 8.5rem 2rem 4rem;
}

.page-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: center;
  text-align: left;
}

.page-hero--pricing .page-hero__split {
  align-items: start;
}

.page-hero--pricing .page-hero__copy {
  padding-top: 0.3rem;
}

.page-hero--pricing .page-hero__aside h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0 0 1rem;
  color: var(--text-dark);
}

.page-hero--pricing .page-hero__aside::before {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine-red), rgba(125, 60, 78, 0.2));
}

.page-hero__copy {
  max-width: 760px;
  text-align: left;
}

.page-hero__copy > *,
.page-hero__aside > *,
.page-hero__stats article,
.price-hero__stats article,
.section__heading > *,
.calculator-card,
.price-card,
.tier-card,
.feature-item,
.faq-item,
.final-cta-card,
.contact-form,
.contact-info,
.contact-method,
.gallery-item {
  animation: softRiseIn 760ms ease-out both;
}

.page-hero__copy > *:nth-child(1),
.page-hero__aside > *:nth-child(1),
.section__heading > *:nth-child(1) {
  animation-delay: 0.04s;
}

.page-hero__copy > *:nth-child(2),
.page-hero__aside > *:nth-child(2),
.section__heading > *:nth-child(2) {
  animation-delay: 0.12s;
}

.page-hero__copy > *:nth-child(3),
.page-hero__aside > *:nth-child(3),
.section__heading > *:nth-child(3) {
  animation-delay: 0.2s;
}

.page-hero__copy > *:nth-child(4),
.page-hero__aside > *:nth-child(4),
.section__heading > *:nth-child(4) {
  animation-delay: 0.28s;
}

.page-hero__copy > *:nth-child(5),
.page-hero__aside > *:nth-child(5),
.section__heading > *:nth-child(5) {
  animation-delay: 0.36s;
}

.page-hero__headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0.15rem 0 1rem;
  color: var(--text-dark);
}

.page-hero__lead {
  max-width: 700px;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

@keyframes softRiseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 760px;
}

.page-hero__stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.15rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 250, 247, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(125, 60, 78, 0.05);
}

.page-hero__stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  color: var(--wine-red);
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.page-hero__stats span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.page-hero__aside {
  padding: 1.35rem;
  border-radius: 1.4rem;
  background: rgba(255, 250, 247, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(125, 60, 78, 0.08);
}

.page-hero__aside-kicker {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--wine-red);
}

.page-hero__aside-list {
  display: grid;
  gap: 0.85rem;
}

.page-hero__aside-list div {
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(125, 60, 78, 0.08);
}

.page-hero__aside-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--wine-red);
}

.page-hero__aside-list span,
.page-hero__aside-note {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.page-hero__aside-note {
  margin: 0.95rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(125, 60, 78, 0.1);
}

.price-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 2.3rem auto 0;
}

.price-hero__stats article,
.calculator-card,
.price-card,
.tier-card,
.feature-item,
.faq-item,
.final-cta-card {
  background: rgba(255, 250, 247, 0.92);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(125, 60, 78, 0.08);
}

.price-hero__stats article {
  padding: 1.2rem 1rem;
}

.price-hero__stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--wine-red);
  margin-bottom: 0.25rem;
}

.price-hero__stats span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.section {
  padding: 3.5rem 2rem;
}

.section__heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section__heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 0.4rem;
  color: var(--wine-red);
}

.section__heading p {
  margin: 0;
  color: var(--text-light);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.calculator-card,
.price-card {
  padding: 2rem;
}

.calculator__label {
  display: block;
  font-weight: 700;
  color: var(--wine-red);
  margin-bottom: 0.85rem;
}

.calculator__slider {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3d6c6, var(--wine-red));
  outline: none;
}

.calculator__slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wine-red);
  box-shadow: 0 8px 16px rgba(125, 60, 78, 0.28);
}

.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.82rem;
  margin: 0.55rem 0 1.4rem;
}

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

.calculator__result-item {
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(125, 60, 78, 0.08);
  border-radius: 1rem;
  text-align: center;
}

.calculator__result-item.highlight {
  background: linear-gradient(135deg, var(--wine-red), #996477);
  color: #fff;
}

.calculator__value {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--wine-red);
}

.highlight .calculator__value {
  color: #fff;
}

.calculator__value--large {
  font-size: 2rem;
}

.calculator__note {
  margin: 1.25rem 0 0;
  color: var(--text-light);
  font-size: 0.92rem;
  text-align: center;
}

.price-card {
  position: sticky;
  top: 6rem;
}

.price-card__eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wine-red);
}

.price-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0 0 0.7rem;
}

.price-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--wine-red);
  margin: 0 0 1rem;
}

.price-card__price span {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-card__price small {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-card ul {
  padding-left: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.pricing-tiers {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tier-card {
  padding: 1.6rem;
  text-align: center;
}

.tier-card--featured {
  transform: translateY(-8px);
  border-color: rgba(125, 60, 78, 0.24);
}

.tier-card__badge {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(244, 217, 200, 0.5);
  color: var(--wine-red);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-card__badge--featured {
  background: var(--wine-red);
  color: #fff;
}

.tier-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

.tier-card__price {
  font-family: "Cormorant Garamond", serif;
  color: var(--wine-red);
  font-size: 2.8rem;
  margin: 0;
}

.tier-card__per {
  margin: 0.2rem 0 0;
  color: var(--text-light);
}

.save-date-offer-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  padding: 1.35rem;
  background: rgba(255, 250, 247, 0.92);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(125, 60, 78, 0.08);
}

.save-date-offer-card__header,
.save-date-offer-card__content {
  border-radius: 1rem;
  padding: 1.1rem 1.15rem;
}

.save-date-offer-card__header {
  background: linear-gradient(135deg, rgba(125, 60, 78, 0.08), rgba(244, 217, 200, 0.36));
  border: 1px solid rgba(125, 60, 78, 0.16);
}

.save-date-offer-card__eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--wine-red);
}

.save-date-offer-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--text-dark);
}

.save-date-offer-card__price {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--wine-red);
  line-height: 1;
}

.save-date-offer-card__price small {
  display: block;
  margin-top: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  color: var(--text-light);
}

.save-date-offer-card__launch {
  margin: 0.85rem 0 0;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d42d46, #a50f2d);
  border: 1px solid rgba(255, 230, 230, 0.45);
  box-shadow: 0 12px 24px rgba(165, 15, 45, 0.36);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.save-date-offer-card__launch strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  display: inline-block;
  animation: promoPulse 1s ease-in-out infinite;
}

@keyframes promoPulse {
  0% {
    transform: scale(0.92);
  }

  50% {
    transform: scale(1.14);
  }

  100% {
    transform: scale(0.92);
  }
}

.save-date-offer-card__content {
  background: #fff;
  border: 1px solid rgba(125, 60, 78, 0.08);
}

.save-date-offer-card__content ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.save-date-offer-card__credit {
  margin: 1rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem;
  background: rgba(125, 60, 78, 0.06);
  color: #5f5550;
  border: 1px solid rgba(125, 60, 78, 0.1);
}

.save-date-offer-card__actions {
  margin-top: 1rem;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.features-grid--compact .feature-item {
  padding: 1.4rem;
  text-align: left;
}

.feature-item {
  padding: 1.5rem;
}

.feature-item h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: var(--wine-red);
}

.feature-item p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 1.4rem;
  cursor: pointer;
  font: inherit;
  color: var(--wine-red);
  font-weight: 700;
  text-align: left;
}

.faq-item__trigger.is-active {
  background: rgba(125, 60, 78, 0.04);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-item__content.is-active {
  max-height: 220px;
  padding: 0 1.4rem 1.3rem;
}

.faq-item__content p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.final-cta-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem;
  text-align: center;
}

.final-cta-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.6rem;
}

.final-cta-card p {
  color: var(--text-light);
  margin: 0 0 1.5rem;
}

.final-cta-card__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn--primary {
  background: var(--wine-red);
  color: #fff;
  border: 1px solid var(--wine-red);
}

.btn--primary:hover,
.btn--ghost:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--wine-red);
  border: 1px solid rgba(125, 60, 78, 0.22);
}

.btn--large {
  padding: 1rem 1.6rem;
}

.footer {
  padding: 2rem;
  margin-top: 1rem;
}

.footer__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-light);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--wine-red);
}

@media (max-width: 980px) {
  .pricing-grid,
  .pricing-tiers,
  .features-grid,
  .save-date-offer-card,
  .page-hero__split,
  .page-hero__stats {
    grid-template-columns: 1fr;
  }

  .price-card {
    position: static;
  }

  .page-hero__copy {
    max-width: none;
  }

  .price-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    z-index: 1002;
  }

  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(29, 28, 26, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav.nav--open::before {
    opacity: 1;
  }

  .nav__menu {
    order: 3;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    padding: 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(125, 60, 78, 0.2);
    background: rgba(255, 250, 247, 0.98);
    box-shadow: 0 16px 34px rgba(29, 28, 26, 0.16);
    z-index: 1003;
  }

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

  .nav__toggle {
    display: inline-flex;
  }

  .nav--fixed {
    padding: 0.9rem 1rem;
    position: fixed;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav__link {
    padding: 0.62rem 0.55rem;
    border-radius: 10px;
  }

  .nav__link:hover {
    background: rgba(125, 60, 78, 0.09);
  }

  .price-hero {
    padding: 7.5rem 1rem 3rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .calculator-card,
  .price-card,
  .final-cta-card {
    padding: 1.4rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .page-hero__copy > *,
  .page-hero__aside > *,
  .page-hero__stats article,
  .price-hero__stats article,
  .section__heading > *,
  .calculator-card,
  .price-card,
  .tier-card,
  .feature-item,
  .faq-item,
  .final-cta-card,
  .contact-form,
  .contact-info,
  .contact-method,
  .gallery-item {
    animation: none;
  }

  .save-date-offer-card__launch strong {
    animation: none;
  }
}
