:root {
  --paper: #f5f0e8;
  --paper-deep: #eae2d7;
  --ink: #252421;
  --muted: #716e68;
  --sage: #b7c3b0;
  --sage-dark: #435047;
  --clay: #756354;
  --taupe: #c5b8a8;
  --surface-text: #3e453c;
  --line: rgba(37, 36, 33, 0.18);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Avenir Next, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 640px;
  padding: 160px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  grid-template-areas: "title art";
  align-items: center;
  column-gap: 80px;
  row-gap: 0;
}

.hero-meta {
  grid-area: meta;
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 {
  grid-area: title;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  font-size: clamp(72px, 8.3vw, 126px);
  text-align: center;
}

.hero h1.hero-title-long {
  font-size: clamp(58px, 6.6vw, 98px);
  line-height: 0.98;
}

.hero-focus {
  margin: -10px 0 30px;
  color: var(--sage-dark);
  font-size: 13px;
}

em {
  color: var(--clay);
  font-weight: 400;
}

.hero-lead {
  max-width: 560px;
  margin: 36px 0 0;
  color: #4f4d48;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 184px;
  gap: 26px;
  padding: 15px 20px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: #fff;
  background: var(--sage-dark);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 30px rgba(37, 36, 33, 0.14);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.hero-facts {
  display: flex;
  gap: 28px;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.hero-facts span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.hero-art {
  grid-area: art;
  position: relative;
  min-height: 0;
}

.hero-art > svg {
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(63, 57, 48, 0.08));
}

.hero-photo {
  width: min(100%, 320px);
  height: auto;
  aspect-ratio: 8 / 5;
  margin: 0 auto 28px;
  border-radius: 8px;
  object-fit: cover;
  object-position: 65% 55%;
}

.art-wash {
  fill: #ded8c9;
}

.art-line {
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-width: 2.2;
}

.art-line-back {
  stroke: var(--clay);
  opacity: 0.58;
}

.hero-art circle {
  fill: var(--clay);
}

.art-caption {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 22px 0 0;
  border-top: 1px solid var(--ink);
  text-align: center;
}

.art-caption span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.art-caption p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

@media (min-width: 981px) {
  .hero-art {
    align-self: stretch;
    contain: size;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .hero-photo {
    justify-self: center;
    align-self: start;
    width: auto;
    max-width: 320px;
    height: 100%;
    max-height: 200px;
    min-height: 0;
    margin: 0;
  }

  .art-caption {
    align-self: end;
  }
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(102, 116, 105, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -290px;
  right: -180px;
  width: 730px;
  height: 730px;
}

.hero-orbit-two {
  bottom: -180px;
  left: -160px;
  width: 430px;
  height: 430px;
}

.section {
  padding: 140px 0;
}

.intro {
  position: relative;
  padding-block: 125px;
  color: var(--ink);
  background: var(--sage);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
}

.intro .section-index {
  color: #c8b9a8;
}

.intro h2 {
  max-width: 830px;
  margin-inline: auto;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  text-align: center;
}

.intro h2 em {
  color: #d7b39f;
}

.intro-body {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  margin-top: 0;
}

.intro-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.intro-text h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
}

.intro-text em {
  color: inherit;
}

.intro-text > p {
  max-width: 620px;
  margin: 0;
  color: var(--surface-text);
  font-family: var(--serif);
  font-size: 21px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 80px;
}

.section-heading h2,
.about h2,
.approach h2,
.contact h2 {
  font-size: clamp(52px, 6vw, 84px);
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

.area-list {
  border-top: 1px solid var(--line);
}

.areas.section {
  padding-top: 24px;
}

.areas h2.areas-heading {
  margin-bottom: 52px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  text-align: center;
}

.area-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  min-height: 184px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.area-number {
  align-self: start;
  padding-top: 39px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.area-title-wrap {
  display: flex;
  align-items: center;
  gap: 26px;
}

.area-title-wrap svg {
  flex: 0 0 58px;
  width: 58px;
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.area-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.area-row > p,
.area-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.area-description p {
  margin: 0 0 18px;
}

.area-description p:last-child {
  margin-bottom: 0;
}

.treatment-list {
  margin: 0;
  padding-left: 1.25em;
}

.treatment-list li + li {
  margin-top: 6px;
}

.treatment-list + p {
  margin-top: 18px;
}

.area-perinatal {
  align-items: start;
  padding-block: 44px;
}

.about {
  color: var(--ink);
  background: var(--sage);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 120px;
}

.about .eyebrow {
  color: var(--surface-text);
}

.about h2 em {
  color: #d7b39f;
}

.about-professional-title {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.about-name {
  display: block;
  font-size: clamp(28px, 3.4vw, 44px);
  white-space: nowrap;
}

.about-portrait {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-deep);
}

.about-portrait img {
  position: absolute;
  bottom: 0;
  left: -4%;
  width: 140%;
  max-width: none;
  height: auto;
}

.about-copy {
  padding-top: 46px;
}

.about-copy p {
  max-width: 650px;
  color: var(--surface-text);
}

.about-copy > p:first-child {
  margin-top: 0;
}

.credentials {
  max-width: 700px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.credentials summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

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

.credentials summary span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.credentials[open] summary span {
  transform: rotate(45deg);
}

.credentials-body {
  padding-bottom: 28px;
}

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

.credentials li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 25px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credentials time {
  color: #d7b39f;
  font-family: var(--serif);
  font-style: italic;
}

.credentials li span {
  color: rgba(248, 244, 237, 0.7);
  font-size: 13px;
}

.approach {
  overflow: hidden;
  padding-bottom: 72px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 120px;
}

.approach-visual {
  position: relative;
  min-height: 580px;
}

.approach-visual.approach-image {
  min-height: 0;
}

.approach-image img {
  width: min(100%, 460px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.approach-circle {
  position: absolute;
  border: 1px solid rgba(67, 80, 71, 0.32);
  border-radius: 50%;
}

.circle-large {
  top: 0;
  left: -80px;
  width: 540px;
  height: 540px;
}

.circle-medium {
  top: 78px;
  left: 0;
  width: 380px;
  height: 380px;
}

.circle-small {
  top: 160px;
  left: 84px;
  width: 216px;
  height: 216px;
  background: var(--paper-deep);
}

.approach-visual svg {
  position: absolute;
  top: 73px;
  left: 17px;
  width: 400px;
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-width: 2;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
}

.approach-copy h2 {
  margin-bottom: 42px;
  text-align: center;
}

blockquote {
  position: relative;
  max-width: 650px;
  margin: 48px 0 0;
  padding: 28px 0 0 44px;
  border-top: 1px solid var(--line);
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 31px);
  font-style: italic;
  line-height: 1.4;
}

blockquote::before {
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--clay);
  content: "“";
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.contact {
  padding-top: 20px;
}

.contact-wrap {
  padding: 86px 82px 72px;
  color: var(--ink);
  background: var(--taupe);
  border-radius: 2px;
}

.contact .eyebrow {
  color: var(--surface-text);
}

.contact h2 em {
  color: #f0dbcf;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0;
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.contact-grid article {
  min-height: 210px;
  padding: 32px 34px 20px 0;
}

.contact-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.contact-icon {
  display: inline-block;
  margin-bottom: 24px;
  color: #f0dbcf;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.contact-grid h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.contact-grid p {
  margin: 0;
  color: var(--surface-text);
  font-size: 14px;
}

.contact-grid small {
  color: var(--surface-text);
  font-size: 11px;
}

.contact-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-note p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.contact-links a {
  width: fit-content;
  max-width: 100%;
  padding-block: 4px;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.contact-links a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-footer {
  padding: 88px 0 28px;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 60px;
  height: 60px;
}

.footer-top > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .main-nav {
    gap: 20px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid,
  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas: "title" "art";
    gap: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-art {
    max-width: 560px;
    min-height: 0;
    margin: 28px auto 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .area-row {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 22px;
  }

  .about-grid {
    gap: 25px;
  }

  .about-portrait {
    width: min(100%, 280px);
    margin-top: 28px;
  }

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

  .approach-grid {
    gap: 40px;
  }

  .approach-visual {
    min-height: 490px;
  }

  .contact-wrap {
    padding-inline: 45px;
  }

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

  .contact-note {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

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

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

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

  .professional-title {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
  }

  .brand {
    gap: 8px;
  }

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

  .menu-toggle {
    flex: 0 0 44px;
    position: relative;
    z-index: 102;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 90px 34px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
  }

  .nav-cta {
    padding: 10px 18px;
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-last-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.sr-only):last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 76px;
  }

  .hero-grid {
    display: block;
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .hero h1.hero-title-long {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 44px;
  }

  .hero-art {
    max-width: none;
    min-height: 0;
    margin-top: 28px;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 3 / 1;
  }

  .art-caption {
    width: min(100%, 320px);
  }

  .section {
    padding: 88px 0;
  }

  .approach {
    padding-bottom: 48px;
  }

  .intro {
    padding-block: 84px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro h2 {
    font-size: 46px;
  }

  .intro-body {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
  }

  .intro-logo {
    max-width: 190px;
    margin-inline: auto;
  }

  .intro-text > p {
    font-size: 18px;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .section-heading h2,
  .about h2,
  .approach h2,
  .contact h2 {
    font-size: 48px;
  }

  .area-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0;
  }

  .area-number {
    padding-top: 4px;
  }

  .area-title-wrap {
    align-items: flex-start;
    gap: 16px;
  }

  .area-title-wrap svg {
    flex-basis: 44px;
    width: 44px;
  }

  .area-row h3 {
    font-size: 27px;
  }

  .area-row > p,
  .area-description {
    grid-column: 1;
    padding-left: 0;
  }

  .about-grid {
    gap: 38px;
  }

  .credentials li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .approach-visual {
    min-height: 330px;
  }

  .approach-visual.approach-image img {
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .circle-large {
    left: -80px;
    width: 350px;
    height: 350px;
  }

  .circle-medium {
    top: 50px;
    left: -25px;
    width: 250px;
    height: 250px;
  }

  .circle-small {
    top: 104px;
    left: 30px;
    width: 140px;
    height: 140px;
  }

  .approach-visual svg {
    top: 37px;
    left: -18px;
    width: 280px;
  }

  blockquote {
    padding-left: 35px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-wrap {
    width: 100%;
    padding: 72px 24px 45px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .contact-grid article {
    min-height: auto;
    padding: 26px 0;
  }

  .contact-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-note {
    grid-column: auto;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 38px;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .footer-top > p {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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