/* Adrian Damm Coaching — Relaunch Landing Page */
/* Single-funnel intro-call landing. Brand system per Visual-Design-Guidelines.md */

/* DM Sans Variable Font (self-hosted, no third-party requests) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('/fonts/dmsans/DMSans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('/fonts/dmsans/DMSans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --color-bg: #ffffff;
  --color-text: #101828;
  --color-muted: #667085;
  --color-accent: #1766E9;
  --color-accent-hover: #1152C6;
  --color-accent-light: #EDF4FF;
  --color-warm: #f59e0b;
  --color-warm-light: #fef3c7;
  --color-success: #059669;
  --color-border: #DCEBFF;
  --color-section-alt: #F5F9FF;
  --color-dark: #1a2744; /* NAVY — brand mark, see Visual-Design-Guidelines.md */
  --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 960px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--color-text); }

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); }

strong { font-weight: 600; }

ul { list-style: none; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

section.alt {
  background: var(--color-section-alt);
}

/* Eyebrow / label chip */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  padding: 1rem 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

nav .logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

nav .btn {
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
}

/* Hero (split: text + photo) */
.hero {
  margin-top: 65px;
  padding: 4rem 0 5rem;
}

.hero .split {
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero .kicker {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: 1.05rem;
  color: var(--color-text);
  max-width: 46rem;
  margin-bottom: 2rem;
}

.hero-photo {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  object-fit: cover;
  max-height: 560px;
}

.credibility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.credibility-row span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  background: var(--color-section-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23,102,233,0.3);
}

.btn-outline {
  border: 2px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Image-text split (About, generic) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

/* Section subtitle */
.section-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

/* Problem section */
.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
}

.problem-columns h3 {
  font-size: 1.05rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.check-list, .cross-list {
  list-style: none;
}

.check-list li, .cross-list li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.98rem;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cross-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.callout {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-dark);
  max-width: 42rem;
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--color-warm);
}

.struggle-list {
  margin: 1.5rem 0 2rem;
}

.struggle-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-muted);
}

.struggle-list li::before {
  content: "\2022";
  position: absolute;
  left: 0.4rem;
  color: var(--color-warm);
  font-weight: 700;
}

/* Process steps (Solution section) */
.process-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
}

.process-step .step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.format-note {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
}

/* Benefit cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  transition: all 0.25s;
}

.benefit-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* Intro call outcome cards */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.outcome-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
}

.outcome-card .step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.outcome-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.outcome-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.intro-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--color-accent-light);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Credentials */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential-tag {
  display: inline-block;
  background: var(--color-accent-light);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* Quote */
blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #26365c 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* Generic content pages (Legal / Privacy / Thank you / Error) */
.page-content {
  margin-top: 65px;
  padding: 4rem 0 3rem;
}

.page-content h1 {
  font-size: 2rem;
}

.page-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
}

.page-content ul.plain-list {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.25rem;
}

.page-content ul.plain-list li {
  margin-bottom: 0.5rem;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}

.page-content th {
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 2px solid var(--color-border);
  background: var(--color-section-alt);
}

.page-content td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

/* Error page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.error-page p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--color-muted);
}

footer a:hover {
  color: var(--color-accent);
}

/* Responsive (mobile-first pass — dedicated responsive pass planned for Phase 3) */
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0; }

  .split,
  .hero .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }

  .problem-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .outcome-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 2.5rem 1fr; }

  nav .btn { font-size: 0.8rem; padding: 0.55rem 1rem; }

  .credentials { justify-content: center; }
}

@media (max-width: 480px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
