/*
Theme Name: Praktyka Holistycznych Terapii
Theme URI: https://praktykaholistycznychterapii.pl
Author: Praktyka Holistycznych Terapii
Description: Premium bilingual website for Praktyka Holistycznych Terapii.
Version: 1.0.0
Text Domain: praktyka-holistycznych-terapii
*/

:root {
  --cream: #fbfaf6;
  --paper: #ffffff;
  --sand: #eee5d8;
  --sand-strong: #d6c2ab;
  --sage: #7d8b78;
  --forest: #2f4a3f;
  --forest-deep: #21362f;
  --clay: #a96c45;
  --ink: #26241f;
  --muted: #726e64;
  --line: rgba(38, 36, 31, 0.12);
  --shadow: 0 24px 70px rgba(33, 54, 47, 0.12);
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(38, 36, 31, 0.08);
  background: rgba(251, 250, 246, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 12px 40px rgba(38, 36, 31, 0.08);
}

.brand {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest);
}

.brand span {
  font-size: 10px;
  font-weight: 600;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.45vw, 24px);
  color: var(--muted);
  font-size: 13px;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-switch a,
.language-switch strong {
  padding: 8px 0;
}

.language-switch strong {
  color: var(--forest);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-height: 40px;
  padding: 0 18px;
  background: var(--forest);
  color: var(--cream);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: var(--cream);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

.button-secondary {
  border-color: rgba(38, 36, 31, 0.18);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(38, 36, 31, 0.32);
  background: rgba(38, 36, 31, 0.04);
}

.button-light {
  background: var(--cream);
  color: var(--forest);
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  width: min(100% - 40px, 1280px);
  min-height: min(860px, 100vh);
  margin: 0 auto;
  padding: 148px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 8vw, 116px);
}

h1 em,
h2 em {
  color: var(--forest);
  font-style: italic;
}

.hero-lead {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow):not(.hero-lead) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.8;
}

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

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: min(250px, 70%);
  padding: 22px;
  background: rgba(251, 250, 246, 0.92);
  border: 1px solid rgba(38, 36, 31, 0.08);
  box-shadow: 0 18px 45px rgba(38, 36, 31, 0.12);
  backdrop-filter: blur(16px);
}

.hero-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-note strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}

.intro-strip {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
}

.intro-strip div {
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip span,
.pillar-card span,
.method-list span,
.proof-grid span {
  display: block;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.intro-strip strong {
  display: block;
  margin: 26px 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.intro-strip p,
.pillar-card li,
.method-list p,
.proof-grid p {
  margin: 0;
  color: var(--muted);
}

section:not(.hero):not(.intro-strip) {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(100%, 780px);
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading-wide {
  width: min(100%, 960px);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.for-whom-copy h2 {
  font-size: clamp(42px, 5.4vw, 72px);
}

.team {
  background: var(--paper);
}

.team-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.team-card {
  display: grid;
  gap: 28px;
}

.team-card-offset {
  margin-top: 64px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--sand);
}

.team-card h3 {
  margin-bottom: 8px;
  font-size: clamp(34px, 3.5vw, 48px);
}

.role {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.team-card-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.bio-balance {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  background: linear-gradient(135deg, rgba(238, 229, 216, 0.72), rgba(255, 255, 255, 0.44));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bio-balance-copy {
  max-width: 700px;
}

.bio-balance-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 70px);
}

.bio-balance-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.8;
}

.bio-balance-copy .bio-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(38, 36, 31, 0.12);
  color: rgba(38, 36, 31, 0.58);
  font-size: 13px;
  font-weight: 400;
}

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

.bio-balance-list article {
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(38, 36, 31, 0.1);
  box-shadow: 0 18px 48px rgba(33, 54, 47, 0.08);
}

.bio-balance-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bio-balance-list h3 {
  margin-bottom: 10px;
  font-size: clamp(27px, 3vw, 36px);
}

.bio-balance-list p {
  margin: 0;
  color: var(--muted);
}

.practice-showcase {
  background: var(--paper);
}

.practice-showcase .section-heading {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.showcase-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.85fr);
  gap: clamp(24px, 3.5vw, 42px);
  align-items: end;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 42px);
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.philosophy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.philosophy .section-heading,
.services .section-heading,
.proof .section-heading {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.pillar-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  min-height: 400px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.pillar-card h3 {
  margin: 52px 0 32px;
  font-size: 42px;
}

.pillar-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-card li {
  position: relative;
  padding-left: 18px;
}

.pillar-card li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--clay);
}

.method {
  background: var(--sand);
}

.method-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.method h2 span {
  color: var(--clay);
}

.method-list {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(38, 36, 31, 0.12);
}

.method-list article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  border-bottom: 1px solid rgba(38, 36, 31, 0.12);
}

.method-list article:last-child {
  border-bottom: 0;
}

.method-list span {
  color: var(--sand-strong);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
}

.method-list h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.service-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  transition: background 180ms ease, transform 180ms ease;
}

.service-grid article:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.service-grid h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.locations {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  background: var(--forest);
  color: var(--cream);
}

.locations-copy {
  max-width: 720px;
}

.locations-copy .eyebrow,
.retreat-card .eyebrow {
  color: var(--sand-strong);
}

.locations-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 72px);
}

.locations-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(251, 250, 246, 0.76);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.8;
}

.locations-panel {
  display: grid;
  gap: 18px;
}

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

.location-list span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 250, 246, 0.18);
  background: rgba(251, 250, 246, 0.08);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}

.location-list span:first-child {
  grid-column: 1 / -1;
}

.retreat-card {
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(251, 250, 246, 0.18);
  background: rgba(251, 250, 246, 0.1);
}

.retreat-card h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 50px);
}

.retreat-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(251, 250, 246, 0.76);
  line-height: 1.8;
}

.for-whom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  background: var(--paper);
}

.for-whom-copy {
  max-width: 660px;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 300;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest);
}

.proof-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article {
  min-height: 250px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.knowledge-page {
  background: var(--cream);
}

.knowledge-hero {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 154px 0 72px;
}

.knowledge-hero h1 {
  max-width: 960px;
  font-size: clamp(54px, 7vw, 104px);
}

.knowledge-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.8;
}

.knowledge-featured {
  width: min(100% - 40px, 1180px);
  margin: 0 auto 18px;
  padding: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background: var(--forest);
  color: var(--cream);
}

.knowledge-featured .eyebrow {
  color: var(--sand-strong);
}

.knowledge-featured h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 70px);
}

.knowledge-featured p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(251, 250, 246, 0.76);
  line-height: 1.8;
}

.knowledge-featured > span {
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid rgba(251, 250, 246, 0.22);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.article-grid {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 0 0 clamp(80px, 10vw, 132px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  min-height: 330px;
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-meta {
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 26px 0 16px;
  font-size: clamp(30px, 3vw, 40px);
}

.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.article-card strong {
  margin-top: auto;
  padding-top: 30px;
  color: var(--forest);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-grid p {
  margin: 28px 0 0;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(38, 36, 31, 0.16);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links a:hover {
  background: rgba(47, 74, 63, 0.08);
}

.final-cta {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}

.final-cta div {
  width: min(100%, 880px);
  margin: 0 auto;
}

.final-cta .eyebrow {
  color: var(--sand-strong);
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 82px);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 40px;
  color: rgba(251, 250, 246, 0.78);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 300;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact-phone {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(251, 250, 246, 0.26);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-phone:hover {
  background: rgba(251, 250, 246, 0.1);
  border-color: rgba(251, 250, 246, 0.42);
  transform: translateY(-2px);
}

.site-footer {
  min-height: 126px;
  padding: 34px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.site-footer span,
.site-footer nav {
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 26px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.4);
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 250, 246, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero,
  .for-whom,
  .bio-balance,
  .locations {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 124px;
  }

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

  .intro-strip,
  .pillar-grid,
  .service-grid,
  .proof-grid,
  .article-grid,
  .showcase-grid,
  .showcase-card {
    grid-template-columns: 1fr;
  }

  .knowledge-featured {
    grid-template-columns: 1fr;
  }

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

  .location-list span:first-child {
    grid-column: auto;
  }

  .intro-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .team-card-offset {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
  }

  .brand {
    letter-spacing: 0.1em;
  }

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

  .brand span {
    font-size: 9px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    width: min(100% - 32px, 1280px);
    min-height: auto;
    padding: 112px 0 64px;
  }

  .knowledge-hero,
  .knowledge-featured,
  .article-grid {
    width: min(100% - 32px, 1180px);
  }

  .knowledge-hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(50px, 14vw, 74px);
  }

  .hero-actions,
  .site-footer,
  .team-grid,
  .method-list article {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
  }

  .intro-strip {
    width: min(100% - 32px, 1180px);
  }

  section:not(.hero):not(.intro-strip) {
    padding: 72px 16px;
  }

  .team-grid {
    gap: 56px;
  }

  .team-card-copy {
    padding: 0 4px;
  }

  .section-heading h2,
  .for-whom-copy h2 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .method-list article {
    gap: 10px;
  }

  .service-grid article,
  .pillar-card,
  .proof-grid article,
  .article-card {
    padding: 28px;
  }

  .site-footer {
    align-items: flex-start;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
