:root {
  --green: #2d4135;
  --green-deep: #1e2f28;
  --green-soft: #e8efe9;
  --badge-blue: #9eb7b5;
  --coral: #df9674;
  --sun: #e4bd63;
  --sky: #83aeb5;
  --beige: #f4efe8;
  --beige-deep: #e6dcc8;
  --white-soft: rgba(255, 255, 255, 0.72);
  --ink: #1d1f1d;
  --muted: #4d5a52;
  --line: rgba(45, 65, 53, 0.4);
  --shadow: 0 24px 60px rgba(15, 24, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background: var(--beige);
}

.site-header {
  padding-top: 28px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--green);
}

.brand-mark {
  width: 120px;
  height: 90px;
  color: var(--green);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4vw, 6rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  font-weight: 700;
}

.brand-owner {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(45, 65, 53, 0.5);
  padding-top: 7px;
  font-weight: 800;
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green);
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  padding: 50px 0 0;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--green);
}

.eyebrow-dark {
  color: var(--green);
}

.hero-content h1 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 8.5rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.headline-line {
  max-width: 560px;
  height: 2px;
  background: var(--green);
  margin: 24px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -28%;
  right: -12%;
  width: 52%;
  height: 92%;
  background: rgba(223, 150, 116, 0.2);
  border-radius: 48% 0 42% 52%;
  transform: rotate(-9deg);
}

.hero-text {
  max-width: 660px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
  font-size: clamp(1.6rem, 2.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.hero-chips {
  position: relative;
  z-index: 3;
  margin-top: 26px;
  transform: translateY(52px);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 60px;
  padding: 12px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(45, 65, 53, 0.2);
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge {
  display: flex;
  justify-content: center;
}

.badge-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--badge-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--green-deep);
  box-shadow: var(--shadow);
}

.badge-logo {
  width: 132px;
  height: 88px;
  object-fit: contain;
  transform: translateY(-16px);
}

.badge-circle span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  display: block;
  margin-top: -8px;
  transform: translateY(4px);
}

.hero-wave {
  position: relative;
  height: 420px;
  margin-top: -90px;
  background: linear-gradient(180deg, rgba(45, 65, 53, 0.96), rgba(29, 46, 37, 0.98));
  border-top-left-radius: 42% 72%;
  border-top-right-radius: 42% 72%;
  overflow: hidden;
}

.programs {
  padding-top: 34px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.age-card {
  --card-accent: var(--coral);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(45, 65, 53, 0.12);
  border-top: 5px solid var(--card-accent);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 16px 30px rgba(38, 54, 45, 0.05);
}

.age-card::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 108px;
  height: 78px;
  background: var(--card-accent);
  opacity: 0.18;
  border-radius: 0 0 0 72px;
  transform: rotate(-18deg);
}

.age-card > * {
  position: relative;
  z-index: 1;
}

.age-card.numeric {
  --card-accent: var(--sun);
}

.age-card.growth {
  --card-accent: var(--sky);
}

.age-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  background: rgba(45, 65, 53, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.age-card.creative .age-label {
  background: #f6dacf;
}

.age-card.numeric .age-label {
  background: #f5e8bc;
}

.age-card.growth .age-label {
  background: #dcebed;
}

.age-card h3 {
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.age-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.strengths {
  padding: 48px 0 18px;
}

.strengths-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(45, 65, 53, 0.18);
  border-radius: 28px;
  padding: 28px;
}

.strength-copy h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
  font-size: clamp(2.1rem, 3vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.strength-copy p {
  color: var(--muted);
  margin: 0;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(45, 65, 53, 0.12);
  color: var(--green);
  font-weight: 700;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.9rem;
}

.info-banner {
  padding: 54px 0 10px;
}

.specialist-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: var(--green);
  color: var(--beige);
  overflow: hidden;
  position: relative;
}

.specialist-inner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -150px;
  border: 1px solid rgba(244, 239, 232, 0.3);
  border-radius: 50%;
}

.specialist-intro,
.specialist-credentials {
  position: relative;
  z-index: 1;
}

.specialist-intro .eyebrow {
  color: var(--beige-deep);
}

.specialist-intro h2 {
  margin: 0 0 16px;
  color: var(--beige);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.specialist-intro > p:last-child {
  margin: 0;
  color: rgba(244, 239, 232, 0.82);
  font-size: 1.04rem;
}

.specialist-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.credential-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(244, 239, 232, 0.25);
  border-radius: 20px;
  background: rgba(244, 239, 232, 0.1);
}

.credential-main {
  background: var(--badge-blue);
  border-color: transparent;
  color: var(--green-deep);
}

.credential-kicker {
  display: block;
  margin-bottom: 22px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.credential-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.info-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(45, 65, 53, 0.16);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--green);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.4rem;
}

.info-panel p {
  margin: 0;
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-cta {
  padding: 38px 0 28px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(45, 65, 53, 0.18);
  border-radius: 22px;
  padding: 22px 26px;
}

.cta-box h3 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 15px 26px;
  background: var(--green);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(45, 65, 53, 0.16);
}

.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 22px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.footer-item {
  font-size: 0.95rem;
  font-weight: 700;
}

.content-page {
  padding: 42px 0 70px;
}

.narrow {
  max-width: 920px;
}

.simple-hero {
  padding-top: 12px;
}

.page-hero h1 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.page-section {
  padding: 32px 0;
}

.muted-section {
  background: rgba(255, 255, 255, 0.12);
}

.split-layout,
.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.contact-layout {
  align-items: stretch;
}

.split-layout p,
.two-column p,
.contact-info-panel p,
.feature-card p,
.contact-list {
  color: var(--muted);
}

.quote-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(45, 65, 53, 0.15);
  border-radius: 24px;
  padding: 24px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.left-heading {
  margin-bottom: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(45, 65, 53, 0.18);
  border-radius: 22px;
  padding: 24px 22px;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(45, 65, 53, 0.22);
  border-radius: 50%;
}

.reading-card {
  background: var(--green-soft);
  border-top: 5px solid var(--coral);
}

.small-class-card {
  background: #f5e8bc;
  border-top: 5px solid var(--sun);
}

.family-card {
  background: #f3ddd3;
  border-top: 5px solid var(--coral);
}

.focus-card {
  background: #dcebed;
  border-top: 5px solid var(--sky);
}

.confidence-card {
  background: #e5e0f0;
  border-top: 5px solid #9b8cb9;
}

.meaningful-card {
  background: #e5eedb;
  border-top: 5px solid #88a66d;
}

.sara-profile {
  padding: 82px 0 46px;
  background: var(--beige);
}

.profile-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.profile-copy h2 {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.profile-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.milestones {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.milestone {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 4px 18px;
  padding: 18px 20px;
  border-left: 5px solid var(--coral);
  border-radius: 4px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.56);
}

.milestone-highlight {
  border-left-color: var(--badge-blue);
  background: var(--green-soft);
}

.milestone-label {
  grid-row: span 2;
  align-self: start;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.milestone strong {
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.15;
}

.milestone > span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.profile-visual::before {
  content: "";
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 48% 52% 42% 58%;
  background: var(--badge-blue);
  transform: rotate(8deg);
}

.profile-photo-placeholder {
  position: relative;
  z-index: 1;
  width: min(82%, 320px);
  aspect-ratio: 0.82;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(45, 65, 53, 0.2);
  border-radius: 46% 46% 22px 22px;
  background: var(--beige);
  box-shadow: 0 24px 50px rgba(15, 24, 21, 0.12);
  text-align: center;
}

.profile-photo-placeholder img {
  width: 72%;
  height: auto;
}

.profile-photo-placeholder span {
  max-width: 160px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-stamp {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 2;
  max-width: 150px;
  padding: 14px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.reading-invitation {
  padding: 72px 0 84px;
  background: var(--green-soft);
}

.reading-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
  align-items: center;
}

.reading-gallery {
  position: relative;
  min-height: 430px;
}

.reading-photo {
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid rgba(45, 65, 53, 0.22);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reading-photo-main {
  inset: 0 16% 8% 0;
  border-radius: 26px 26px 26px 58px;
  background: var(--beige);
  box-shadow: 18px 18px 0 rgba(228, 189, 99, 0.65);
}

.reading-photo-main::before,
.reading-photo-detail::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(45, 65, 53, 0.28);
  border-radius: inherit;
}

.reading-photo-detail {
  right: 0;
  bottom: 0;
  width: 43%;
  height: 48%;
  border-radius: 20px 20px 48px 20px;
  background: var(--coral);
  box-shadow: 12px 12px 0 var(--badge-blue);
}

.reading-note {
  position: absolute;
  top: 12px;
  right: 8%;
  max-width: 130px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
  transform: rotate(7deg);
}

.reading-copy h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.5vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.reading-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  color: var(--green);
  margin: 0 0 12px;
  font-size: 1.7rem;
  font-family: Georgia, "Times New Roman", serif;
}

.feature-card p {
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: var(--green);
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
}

.contact-info-panel,
.contact-form {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(45, 65, 53, 0.18);
  border-radius: 22px;
  padding: 26px;
}

.contact-info-panel h2 {
  margin-top: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.contact-list li {
  color: var(--green);
  font-size: 1.02rem;
}

.map-embed {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(45, 65, 53, 0.18);
  background: var(--green-soft);
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 65, 53, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(45, 65, 53, 0.14);
  border-color: var(--green);
}

@media (max-width: 980px) {
  .nav-wrap,
  .hero-layout,
  .strengths-inner,
  .info-banner-inner,
  .specialist-inner,
  .split-layout,
  .two-column,
  .contact-layout,
  .feature-grid,
  .profile-layout,
  .reading-layout,
  .age-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-wrap {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-copy {
    align-items: center;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 88px;
    height: 72px;
  }

  .main-nav {
    gap: 12px 18px;
    font-size: 0.82rem;
  }

  .hero-content h1 {
    font-size: 3.8rem;
  }

  .hero-text {
    font-size: 1.55rem;
  }

  .chip {
    min-width: 150px;
    font-size: 1.1rem;
  }

  .hero-chips {
    transform: translateY(36px);
  }

  .badge-circle {
    width: 220px;
    height: 220px;
  }

  .specialist-inner {
    padding: 24px;
  }

  .specialist-credentials {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    min-height: 390px;
  }

  .reading-gallery {
    min-height: 350px;
  }

  .milestone {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .milestone-label {
    grid-row: auto;
  }

  .section-heading h2,
  .strength-copy h2,
  .page-hero h1,
  .cta-box h3 {
    font-size: 2.2rem;
  }
}
