/*
Theme Name: Transform Me Academy
Theme URI: https://transformmeacademy.org
Author: Chris E Gibson
Author URI: https://transformmeacademy.org
Description: Official theme for Transform Me Academy. Built on the Still State System and IPPR Method brand identity. Black and gold. DM Serif Display and IBM Plex Sans.
Version: 1.0.0
License: Private
License URI: https://transformmeacademy.org
Text Domain: tma
Tags: coaching, mindset, stress, professional
*/

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

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

/* ── BRAND TOKENS ── */
:root {
  --black: #080808;
  --black-mid: #111111;
  --black-surf: #1a1a1a;
  --gold: #c9a94a;
  --gold-light: #e2c97e;
  --gold-dark: #a88a30;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.5);
  --muted2: rgba(255,255,255,0.72);
  --border: rgba(201,169,74,0.18);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--black); color: var(--white); font-size: 16px; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
p { margin-bottom: 1rem; }
em { font-style: italic; }

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.site-header .header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-branding a {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.main-navigation ul { display: flex; align-items: center; gap: 1.1rem; list-style: none; flex-wrap: nowrap; }
.main-navigation ul li a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--muted2); text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a { color: var(--gold); }
.main-navigation ul li.menu-cta a {
  background: var(--gold); color: var(--black) !important;
  padding: 0.45rem 1.1rem; border-radius: 3px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.main-navigation ul li.menu-cta a:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-navigation { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--black-mid); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; }
  .main-navigation.open { display: block; }
  .main-navigation ul { flex-direction: column; gap: 1.25rem; }
}

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col p, .footer-col a { font-size: 0.85rem; color: var(--muted); display: block; margin-bottom: 0.4rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.container-xs { max-width: 560px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.text-center { text-align: center; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── SHARED UI ── */
.tag {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.section-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--black);
  border-radius: 4px; padding: 0.9rem 2.2rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 4px; padding: 0.9rem 2.2rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.pull-quote {
  font-family: var(--serif); font-size: clamp(1.2rem,3vw,1.75rem);
  line-height: 1.35; font-style: italic; color: var(--white);
  border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0;
  border-radius: 0;
}
.surf-card { background: var(--black-surf); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; }
.gold-top { border-top: 4px solid var(--gold); }

/* ── HOME PAGE ── */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 7rem 0 5rem; }
@media(max-width:700px){ .hero-grid { grid-template-columns: 1fr; padding: 4rem 0 3rem; gap: 2rem; } }
.hero-grid h1 { font-size: clamp(2.4rem,5vw,3.6rem); margin-bottom: 1.25rem; }
.hero-grid h1 em { color: var(--gold-light); }
.hero-grid p { font-size: 1rem; color: var(--muted2); margin-bottom: 2rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-panel { background: var(--black-surf); border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: 6px; padding: 2rem; }
.hero-panel h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.75rem; }
.hero-panel p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
.stat-row { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); font-style: italic; line-height: 1; display: block; }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; display: block; }
.problems-band { background: var(--black-surf); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media(max-width:640px){ .problems-grid { grid-template-columns: 1fr; } }
.problem-list { list-style: none; }
.problem-list li { padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 0.925rem; color: var(--muted2); display: flex; gap: 0.75rem; align-items: flex-start; }
.problem-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.55rem; }
.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
@media(max-width:600px){ .fw-grid { grid-template-columns: 1fr; } }
.fw-card { background: var(--black-surf); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 6px; padding: 1.75rem; }
.fw-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.5rem; }
.fw-sub { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.75rem; font-family: var(--sans); }
.fw-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.fw-steps { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.fw-step { font-size: 10px; background: var(--black-mid); border: 1px solid var(--border); border-radius: 2px; padding: 0.2rem 0.5rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; font-family: var(--sans); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.product-card { background: var(--black); border: 1px solid var(--border); border-radius: 6px; padding: 1.75rem; display: flex; flex-direction: column; }
.product-price { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-style: italic; margin-bottom: 0.25rem; }
.product-card h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; padding: 6rem 0 4rem; }
@media(max-width:700px){ .about-grid { grid-template-columns: 1fr; padding: 4rem 0 3rem; gap: 2rem; } }
.about-grid h1 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 1.25rem; }
.about-grid h1 em { color: var(--gold-light); }
.about-grid p { font-size: 1rem; color: var(--muted2); margin-bottom: 1rem; line-height: 1.75; }
.avatar-block { background: var(--black-surf); border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: 6px; padding: 2rem; text-align: center; }
.avatar-circle { width: 88px; height: 88px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.8rem; color: var(--black); margin: 0 auto 1.25rem; font-style: italic; }
.avatar-block h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.25rem; }
.avatar-role { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 1rem; font-family: var(--sans); }
.cred-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.cred-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--muted2); }
.cred-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { background: var(--black); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; }
.value-num { font-family: var(--serif); font-size: 1.8rem; font-style: italic; color: var(--gold); opacity: 0.7; display: block; margin-bottom: 0.5rem; }
.value-card h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── WORK WITH ME ── */
.offering-card { background: var(--black-surf); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 1.5rem; }
@media(max-width:660px){ .offering-card { grid-template-columns: 1fr; } }
.offering-card.featured { border-top: 4px solid var(--gold); }
.offering-body { padding: 2.5rem; }
.offer-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-family: var(--sans); }
.offering-body h2 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.75rem; }
.offering-body p { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; margin-bottom: 0.75rem; }
.offering-meta { padding: 2.5rem; background: var(--black); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.meta-label { font-size: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; font-family: var(--sans); display: block; margin-bottom: 0.2rem; }
.meta-value { font-size: 1rem; color: var(--white); font-weight: 500; display: block; }
.meta-price { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-style: italic; display: block; }
.inc-list { list-style: none; margin: 1rem 0; }
.inc-list li { font-size: 0.875rem; color: var(--muted2); padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 0.6rem; }
.inc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.55rem; }
.call-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 2rem 0; text-align: left; }
.call-feat { background: var(--black); border: 1px solid var(--border); border-radius: 6px; padding: 1rem; }
.call-feat h4 { font-family: var(--sans); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--white); }
.call-feat p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── COURSES ── */
.ladder-card { background: var(--black-surf); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem; }
.ladder-card.featured { border-top: 4px solid var(--gold); }
.ladder-header { padding: 2rem; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; border-bottom: 1px solid var(--border); }
.ltype { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; font-family: var(--sans); }
.ladder-title h2 { font-family: var(--serif); font-size: 1.5rem; }
.price-big { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); font-style: italic; line-height: 1; display: block; }
.price-note { font-size: 11px; color: var(--muted); margin-top: 0.25rem; font-family: var(--sans); }
.ladder-body { padding: 1.75rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:580px){ .ladder-body { grid-template-columns: 1fr; } }
.ladder-desc p { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; margin-bottom: 0.75rem; }
.ladder-includes h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-family: var(--sans); }
.ladder-footer { padding: 1.25rem 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ladder-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans); color: var(--gold); }

/* ── FREE GUIDE / OPT-IN ── */
.guide-hero { padding: 5.5rem 0 4rem; text-align: center; }
.guide-hero h1 { font-size: clamp(2.4rem,6vw,4rem); margin-bottom: 1rem; }
.guide-hero h1 em { color: var(--gold-light); }
.guide-hero p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto 3rem; line-height: 1.75; }
.form-card { background: var(--white); color: var(--black); border-radius: 6px; padding: 2.5rem 2rem; max-width: 460px; margin: 0 auto; text-align: left; border-top: 4px solid var(--gold); }
.form-card h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--black); margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.875rem; color: #4a4a4a; margin-bottom: 1.5rem; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #222; margin-bottom: 0.4rem; }
.form-field input { width: 100%; border: 1.5px solid #ddd; border-radius: 4px; padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.95rem; color: var(--black); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-field input:focus { border-color: var(--black); }
.form-submit { width: 100%; background: var(--gold); color: var(--black); border: none; border-radius: 4px; padding: 1rem; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; margin-top: 0.5rem; transition: background 0.2s; }
.form-submit:hover { background: var(--gold-dark); color: var(--white); }
.form-note { font-size: 11.5px; color: #999; text-align: center; margin-top: 1rem; }
.inside-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin-top: 1.5rem; }
.inside-item { background: var(--black-surf); padding: 1.75rem 1.5rem; }
.inside-num { font-family: var(--serif); font-size: 2rem; font-style: italic; color: var(--gold); opacity: 0.85; display: block; margin-bottom: 0.75rem; }
.inside-item h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.inside-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }
.about-strip { background: var(--black-surf); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; display: flex; gap: 2rem; align-items: flex-start; }
@media(max-width:580px){ .about-strip { flex-direction: column; gap: 1.5rem; } }
.av-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.3rem; color: var(--black); flex-shrink: 0; font-style: italic; }
.about-txt h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.3rem; }
.about-txt .arole { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; font-weight: 600; font-family: var(--sans); display: block; }
.about-txt p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media(max-width:660px){ .contact-grid { grid-template-columns: 1fr; } }
.cf-field { margin-bottom: 1rem; }
.cf-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted2); margin-bottom: 0.4rem; font-family: var(--sans); }
.cf-field input, .cf-field textarea, .cf-field select { width: 100%; background: var(--black-surf); border: 1px solid var(--border); border-radius: 4px; padding: 0.75rem 1rem; font-family: var(--sans); font-size: 0.9rem; color: var(--white); outline: none; transition: border-color 0.2s; }
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { border-color: var(--gold); }
.cf-field textarea { resize: vertical; min-height: 120px; }
.cf-field select option { background: var(--black-surf); }
.cf-submit { background: var(--gold); color: var(--black); border: none; border-radius: 4px; padding: 0.9rem 2rem; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.cf-submit:hover { background: var(--gold-dark); color: var(--white); }
.info-items { display: flex; flex-direction: column; gap: 1rem; }
.info-item { background: var(--black-surf); border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem 1.5rem; }
.info-item h3 { font-size: 10px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; font-family: var(--sans); }
.info-item p, .info-item a { font-size: 0.9rem; color: var(--muted2); display: block; text-decoration: none; }
.info-item a:hover { color: var(--gold); }

/* ── THANK YOU ── */
.confirm-band { background: var(--black-surf); border-bottom: 1px solid var(--border); padding: 1.1rem 2rem; text-align: center; }
.confirm-inner { display: inline-flex; align-items: center; gap: 0.75rem; }
.check-circle { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-circle svg { width: 12px; height: 12px; }
.confirm-band p { font-size: 0.875rem; color: var(--muted2); }
.confirm-band strong { color: var(--gold); font-weight: 600; }
.offer-card { background: var(--black-surf); border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: 6px; overflow: hidden; }
.offer-header { padding: 2rem; text-align: center; border-bottom: 1px solid var(--border); }
.offer-header h2 { font-family: var(--serif); font-size: clamp(1.6rem,3.5vw,2.2rem); margin-bottom: 0.5rem; }
.offer-header h2 em { color: var(--gold-light); }
.offer-header p { font-size: 0.9rem; color: var(--muted); max-width: 420px; margin: 0 auto; }
.offer-body { padding: 2rem; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; margin-top: 1rem; }
.included-item { background: var(--black); padding: 1rem; }
.inc-num { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--gold); opacity: 0.8; display: block; margin-bottom: 0.3rem; }
.inc-title { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; font-family: var(--sans); }
.inc-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; }
.price-block { text-align: center; padding: 1.5rem; background: var(--black); border: 1px solid var(--border); border-radius: 4px; margin: 1.75rem 0 1.25rem; }
.was-price { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin-bottom: 0.25rem; }
.now-price { font-family: var(--serif); font-size: 2.8rem; color: var(--gold); font-style: italic; line-height: 1; }
.now-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; font-style: normal; font-family: var(--sans); }
.offer-cta { display: block; width: 100%; background: var(--gold); color: var(--black); border: none; border-radius: 4px; padding: 1rem; font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer; text-align: center; text-decoration: none; transition: background 0.2s; }
.offer-cta:hover { background: var(--gold-dark); color: var(--white); }
.guarantee-box { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1.25rem; padding: 1rem; background: var(--black); border: 1px solid var(--border); border-radius: 4px; }
.g-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-icon svg { width: 16px; height: 16px; }
.guarantee-box p { font-size: 0.85rem; color: var(--muted2); line-height: 1.6; margin: 0; }
.guarantee-box strong { color: var(--white); }
.skip-link { text-align: center; padding: 1.5rem 2rem; }
.skip-link a { font-size: 0.85rem; color: var(--muted); text-decoration: underline; }
.skip-link a:hover { color: var(--gold); }

/* ── CTA BAND ── */
.cta-band { text-align: center; padding: 5rem 2rem; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1rem; }
.cta-band h2 em { color: var(--gold-light); }
.cta-band p { color: var(--muted); max-width: 460px; margin: 0 auto 2rem; }

/* ── UTILITY ── */
.bg-surf { background: var(--black-surf); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.flex-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-muted2 { color: var(--muted2); }
.font-serif { font-family: var(--serif); }
.font-sans { font-family: var(--sans); }

/* ── CHRIS PHOTO ── */
.photo-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}
.chris-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.photo-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badge-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1;
  color: var(--black);
  font-weight: 400;
}
.badge-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  font-family: var(--sans);
}
