:root {
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --ink: #252820;
  --muted: #62675c;
  --olive: #596248;
  --olive-dark: #3f4737;
  --sage: #aeb69d;
  --sand: #d9cdbb;
  --clay: #9b6753;
  --line: rgba(37, 40, 32, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(155, 103, 83, 0.38);
  outline-offset: 3px;
}
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.15rem, 4vw, 3.8rem); letter-spacing: -0.025em; }
h3 { font-size: 1.75rem; }
p, li, dd { font-size: 1.03rem; }
strong { font-weight: 650; }

.site-header {
  min-height: 84px;
  padding: 14px max(4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand span { font-family: var(--serif); font-size: 1.8rem; }
.brand small {
  margin-top: 8px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.site-header nav { display: flex; align-items: center; gap: 1.35rem; }
.site-header nav a {
  padding: 9px 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid transparent;
}
.site-header nav a:hover,
.site-header nav a.active { border-color: var(--ink); }
.site-header nav .nav-cta {
  padding: 12px 17px;
  background: var(--olive);
  color: white;
  border: 1px solid var(--olive);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 14px;
  color: var(--ink);
  font: inherit;
}

.section {
  width: min(var(--max), calc(100% - 10vw));
  margin: 0 auto;
  padding: 98px 0;
}
.eyebrow, .card-kicker {
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.welcome-line {
  margin-bottom: 12px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}
.button-row { display: flex; align-items: center; gap: 26px; margin-top: 28px; }
.button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: white;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.button:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.button.outline { background: transparent; color: var(--ink); }
.button.light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.text-link { font-size: 0.9rem; font-weight: 600; }
.text-link span { margin-left: 7px; }

.hero {
  width: min(1400px, calc(100% - 8vw));
  margin: 0 auto;
  padding: 68px 0 82px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5vw;
}
.hero-copy h1 { max-width: 11.8ch; font-size: clamp(3rem, 5.2vw, 5.1rem); }
.hero-photo {
  width: 100%;
  max-width: 650px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: var(--sand);
}
.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 31%;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  align-items: start;
}
.intro-grid h2 { max-width: 620px; }
.intro-grid > div:last-child { padding-top: 12px; }
.intro-grid > div:last-child p:last-child { margin-bottom: 0; }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  min-height: 360px;
  padding: 46px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.service-card:last-child { border-right: 0; }
.service-card.priority { background: rgba(89, 98, 72, 0.08); }
.service-card p:not(.card-kicker) { flex: 1; color: var(--muted); }
.service-card a {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.personal-story, .two-column-feature, .split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}
.story-photo, .portrait-photo, .two-column-feature figure, .image-hero figure {
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}
.story-photo img, .two-column-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.story-photo img { object-position: center 40%; }
.portrait-photo {
  width: min(100%, 440px);
  justify-self: center;
}
.portrait-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}
.personal-quote {
  margin-top: 32px;
  padding: 24px 0 0 28px;
  border-left: 2px solid var(--clay);
  color: var(--olive-dark);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.experience-line {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 0.55fr 1.6fr auto;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.experience-line .eyebrow, .experience-line p { margin-bottom: 0; }
.experience-line a { font-size: 0.82rem; font-weight: 650; }

.testimonial { max-width: 900px; text-align: center; }
.testimonial blockquote {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.3;
}
.testimonial p { color: var(--muted); }

.page-hero {
  min-height: 430px;
  padding: 105px max(6vw, 28px) 82px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, var(--paper), #e6dccd);
}
.page-hero h1 { max-width: 1050px; }

.image-hero {
  width: min(1400px, calc(100% - 8vw));
  margin: 0 auto;
  padding: 68px 0 82px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5vw;
  align-items: center;
}
.image-hero > div h1 { font-size: clamp(3rem, 5vw, 5.2rem); }
.image-hero figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.values-strip {
  padding-top: 44px;
  padding-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-strip span {
  font-family: var(--serif);
  font-size: 1.45rem;
}
.values-strip span:not(:last-child)::after {
  content: "·";
  margin-left: 28px;
  color: var(--clay);
}

.credentials-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 8vw; }
.credential-list { border-top: 1px solid var(--line); }
.credential-list > div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.credential-list time {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.credential-list p { margin-bottom: 0; }

.offering-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.offering-list > div {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--line);
}
.offering-list > div:nth-child(odd) { border-right: 1px solid var(--line); }
.offering-list > div:nth-child(even) { padding-left: 32px; }
.offering-list.three { grid-template-columns: repeat(3, 1fr); }
.offering-list.three > div { border-right: 1px solid var(--line); padding-left: 28px; }
.offering-list.three > div:first-child { padding-left: 0; }
.offering-list.three > div:last-child { border-right: 0; }
.offering-list h3 { margin-bottom: 10px; }
.offering-list p { margin-bottom: 0; color: var(--muted); }

.facts-band {
  padding: 54px max(5vw, 26px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--olive);
  color: white;
}
.facts-band div {
  padding: 12px 28px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.facts-band div:last-child { border-right: 0; }
.facts-band strong, .facts-band span { display: block; }
.facts-band strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.facts-band span { margin-top: 6px; font-size: 0.82rem; opacity: 0.82; }

.practical-section, .experience-highlight {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: start;
}
.check-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { padding: 17px 0 17px 28px; border-bottom: 1px solid var(--line); position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--olive); font-weight: 700; }

.experience-list { margin: 0; border-top: 1px solid var(--line); }
.experience-list > div {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}
.experience-list dt {
  font-family: var(--serif);
  font-size: 1.55rem;
}
.experience-list dd { margin: 0; color: var(--muted); }

.process-section { background: rgba(89, 98, 72, 0.06); width: 100%; padding-left: max(5vw, calc((100vw - var(--max))/2)); padding-right: max(5vw, calc((100vw - var(--max))/2)); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 2.5rem;
}

.style-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
}
.style-list span {
  width: 33.333%;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
}
.style-list span:nth-child(3n) { border-right: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  align-items: start;
}
.direct-contact { margin-top: 40px; border-top: 1px solid var(--line); }
.direct-contact > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.direct-contact span {
  display: block;
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.direct-contact p { margin-bottom: 0; }
.direct-contact a { font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.contact-form label {
  display: block;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form .optional { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--ink);
  font: inherit;
  text-transform: none;
}
.contact-form textarea { resize: vertical; }
.full-width { grid-column: 1 / -1; }
.form-note { margin-bottom: 0; color: var(--muted); font-size: 0.82rem; }
.form-note a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }

.contact-band {
  padding: 78px max(6vw, 28px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background: var(--olive);
  color: white;
}
.contact-band h2 { max-width: 820px; margin-bottom: 0; }

.thank-you {
  min-height: 70vh;
  padding: 110px max(6vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.thank-you h1 { max-width: 850px; }

.site-footer {
  padding: 50px max(4vw, 24px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 48px;
  border-top: 1px solid var(--line);
}
.footer-links { display: flex; flex-direction: column; gap: 7px; font-size: 0.86rem; }
.site-footer > p { margin-bottom: 0; font-size: 0.78rem; color: var(--muted); }

@media (max-width: 980px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 24px max(5vw, 24px);
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open { display: flex; }
  .menu-button { display: block; }
  .hero, .image-hero, .intro-grid, .personal-story, .two-column-feature, .split-layout,
  .credentials-section, .practical-section, .experience-highlight, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo, .image-hero figure { justify-self: center; width: min(100%, 680px); }
  .hero-copy h1 { max-width: 13ch; }
  .experience-line { grid-template-columns: 1fr; gap: 16px; }
  .experience-line a { margin-top: 4px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .offering-list.three { grid-template-columns: 1fr; }
  .offering-list.three > div { border-right: 0; padding-left: 0; }
  .facts-band { grid-template-columns: repeat(2, 1fr); }
  .facts-band div:nth-child(2) { border-right: 0; }
  .facts-band div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.25); }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 28px; }
}
@media (max-width: 650px) {
  h1 { font-size: 3rem; }
  .site-header { min-height: 74px; }
  .site-header nav { top: 74px; }
  .brand span { font-size: 1.55rem; }
  .brand small { font-size: 0.53rem; }
  .section { width: min(100% - 12vw, var(--max)); padding: 72px 0; }
  .hero, .image-hero { width: calc(100% - 12vw); padding: 48px 0 62px; gap: 38px; }
  .hero-copy h1, .image-hero > div h1 { font-size: 2.85rem; }
  .hero-photo img { aspect-ratio: 4 / 5; object-position: center 26%; }
  .image-hero figure img { aspect-ratio: 4 / 3; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .page-hero { min-height: 365px; padding: 82px 6vw 62px; }
  .offering-list { grid-template-columns: 1fr; }
  .offering-list > div, .offering-list > div:nth-child(even) {
    padding: 26px 0;
    border-right: 0;
  }
  .facts-band { grid-template-columns: 1fr; }
  .facts-band div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .facts-band div:last-child { border-bottom: 0; }
  .experience-list > div { grid-template-columns: 1fr; gap: 8px; }
  .style-list span { width: 50%; }
  .style-list span:nth-child(3n) { border-right: 1px solid var(--line); }
  .style-list span:nth-child(2n) { border-right: 0; }
  .values-strip span:not(:last-child)::after { display: none; }
  .values-strip { flex-direction: column; align-items: center; gap: 8px; }
  .contact-form { padding: 25px; grid-template-columns: 1fr; }
  .contact-form label, .full-width { grid-column: 1; }
  .contact-band { padding: 64px 6vw; align-items: flex-start; flex-direction: column; }
}


/* Language navigation and Japanese pages */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 2px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.site-header nav .language-switch a {
  padding: 9px 0;
  border-bottom: 1px solid transparent;
}
.site-header nav .language-switch a:hover {
  border-color: var(--ink);
}
.language-switch .lang-current {
  color: var(--ink);
  font-weight: 700;
}
.japanese-page {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", var(--sans);
}
.japanese-page h1,
.japanese-page h2,
.japanese-page h3,
.japanese-page .brand span,
.japanese-page .welcome-line,
.japanese-page .testimonial blockquote {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", var(--serif);
}
.japanese-page h1,
.japanese-page h2 {
  letter-spacing: 0;
}
.japanese-page .hero-copy h1 {
  max-width: 13ch;
  line-height: 1.22;
}
.japanese-page .lead,
.japanese-page p,
.japanese-page li,
.japanese-page dd {
  line-height: 1.85;
}
.footer-links a:last-child {
  font-weight: 650;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header nav { gap: 0.92rem; }
  .site-header nav a { font-size: 0.7rem; }
  .language-switch { font-size: 0.67rem; }
}
@media (max-width: 980px) {
  .language-switch {
    padding: 8px 0;
  }
  .japanese-page .hero-copy h1 {
    max-width: 15ch;
  }
}
@media (max-width: 650px) {
  .japanese-page .hero-copy h1,
  .japanese-page .image-hero > div h1 {
    font-size: 2.55rem;
    line-height: 1.3;
  }
}

/* =========================================================
   Clean photo layout — one definitive set of rules
   Images are pre-cropped and displayed at their natural ratio.
   No browser-side recropping is used.
   ========================================================= */

.hero {
  width: min(1220px, calc(100% - 10vw));
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: center;
}
.hero-photo {
  width: min(100%, 500px);
  max-width: 500px;
  margin: 0 auto;
  justify-self: center;
  overflow: visible;
  background: transparent;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.image-hero {
  width: min(1180px, calc(100% - 10vw));
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(48px, 6vw, 82px);
  align-items: center;
}
.image-hero figure {
  width: min(100%, 470px);
  max-width: 470px;
  margin: 0 auto;
  justify-self: center;
  overflow: visible;
  background: transparent;
}
.image-hero figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.personal-story {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 7vw, 92px);
  align-items: center;
}
.personal-story .story-photo {
  width: min(100%, 430px);
  max-width: 430px;
  margin: 0 auto;
  justify-self: center;
  overflow: visible;
  background: transparent;
}
.personal-story .story-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.split-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 7vw, 92px);
}
.portrait-photo {
  width: min(100%, 360px);
  max-width: 360px;
  margin: 0 auto;
  justify-self: center;
  overflow: visible;
  background: transparent;
}
.portrait-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.two-column-feature {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 92px);
  align-items: center;
}
.two-column-feature figure {
  width: min(100%, 470px);
  max-width: 470px;
  margin: 0 auto;
  justify-self: center;
  overflow: visible;
  background: transparent;
}
.two-column-feature figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.family-yoga-feature figure {
  width: min(100%, 420px);
  max-width: 420px;
}

@media (max-width: 980px) {
  .hero,
  .image-hero,
  .personal-story,
  .split-layout,
  .two-column-feature {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    width: min(72vw, 470px);
  }

  .image-hero figure,
  .personal-story .story-photo,
  .two-column-feature figure {
    width: min(72vw, 460px);
  }

  .portrait-photo {
    width: min(62vw, 350px);
  }

  .family-yoga-feature figure {
    width: min(68vw, 400px);
  }
}

@media (max-width: 650px) {
  .hero-photo {
    width: min(84vw, 340px);
  }

  .image-hero figure,
  .personal-story .story-photo,
  .two-column-feature figure {
    width: min(86vw, 340px);
  }

  .portrait-photo {
    width: min(76vw, 300px);
  }

  .family-yoga-feature figure {
    width: min(82vw, 330px);
  }
}



/* Corporate facilitator portrait */
.corporate-facilitator {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(52px, 7vw, 94px);
  align-items: center;
}
.corporate-facilitator figure {
  width: min(100%, 350px);
  max-width: 350px;
  margin: 0 auto;
  justify-self: center;
  overflow: visible;
  background: transparent;
}
.corporate-facilitator figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .corporate-facilitator {
    grid-template-columns: 1fr;
  }
  .corporate-facilitator figure {
    width: min(62vw, 340px);
  }
}

@media (max-width: 650px) {
  .corporate-facilitator figure {
    width: min(76vw, 300px);
  }
}
