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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7DC;
  --teal: #1A5E5E;
  --teal-light: #247070;
  --teal-dark: #134545;
  --amber: #D4860A;
  --amber-light: #F0A030;
  --coral: #D9553A;
  --dark: #1A1A2E;
  --text: #2D2D3A;
  --text-light: #6B6B7A;
  --text-faint: #9A9AA8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.nav__tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav__link:hover {
  color: var(--teal);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(26, 94, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  grid-column: 1;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero__headline-em {
  font-style: italic;
  color: var(--teal);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-dark);
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
}

.hero__badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.hero__badge-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.hero__badge-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* === HERO GRAPHIC (CSS Art) === */
.hero__graphic {
  grid-column: 2;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero__shape {
  position: absolute;
  border-radius: 4px;
}

.hero__shape--1 {
  width: 180px;
  height: 180px;
  background: var(--amber);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  border-radius: 40px;
}

.hero__shape--2 {
  width: 120px;
  height: 120px;
  background: var(--teal);
  top: 10%;
  right: 10%;
  border-radius: 30px;
  transform: rotate(-10deg);
}

.hero__shape--3 {
  width: 80px;
  height: 80px;
  background: var(--coral);
  bottom: 15%;
  left: 5%;
  border-radius: 20px;
  transform: rotate(25deg);
}

.hero__shape--4 {
  width: 60px;
  height: 60px;
  background: var(--teal);
  opacity: 0.4;
  top: 30%;
  left: 10%;
  border-radius: 50%;
}

.hero__shape--5 {
  width: 40px;
  height: 40px;
  background: var(--amber);
  opacity: 0.3;
  bottom: 25%;
  right: 20%;
  border-radius: 10px;
  transform: rotate(45deg);
}

.hero__shape--6 {
  width: 24px;
  height: 24px;
  background: var(--coral);
  opacity: 0.5;
  top: 55%;
  left: 55%;
  border-radius: 6px;
}

.hero__label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(26,26,46,0.08);
}

.hero__label--marketing { top: 8%; left: 58%; }
.hero__label--web { top: 25%; right: 2%; }
.hero__label--seo { top: 50%; right: -2%; }
.hero__label--books { bottom: 18%; right: 8%; }
.hero__label--va { bottom: 8%; left: 32%; }
.hero__label--ai { top: 38%; left: 0%; }

/* === PROBLEM SECTION === */
.problem {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 48px;
}

.problem__inner { max-width: 1100px; margin: 0 auto; }

.problem__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.problem__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 600px;
}

.problem__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.problem__stat {
  margin-bottom: 40px;
}

.problem__stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.problem__stat-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
}

.problem__quote {
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}

.problem__quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 12px;
}

.problem__quote-attr {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
}

.problem__resolution {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 40px;
}

.problem__resolution-text {
  font-size: 18px;
  color: var(--cream);
  font-weight: 500;
}

/* === SERVICES GRID === */
.services {
  padding: 100px 48px;
  background: var(--cream);
}

.services__inner { max-width: 1100px; margin: 0 auto; }

.services__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.services__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26, 26, 46, 0.08);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--white);
}

.service-card--accent {
  background: var(--dark);
  color: var(--cream);
}

.service-card--accent:hover {
  background: #222238;
}

.service-card--accent .service-card__desc {
  color: rgba(245, 240, 232, 0.65);
}

.service-card__icon {
  margin-bottom: 20px;
}

.service-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card--accent .service-card__title {
  color: var(--cream);
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--amber);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 48px;
  background: var(--cream-dark);
}

.philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.philosophy__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.philosophy__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.philosophy__pillar {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  margin-bottom: 36px;
  align-items: start;
}

.philosophy__pillar-marker {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  padding-top: 3px;
}

.philosophy__pillar-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 16px;
}

.philosophy__pillar-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  background: var(--teal-dark);
  color: var(--cream);
}

.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto__quote-block {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.manifesto__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 20px;
}

.manifesto__attribution {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.6);
}

.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.manifesto__stat {
  background: rgba(245, 240, 232, 0.04);
  padding: 48px 40px;
  text-align: center;
}

.manifesto__stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.manifesto__stat-label {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  background: var(--cream);
}

.closing__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.closing__headline-em {
  font-style: italic;
  color: var(--teal);
}

.closing__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 48px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--cream);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 4px;
}

.footer__meta {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: left;
    gap: 48px;
  }
  .hero__graphic { display: none; }
  .problem { padding: 80px 24px; }
  .problem__split { grid-template-columns: 1fr; gap: 48px; }
  .services { padding: 80px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .philosophy { padding: 80px 24px; }
  .philosophy__inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto { padding: 80px 24px; }
  .manifesto__stats { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}
