:root {
  --ink: #102a3a;
  --ink-deep: #092334;
  --paper: #f6f4ed;
  --white: #ffffff;
  --powder: #dce4ee;
  --sage: #637a73;
  --sage-dark: #465c56;
  --peach: #e2bda9;
  --accent: #f2bd4c;
  --line: rgba(16, 42, 58, 0.18);
  --muted: #64737c;
  --font-sans: "Manrope", Arial, sans-serif;
  --font-he: "Noto Sans Hebrew", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 80px));
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

html[lang="he"] body {
  font-family: var(--font-he);
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(16, 42, 58, 0.1);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(246, 244, 237, 0.92);
  box-shadow: 0 10px 40px rgba(9, 35, 52, 0.06);
  backdrop-filter: blur(16px);
  animation: header-in 0.35s var(--ease);
}

@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
}

.header-inner {
  position: relative;
  z-index: 100;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-inline-end: auto;
  white-space: nowrap;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.brand-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.brand-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-toggle,
.menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  padding: 9px 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-next,
.lang-separator {
  opacity: 0.45;
}

.header-contact {
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.header-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 10px 7px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 100px 8vw 40px;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.mobile-menu.is-open {
  z-index: 90;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 300;
}

.mobile-menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  background: var(--powder);
  overflow: hidden;
}

.hero-grid {
  width: var(--container);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.hero-copy {
  grid-column: 1;
  position: relative;
  z-index: 2;
  padding: 70px 0 95px;
}

.hero-visual {
  grid-column: 2;
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

html[dir="rtl"] .hero-copy {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .hero-visual {
  grid-column: 1;
  grid-row: 1;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

html[lang="he"] .eyebrow {
  letter-spacing: 0.06em;
}

main > section:not(.hero) .eyebrow {
  font-size: 15px;
  line-height: 1.45;
}

.hero h1 {
  margin: 0;
  font-size: clamp(43px, 5.5vw, 78px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero .eyebrow {
  font-size: 13px;
}

html[lang="he"] .hero h1 {
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-top: 9px;
  font-size: 0.62em;
  color: var(--sage-dark);
}

.hero-description {
  max-width: 550px;
  margin: 32px 0;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 13px 22px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-deep);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-accent {
  background: var(--accent);
  color: var(--ink-deep);
}

.arrow {
  font-size: 18px;
}

.text-link,
.line-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.hero-meta {
  display: flex;
  gap: clamp(30px, 5vw, 70px);
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 42, 58, 0.2);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta span {
  color: var(--muted);
  font-size: 11px;
}

.hero-meta strong {
  font-size: 13px;
  font-weight: 600;
}

.portrait-frame {
  position: absolute;
  z-index: 2;
  inset: 5%;
  overflow: hidden;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-pad {
  padding: clamp(90px, 11vw, 160px) 0;
}

.manifesto {
  background: var(--white);
}

.manifesto-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.manifesto h2,
.section-heading h2,
.about h2,
.insights h2,
.speaking h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

html[lang="he"] .manifesto h2,
html[lang="he"] .section-heading h2,
html[lang="he"] .about h2,
html[lang="he"] .insights h2,
html[lang="he"] .speaking h2,
html[lang="he"] .contact h2 {
  letter-spacing: -0.018em;
}

.manifesto-body {
  max-width: 690px;
  columns: 2;
  column-gap: 42px;
  margin: 38px 0;
  color: #485d68;
  font-size: 15px;
}

.manifesto-body p {
  margin: 0 0 18px;
  break-inside: avoid;
}

.manifesto-quote {
  position: relative;
  margin: 73px 0 0;
  padding: 48px 34px 34px;
  background: var(--peach);
}

.manifesto-quote p {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.5;
}

.quote-mark {
  position: absolute;
  top: -5px;
  inset-inline-start: 25px;
  color: rgba(16, 42, 58, 0.34);
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
}

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

.section-heading,
.insights-header {
  width: var(--container);
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: end;
}

.section-heading > div {
  max-width: 660px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: var(--muted);
}

.service-list {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 38px clamp(25px, 3vw, 46px);
  border-inline-end: 1px solid var(--line);
  transition: background 0.4s ease, transform 0.4s var(--ease);
}

.service-card:last-child {
  border-inline-end: 0;
}

.service-card:hover {
  z-index: 1;
  background: var(--white);
  transform: translateY(-7px);
}

.service-index {
  color: var(--muted);
  font-size: 11px;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 52px 0 36px;
}

.service-icon svg {
  fill: none;
  stroke: var(--sage);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 0 0 15px;
  font-size: 25px;
  font-weight: 400;
}

.service-card p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 35px;
  padding: 13px 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  text-align: start;
  font-size: 12px;
  font-weight: 700;
}

.about {
  padding-bottom: 0;
  background: var(--sage);
  color: var(--white);
}

.about-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 660px;
  align-self: end;
}

.art-panel {
  position: absolute;
}

.art-panel-main {
  inset: 4% 10% 0 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.13) 49%, rgba(255, 255, 255, 0.13) 51%, transparent 52%),
    var(--ink-deep);
  overflow: hidden;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 300;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.art-panel-main::before {
  content: "";
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.art-panel-main span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
}

.art-panel-small {
  width: 36%;
  height: 33%;
  inset-inline-end: 0;
  bottom: 8%;
  background: var(--accent);
}

.art-caption {
  position: absolute;
  z-index: 2;
  inset-inline-start: 0;
  bottom: 25px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-copy {
  padding-bottom: clamp(90px, 11vw, 150px);
}

.about-copy .eyebrow {
  color: #d9e2df;
}

.about-lead {
  margin: 35px 0 20px;
  font-size: 19px;
  font-weight: 300;
}

.about-copy > p:not(.eyebrow, .about-lead) {
  color: #dce4e1;
  font-size: 14px;
}

.credentials {
  margin: 44px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.credentials div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.credentials dt {
  color: #d3ddda;
  font-size: 11px;
}

.credentials dd {
  margin: 0;
  font-size: 13px;
}

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

.insights-header {
  align-items: end;
}

.filter-bar {
  width: var(--container);
  margin: 0 auto 40px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.insights-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.insight-card {
  position: relative;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.insight-card.is-hidden {
  display: none;
}

.insight-card:hover {
  transform: translateY(-7px);
}

.insight-image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.insight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(255, 255, 255, 0.18));
}

.image-a {
  background: var(--peach);
}

.image-b {
  background: var(--ink);
}

.image-c {
  background:
    radial-gradient(circle at 35% 50%, var(--accent) 0 19%, transparent 20%),
    linear-gradient(120deg, var(--sage) 0 50%, #bdcbd7 50%);
}

.image-d {
  background: var(--powder);
}

.image-symbol {
  color: rgba(16, 42, 58, 0.34);
  font-size: 90px;
  font-weight: 300;
}

.audio-lines {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 70px;
}

.audio-lines i {
  display: block;
  width: 5px;
  height: 35%;
  background: var(--accent);
  animation: audio 1.5s ease-in-out infinite alternate;
}

.audio-lines i:nth-child(2),
.audio-lines i:nth-child(4) {
  height: 80%;
  animation-delay: -0.5s;
}

.audio-lines i:nth-child(3) {
  height: 100%;
  animation-delay: -0.9s;
}

@keyframes audio {
  to {
    transform: scaleY(0.45);
  }
}

.play-button {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding-inline-start: 4px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.event-date {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.event-date strong {
  font-size: 70px;
  font-weight: 300;
}

.event-date small {
  margin-top: 8px;
  letter-spacing: 0.2em;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.insight-card h3 {
  margin: 14px 36px 9px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

html[dir="rtl"] .insight-card h3 {
  margin: 14px 0 9px 36px;
}

.insight-card p {
  margin: 0 32px 0 0;
  color: var(--muted);
  font-size: 12px;
}

html[dir="rtl"] .insight-card p {
  margin: 0 0 0 32px;
}

.insight-card > a {
  position: absolute;
  inset-inline-end: 0;
  bottom: 6px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 12px;
}

.speaking {
  background: var(--ink);
  color: var(--white);
}

.speaking-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.speaking-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0;
  color: #c8d2d7;
}

.speaking-copy ul {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.speaking-copy li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.speaking-copy li::before {
  content: "—";
  margin-inline-end: 13px;
  color: var(--accent);
}

.speaking-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #143b50;
}

.stage-circle {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  top: 11%;
  inset-inline-end: 5%;
  border-radius: 50%;
  background: var(--accent);
}

.stage-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform-origin: left;
}

.line-one {
  width: 78%;
  top: 35%;
  inset-inline-start: 5%;
  transform: rotate(22deg);
}

.line-two {
  width: 70%;
  top: 60%;
  inset-inline-start: 20%;
  transform: rotate(-34deg);
}

.stage-person {
  position: absolute;
  z-index: 3;
  width: 23%;
  height: 55%;
  inset-inline-start: 28%;
  bottom: 0;
  border-radius: 48% 48% 0 0;
  background: var(--peach);
}

.stage-person::before {
  content: "";
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  top: -20%;
  left: 27%;
  border-radius: 50%;
  background: var(--peach);
}

.speaking-art > span {
  position: absolute;
  z-index: 4;
  inset-inline-end: 25px;
  bottom: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact {
  background: var(--powder);
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 620px));
  justify-content: center;
  gap: clamp(55px, 9vw, 130px);
  padding-inline: 40px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  color: #50636d;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 45px;
  font-size: 14px;
}

.contact-details a {
  border-bottom: 1px solid currentColor;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 42, 58, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.contact-form input,
.contact-form select {
  height: 42px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.contact-form .button {
  justify-self: start;
}

.form-email-note {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding: 75px max(40px, calc((100vw - 1240px) / 2)) 28px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: start;
  padding-bottom: 70px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-weight: 700;
}

.footer-brand small {
  color: #a9b8c0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 60px;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink-deep);
  transform: translateY(-2px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links .social-dot,
.social-links .social-play {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #96a8b2;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.service-dialog {
  width: min(560px, calc(100vw - 34px));
  padding: clamp(32px, 6vw, 58px);
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(9, 35, 52, 0.3);
}

.service-dialog::backdrop {
  background: rgba(9, 35, 52, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 13px;
  inset-inline-end: 17px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 31px;
  font-weight: 200;
}

.service-dialog h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.2;
}

.dialog-body {
  color: var(--muted);
}

.dialog-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-details div {
  display: flex;
  flex-direction: column;
}

.dialog-details span {
  color: var(--muted);
  font-size: 10px;
}

.dialog-details strong {
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 200;
  inset-inline-end: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: min(400px, calc(100vw - 48px));
  padding: 16px 20px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 60px rgba(9, 35, 52, 0.24);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (max-width: 1080px) {
  :root {
    --container: min(940px, calc(100vw - 48px));
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 65px);
  }

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

  .manifesto-quote {
    grid-column: 1;
    margin-top: 0;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 22px;
  }

  .contact {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: calc(100vw - 36px);
    --header-height: 64px;
  }

  .header-inner {
    gap: 15px;
  }

  .brand-role,
  .brand-divider {
    display: none;
  }

  .brand-name {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy,
  html[dir="rtl"] .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 72px 0 18px;
  }

  .hero-visual,
  html[dir="rtl"] .hero-visual {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 560px);
    aspect-ratio: 941 / 1016;
    min-height: 0;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-description {
    max-width: 600px;
  }

  main > section:not(.hero) .eyebrow {
    font-size: 14px;
  }

  .hero-meta {
    margin-top: 45px;
  }

  .portrait-frame {
    inset: 0;
  }

  .portrait-frame img {
    object-fit: cover;
    object-position: center top;
  }

  .section-pad {
    padding: 86px 0;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .manifesto-quote {
    grid-column: 1;
  }

  .manifesto-body {
    columns: 1;
  }

  .section-heading,
  .insights-header {
    margin-bottom: 43px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .service-card {
    min-height: auto;
    padding: 30px 0 40px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-icon {
    margin: 34px 0 26px;
  }

  .service-card p {
    min-height: auto;
  }

  .about {
    padding-bottom: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-art {
    min-height: 580px;
    order: 2;
  }

  .about-copy {
    padding-bottom: 0;
  }

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

  .speaking-grid {
    grid-template-columns: 1fr;
  }

  .speaking-art {
    min-height: 500px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-inline: 18px;
  }

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

  .footer-links {
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .language-toggle {
    font-size: 11px;
  }

  .mobile-menu-footer {
    flex-direction: column;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-meta {
    gap: 28px;
  }

  .hero-visual,
  html[dir="rtl"] .hero-visual {
    min-height: 0;
  }

  .manifesto h2,
  .section-heading h2,
  .about h2,
  .insights h2,
  .speaking h2,
  .contact h2 {
    font-size: 35px;
  }

  .credentials div {
    grid-template-columns: 100px 1fr;
  }

  .about-art {
    min-height: 480px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .speaking-art {
    min-height: 390px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4),
  .contact-form .form-note {
    grid-column: 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }

  .footer-links {
    grid-row: auto;
  }

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

/* Personalized content architecture */

html {
  scroll-padding-top: 86px;
}

.profile-section,
.clinic-section,
.writing-section,
.podcasts-section,
.lectures-section,
.research-section {
  position: relative;
}

.profile-section:target .reveal,
.clinic-section:target .reveal,
.writing-section:target .reveal,
.podcasts-section:target .reveal,
.lectures-section:target .reveal,
.research-section:target .reveal,
.contact:target .reveal {
  opacity: 1;
  transform: none;
}

.profile-section h2,
.clinic-section h2,
.writing-section h2,
.podcasts-section h2,
.lectures-section h2,
.research-section h2 {
  margin: 0;
  font-size: clamp(35px, 4.4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

html[lang="he"] .profile-section h2,
html[lang="he"] .clinic-section h2,
html[lang="he"] .writing-section h2,
html[lang="he"] .podcasts-section h2,
html[lang="he"] .lectures-section h2,
html[lang="he"] .research-section h2 {
  letter-spacing: -0.02em;
}

.profile-section {
  background: var(--white);
}

.profile-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.philosophy-copy {
  max-width: 760px;
}

.profile-lead {
  margin: 36px 0 20px;
  color: #304b59;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 300;
  line-height: 1.7;
}

.philosophy-copy > p:not(.eyebrow, .profile-lead) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.philosophy-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.philosophy-toggle-icon {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.philosophy-toggle[aria-expanded="true"] .philosophy-toggle-icon {
  transform: rotate(45deg);
}

.full-philosophy {
  max-width: 700px;
  margin-top: 25px;
  padding: 25px 28px;
  border-inline-start: 3px solid var(--accent);
  background: var(--paper);
}

.full-philosophy[hidden] {
  display: none;
}

.full-philosophy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.full-philosophy p + p {
  margin-top: 14px;
}

.profile-quote {
  position: relative;
  margin: 54px 0 0;
  padding: 38px 42px;
  background: var(--peach);
}

.profile-quote > span,
.lecture-quote > span {
  position: absolute;
  top: -12px;
  inset-inline-start: 22px;
  color: rgba(16, 42, 58, 0.28);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}

.profile-quote p {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.45;
}

.education-panel {
  padding: 38px;
  background: var(--ink);
  color: var(--white);
}

.education-panel .eyebrow {
  color: #c7d5d5;
}

.education-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.education-item:last-child {
  padding-bottom: 0;
}

.education-item > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.education-item h3 {
  margin: 0 0 9px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.education-item p {
  margin: 0;
  color: #c8d2d7;
  font-size: 12px;
  line-height: 1.65;
}

.clinic-section {
  background: var(--sage);
  color: var(--white);
}

.clinic-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.clinic-copy {
  max-width: 690px;
}

.clinic-copy .eyebrow {
  color: #d9e2df;
}

.clinic-lead {
  max-width: 650px;
  margin: 34px 0 38px;
  color: #edf2f0;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.8;
}

.clinic-details {
  margin-bottom: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.clinic-details > div {
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.clinic-details h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}

.clinic-details p {
  max-width: 560px;
  margin: 0;
  color: #dce5e2;
  font-size: 13px;
  line-height: 1.7;
}

.booking-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(9, 35, 52, 0.18);
}

.booking-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.booking-heading .eyebrow {
  margin-bottom: 5px;
  color: var(--sage-dark);
}

.booking-heading h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.25;
}

.booking-calendar-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border: 1px solid var(--ink);
}

.booking-calendar-icon::before {
  content: "";
  position: absolute;
  inset: 13px 0 auto;
  border-top: 1px solid var(--ink);
}

.booking-calendar-icon i {
  position: absolute;
  top: -5px;
  width: 1px;
  height: 12px;
  background: var(--ink);
}

.booking-calendar-icon i:first-child {
  left: 17px;
}

.booking-calendar-icon i:nth-child(2) {
  right: 17px;
}

.booking-calendar-icon strong {
  margin-top: 11px;
  color: var(--sage);
  font-size: 26px;
  font-weight: 300;
}

.booking-intro {
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 44px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(16, 42, 58, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.booking-date-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-form .button {
  width: 100%;
  margin-top: 5px;
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.content-heading {
  width: var(--container);
  margin: 0 auto 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.content-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  line-height: 1.75;
}

.writing-section {
  background: var(--paper);
}

.article-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(16, 42, 58, 0.08);
}

.article-visual {
  position: relative;
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.article-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  inset-inline-end: -18%;
  top: 16%;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.28;
}

.article-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 35, 52, 0.55) 0%,
    transparent 35%,
    rgba(9, 35, 52, 0.45) 100%
  );
}

.article-visual-image img {
  filter: saturate(0.82) contrast(0.96);
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}

.article-card:hover .article-visual-image img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1);
}

.article-visual span,
.article-visual strong {
  position: relative;
  z-index: 2;
}

.article-visual span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.article-visual strong {
  align-self: flex-end;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.38;
}

.article-visual-one {
  background: var(--peach);
  color: var(--white);
}

.article-visual-two {
  background: var(--sage);
  color: var(--white);
}

.article-visual-three {
  background: var(--powder);
}

.article-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.article-copy > span:first-child {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.article-copy h3 {
  margin: 22px 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.3;
}

.article-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.card-action {
  margin-top: auto;
  padding-top: 28px;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  color: var(--ink) !important;
  font-size: 11px !important;
}

.article-empty {
  grid-template-columns: 0.45fr 1.55fr;
  border: 1px dashed rgba(16, 42, 58, 0.3);
  background: transparent;
}

.article-add {
  display: grid;
  place-items: center;
  background: var(--accent);
  font-size: 64px;
  font-weight: 200;
}

.article-all {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px dashed rgba(16, 42, 58, 0.35);
  background: var(--powder);
  font-size: clamp(26px, 3.2vw, 43px);
  font-weight: 300;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.article-all:hover,
.article-all:focus-visible {
  background: var(--accent);
  transform: translateY(-4px);
}

.article-all-arrow {
  flex: 0 0 auto;
  font-size: 34px;
}

.podcasts-section {
  background: var(--ink);
  color: var(--white);
}

.podcasts-section .content-heading > p {
  color: #c8d2d7;
}

.podcast-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.podcast-card {
  display: flex;
  flex-direction: column;
  background: #123548;
}

.podcast-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 35%, rgba(126, 151, 143, 0.8) 0 18%, transparent 18.5%),
    linear-gradient(135deg, #bfcbd5 0 54%, #0b2331 54%);
}

.podcast-frame-alt {
  background:
    linear-gradient(35deg, transparent 42%, rgba(246, 191, 70, 0.9) 42% 61%, transparent 61%),
    var(--sage);
}

.podcast-frame small {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.podcast-play {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  padding-inline-start: 4px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
}

.podcast-wave {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 58%;
  opacity: 0.52;
}

.podcast-wave i {
  width: 5px;
  height: 32%;
  background: var(--accent);
}

.podcast-wave i:nth-child(2),
.podcast-wave i:nth-child(4) {
  height: 72%;
}

.podcast-wave i:nth-child(3) {
  height: 100%;
}

.podcast-ring {
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.podcast-copy {
  padding: 30px 32px 36px;
}

.podcast-copy > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.podcast-copy h3 {
  margin: 16px 0 11px;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 400;
}

.podcast-copy p {
  max-width: 520px;
  margin: 0;
  color: #c8d2d7;
  font-size: 13px;
  line-height: 1.7;
}

.podcast-all {
  width: var(--container);
  margin: 38px auto 0;
  display: flex;
  justify-content: flex-end;
}

html[dir="rtl"] .podcast-all {
  justify-content: flex-start;
}

.lectures-section {
  background: var(--powder);
}

.lectures-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.lecture-image {
  position: relative;
}

.lecture-image::after {
  content: "";
  position: absolute;
  width: 26%;
  height: 34%;
  inset-inline-end: -5%;
  bottom: -6%;
  background: var(--accent);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.lecture-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.lecture-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: var(--muted);
  line-height: 1.8;
}

.lecture-topics {
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.lecture-topics span {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.lecture-topics span::before {
  content: "—";
  margin-inline-end: 12px;
  color: var(--sage);
}

.lecture-quote {
  position: relative;
  margin: 42px 0 0;
  padding: 36px 30px 26px;
  background: var(--white);
}

.lecture-quote p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.research-section {
  background: var(--paper);
}

.research-list {
  width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.research-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px 190px minmax(0, 1fr) 42px;
  gap: 28px;
  align-items: center;
  min-height: 190px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}

.research-card:hover {
  padding-inline: 22px;
  background: var(--white);
}

.research-number {
  color: var(--sage);
  font-size: 35px;
  font-weight: 300;
}

.research-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.research-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 400;
  line-height: 1.35;
}

.research-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.research-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.research-placeholder {
  opacity: 0.62;
}

@media (max-width: 1080px) {
  .profile-grid,
  .clinic-grid,
  .lectures-grid {
    grid-template-columns: 1fr;
  }

  .clinic-copy {
    max-width: 780px;
  }

  .booking-card {
    max-width: 720px;
  }

  .education-panel {
    max-width: 760px;
  }

  .lecture-image {
    max-width: 820px;
  }

  .research-card {
    grid-template-columns: 55px 155px minmax(0, 1fr) 38px;
  }
}

@media (max-width: 780px) {
  .content-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 42px;
  }

  .article-grid,
  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .research-card {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 18px;
  }

  .research-meta {
    grid-column: 2;
  }

  .research-copy {
    grid-column: 2;
  }

  .research-link {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 560px) {
  .booking-heading {
    align-items: flex-start;
  }

  .booking-calendar-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .booking-calendar-icon i:first-child {
    left: 14px;
  }

  .booking-calendar-icon i:nth-child(2) {
    right: 14px;
  }

  .booking-date-time {
    grid-template-columns: 1fr;
  }

  .profile-quote {
    padding: 34px 25px 26px;
  }

  .education-panel {
    padding: 28px 24px;
  }

  .article-card,
  .article-empty {
    grid-template-columns: 1fr;
  }

  .article-visual {
    min-height: 210px;
  }

  .article-add {
    min-height: 130px;
  }

  .podcast-copy,
  .article-copy {
    padding: 27px 24px;
  }

  .lecture-image::after {
    display: none;
  }

  .research-card {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .research-link {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
