:root {
  --ink: #102033;
  --muted: #5f6f7f;
  --line: #dbe5ef;
  --bg: #f7fbff;
  --panel: #ffffff;
  --blue: #1d4ed8;
  --teal: #0f766e;
  --soft-blue: #eaf3ff;
  --soft-teal: #e6fffb;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.10);
  --radius: 22px;
  --page: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 13px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 255, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 229, 239, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand strong { display: block; font-size: 1.04rem; letter-spacing: -0.02em; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: -3px; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-teal));
}
.brand-mark svg { width: 31px; height: 31px; }
.brand-mark circle { fill: none; stroke: var(--blue); stroke-width: 4; }
.brand-mark path { fill: none; stroke: var(--teal); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }

nav { display: flex; align-items: center; gap: 17px; font-size: 0.94rem; }
nav a { color: var(--ink); }

.section-pad {
  padding: clamp(42px, 5vw, 72px) clamp(18px, 4vw, 56px);
  max-width: var(--page);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(34px, 4vw, 58px);
  min-height: calc(100vh - 150px);
}

.hero-copy { max-width: 650px; }

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

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.04em; margin-top: 0; }
h1 { font-size: clamp(2.35rem, 5.3vw, 4.65rem); margin-bottom: 18px; max-width: 760px; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); margin-bottom: 16px; }
h3 { font-size: 1.18rem; margin-bottom: 9px; }
p { margin: 0 0 15px; }
.lead { font-size: clamp(1.04rem, 1.55vw, 1.22rem); color: #334155; max-width: 610px; }
.note, .form-note { color: var(--muted); font-size: 0.88rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 12px 19px;
  background: var(--blue);
  color: white;
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.17);
}
.button:hover { text-decoration: none; filter: brightness(0.97); }
.button.secondary { background: white; color: var(--blue); box-shadow: none; }
.button.small { padding: 9px 15px; }

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(8px, 1.5vw, 14px);
  box-shadow: var(--shadow);
}

.hero-card.clean {
  overflow: hidden;
  transform: translateY(-14%);
}
.hero-graphic { display: block; width: 100%; height: auto; border-radius: 24px; }
.hero-image {
  width: 130%;
  max-width: none;
  margin-left: -15%;
  margin-top: -5%;
  margin-bottom: -5%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--page);
  margin: 0 auto;
  width: calc(100% - clamp(36px, 8vw, 112px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.06);
}
.trust-strip div { background: white; padding: 18px 22px; }
.trust-strip strong { display: block; font-size: 1.08rem; margin-bottom: 2px; }
.trust-strip span { color: var(--muted); font-size: 0.95rem; }

.two-column, .about-section, .fees-section, .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.cards { display: grid; gap: 14px; }
.card, .fee-card, .contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.5vw, 26px);
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.055);
}
.card p, .fee-card p { color: var(--muted); }
.card p:last-child, .fee-card p:last-child { margin-bottom: 0; }
.about-section {
  background: linear-gradient(135deg, #ffffff, var(--soft-blue));
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 56px), calc((100vw - var(--page)) / 2 + 56px));
  padding-right: max(clamp(18px, 4vw, 56px), calc((100vw - var(--page)) / 2 + 56px));
}
.portrait svg { width: min(100%, 230px); height: auto; filter: drop-shadow(0 14px 24px rgba(16,32,51,0.12)); }
.fees-section {
  background: #ffffff;
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 56px), calc((100vw - var(--page)) / 2 + 56px));
  padding-right: max(clamp(18px, 4vw, 56px), calc((100vw - var(--page)) / 2 + 56px));
}
.price { color: var(--blue) !important; font-weight: 850; font-size: 1.85rem; margin-bottom: 8px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 20px 0; }
.contact-section {
  background: linear-gradient(135deg, var(--soft-teal), #ffffff);
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 56px), calc((100vw - var(--page)) / 2 + 56px));
  padding-right: max(clamp(18px, 4vw, 56px), calc((100vw - var(--page)) / 2 + 56px));
}
.contact-line { font-size: 1.02rem; }

.contact-form label { display: block; font-weight: 750; margin-bottom: 14px; }
input, textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 13px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}
textarea { resize: vertical; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
}
.site-footer p { margin: 0; }

@media (max-width: 940px) {
  .hero { min-height: auto; }
  .hero-card.clean { transform: translateY(0); }
  .hero, .two-column, .about-section, .fees-section, .contact-section { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 620px; }
}

@media (max-width: 840px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.35rem; }
  .section-pad { padding-left: 18px; padding-right: 18px; }
  .site-footer { flex-direction: column; }
  nav { gap: 12px; font-size: 0.9rem; }
  .button { width: 100%; }
  nav .button { width: auto; }
  .trust-strip { width: calc(100% - 36px); }
}


/* RefocusCBT tidy layout update */
.hero {
  min-height: auto;
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

.hero-copy { max-width: 620px; }

h1 { font-size: clamp(2.45rem, 5.1vw, 4.35rem); }
.lead { max-width: 560px; }

.methods-section {
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(30px, 4vw, 52px);
}

.section-intro {
  max-width: 720px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.section-intro h2 { margin-bottom: 10px; }
.section-intro p:last-child { color: var(--muted); margin-bottom: 0; }

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

.method-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.2vw, 28px);
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.055);
}

.method-card h3 {
  margin-bottom: 12px;
}

.method-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.method-card ul {
  margin: 16px 0 0;
  padding-left: 19px;
  color: #334155;
}

.method-card li {
  margin-bottom: 7px;
  font-size: 0.95rem;
}

.therapy-focus {
  padding-top: clamp(32px, 4vw, 54px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.card, .fee-card, .contact-form {
  padding: clamp(18px, 2vw, 24px);
}

.cards { gap: 16px; }

.about-section, .fees-section, .contact-section {
  padding-top: clamp(42px, 5vw, 66px);
  padding-bottom: clamp(42px, 5vw, 66px);
}

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

@media (max-width: 520px) {
  .methods-section { padding-top: 26px; }
  .method-card { padding: 20px; }
}
