@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --green-950: #082d22;
  --green-900: #103d2f;
  --green-800: #184f3c;
  --green-700: #246245;
  --green-600: #317750;
  --green-100: #e8f0e8;
  --cream: #f8f6ef;
  --cream-2: #fffdf8;
  --ink: #173c30;
  --muted: #63766e;
  --line: rgba(29, 71, 54, 0.14);
  --shadow: 0 22px 55px rgba(26, 51, 40, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Avenir Next", Arial, sans-serif;
  --page: min(100% - 72px, 1120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 45%, rgba(69, 126, 88, 0.12), transparent 25rem),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  color: var(--ink);
  font-family: var(--sans);
}

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

svg {
  display: block;
}

svg use {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.svg-sprite symbol * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 91% 4%, rgba(185, 230, 201, 0.65) 0, transparent 15rem),
    radial-gradient(circle at 20% 30%, rgba(145, 190, 104, 0.2) 0, transparent 19rem),
    linear-gradient(124deg, #052d22 0%, #123d2f 42%, #1d5c42 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 6% 25%, rgba(146, 185, 91, 0.22), transparent 7rem),
    linear-gradient(90deg, rgba(4, 31, 24, 0.68), rgba(4, 31, 24, 0.08) 56%, transparent);
  background-size: auto, auto;
  background-position: center, center;
  background-repeat: no-repeat;
  opacity: 0.9;
  filter: blur(0.2px) saturate(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 35, 27, 0.82) 0%, rgba(8, 45, 34, 0.42) 48%, rgba(8, 45, 34, 0.04) 100%),
    linear-gradient(180deg, rgba(6, 39, 30, 0.04) 0%, rgba(6, 39, 30, 0.32) 100%);
}

.nav-shell {
  position: relative;
  z-index: 5;
  width: var(--page);
  height: 64px;
  margin: 22px auto 0;
  padding: 0 10px 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 42px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 236px;
  min-width: 0;
}

.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: currentColor;
}

.brand-mark svg {
  width: 38px;
  height: 38px;
}

.brand small,
.brand strong {
  display: block;
}

.brand small {
  margin-bottom: -2px;
  font: 600 13px/1.1 var(--serif);
  letter-spacing: 0;
}

.brand strong {
  font: 700 20px/1 var(--serif);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  flex: 1;
  min-width: 0;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: #f7f6ee;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  width: 33px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 20px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.nav-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.nav-cta svg *,
.btn svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero-photo {
  position: absolute;
  z-index: -2;
  right: calc((100% - min(100%, 1120px)) / 2 - 10px);
  top: 72px;
  width: 625px;
  height: 508px;
  background-image: url("assets/tansu-hero-scene.jpg?v=1778699600");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(1.03);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 46, 35, 0.3), rgba(9, 46, 35, 0.08) 48%, rgba(9, 46, 35, 0.16)),
    linear-gradient(180deg, transparent 66%, rgba(9, 46, 35, 0.72));
}

.hero-glow {
  position: absolute;
  z-index: -2;
  right: -110px;
  top: -38px;
  width: 360px;
  height: 340px;
  border-radius: 50%;
  background: rgba(149, 227, 184, 0.5);
  filter: blur(48px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 68px auto 0;
}

.hero-card {
  width: min(100%, 548px);
  min-height: 388px;
  padding: 36px 48px 28px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 28px 60px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(15px);
}

.hero-card h1 {
  max-width: 475px;
  margin: 0 0 22px;
  font: 700 clamp(40px, 5vw, 56px) / 0.98 var(--serif);
  letter-spacing: 0;
}

.hero-card p {
  max-width: 456px;
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 16px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  padding: 0 27px;
  border: 1px solid currentColor;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(50, 127, 80, 0.96), rgba(31, 98, 64, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(17, 75, 45, 0.28);
}

.btn-ghost {
  color: #fff;
  min-width: 134px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-meta {
  margin-top: 29px;
  padding-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 11px;
}

.hero-meta span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta svg {
  width: 21px;
  height: 21px;
}

.hero-meta svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 74px;
  color: var(--cream-2);
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave path {
  fill: currentColor;
}

.section {
  width: var(--page);
  margin-inline: auto;
}

.services {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.content-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  position: relative;
  min-height: 174px;
  padding: 25px 24px 24px 92px;
  overflow: hidden;
  border: 1px solid rgba(21, 67, 49, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.soft-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: var(--green-700);
  background: var(--green-100);
}

.soft-icon svg {
  width: 31px;
  height: 31px;
}

.soft-icon svg *,
.support-list svg *,
.footer svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card .soft-icon {
  position: absolute;
  left: 22px;
  top: 24px;
}

.service-card h2 {
  margin: 8px 0 12px;
  font: 700 22px/1.2 var(--serif);
}

.service-card p {
  margin: 0;
  color: #5f706a;
  font-size: 13px;
  line-height: 1.7;
}

.service-card > a {
  position: absolute;
  left: 24px;
  bottom: 21px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--green-800);
}

.service-card > a svg {
  width: 23px;
  height: 23px;
}

.about {
  margin-top: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 408px minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.about-photo {
  width: 408px;
  height: 287px;
  border-radius: 12px;
  background-color: #eaf0e9;
  background-image: url("assets/tansu-about-scene.jpg?v=1778699600");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 46px rgba(14, 39, 29, 0.12);
}

.about-copy h2,
.support h2,
.cta h2 {
  margin: 0;
  color: var(--green-800);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.about-copy h2 {
  max-width: 570px;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 0.98;
}

.about-copy > p {
  max-width: 600px;
  margin: 18px 0 31px;
  color: #5c6d66;
  font-size: 15px;
  line-height: 1.75;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.principles > div {
  padding: 0 23px;
}

.principles > div + div {
  border-left: 1px solid var(--line);
}

.principles .soft-icon {
  margin: 0 auto 15px;
  border-radius: 50%;
}

.principles h3 {
  margin: 0 0 10px;
  color: var(--green-800);
  font: 700 18px/1.2 var(--serif);
}

.principles p {
  margin: 0;
  color: #6b7873;
  font-size: 11px;
  line-height: 1.55;
}

.support {
  margin-top: 46px;
  text-align: center;
}

.support h2 {
  font-size: 34px;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.support-list span {
  height: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(21, 67, 49, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(26, 51, 40, 0.08);
  color: var(--green-800);
  font: 700 14px/1.2 var(--serif);
}

.support-list svg {
  width: 34px;
  height: 34px;
  color: var(--green-700);
}

.testimonial {
  margin-top: 22px;
}

.quote-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 96px 1fr 150px;
  align-items: center;
  gap: 28px;
  padding: 20px 43px;
  border: 1px solid rgba(21, 67, 49, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.quote-mark {
  color: var(--green-700);
  font: 700 76px/0.5 Georgia, serif;
  text-align: right;
}

.quote-card p {
  margin: 0;
  color: #53655e;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.rating {
  display: grid;
  gap: 10px;
  color: var(--green-800);
  font-size: 17px;
  text-align: center;
}

.rating span {
  color: var(--green-700);
  font-size: 17px;
  letter-spacing: 2px;
}

.cta {
  margin-top: 20px;
}

.cta-band {
  min-height: 93px;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 44px 18px 29px;
  overflow: hidden;
  border-radius: 13px;
  color: #fff;
  background:
    radial-gradient(circle at 7% 20%, rgba(133, 210, 174, 0.52), transparent 12rem),
    linear-gradient(100deg, #4c9c78 0%, #1f563d 58%, #133924 100%);
  box-shadow: 0 18px 42px rgba(25, 71, 47, 0.28);
}

.cta-band::after {
  content: "";
  justify-self: end;
  position: absolute;
}

.cta-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.cta-mark svg {
  width: 44px;
  height: 44px;
}

.cta h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.cta p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.btn-light {
  color: var(--green-800);
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(6, 34, 23, 0.18);
}

.footer {
  margin-top: 36px;
  color: #466159;
  background: rgba(255, 253, 248, 0.78);
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.7fr 1fr;
  gap: 42px;
}

.footer-grid > div + div {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.footer-brand {
  color: var(--green-800);
  margin-bottom: 18px;
}

.footer p {
  margin: 0;
  max-width: 260px;
  color: #63746e;
  font-size: 13px;
  line-height: 1.68;
}

.footer h3 {
  margin: 0 0 13px;
  color: var(--green-800);
  font-size: 14px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 7px;
  color: #5d716a;
  font-size: 12px;
  line-height: 1.35;
}

.contact-list li {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 10px;
}

.contact-list svg {
  width: 14px;
  height: 14px;
  color: var(--green-700);
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}

.socials a {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--green-700);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.socials.text-links a {
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(18vw, 260px);
  padding: 9px 36px;
  color: #83928d;
  background: rgba(222, 223, 215, 0.45);
  font-size: 11px;
}

.footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom i {
  width: 1px;
  height: 14px;
  background: #c8d0ca;
}

.brand-initials {
  border: 1px solid currentColor;
  border-radius: 14px;
  font: 700 17px/1 var(--serif);
}

.page-top {
  position: relative;
  overflow: hidden;
  padding-bottom: 74px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(179, 228, 199, 0.48), transparent 18rem),
    radial-gradient(circle at 14% 32%, rgba(133, 180, 105, 0.17), transparent 18rem),
    linear-gradient(124deg, #062c22 0%, #123b2e 50%, #1e5b42 100%);
}

.page-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58px;
  background: var(--cream-2);
  clip-path: ellipse(62% 42px at 50% 100%);
}

.page-hero {
  position: relative;
  z-index: 1;
  width: var(--page);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 52px;
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font: 700 clamp(46px, 6vw, 72px) / 0.92 var(--serif);
  letter-spacing: 0;
}

.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.72;
}

.page-hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.page-hero-card strong,
.page-hero-card span {
  display: block;
}

.page-hero-card strong {
  margin-bottom: 10px;
  font: 700 26px/1 var(--serif);
}

.page-hero-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.65;
}

.page-main {
  margin-top: -24px;
  padding-bottom: 42px;
}

.page-section {
  width: var(--page);
  margin: 0 auto 30px;
}

.page-card,
.therapy-card,
.contact-panel,
.faq-item,
.step-card,
.fact-card {
  border: 1px solid rgba(21, 67, 49, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.page-card {
  padding: 34px;
}

.page-card h2,
.therapy-card h2,
.contact-panel h2,
.faq-list h2 {
  margin: 0 0 16px;
  color: var(--green-800);
  font: 700 34px/1 var(--serif);
  letter-spacing: 0;
}

.page-card h3,
.therapy-card h3,
.step-card h3 {
  margin: 0 0 10px;
  color: var(--green-800);
  font: 700 23px/1.1 var(--serif);
}

.page-card p,
.therapy-card p,
.contact-panel p,
.step-card p,
.faq-item p {
  margin: 0;
  color: #5d716a;
  font-size: 14px;
  line-height: 1.75;
}

.text-stack {
  display: grid;
  gap: 16px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
}

.fact-grid,
.service-page-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fact-card {
  padding: 22px;
}

.fact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-800);
  font: 700 24px/1 var(--serif);
}

.fact-card span {
  color: #64766e;
  font-size: 13px;
  line-height: 1.6;
}

.therapy-card,
.step-card {
  padding: 26px;
}

.therapy-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.therapy-card small,
.method-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 11px;
  font-weight: 700;
}

.pill-list,
.plain-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pill-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pill-list li,
.plain-list li {
  color: #526961;
  font-size: 13px;
  line-height: 1.55;
}

.pill-list li {
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(232, 240, 232, 0.72);
  color: var(--green-800);
  font-weight: 700;
}

.approach-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.step-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-card {
  display: grid;
  gap: 10px;
}

.step-card span {
  color: var(--green-700);
  font: 700 28px/1 var(--serif);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--green-800);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 26px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-panel {
  padding: 30px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-actions .btn-ghost {
  color: var(--green-800);
  border-color: rgba(24, 79, 60, 0.45);
  background: rgba(255, 255, 255, 0.52);
}

.contact-list-large {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-list-large li {
  padding: 15px 16px;
  border-radius: 11px;
  background: rgba(232, 240, 232, 0.7);
  color: #526961;
  font-size: 14px;
  line-height: 1.55;
}

.contact-list-large strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-800);
}

.form-card {
  display: grid;
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid rgba(21, 67, 49, 0.17);
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(255, 253, 248, 0.85);
  color: var(--ink);
  font: 500 14px/1.4 var(--sans);
}

.form-card textarea {
  min-height: 132px;
  resize: vertical;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 760px);
  }

  .nav-shell {
    height: auto;
    min-height: 64px;
    padding: 10px 12px 10px 16px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    order: 4;
    width: 100%;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 16px;
    padding: 11px 4px 4px;
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    text-align: center;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-photo {
    right: -118px;
    top: 115px;
    transform: scale(0.9);
    transform-origin: top right;
  }

  .hero-inner {
    margin-top: 72px;
  }

  .hero-card {
    max-width: 505px;
  }

  .three-cards,
  .about-grid,
  .principles,
  .support-list,
  .quote-card,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 32px;
  }

  .about-photo {
    width: 100%;
    max-width: 408px;
  }

  .principles {
    gap: 18px;
    text-align: left;
  }

  .principles > div {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 2px 16px;
    padding: 0;
  }

  .principles > div + div {
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .principles .soft-icon {
    grid-row: span 2;
    margin: 0;
  }

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

  .quote-card {
    gap: 14px;
    padding: 24px;
  }

  .quote-mark,
  .rating {
    text-align: left;
  }

  .cta-band {
    gap: 18px;
  }

  .footer-grid > div + div {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100% - 28px, 520px);
  }

  .hero {
    min-height: 770px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav-cta {
    width: 100%;
    order: 5;
  }

  .nav-menu {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo {
    right: -150px;
    top: 138px;
    width: 430px;
    height: 520px;
    background-size: cover;
    background-position: center;
    opacity: 0.42;
  }

  .hero-card {
    padding: 28px 24px 24px;
    min-height: 0;
  }

  .hero-card h1 {
    font-size: 39px;
  }

  .hero-card p {
    font-size: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-meta span {
    justify-content: flex-start;
  }

  .hero-meta span + span {
    padding-top: 10px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-card {
    padding-left: 82px;
  }

  .support-list {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 31px;
  }

  .cta-band {
    padding: 24px;
  }
}

@media (max-width: 980px) {
  .page-hero,
  .two-column,
  .approach-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    gap: 24px;
    margin-top: 46px;
  }

  .fact-grid,
  .service-page-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-top {
    padding-bottom: 58px;
  }

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

  .page-hero p {
    font-size: 15px;
  }

  .page-card,
  .therapy-card,
  .contact-panel,
  .step-card {
    padding: 22px;
  }

  .page-card h2,
  .therapy-card h2,
  .contact-panel h2,
  .faq-list h2 {
    font-size: 30px;
  }
}

/* Homepage hero refresh from the May 14 reference */
.hero {
  min-height: clamp(720px, 56vw, 940px);
  background:
    radial-gradient(circle at 88% 15%, rgba(170, 231, 199, 0.56) 0, transparent 21rem),
    radial-gradient(circle at 8% 30%, rgba(111, 161, 82, 0.2) 0, transparent 13rem),
    linear-gradient(124deg, #03281f 0%, #0c3428 43%, #236144 100%);
}

.hero::before {
  z-index: -4;
  background:
    radial-gradient(ellipse at 4% 38%, rgba(121, 162, 87, 0.34), transparent 9rem),
    radial-gradient(ellipse at 1% 56%, rgba(3, 20, 15, 0.64), transparent 18rem),
    linear-gradient(90deg, rgba(1, 20, 15, 0.58), rgba(4, 37, 27, 0.08) 58%, transparent);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(2, 25, 19, 0.78) 0%, rgba(6, 42, 31, 0.38) 45%, rgba(8, 45, 34, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 38, 30, 0.03) 0%, rgba(7, 38, 30, 0.26) 100%);
}

.hero-photo {
  right: 0;
  top: 128px;
  width: min(56vw, 912px);
  height: calc(100% - 128px);
  background-image: url("assets/tansu-hero-seated.jpg?v=20260514");
  background-size: cover;
  background-position: right bottom;
  filter: saturate(1.02);
}

.hero-photo::after {
  background:
    linear-gradient(90deg, rgba(5, 36, 27, 0.28), rgba(5, 36, 27, 0.06) 34%, rgba(5, 36, 27, 0.02) 70%),
    linear-gradient(180deg, transparent 70%, rgba(8, 45, 34, 0.22));
}

.hero-glow {
  right: -60px;
  top: 0;
  width: 470px;
  height: 410px;
  background: rgba(150, 230, 190, 0.46);
  filter: blur(62px);
}

.hero-inner {
  width: min(100% - 180px, 1494px);
  margin-top: clamp(78px, 5.2vw, 88px);
}

.hero-card {
  width: min(100%, 724px);
  min-height: 592px;
  padding: 54px 78px 42px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.065));
  backdrop-filter: blur(17px);
}

.hero-card h1 {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(48px, 4vw, 70px);
  line-height: 1.03;
}

.hero-card p {
  max-width: 575px;
  font-size: 20px;
  line-height: 1.54;
}

.hero-actions {
  gap: 20px;
  margin-top: 38px;
}

.hero-actions .btn {
  min-height: 68px;
  border-radius: 28px;
  font-size: 19px;
}

.hero-actions .btn svg {
  width: 26px;
  height: 26px;
}

.hero-actions .btn-primary {
  padding: 0 40px;
}

.hero-actions .btn-ghost {
  min-width: 176px;
}

.hero-meta {
  margin-top: 32px;
  padding-top: 30px;
}

.hero-meta span {
  min-height: 38px;
  gap: 16px;
  font-size: 16px;
}

.hero-meta svg {
  width: 30px;
  height: 30px;
}

.hero .wave {
  height: 86px;
}

@media (max-width: 1220px) {
  .hero-card {
    width: min(100%, 650px);
    padding-inline: 54px;
  }

  .hero-card h1 {
    font-size: clamp(44px, 4.5vw, 60px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero-photo {
    right: -105px;
    top: 112px;
    width: 620px;
    height: 590px;
    opacity: 0.55;
  }

  .hero-inner {
    width: var(--page);
    margin-top: 72px;
  }

  .hero-card {
    max-width: 540px;
    min-height: 0;
    padding: 34px 32px 28px;
    border-radius: 20px;
  }

  .hero-card h1 {
    font-size: 44px;
  }

  .hero-card p {
    font-size: 15px;
  }

  .hero-actions .btn {
    min-height: 52px;
    font-size: 15px;
  }

  .hero-meta span {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 790px;
  }

  .hero-photo {
    right: -170px;
    top: 145px;
    width: 520px;
    height: 560px;
    opacity: 0.38;
  }

  .hero-card {
    padding: 28px 24px 24px;
  }

  .hero-card h1 {
    font-size: 39px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
