:root {
  --bg: #f7f1eb;
  --bg-soft: #fbf8f4;
  --text: #2c211c;
  --muted: #6e625c;
  --brown: #7b3f24;
  --brown-dark: #3b2017;
  --brown-soft: #a97a5d;
  --sand: #e8d9cc;
  --olive: #8a9272;
  --line: #e2d5ca;
  --white: #fffaf5;
  --shadow: 0 20px 60px rgba(65, 43, 31, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--brown-dark);
}

p {
  margin: 0;
}

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

/* Header */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 5.5vw;
  background: rgba(251, 248, 244, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 213, 202, 0.7);
}

.logo {
  font-size: 33px;
  letter-spacing: -1.7px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  white-space: nowrap;
}

.logo span {
  color: #77716c;
  font-weight: 300;
}

.logo small {
  display: block;
  margin-top: 5px;
  padding-left: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.2px;
  color: #3d332e;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

nav a {
  opacity: 0.9;
}

nav a:hover {
  color: var(--brown);
  opacity: 1;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  background: var(--brown);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(123, 63, 36, 0.18);
  border: 0;
}

.btn.secondary {
  background: transparent;
  color: var(--brown);
  box-shadow: none;
  border: 1px solid var(--brown-soft);
}

.nav-btn {
  color: #fff;
  opacity: 1;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 241, 235, 0.95) 0%,
      rgba(247, 241, 235, 0.88) 28%,
      rgba(247, 241, 235, 0.56) 52%,
      rgba(247, 241, 235, 0.18) 75%,
      rgba(247, 241, 235, 0.06) 100%
    ),
    url("../img/hero-main.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-copy {
  width: min(650px, 88vw);
  margin-left: 11.5vw;
  padding: 110px 0 90px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(44px, 4.6vw, 76px);
  max-width: 760px;
}

.divider {
  width: 82px;
  height: 2px;
  margin: 26px 0 24px;
  background: var(--brown-soft);
}

.lead {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.75;
  color: #3d332e;
}

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

.note {
  color: var(--muted);
  font-size: 15px;
}

/* General Layout */

section {
  padding: 72px 5.5vw;
}

.page-hero {
  padding: 92px 5.5vw 76px;
  background: radial-gradient(circle at 10% 30%, #fffaf5 0%, #f4ece5 50%, #eadbd0 100%);
}

.page-hero .lead {
  max-width: 820px;
}

.section-head {
  max-width: 770px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 3.1vw, 46px);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  color: var(--muted);
}

/* Focus Cards */

.focus-card {
  max-width: 1180px;
  margin: -38px auto 0;
  position: relative;
  z-index: 4;
  background: rgba(255, 250, 245, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 8px 34px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe1d6;
  color: var(--brown);
  font-size: 27px;
  margin-bottom: 16px;
}

.icon.small {
  width: 48px;
  height: 48px;
  font-size: 22px;
  margin-bottom: 10px;
}

.pillar.active .icon {
  background: var(--olive);
  color: #fff;
}

.pillar h3 {
  font-size: 27px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.pillar p {
  color: #443832;
  font-size: 15px;
}

.tag {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 7px;
  background: #eadbcf;
  color: #3d271e;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag.active {
  background: var(--olive);
  color: #fff;
}

/* Symptoms */

.symptoms,
.soft {
  background: var(--bg-soft);
}

.symptom-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  text-align: center;
}

.symptom {
  padding: 20px 10px;
  border-right: 1px solid var(--line);
  min-height: 120px;
}

.symptom:last-child {
  border-right: 0;
}

.symptom strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.35;
}

.symptom .symbol {
  font-size: 32px;
  color: var(--brown);
}

.statement {
  width: fit-content;
  max-width: 90%;
  margin: 32px auto 0;
  padding: 10px 22px;
  border-radius: 8px;
  background: #eadbcf;
  color: #3d332e;
}

/* Service / About */

.service-card,
.about {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card {
  grid-template-columns: 0.85fr 1.45fr;
}

.about {
  grid-template-columns: 1fr 1fr;
}

.service-image {
  min-height: 390px;
  background-image: url("../img/coaching-room.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-image {
  min-height: 360px;
  background-image: url("../img/julia-about.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-copy,
.about-copy {
  padding: 44px;
}

.service-copy h2,
.about-copy h2 {
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 16px;
}

.service-copy > p,
.about-copy > p {
  color: #443832;
  margin-bottom: 22px;
}

.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.feature {
  background: rgba(255, 250, 245, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.feature h3,
.card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.015em;
  margin: 8px 0 10px;
}

.feature p,
.card p,
.card li {
  font-size: 15px;
  color: var(--muted);
}

.card ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

/* Content Pages */

.content {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 46px;
}

.content h2 {
  font-size: 34px;
  margin: 36px 0 16px;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: #443832;
  margin-bottom: 14px;
}

.content ul {
  margin-top: 0;
}

/* Vision */

.vision-line {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  text-align: center;
}

.vision-step .circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: #eadbcf;
  color: var(--brown);
  font-weight: 800;
}

.vision-step.active .circle {
  background: var(--olive);
  color: white;
}

.vision-step span {
  color: var(--muted);
  font-size: 14px;
}

.line {
  width: 80px;
  height: 1px;
  border-top: 1px dashed var(--brown-soft);
  opacity: 0.65;
}

/* CTA */

.cta {
  text-align: center;
  background: #3b241b;
  color: #fff;
  padding: 82px 5.5vw;
}

.cta h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 18px;
}

.cta p {
  color: #e8d9cc;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta .btn {
  background: #fff;
  color: #3b241b;
}

/* Footer */

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 5.5vw;
  background: #2c211c;
  color: #d8cbc1;
  font-size: 14px;
  flex-wrap: wrap;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */

@media (max-width: 1100px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-copy {
    margin-left: 0;
    padding: 78px 6vw 86px;
    max-width: 650px;
  }

  .focus-card,
  .feature-grid,
  .about,
  .service-card,
  .card-grid,
  .card-grid.three,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .symptom {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vision-line {
    grid-template-columns: 1fr;
  }

  .line {
    display: none;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 18px 5vw;
  }

  .logo {
    font-size: 27px;
  }

  .hero {
    background-position: 64% center;
  }

  .hero-copy {
    padding: 64px 5vw 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 41px;
  }

  .lead {
    font-size: 17px;
  }

  section,
  .page-hero {
    padding: 56px 5vw;
  }

  .focus-card {
    padding: 20px;
  }

  .pillar {
    padding: 24px 8px;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .service-copy,
  .about-copy,
  .content {
    padding: 30px;
  }

  footer {
    display: block;
  }
}
