/*
Theme Name: Rossman Business Solutions
Theme URI: https://rbsolutionsllc.com/
Author: Rossman Media
Author URI: https://rbsolutionsllc.com/
Description: Custom WordPress theme for Rossman Business Solutions — bookkeeping, payroll, and back-office support for small businesses in Portland, OR.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rbs
Tags: business, one-column, custom-logo, custom-menu, featured-images, theme-options
*/

:root {
  --gold: #f5b700;
  --gold-bright: #ffc61a;
  --gold-deep: #c89300;
  --navy: #1a3354;
  --navy-deep: #0f1f38;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --gray-900: #18181b;
  --gray-700: #3f3f46;
  --gray-500: #71717a;
  --gray-300: #d4d4d8;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --gray-50: #fafafa;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

/* ================= NAV ================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover { background: var(--gray-100); color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  margin-left: 8px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover { background: var(--navy) !important; }

/* ================= HERO ================= */
.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease-out;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(245, 183, 0, 0.08); }
}

.hero h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease-out 0.1s backwards;
}

.hero h1 .serif {
  font-size: 1.02em;
  color: var(--navy);
  letter-spacing: -0.015em;
  font-weight: 400;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--ink);
  z-index: 1;
  font-weight: 500;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 40%;
  background: var(--gold);
  z-index: -1;
  transform: skew(-2deg);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease-out 0.2s backwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease-out 0.3s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--gray-50);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 183, 0, 0.35);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  animation: fadeUp 0.7s ease-out 0.4s backwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.hero-meta-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.hero-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  animation: fadeUp 0.9s ease-out 0.2s backwards;
}

.hero-image-main {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(30, 58, 95, 0.25);
}

/* Floating stat card */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--gray-200);
  animation: gentlefloat 5s ease-in-out infinite;
}

.float-card-1 {
  top: 8%;
  left: -40px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 10%;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes gentlefloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.float-card-value {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.float-card-value .dot-gold {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.float-card-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Decorative gold bracket */
.hero-bracket {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 0 12px;
  z-index: -1;
}

/* ================= MARQUEE / TRUST ================= */
.marquee {
  background: var(--ink);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--gray-900);
  border-bottom: 1px solid var(--gray-900);
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.marquee-item .serif {
  color: var(--gold);
  font-size: 17px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ================= PROBLEM ================= */
.problem {
  padding: 140px 0 120px;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.problem-sticky {
  position: sticky;
  top: 120px;
}

.problem h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 24px;
}

.problem h2 .serif {
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 400;
}

.problem-body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.problem-body p:last-child { margin-bottom: 0; }

.problem-body .lead {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

/* ================= SERVICES ================= */
.services {
  background: var(--gray-50);
  padding: 140px 0 120px;
  position: relative;
}

.services-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.services-head h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: 20px;
}

.services-head h2 .serif {
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 400;
}

.services-head-text {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.55;
  padding-bottom: 12px;
}

.services-list {
  border-top: 1px solid var(--gray-200);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 72px 1.2fr 2fr 120px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  margin: 0 -40px;
  padding: 0 40px;
}

.service-row:hover::before { opacity: 1; }

.service-row > * { position: relative; z-index: 1; transition: color 0.3s; }

.service-row:hover { color: var(--white); }
.service-row:hover .service-num { color: var(--gold); }
.service-row:hover .service-desc { color: var(--gray-300); }
.service-row:hover .service-arrow { color: var(--gold); gap: 14px; }

.service-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gray-300);
  font-weight: 400;
  transition: color 0.3s;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row:hover .service-icon {
  transform: rotate(-6deg) scale(1.05);
}

.service-title {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.service-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-700);
  transition: color 0.3s;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  justify-self: end;
  transition: gap 0.2s, color 0.3s;
}

/* ================= WHY / PILLARS ================= */
.why {
  padding: 140px 0;
  background: var(--white);
}

.why-head {
  max-width: 760px;
  margin-bottom: 100px;
}

.why-head .eyebrow { margin-bottom: 20px; }

.why-head h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.why-head h2 .serif {
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 400;
}

.why-head-text {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 540px;
}

.pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}

.pillar {
  padding: 40px 36px 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  position: relative;
}

.pillar-1 {
  grid-column: 1 / 6;
  grid-row: 1;
  transform: rotate(-1.2deg);
  margin-bottom: 20px;
}

.pillar-2 {
  grid-column: 7 / 13;
  grid-row: 1;
  transform: rotate(0.8deg);
  margin-top: 60px;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.pillar-3 {
  grid-column: 3 / 10;
  grid-row: 2;
  transform: rotate(-0.6deg);
  margin-top: -20px;
  margin-left: 4%;
}

.pillar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
  margin-bottom: 18px;
  display: inline-block;
}

.pillar-2 .pillar-label { color: var(--gold); }

.pillar h3 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 18px;
}

.pillar-2 h3 { color: var(--white); }

.pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}

.pillar-2 p { color: var(--gray-300); }

.accent-underline {
  position: relative;
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
}

.accent-underline::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -2px;
  height: 6px;
  background: var(--gold);
  z-index: -1;
  transform: skew(-8deg);
}

.accent-circle {
  position: relative;
  display: inline-block;
  padding: 4px 14px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}

.accent-circle::before {
  content: '';
  position: absolute;
  inset: -6px -8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: 0.9;
  pointer-events: none;
}

.accent-arrow {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
}

.accent-arrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.accent-arrow::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.pillar-sticker {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(4deg);
  box-shadow: 0 6px 16px -4px rgba(245, 183, 0, 0.5);
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.testimonials-head {
  margin-bottom: 70px;
  max-width: 760px;
  position: relative;
}

.testimonials-head .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonials-head .eyebrow::before { background: var(--gold); }

.testimonials-head h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.testimonials-head h2 .serif {
  color: var(--gold);
  font-size: 1.05em;
  font-weight: 400;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.quote {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 36px 32px 32px;
  transition: all 0.3s;
}

.quote:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 183, 0, 0.4);
  transform: translateY(-3px);
}

.quote-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--gold);
}

.quote-text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
}

.quote-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.quote-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.quote-biz {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ================= FOUNDER ================= */
.founder {
  padding: 140px 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}

.founder-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
}

.founder-sticker {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px -5px rgba(245, 183, 0, 0.5);
}

.founder-sticker-dot {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

.founder-content .eyebrow {
  margin-bottom: 24px;
}

.founder-content h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(46px, 5.2vw, 70px);
  line-height: 1;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 32px;
}

.founder-content h2 .serif {
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 700;
}

.founder-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 22px;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  margin-top: 16px;
  padding: 14px 22px;
  background: var(--gray-100);
  border-radius: 100px;
  transition: all 0.2s;
}

.founder-link:hover {
  background: var(--ink);
  color: var(--white);
  gap: 16px;
}

/* ================= MID CTA ================= */
.mid-cta {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.mid-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mid-cta h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.mid-cta h2 .serif {
  color: var(--gold);
  font-size: 1.05em;
  font-weight: 400;
}

.mid-cta p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ================= PAGE CONTENT ================= */
.page-content {
  padding: 100px 0 120px;
  max-width: 760px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}

.page-content h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 28px;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.page-content p,
.page-content li {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 18px;
}

.page-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

/* ================= FOOTER ================= */
footer.site-footer {
  background: var(--white);
  color: var(--ink);
  padding: 100px 0 40px;
  border-top: 1px solid var(--gray-200);
}

.footer-hero {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-hero .serif {
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 400;
}

.footer-hero .highlight-footer {
  position: relative;
  display: inline-block;
  color: var(--ink);
  z-index: 1;
  font-weight: 500;
}

.footer-hero .highlight-footer::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 6px;
  height: 38%;
  background: var(--gold);
  z-index: -1;
  transform: skew(-2deg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand .logo img {
  height: 56px;
}

.footer-tag {
  margin-top: 20px;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-500);
}

.footer-col h4 {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.footer-col a, .footer-col p {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.9;
  display: block;
  transition: color 0.2s;
}

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

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
  padding-top: 30px;
  border-top: 1px solid var(--gray-200);
}

.footer-bottom .serif { color: var(--ink); font-size: 14px; font-family: 'Instrument Serif', serif; font-weight: 400; }

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .container { padding: 0 24px; }
  .nav-links { gap: 4px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 50px 0 80px; }
  .hero-grid, .problem-grid, .founder-grid, .services-head, .why-head {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .problem-sticky { position: static; }
  .services-grid, .quotes { grid-template-columns: 1fr; }
  .pillars { display: flex; flex-direction: column; gap: 20px; }
  .pillar { padding: 32px 28px 28px; transform: none !important; margin: 0 !important; grid-column: 1 / -1 !important; }
  .pillar-sticker { top: -14px; right: 16px; }
  .service-row { grid-template-columns: 40px 1fr; gap: 16px 20px; padding: 28px 0; }
  .service-row .service-icon { grid-column: 2; grid-row: 1; width: 44px; height: 44px; }
  .service-row .service-title { grid-column: 2; }
  .service-row .service-desc { grid-column: 1 / -1; }
  .service-row .service-arrow { grid-column: 1 / -1; justify-self: start; }
  .float-card-1 { left: -10px; }
  .float-card-2 { right: -10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-hero { font-size: clamp(38px, 10vw, 60px); }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { justify-content: center; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .hero-meta-divider { display: none; }
  .float-card { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ================= ABOUT PAGE ================= */
.about-hero {
  padding: 70px 0 110px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero .eyebrow { margin-bottom: 40px; animation: fadeUp 0.6s ease-out; }

.about-hero h1 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(54px, 6.6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease-out 0.1s backwards;
}

.about-hero h1 .serif {
  font-size: 1.02em;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.about-hero-intro {
  font-size: 21px;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 560px;
  animation: fadeUp 0.7s ease-out 0.2s backwards;
}

.about-hero-intro em,
.svc-hero-sub em,
.ct-hero-sub em,
.svc-what-it-is p em,
.ct-closer p em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 1.05em;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
  animation: fadeUp 0.7s ease-out 0.3s backwards;
}

.scroll-hint-line {
  width: 40px;
  height: 1.5px;
  background: var(--gray-300);
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  background: var(--ink);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -40px; }
  60%, 100% { left: 100%; }
}

.about-hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  animation: fadeUp 0.9s ease-out 0.2s backwards;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background-size: cover;
  background-position: center top;
  box-shadow: 0 30px 60px -20px rgba(30, 58, 95, 0.25);
}

.about-hero-bracket {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 0 0 12px 0;
  z-index: -1;
}

.about-hero-signature {
  position: absolute;
  top: 20px;
  left: -36px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 14px 36px -10px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: gentlefloat 5s ease-in-out infinite;
}

.about-hero-signature-text {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

.about-hero-signature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25);
}

@keyframes gentlefloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.story,
.approach {
  padding: 130px 0;
  background: var(--white);
  position: relative;
}

.story {
  padding-top: 130px;
  padding-bottom: 140px;
  border-top: 1px solid var(--gray-200);
}

.story-grid,
.honest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-grid {
  grid-template-columns: 1.35fr 1fr;
  gap: 100px;
}

.story-head { position: sticky; top: 120px; }
.story-head .eyebrow,
.honest-head .eyebrow { margin-bottom: 22px; }

.story-head h2,
.approach-head h2 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 40px;
}

.story-head h2 .serif,
.honest-head h2 .serif,
.approach-head h2 .serif {
  color: var(--navy);
  font-size: 1.05em;
  font-weight: 400;
}

.year-marker {
  display: inline-block;
  padding: 20px 28px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  position: relative;
}

.year-marker-label,
.approach-card-label,
.svc-field-label,
.ct-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.year-marker-label {
  color: var(--gray-500);
  margin-bottom: 6px;
  display: block;
}

.year-marker-value {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
  display: block;
  position: relative;
  z-index: 1;
}

.year-marker-caption {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 8px;
  display: block;
  position: relative;
  z-index: 1;
}

.year-marker-underline {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 48px;
  height: 8px;
  background: var(--gold);
  z-index: 0;
  opacity: 0.85;
  transform: skew(-6deg);
  border-radius: 2px;
}

.story-body,
.ct-closer p { max-width: 620px; }

.story-body p,
.honest-body p,
.approach-card p,
.svc-pricing-text,
.ct-hero-sub,
.form-note,
.form-success,
.form-error {
  color: var(--gray-700);
}

.story-body p {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.story-body p:first-child::first-letter {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 72px;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--navy);
}

.honest {
  padding: 130px 0;
  background: var(--gray-50);
  position: relative;
}

.honest-head h2 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.036em;
  color: var(--ink);
  margin-bottom: 36px;
}

.honest-body p,
.approach-card p,
.svc-what-it-is p,
.ct-closer p {
  font-size: 18px;
  line-height: 1.65;
}

.pullquote {
  margin-top: 38px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  padding: 32px 36px;
  position: relative;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.08);
}

.pullquote-text,
.ct-info-hint,
.ct-closer-sig {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.pullquote-text {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.pullquote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
}

.honest-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.approach {
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.approach::before {
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.08) 0%, transparent 60%);
}

.approach-inner,
.ct-hero-inner,
.ct-closer-inner {
  position: relative;
  z-index: 1;
}

.ct-hero-eyebrow,
.ct-closer-eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.approach-inner { max-width: 880px; margin: 0 auto; }
.approach-head { text-align: center; margin-bottom: 70px; }
.approach-head .eyebrow { margin-bottom: 24px; justify-content: center; }

.approach-cards,
.toc-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.approach-cards { grid-template-columns: 1fr 1fr; }

.approach-card,
.toc-chip,
.ct-form-card,
.ct-info-card {
  border-radius: 24px;
  position: relative;
}

.approach-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 38px 36px 40px;
  transition: all 0.3s;
}

.approach-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.12);
}

.approach-card-1 { transform: rotate(-1deg); }
.approach-card-1:hover { transform: rotate(-1deg) translateY(-4px); }
.approach-card-2 { transform: rotate(1deg); margin-top: 40px; background: var(--ink); color: var(--white); border-color: var(--ink); }
.approach-card-2:hover { transform: rotate(1deg) translateY(-4px); border-color: var(--gold); }

.approach-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.approach-card-label-num,
.toc-chip-num,
.svc-pricing-label {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.approach-card-label-num {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-deep);
  text-transform: none;
  letter-spacing: -0.01em;
}

.approach-card-2 .approach-card-label,
.approach-card-2 .approach-card-label-num { color: var(--gold); }
.approach-card p .highlight-phrase { font-family: 'Lora', Georgia, serif; font-style: italic; font-weight: 700; color: var(--navy); }
.approach-card-2 p { color: var(--gray-300); }
.approach-card-2 p .highlight-phrase { color: var(--gold); }

.coffee-note {
  margin-top: 60px;
  text-align: center;
  padding: 36px;
  background: var(--gray-50);
  border-radius: 24px;
  border: 1px solid var(--gray-200);
}

.coffee-note p {
  font-family: 'Geist', -apple-system, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 920px;
  margin: 0 auto;
}

.coffee-note p .accent {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ================= SERVICES PAGE ================= */
.svc-hero,
.ct-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.svc-hero::before,
.ct-hero::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.svc-hero-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.svc-hero .eyebrow { margin-bottom: 30px; justify-content: center; animation: fadeUp 0.6s ease-out; }

.svc-hero h1,
.ct-hero h1 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 26px;
}

.svc-hero h1 .serif,
.ct-hero h1 .serif {
  font-size: 1.02em;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.svc-hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto;
}

.toc-wrap {
  padding: 50px 0 100px;
  position: relative;
}

.toc-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.toc-label-line {
  width: 40px;
  height: 1px;
  background: var(--gray-300);
}

.toc-chips {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.toc-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 26px 28px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.25s ease;
  text-align: left;
}

.toc-chip:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25);
}

.toc-chip-num {
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.toc-chip-body { flex: 1; margin-left: -8px; }
.toc-chip-title { font-size: 19px; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 4px; }
.toc-chip-sub { font-size: 13px; color: var(--gray-500); }
.toc-chip-arrow { width: 24px; height: 24px; color: currentColor; flex-shrink: 0; }

.svc-block {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.svc-block.bg-gray { background: var(--gray-50); }

.svc-block-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 40px;
  align-items: end;
  margin-bottom: 70px;
}

.svc-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(100px, 11vw, 160px);
  font-weight: 400;
  line-height: 0.85;
  color: var(--navy);
  letter-spacing: -0.04em;
  position: relative;
}

.svc-num::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 8px;
  height: 22%;
  background: var(--gold);
  z-index: -1;
  transform: skew(-4deg);
  opacity: 0.85;
}

.svc-block-head-right { padding-bottom: 14px; }
.svc-block-head-right .eyebrow { margin-bottom: 22px; }

.svc-block h2 {
  font-family: 'Geist', -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.svc-block h2 .serif { color: var(--navy); font-size: 1.05em; font-weight: 400; }
.svc-divider { height: 1px; background: var(--gray-200); margin-bottom: 70px; }

.svc-body,
.ct-main-grid {
  display: grid;
  align-items: start;
}

.svc-body {
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-bottom: 50px;
}

.svc-body.reverse { grid-template-columns: 1fr 1.1fr; }
.svc-body.reverse .svc-what-it-is { order: 2; }
.svc-body.reverse .svc-included { order: 1; }

.svc-field-label {
  color: var(--gray-500);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.svc-field-label::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--gold);
}

.svc-what-it-is p { font-size: 19px; color: var(--gray-700); }

.svc-included-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 32px 32px 28px;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.12);
}

.svc-included-card.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.svc-included-card.dark .svc-field-label { color: var(--gold); }
.svc-included-list { list-style: none; padding: 0; margin: 0; }

.svc-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
  border-bottom: 1px solid var(--gray-200);
}

.svc-included-card.dark .svc-included-list li {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.svc-included-list li:last-child { border-bottom: none; padding-bottom: 0; }
.svc-included-list li:first-child { padding-top: 0; }
.svc-included-list .dot { flex-shrink: 0; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; margin-top: 8px; }

.svc-pricing {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  position: relative;
}

.svc-pricing::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}

.svc-pricing-label {
  font-size: 18px;
  color: var(--gold-deep);
  white-space: nowrap;
  line-height: 1;
}

.svc-pricing-text { font-size: 16.5px; line-height: 1.55; }
.svc-pricing-text strong,
.form-note strong,
.form-error strong { color: var(--ink); font-weight: 600; }

.svc-pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 11px 18px;
  background: var(--gray-100);
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}

.svc-pricing-link:hover,
.founder-link:hover {
  background: var(--ink);
  color: var(--white);
}

/* ================= CONTACT PAGE ================= */
.ct-same-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.08);
}

.ct-same-day-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(245, 183, 0, 0.08); }
}

.ct-main { padding: 60px 0 130px; position: relative; }
.ct-main-grid { grid-template-columns: 1.5fr 1fr; gap: 60px; }

.ct-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 46px 46px 42px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.12);
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 46px;
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}

.ct-form-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.ct-form-head .eyebrow { margin-bottom: 14px; }
.ct-form-head h2 { font-family: 'Geist', -apple-system, sans-serif; font-weight: 400; font-size: clamp(28px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.028em; color: var(--ink); }
.ct-form-head h2 .serif { color: var(--navy); font-size: 1.04em; font-weight: 700; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.field { display: block; margin-bottom: 22px; }
.field-row .field { margin-bottom: 0; }

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.field-label .optional {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-deep);
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  font-family: 'Geist', -apple-system, sans-serif;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  transition: all 0.2s;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--gray-500); }
.field input:hover,
.field textarea:hover { border-color: var(--gray-300); }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.18); }
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.form-note { font-size: 13px; line-height: 1.5; max-width: 280px; }

.form-success,
.form-error {
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.form-success {
  background: rgba(245, 183, 0, 0.1);
  border: 1px solid var(--gold);
  color: var(--ink);
}

.form-success strong { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.1em; color: var(--navy); }

.form-error {
  background: rgba(228, 72, 76, 0.08);
  border: 1px solid rgba(228, 72, 76, 0.45);
}

.ct-info { position: sticky; top: 110px; }

.ct-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: 40px 36px 36px;
  overflow: hidden;
}

.ct-info-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.ct-info-head,
.ct-info-list,
.ct-info-sig { position: relative; z-index: 1; }

.ct-info-head { margin-bottom: 28px; }
.ct-info-head .eyebrow { color: var(--gold); margin-bottom: 16px; }
.ct-info-head .eyebrow::before { background: var(--gold); }
.ct-info-head h3 { font-family: 'Geist', -apple-system, sans-serif; font-weight: 400; font-size: 24px; line-height: 1.15; letter-spacing: -0.02em; color: var(--white); }
.ct-info-head h3 .serif { color: var(--gold); font-size: 1.02em; font-weight: 700; }

.ct-info-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  text-decoration: none;
  color: var(--white);
}

.ct-info-item:last-of-type { border-bottom: none; padding-bottom: 10px; }
.ct-info-item:first-of-type { padding-top: 0; }
.ct-info-value-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ct-info-value { font-family: 'Geist', -apple-system, sans-serif; font-size: 20px; font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; color: var(--white); word-break: break-word; }
.ct-info-value.smaller { font-size: 17px; }
.ct-info-hint { font-size: 14px; color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.ct-info-arrow { width: 18px; height: 18px; color: rgba(255, 255, 255, 0.5); flex-shrink: 0; }

.ct-info-sig {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ct-info-sig-initial {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.ct-info-sig-text { font-size: 13px; line-height: 1.45; color: rgba(255, 255, 255, 0.75); }
.ct-info-sig-text strong { color: var(--white); font-weight: 500; }

.ct-closer {
  padding: 130px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ct-closer::before,
.ct-closer::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.ct-closer::before {
  left: 10%;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.14) 0%, transparent 60%);
}

.ct-closer::after {
  right: 10%;
  background: radial-gradient(circle, rgba(26, 51, 84, 0.08) 0%, transparent 60%);
}

.ct-closer h2 { font-family: 'Geist', -apple-system, sans-serif; font-weight: 300; font-size: clamp(44px, 5.8vw, 80px); line-height: 1; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 28px; }
.ct-closer h2 .serif { color: var(--navy); font-size: 1.05em; font-weight: 700; }
.ct-closer p { font-size: 19px; line-height: 1.6; color: var(--gray-700); margin: 0 auto 36px; }
.ct-closer-sig { display: inline-flex; align-items: center; gap: 14px; padding: 14px 24px 14px 18px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 17px; color: var(--ink); box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.08); }

/* ================= INNER PAGE RESPONSIVE ================= */
@media (max-width: 1000px) {
  .about-hero { padding: 40px 0 70px; }
  .about-hero-grid, .story-grid, .honest-grid, .ct-main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .story-head, .ct-info { position: static; }
  .year-marker-value { font-size: 56px; }
  .about-hero-signature { left: 10px; }
  .about-hero-bracket { right: -10px; bottom: -20px; }
  .approach-cards, .toc-chips { grid-template-columns: 1fr; gap: 20px; }
  .approach-card-1, .approach-card-2 { transform: none !important; margin: 0 !important; }
  .approach-card-1:hover, .approach-card-2:hover { transform: translateY(-4px) !important; }
  .svc-hero { padding: 50px 0 30px; }
  .toc-wrap { padding: 40px 0 70px; }
  .svc-block { padding: 90px 0; }
  .svc-block-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 50px; }
  .svc-block-head-right { padding-bottom: 0; }
  .svc-divider { margin-bottom: 50px; }
  .svc-body { grid-template-columns: 1fr; gap: 40px; }
  .svc-body.reverse .svc-what-it-is, .svc-body.reverse .svc-included { order: 0; }
  .svc-pricing { grid-template-columns: 1fr; gap: 16px; padding: 26px 24px; }
  .svc-pricing-link { justify-self: start; }
  .ct-hero { padding: 50px 0 30px; }
  .ct-main { padding: 40px 0 90px; }
  .ct-form-card { padding: 36px 28px 32px; }
  .ct-form-card::before { left: 28px; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { justify-content: center; }
  .form-note { max-width: 100%; }
  .ct-closer { padding: 90px 0; }
}

@media (max-width: 560px) {
  .story-body p:first-child::first-letter { font-size: 56px; }
  .pullquote { padding: 28px 26px; }
  .pullquote-text { font-size: 19px; }
  .coffee-note { padding: 30px 24px; }
  .coffee-note p { font-size: 26px; }
  .field-row { grid-template-columns: 1fr; gap: 22px; }
  .ct-form-card { padding: 30px 22px 28px; }
  .ct-form-card::before { left: 22px; }
  .svc-num { font-size: 84px; }
  .svc-included-card { padding: 26px 24px 22px; }
}
