/* ============================================================
   BODY BY ALLEY — style.css
   Premium light-mode. Cream & gold editorial.
   ============================================================ */

/* === 1. CUSTOM PROPERTIES === */
:root {
  --gold:        #C49A28;
  --gold-hi:     #D4AF37;
  --gold-deep:   #8A6A10;
  --gold-grad:   linear-gradient(135deg, #8A6A10 0%, #C49A28 35%, #D4AF37 52%, #C49A28 68%, #8A6A10 100%);
  --bg:          #FAFAF8;
  --panel:       #F0EBE1;
  --panel-alt:   #E8E0D4;
  --footer-bg:   #110F08;
  --text:        #1A1814;
  --text-muted:  #6B6258;
  --text-dim:    #9A9088;
  --border:      rgba(180, 140, 20, 0.22);
  --rule:        rgba(180, 140, 20, 0.45);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* === 2. RESET + BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Gold accent bar pinned to top */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  z-index: 200;
  pointer-events: none;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === 3. TYPOGRAPHY UTILITIES === */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === 4. BUTTONS === */
.btn-gold {
  display: inline-block;
  background: #1A1814;
  color: #F0EBE1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 2px;
  border: 1.5px solid #1A1814;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-gold:hover {
  background: transparent;
  color: #1A1814;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--text-dim);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-text:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-text .arrow {
  transition: transform 0.2s ease;
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

/* === 5. SHARED NAV === */
.site-nav {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(250, 250, 248, 0.97);
  padding: 14px 40px;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
}

/* Circular badge crops to the emblem on the light nav;
   on the dark footer the full logo image is used instead. */
.nav-logo-badge {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1.5px rgba(196, 154, 40, 0.4);
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links .nav-cta {
  background: #1A1814;
  color: #F0EBE1;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 2px;
  border: 1.5px solid #1A1814;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links .nav-cta:hover {
  background: transparent;
  color: #1A1814;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile panel — dark for contrast against light site */
.nav-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100dvh;
  background: var(--footer-bg);
  border-left: 1px solid rgba(180, 140, 20, 0.2);
  padding: 80px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

.nav-mobile-panel.open {
  right: 0;
}

.nav-mobile-panel a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.5);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
  display: block;
}

.nav-mobile-panel a:hover,
.nav-mobile-panel a.active {
  color: #F0EBE1;
}

.nav-mobile-panel .nav-cta-mobile {
  margin-top: 28px;
  background: var(--gold);
  color: #0A0804;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px;
  border-radius: 2px;
  border-bottom: none;
  letter-spacing: 0.1em;
}

.nav-mobile-panel .nav-cta-mobile:hover {
  color: #0A0804;
  opacity: 0.88;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* === 6. SHARED FOOTER === */
.site-footer {
  background: var(--panel-alt);
  border-top: 3px solid transparent;
  border-image: var(--gold-grad) 1;
  padding: 64px 40px 36px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--text-dim);
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-address {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: right;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.footer-phone:hover { opacity: 0.75; }

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 22px;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-center-cluster {
  display: contents;
}

.footer-policy-link {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-policy-link:hover { color: var(--gold); }

.footer-credit {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.footer-credit a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(138, 106, 16, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* === 7. STICKY CTA (removed) === */

/* === 8. SCROLL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] { transform: none; }
[data-reveal="fade"].revealed { transform: none; }

/* === 9. HOME PAGE === */

/* ====== HERO ====== */
.home-hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 56fr 44fr;
  align-items: stretch;
  overflow: hidden;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 100px 72px;
}

/* "Personal" in script gold — warm and personal */
.hero-title-main {
  margin-bottom: 32px;
  line-height: 1;
}

.hero-title-script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

/* "Trainer." in bold serif — confident and professional */
.hero-title-serif {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  display: block;
}

.hero-identity {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.hero-name-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.hero-location-line {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold-grad);
  margin-bottom: 36px;
}

.hero-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Padded image column — image sits in whitespace, not edge-to-edge */
.hero-image-col {
  display: flex;
  align-items: center;
  padding: 116px 52px 72px 16px;
}

/* Picture-frame treatment */
.hero-image-frame {
  width: 100%;
  position: relative;
  border: 1px solid rgba(196, 154, 40, 0.38);
  padding: 10px;
  background: var(--bg);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.14),
    0 6px 20px rgba(0, 0, 0, 0.07);
}

/* Outer offset rule — the "second frame" that gives depth */
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(196, 154, 40, 0.16);
  pointer-events: none;
}

.hero-image-col img {
  width: 100%;
  height: 62vh;
  max-height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ====== PROOF BAR ====== */
.proof-bar {
  background: var(--panel);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-item {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 48px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--border);
}

.proof-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ====== ABOUT TEASER ====== */
.home-about {
  padding: 176px 48px 160px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 96px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.pullquote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: 16px;
}

.pullquote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 24px;
}

.pullquote-attr {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
}

.about-side {
  width: 220px;
  flex-shrink: 0;
  padding-top: 60px;
}

.about-side p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ====== SERVICES TEASER ====== */
.home-services {
  padding: 120px 0 152px;
  border-top: 1px solid var(--border);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 64px;
  align-items: start;
}

.services-rotated-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding-top: 20px;
  white-space: nowrap;
  align-self: start;
  margin-top: 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  gap: 24px;
}

.service-row:last-child {
  border-bottom: 1px solid var(--border);
}

.service-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.service-row:hover .service-name {
  color: var(--gold);
}

.service-desc {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ====== HOME CTA ====== */
.home-cta {
  background: var(--panel);
  text-align: center;
  padding: 148px 40px 156px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-cta .cta-script {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 14px;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.1;
}

.home-cta .cta-alt {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.home-cta .cta-alt a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.home-cta .cta-alt a:hover { opacity: 0.75; }

/* === 10. ABOUT PAGE === */

.about-page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 60px 72px;
  position: relative;
  overflow: hidden;
}

.about-page-hero::before {
  content: 'Alley';
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-family: var(--font-script);
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(180, 140, 20, 0.07);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

.about-hero-heading {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  color: var(--text);
}

.about-story-image {
  width: 100%;
  height: 28vh;
  min-height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-story-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 60px 152px;
  display: grid;
  grid-template-columns: 120px 1fr 280px;
  gap: 0 56px;
  align-items: start;
}

.about-photo-col {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-photo-col img {
  width: 100%;
  border-radius: 2px;
  display: block;
}

.about-photo-caption {
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--gold);
  text-align: center;
  opacity: 0.8;
}

.about-mission {
  font-style: italic;
  color: var(--text) !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 8px;
}

.about-chapter-label {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.7;
  padding-top: 8px;
  line-height: 1.3;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.about-bio p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 640px;
}

.about-bio p strong {
  color: var(--text);
  font-weight: 600;
}

.about-bio .bio-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 8px 0;
  max-width: 600px;
}

.about-credentials {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 48px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.cred-item:last-child { border-right: none; }

.cred-acronym {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cred-detail {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* Shared page CTA */
.page-cta {
  background: var(--panel);
  text-align: center;
  padding: 128px 40px 140px;
  border-top: 1px solid var(--border);
}

.page-cta .cta-script {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 14px;
}

.page-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.1;
}

.page-cta .cta-alt {
  display: block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.page-cta .cta-alt a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.page-cta .cta-alt a:hover { opacity: 0.75; }

/* === 11. SERVICES PAGE === */

.services-page-hero {
  padding: 200px 60px 112px;
  max-width: 900px;
}

.services-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 32px;
}

.services-page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.78;
}

.service-entry {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 60px 124px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 56px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.service-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  line-height: 0.8;
  color: rgba(180, 140, 20, 0.18);
  user-select: none;
  padding-top: 8px;
}

/* Constrain service text to a readable line length */
.service-content {
  max-width: 660px;
}

.service-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}

.service-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: block;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 640px;
}

.service-pricing {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 36px;
  display: block;
}

.services-image-wrap {
  position: relative;
  overflow: hidden;
}

.services-image-wrap img {
  width: 100%;
  height: 26vh;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-process {
  background: var(--panel);
  padding: 112px 60px 124px;
  border-top: 1px solid var(--border);
}

.services-process h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 64px;
  color: var(--text);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
}

.process-step {
  padding-right: 52px;
  border-right: 1px solid var(--border);
}

.process-step:first-child {
  padding-left: 0;
  padding-right: 52px;
}

.process-step:nth-child(2) {
  padding-left: 52px;
  padding-right: 52px;
}

.process-step:last-child {
  border-right: none;
  padding-left: 52px;
  padding-right: 0;
}

.step-num {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
  display: block;
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* === 12. PRICING SECTION === */

.pricing-section {
  border-top: 1px solid var(--border);
  padding: 112px 60px 124px;
}

.pricing-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 48px;
}

.pricing-row {
  display: grid;
  gap: 3px;
  margin-bottom: 3px;
}

.pricing-row--two   { grid-template-columns: 1fr 1fr; }
.pricing-row--three { grid-template-columns: 1fr 1fr 1fr; }

.pricing-card {
  background: var(--panel);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  background: var(--bg);
  border: 2px solid rgba(196, 154, 40, 0.55);
  box-shadow: 0 4px 24px rgba(196, 154, 40, 0.08);
}

.pricing-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(196, 154, 40, 0.1);
  border: 1px solid rgba(196, 154, 40, 0.35);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.pricing-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  display: block;
  margin-bottom: 10px;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0 24px;
}

.pricing-card-per {
  font-size: 1rem;
  font-weight: 500;
}

.pricing-card-detail {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pricing-pkg-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.pricing-pkg-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.ppkg-name {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.ppkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.pricing-includes li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.72rem;
  top: 1px;
}

.pricing-upgrade {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pricing-upgrade-eyebrow {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
}

.pricing-upgrade-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
}

.pricing-upgrade-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}

.pricing-upgrade-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-upgrade-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.pricing-upgrade-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(196, 154, 40, 0.5);
  font-size: 0.7rem;
  top: 1px;
}

/* === 13. RESULTS PAGE === */

.results-featured {
  padding: 188px 60px 144px;
  max-width: 1100px;
}

.results-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 80px;
}

.results-photo-row img {
  width: 100%;
  height: 28vh;
  min-height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.featured-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.45;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 36px;
  margin-bottom: 28px;
  max-width: 820px;
}

.featured-quote-attr {
  padding-left: 36px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.results-grid-section {
  padding: 0 60px 156px;
  max-width: 1200px;
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3px;
}

.result-card {
  background: var(--panel);
  padding: 56px 44px;
}

.result-card.wide {
  grid-column: span 2;
}

.result-card.tall {
  padding: 64px 36px;
}

.result-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}

.result-card .card-attr {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.result-card .card-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.results-statement {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 80px 60px;
  text-align: center;
}

.results-statement p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.results-statement .replace-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* === 13. BOOKING PAGE === */

.booking-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 100px;
  text-align: center;
}

.booking-script {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.booking-page h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
  max-width: 640px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.booking-page .booking-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.calendly-placeholder {
  width: 100%;
  max-width: 700px;
  height: 400px;
  background: var(--panel);
  border: 1px dashed rgba(180, 140, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
  border-radius: 2px;
}

.calendly-placeholder p {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-rule {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background: var(--gold-grad);
  margin-bottom: 48px;
  border: none;
  opacity: 0.4;
}

.booking-direct p {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.booking-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.booking-sms {
  font-size: 0.82rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--text-dim);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.booking-sms:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* === 14. SHOP PAGE === */

.shop-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 100px;
  text-align: center;
}

.shop-coming {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.shop-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.82;
  margin: 0 auto 56px;
}

.shop-notify {
  width: 100%;
  max-width: 440px;
}

.shop-notify-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 16px;
}

.shop-notify-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.shop-notify-form input {
  flex: 1;
  background: var(--bg);
  border: none;
  outline: none;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  min-width: 0;
}

.shop-notify-form input::placeholder {
  color: var(--text-dim);
}

.shop-notify-form button {
  background: #1A1814;
  color: #F0EBE1;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.shop-notify-form button:hover { opacity: 0.85; }

/* === 15. PRIVACY PAGE === */

.privacy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 60px 120px;
}

.privacy-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.privacy-header h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}

.privacy-effective {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacy-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: -12px;
  margin-top: 12px;
}

.privacy-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.privacy-body a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(138, 106, 16, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.privacy-body a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.privacy-footer-note {
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem !important;
  color: var(--text-dim) !important;
}

/* === 16. RESPONSIVE === */

@media (max-width: 960px) {
  .site-nav {
    padding: 18px 24px;
  }

  .site-nav.scrolled {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero: image on top, text below */
  .home-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    align-items: start;
  }

  .hero-image-col {
    order: -1;
    display: block;
    padding: 0;
  }

  .hero-image-frame {
    border: none;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .hero-image-frame::before {
    display: none;
  }

  .hero-image-col img {
    height: 62vw;
    min-height: 260px;
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-text-col {
    padding: 48px 24px 80px;
    justify-content: flex-start;
    border-top: 2px solid var(--gold);
  }

  .hero-title-serif {
    font-size: clamp(3.2rem, 16vw, 5.5rem);
  }

  .hero-rule {
    margin-bottom: 28px;
  }

  /* Proof bar */
  .proof-bar {
    padding: 36px 24px;
  }

  .proof-item {
    padding: 0 20px;
  }

  /* About teaser */
  .home-about {
    grid-template-columns: 1fr;
    padding: 96px 24px 88px;
    gap: 56px;
  }

  .about-side {
    width: 100%;
    padding-top: 0;
  }

  /* Services teaser */
  .services-inner {
    padding: 0 24px;
    grid-template-columns: 40px 1fr;
    gap: 0 24px;
  }

  .home-services {
    padding: 88px 0 112px;
  }

  /* Home CTA */
  .home-cta {
    padding: 96px 24px 104px;
  }

  /* Footer */
  .site-footer {
    padding: 44px 24px 24px;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-tagline { text-align: left; }

  .footer-contact { align-items: flex-start; }

  .footer-address { text-align: left; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* About page */
  .about-page-hero {
    padding: 120px 24px 56px;
  }

  .about-story-body {
    grid-template-columns: 1fr;
    padding: 80px 24px 96px;
    gap: 44px;
  }

  .about-photo-col {
    position: static;
    order: -1;
  }

  .about-chapter-label { font-size: 1.4rem; }

  .about-credentials {
    padding: 32px 24px;
    flex-direction: column;
    gap: 0;
  }

  .cred-item {
    padding: 14px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cred-item:last-child { border-bottom: none; }

  .page-cta {
    padding: 88px 24px 96px;
  }

  /* Services page */
  .services-page-hero {
    padding: 120px 24px 68px;
  }

  .service-entry {
    padding: 80px 24px 88px;
    grid-template-columns: 1fr;
    gap: 16px 0;
  }

  .service-number {
    font-size: 4rem;
  }

  .services-process {
    padding: 80px 24px 88px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    padding: 0 0 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
  }

  .process-step:nth-child(2) { padding-left: 0; }
  .process-step:last-child {
    border-bottom: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }

  /* Pricing section */
  .pricing-section {
    padding: 80px 24px 88px;
  }

  .pricing-row--two,
  .pricing-row--three {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 40px 28px;
  }

  /* Results page */
  .results-featured {
    padding: 140px 24px 96px;
  }

  .results-photo-row {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .results-grid-section {
    padding: 0 24px 96px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .result-card.wide { grid-column: 1; }

  .results-statement { padding: 56px 24px; }

  /* Privacy page */
  .privacy-page { padding: 120px 24px 80px; }

  /* Booking page */
  .booking-page { padding: 120px 24px 80px; }
  .calendly-placeholder { height: 300px; }

  /* Shop page */
  .shop-page { padding: 120px 24px 80px; }

  .shop-notify-form {
    flex-direction: column;
  }

  .shop-notify-form button { padding: 14px; }
}

@media (max-width: 540px) {
  .proof-bar {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }

  .proof-item {
    padding: 20px 0;
    border-left: none;
    border-top: 1px solid var(--border);
    max-width: 100%;
    width: 100%;
  }

  .proof-item:first-child { border-top: none; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

}

/* === 16. PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-gold,
  .btn-text,
  .nav-links a,
  .sticky-cta a,
  .service-name {
    transition: none;
  }

  html { scroll-behavior: auto; }

  .nav-mobile-panel,
  .nav-hamburger span,
  .nav-overlay {
    transition: none;
  }
}
