/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --teal:   #6ECEC8;
  --olive:  #8B9440;
  --brown:  #A07248;

  --teal-light:  #e8f8f7;
  --olive-light: #f0f2e2;
  --brown-light: #f5ede5;

  --ink:    #1a1a1a;
  --muted:  #5a5a5a;
  --border: #e5e5e5;
  --bg:     #ffffff;
  --bg-alt: #f8f8f6;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --max-w: 1120px;
  --transition: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(90deg, var(--teal) 0%, var(--olive) 50%, var(--brown) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(90deg, var(--teal), var(--olive));
  color: #fff;
}
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn--outline:hover { background: var(--teal-light); }

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn--full { width: 100%; text-align: center; }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--ink); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 8px 24px 16px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero__headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Decorative blobs */
.hero__visual {
  position: relative;
  height: 420px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.blob--1 {
  width: 320px; height: 320px;
  background: var(--teal);
  top: 0; right: 40px;
}
.blob--2 {
  width: 240px; height: 240px;
  background: var(--olive);
  bottom: 20px; right: 120px;
}
.blob--3 {
  width: 180px; height: 180px;
  background: var(--brown);
  top: 80px; right: 220px;
}

/* ── Services ───────────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--bg-alt);
}

.services__grid {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.services__grid .card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card__icon svg { width: 26px; height: 26px; }

.card--teal .card__icon { background: var(--teal-light); color: var(--teal); }
.card--olive .card__icon { background: var(--olive-light); color: var(--olive); }
.card--brown .card__icon { background: var(--brown-light); color: var(--brown); }

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--olive-light);
  color: var(--olive);
  vertical-align: middle;
  margin-left: 6px;
}

.services__intro {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ── Problem ─────────────────────────────────────────────── */
.problem {
  padding: 96px 0;
  background: var(--bg);
}

.problem .section__title {
  margin-bottom: 40px;
}

.problem__grid {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.problem__item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  padding: 28px 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
}

.problem__item--teal  { border-top-color: var(--teal); }
.problem__item--olive { border-top-color: var(--olive); }
.problem__item--brown { border-top-color: var(--brown); }

.problem__item p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 500;
}

.problem__close {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 800px;
  padding: 24px 28px;
  background: var(--bg-alt);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Why ────────────────────────────────────────────────── */
.why { padding: 96px 0; }

.why__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why__intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.why__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why__dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}
.why__dot--teal  { background: var(--teal); }
.why__dot--olive { background: var(--olive); }
.why__dot--brown { background: var(--brown); }

.why__list strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.why__list p { font-size: 0.93rem; color: var(--muted); }

.why__stats {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.stat {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.stat__icon svg { width: 22px; height: 22px; }
.stat__icon--teal  { background: var(--teal-light);  color: var(--teal); }
.stat__icon--olive { background: var(--olive-light); color: var(--olive); }
.stat__icon--brown { background: var(--brown-light); color: var(--brown); }

.stat strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.stat p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── About ──────────────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: var(--bg-alt);
}

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

.about__visual {
  position: relative;
  height: 360px;
}

.about__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.about__ring--1 {
  width: 200px; height: 200px;
  border-color: var(--teal);
  opacity: 0.4;
}
.about__ring--2 {
  width: 300px; height: 300px;
  border-color: var(--olive);
  opacity: 0.25;
}
.about__ring--3 {
  width: 400px; height: 400px;
  border-color: var(--brown);
  opacity: 0.15;
}

.about__text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__mission {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
  background: var(--teal-light);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}

/* ── Contact ────────────────────────────────────────────── */
.contact {
  padding: 96px 0;
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact__sub {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.contact__form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.form__field input,
.form__field textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(110, 206, 200, 0.15);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: #aaa; }

.form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__success {
  display: none;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  padding: 8px;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--ink); }

/* ── Practices page ──────────────────────────────────────── */
.practices-section {
  padding: 80px 0 96px;
  background: var(--bg-alt);
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.practices-grid .card {
  position: relative;
}

.practices-grid .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--olive), var(--brown));
  border-radius: var(--radius) var(--radius) 0 0;
}

.card__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.card__list li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

.card__engage {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.card__engage-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.card__engage p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.services__cta {
  margin-top: 48px;
  text-align: center;
}

.services__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition);
}
.services__link:hover { color: var(--olive); }

/* ── Nav active ──────────────────────────────────────────── */
.nav__active {
  color: var(--ink) !important;
  font-weight: 600 !important;
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}

.page-header__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-header__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Practice ────────────────────────────────────────────── */
.practice {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.practice--alt {
  background: var(--bg-alt);
}

.practice__header {
  margin-bottom: 48px;
}

.practice__number {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.practice__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.practice__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.75;
}

.practice__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.practice__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.practice__col-title--spaced {
  margin-top: 36px;
}

.practice__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.practice__list li {
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.practice__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.practice__who {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Practice CTA ────────────────────────────────────────── */
.services-closing {
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.services-closing__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.services-closing__headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services-closing__lenses {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-closing__lens {
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.services-closing__lens--teal  { color: var(--teal);  border-color: var(--teal);  background: rgba(110,206,200,0.08); }
.services-closing__lens--olive { color: var(--olive); border-color: var(--olive); background: rgba(139,148,64,0.08); }
.services-closing__lens--brown { color: var(--brown); border-color: var(--brown); background: rgba(160,114,72,0.08); }

.services-closing__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-closing__body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.practice-cta {
  padding: 96px 0;
}

.practice-cta__inner {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.practice-cta__inner p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ── Section Carousel ───────────────────────────────────── */
.section-carousel {
  overflow: hidden;
}

.carousel__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px 0;
  flex-wrap: wrap;
}

.carousel__tab {
  background: none;
  border: none;
  padding: 8px 20px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.carousel__tab:hover {
  color: var(--ink);
}

.carousel__tab.active {
  color: var(--ink);
  background: rgba(255,255,255,0.06);
}

.carousel__progress {
  height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 16px auto 0;
  max-width: 320px;
  border-radius: 2px;
  overflow: hidden;
}

.carousel__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--olive));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .practice__detail { grid-template-columns: 1fr; gap: 40px; }
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .hero { padding: 64px 0 48px; }
  .services, .why, .about, .contact { padding: 64px 0; }
  .practices-grid { grid-template-columns: 1fr; }
}
