:root {
  --cream: #f9f7f2;
  --cream-dark: #f0ebe3;
  --charcoal: #1a1a1a;
  --burgundy: #5c1f1f;
  --taupe: #7a7268;
  --border: rgba(26, 26, 26, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.site-header {
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 1.75rem;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.tagline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 2.5rem;
}

.subtitle {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  margin: 0 0 1rem;
}

.prepared {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--taupe);
  margin: 0;
}

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.section {
  margin-bottom: 4.5rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.diamond {
  color: var(--burgundy);
  font-size: 8px;
  line-height: 1;
}

.section-intro {
  color: var(--taupe);
  margin: 0 0 2rem;
  max-width: 56ch;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  margin-bottom: 2rem;
}

.card-featured {
  border-top: 2px solid var(--burgundy);
}

.card-bundle {
  background: var(--cream-dark);
  border-style: dashed;
}

.card-membership {
  border-top: 2px solid var(--burgundy);
}

.card-header {
  margin-bottom: 1.75rem;
}

.package-num {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.card h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.card-lead {
  margin: 0;
  color: var(--taupe);
  max-width: 58ch;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.meta-label {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.35rem;
}

.meta-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.card-body h3 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 1.75rem 0 0.85rem;
}

.card-body h3:first-child {
  margin-top: 0;
}

.card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-body li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--charcoal);
}

.card-body li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-top: 1.75rem;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: #4a1818;
  border-color: #4a1818;
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: #fff;
}

.service-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
}

.service-card p {
  margin: 0;
  color: var(--taupe);
  flex: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
}

.service-footer .btn {
  margin-top: 0;
  flex-shrink: 0;
}

.styling-options {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.styling-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.styling-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.25rem;
}

.styling-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.styling-option .btn {
  margin-top: 0;
}

.disclaimer {
  font-size: 12px;
  color: var(--taupe);
  margin: 2rem 0 0;
  max-width: 62ch;
  line-height: 1.6;
}

.payment-note {
  font-size: 12px;
  color: var(--taupe);
  margin: 1.25rem 0 0;
  font-style: italic;
  line-height: 1.5;
}

.section-payment-note {
  margin-top: 1.75rem;
}

.membership-note {
  font-size: 14px;
  color: var(--taupe);
  margin: 0 0 0.5rem;
  font-style: italic;
}

.section-next-steps {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
}

.section-next-steps .section-label {
  justify-content: center;
  border-bottom: none;
  padding-bottom: 0;
}

.section-next-steps h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

.section-next-steps p {
  color: var(--taupe);
  max-width: 48ch;
  margin: 0 auto 0.75rem;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
}

.payment-partners {
  margin-bottom: 2rem;
}

.payment-partners-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 1rem;
}

.payment-partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.payment-partners-logos img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(20%);
}

.site-footer .diamond {
  display: block;
  margin-bottom: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

.footer-inner a {
  color: var(--taupe);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--burgundy);
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .card {
    padding: 1.75rem 1.25rem;
  }

  .service-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .service-footer .btn {
    width: 100%;
  }

  .styling-option {
    flex-direction: column;
    align-items: stretch;
  }

  .styling-option .btn {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
