:root {
  --green-deep: #1B3D2F;
  --green-mid: #2D5A3D;
  --green-light: #3E7A52;
  --cream: #F5F0E8;
  --amber: #D4942A;
  --amber-light: #E8B44A;
  --stone: #E2D9CC;
  --stone-dark: #C4B8A4;
  --ink: #1A1A18;
  --ink-light: #4A4A46;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.site-nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--stone);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 400;
}
.nav-cta {
  display: inline-block;
  padding: 7px 18px;
  background: var(--green-deep);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-mid); }
.nav-signin {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-signin:hover { color: var(--green-deep); }

/* ─── HERO ─── */
.hero {
  padding: 80px 48px 64px;
  background: var(--cream);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 420px;
}
.hero-credibility {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--stone);
  padding-left: 32px;
}
.cred-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}
.cred-item:last-child { border-bottom: none; }
.cred-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.cred-label {
  display: block;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 2px;
  line-height: 1.4;
}
.hero-atmosphere {
  display: flex;
  height: 4px;
  margin-top: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 48px;
}
.atmo-bar { flex: 1; height: 100%; }
.atmo-green { background: var(--green-deep); }
.atmo-stone { background: var(--stone); }
.atmo-amber { background: var(--amber); }

/* ─── STATS ROW ─── */
.stats-row {
  background: var(--green-deep);
  padding: 40px 48px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 32px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-val {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 4px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(245, 240, 232, 0.2);
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services {
  padding: 96px 48px;
  background: var(--cream);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--stone);
}
.service-card {
  padding: 32px 28px;
  background: white;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+4) { border-bottom: none; }
.service-card-wide { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid var(--stone); }
.service-card:last-child { border-bottom: none; }
.service-icon {
  color: var(--green-mid);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.55;
}

/* ─── DIFFERENCE ─── */
.difference {
  padding: 96px 48px;
  background: var(--green-deep);
}
.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.difference .section-kicker { color: var(--amber); }
.difference .section-headline { color: var(--cream); }
.difference-body {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.difference-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}
.pillar:last-child { border-bottom: none; }
.pillar-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}
.pillar h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
}

/* ─── AREA ─── */
.area {
  padding: 96px 48px;
  background: var(--cream);
}
.area-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.area-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.area-list li {
  font-size: 14px;
  color: var(--ink-light);
  padding-left: 16px;
  position: relative;
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.area-note {
  font-size: 13px;
  color: var(--ink-light);
  font-style: italic;
}
.map-graphic {
  background: var(--stone);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 7/6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-graphic svg { width: 100%; height: 100%; }

/* ─── PRICING ─── */
.pricing {
  padding: 96px 48px;
  background: var(--stone);
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-subhead {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 56px;
  margin-top: -32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--stone-dark);
  border: 1px solid var(--stone-dark);
  border-radius: 4px;
  overflow: hidden;
}
.pricing-card {
  background: white;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card-featured {
  background: var(--green-deep);
}
.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--amber);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-header {
  margin-bottom: 24px;
}
.tier-badge {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.pricing-card-featured .tier-badge {
  color: var(--amber-light);
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card-featured .price-amount {
  color: var(--cream);
}
.price-unit {
  font-size: 13px;
  color: var(--ink-light);
}
.pricing-card-featured .price-unit {
  color: rgba(245, 240, 232, 0.6);
}
.tier-includes {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}
.tier-includes li {
  font-size: 13px;
  color: var(--ink-light);
  padding: 7px 0;
  padding-left: 20px;
  border-bottom: 1px solid var(--stone);
  position: relative;
  line-height: 1.4;
}
.pricing-card-featured .tier-includes li {
  color: rgba(245, 240, 232, 0.75);
  border-bottom-color: rgba(245, 240, 232, 0.12);
}
.tier-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 700;
}
.pricing-card-featured .tier-includes li::before {
  color: var(--amber-light);
}
.tier-sla {
  font-size: 11px;
  color: var(--ink-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}
.pricing-card-featured .tier-sla {
  color: rgba(245, 240, 232, 0.5);
}
.btn-book {
  display: block;
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
  transition: background 0.15s;
}
.btn-book:hover {
  background: var(--green-mid);
}
.pricing-card-featured .btn-book {
  background: var(--amber);
  color: white;
}
.pricing-card-featured .btn-book:hover {
  background: var(--amber-light);
}
.pricing-footnote {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-light);
  text-align: center;
  font-style: italic;
}

/* ─── BOOKING CONFIRM ─── */
.booking-confirm-section {
  min-height: 70vh;
  padding: 96px 48px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-confirm-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.confirm-icon {
  margin-bottom: 28px;
}
.confirm-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.confirm-sub {
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 40px;
}
.confirm-details {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
  text-align: left;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--stone);
  font-size: 14px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-label { color: var(--ink-light); }
.confirm-value { font-weight: 600; color: var(--green-deep); }
.confirm-next {
  background: var(--stone);
  border-radius: 4px;
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 32px;
}
.confirm-next a { color: var(--green-mid); }
.confirm-back {
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: none;
}
.confirm-back:hover { color: var(--green-deep); }

/* ─── CLOSING ─── */
.closing {
  padding: 120px 48px;
  background: var(--cream);
  border-top: 1px solid var(--stone);
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--green-deep);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.footer-loc {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
}
.footer-tagline {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* ─── PRICING GUIDE ─── */
.pg-hero {
  padding: 64px 48px 56px;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}
.pg-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pg-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.pg-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.pg-intro {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 600px;
}

.pg-section {
  padding: 80px 48px;
}
.pg-section--cream { background: var(--cream); }
.pg-section--white { background: white; }
.pg-section--dark { background: var(--green-deep); }
.pg-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pg-section-head {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 40px;
}
.pg-section-head--cream { color: var(--cream); }

.pg-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--stone);
  border-radius: 4px;
}
.pg-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 14px;
}
.pg-table th {
  background: var(--stone);
  color: var(--green-deep);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.02em;
  font-size: 12px;
}
.pg-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--stone);
  color: var(--ink-light);
}
.pg-table tr:last-child td { border-bottom: none; }
.pg-table-featured td {
  background: var(--green-deep);
  color: var(--cream);
  font-weight: 500;
}
.pg-table-featured td strong { color: var(--amber-light); }
.pg-check { color: var(--green-mid); font-weight: 600; }
.pg-no { color: var(--stone-dark); }
.pg-table-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--stone-dark);
  font-style: italic;
}

.pg-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pg-bullets li {
  padding: 16px 20px;
  border-bottom: 1px solid var(--stone);
  border-right: 1px solid var(--stone);
  font-size: 15px;
  color: var(--ink);
  background: white;
  line-height: 1.4;
}
.pg-bullets li:nth-child(2n) { border-right: none; }
.pg-bullets li:nth-last-child(-n+2) { border-bottom: none; }
.pg-bullets li::before {
  content: '✓';
  color: var(--green-mid);
  font-weight: 700;
  margin-right: 10px;
}
.pg-aside {
  font-size: 13px;
  color: var(--ink-light);
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 16px;
}

.pg-drivers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(245, 240, 232, 0.12);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 4px;
  overflow: hidden;
}
.pg-driver {
  padding: 28px 24px;
  background: rgba(245, 240, 232, 0.06);
}
.pg-driver-icon { font-size: 28px; margin-bottom: 12px; }
.pg-driver h3 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pg-driver p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.55;
}

.pg-callout {
  background: var(--green-deep);
  border-left: 4px solid var(--amber);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 32px;
}
.pg-callout p {
  font-size: 17px;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
}
.pg-callout em { font-style: normal; color: var(--amber-light); }
.pg-body {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pg-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pg-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--stone);
}
.pg-step:last-child { border-bottom: none; }
.pg-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.pg-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pg-step p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.55;
}

.pg-cta {
  padding: 80px 48px;
  background: var(--stone);
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
  text-align: center;
}
.pg-cta-inner { max-width: 560px; margin: 0 auto; }
.pg-cta-head {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.pg-cta-btn {
  display: inline-block;
  background: var(--green-deep);
  color: var(--cream);
  padding: 18px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.pg-cta-btn:hover { background: var(--green-mid); }

@media (max-width: 768px) {
  .pg-hero { padding: 48px 24px 40px; }
  .pg-headline { font-size: 28px; }
  .pg-section { padding: 56px 24px; }
  .pg-bullets { grid-template-columns: 1fr; }
  .pg-bullets li { border-right: none; }
  .pg-bullets li:nth-child(2n) { border-right: none; }
  .pg-bullets li:nth-last-child(-n+2) { border-bottom: 1px solid var(--stone); }
  .pg-bullets li:last-child { border-bottom: none; }
  .pg-drivers { grid-template-columns: 1fr; }
  .pg-table { font-size: 13px; }
  .pg-table th, .pg-table td { padding: 10px 12px; }
  .pg-cta { padding: 56px 24px; }
}
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-atmosphere { padding: 0 24px; }
  .stats-row { padding: 32px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat { padding: 0; flex-basis: calc(50% - 12px); }
  .stat-divider { display: none; }
  .services { padding: 64px 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .service-card-wide { grid-column: auto; }
  .difference { padding: 64px 24px; }
  .difference-inner { grid-template-columns: 1fr; gap: 40px; }
  .area { padding: 64px 24px; }
  .area-map { grid-template-columns: 1fr; }
  .map-graphic { order: -1; }
  .pricing { padding: 64px 24px; }
  .pricing-subhead { margin-bottom: 40px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .booking-confirm-section { padding: 64px 24px; }
}

@media (max-width: 375px) {
  .hero-headline { font-size: 32px; }
  .section-headline { font-size: 26px; }
  .closing-headline { font-size: 26px; }
  .stat-val { font-size: 24px; }
  .cred-number { font-size: 22px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 32px; }
}