@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Nunito:wght@600;700;800;900&display=swap");

:root {
  --font-sans: "DM Sans";
  --font-display: "Nunito";
  --blue: #3e6fc5;
  --blue-dark: #2856a5;
  --brand-cyan: #00b2db;
  --apricot: #ffb968;
  --pink: #eeb8bd;
  --pink-pale: #f4d3d4;
  --blue-pale: #b9d5ee;
  --yellow-dim: #e7c66b;
  --cream: #fff7eb;
  --paper: #fffbf3;
  --ink: #214b83;
  --ink-deep: #173d70;
  --muted: #65738a;
  --line: rgba(33, 75, 131, 0.17);
  --radius: 1.75rem;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 22px 60px rgba(74, 76, 63, 0.12);
  --fs-xs: .75rem;
  --fs-sm: .875rem;
  --fs-base: 1rem;
  --fs-lead: 1.25rem;
  --fs-card: 2rem;
  --fs-section: 4rem;
  --fs-display: 5.25rem;
}

.service-hero {
  background: var(--service-bg);
  color: var(--service-ink);
}

.service-hero .subhero__lead {
  color: color-mix(in srgb, var(--service-ink) 72%, transparent);
}

.hero-composition {
  position: relative;
  justify-self: end;
  align-self: stretch;
  width: min(430px, 100%);
  min-height: 500px;
}

.hero-shape {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: absolute;
  z-index: 1;
  top: var(--shape-y);
  left: var(--shape-x);
  display: grid;
  width: var(--shape-width, var(--shape-size));
  height: var(--shape-height, var(--shape-size));
  place-items: center;
  border-radius: 50%;
  background: var(--shape-color);
  color: var(--shape-text-color, white);
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  transform: translate(calc(-50% + var(--pointer-x)), calc(-50% + var(--pointer-y)));
  transition: transform .65s cubic-bezier(.2, .8, .2, 1);
  animation: bubble-float 8s ease-in-out infinite;
}

.hero-shape--noodle,
.hero-shape--noodle-small {
  top: auto;
  bottom: 0;
  border-radius: calc(var(--shape-width, var(--shape-size)) / 2) calc(var(--shape-width, var(--shape-size)) / 2) 0 0;
  transform: translate(calc(-50% + var(--pointer-x)), 0);
  transform-origin: center bottom;
  animation: shape-breathe 9s ease-in-out infinite;
}

.hero-shape--noodle-small {
  z-index: 2;
  animation-duration: 7.5s;
  animation-direction: reverse;
}

.hero-shape--ring {
  border: 2px solid var(--shape-color);
  background: transparent;
}

.hero-shape--label {
  padding: 1rem;
  line-height: 1.1;
}

.hero-shape--image {
  overflow: hidden;
  background: transparent;
}

.hero-shape--image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.info-section {
  padding-bottom: 7rem;
  background: var(--paper);
}

.footer__brand {
  display: block;
  width: 190px;
}

.home-story__image img,
.gallery figure>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story__image picture,
.gallery figure>picture,
.hero-shape--image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery figure>picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figure {
  position: relative;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-composition {
    min-height: 440px;
  }
}

/* Kirby service-template corrections, kept after the migrated legacy rules */
.service-hero {
  align-items: flex-end;
  padding-bottom: 0;
}

.subhero.service-hero {
  align-items: flex-end;
  padding-bottom: 0;
}

.service-hero .subhero__grid {
  align-items: end;
}

.service-hero .subhero__copy {
  padding-bottom: 6rem;
}

.service-hero .hero-composition {
  align-self: end;
  height: 500px;
  min-height: 500px;
}

.topic-section .topic-list div {
  display: flex;
  align-items: center;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.process-section+.info-section {
  margin-top: -8.5rem;
}

@media (max-width: 900px) {
  .process-section+.info-section {
    margin-top: -6rem;
  }

  .service-hero .subhero__copy {
    padding-bottom: 2rem;
  }

  .service-hero .hero-composition {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .service-hero .hero-composition {
    width: 430px;
    max-width: 100%;
    height: 380px;
    min-height: 380px;
    transform: scale(.76);
    transform-origin: left bottom;
  }

}

@media (max-width: 620px) {
  .hero-composition {
    min-height: 360px;
  }

  .footer__brand {
    width: 160px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
}

.themed-section {
  --ink: var(--section-ink);
  --ink-deep: var(--section-ink);
  --blue: var(--section-ink);
  --blue-dark: var(--section-ink);
  --brand-cyan: var(--section-accent);
  --apricot: var(--section-accent);
  --yellow-dim: var(--section-accent);
  --pink: var(--section-pale);
  --pink-pale: var(--section-pale);
  --blue-pale: var(--section-pale);
  --paper: var(--section-bg);
  --cream: var(--section-pale);
  --muted: color-mix(in srgb, var(--section-ink) 68%, transparent);
  --line: color-mix(in srgb, var(--section-ink) 17%, transparent);
  background: var(--section-bg) !important;
  color: var(--section-ink) !important;
}

.themed-section .eyebrow {
  color: var(--section-accent);
}

.themed-section .topic-list div,
.themed-section .process-cards article,
.themed-section .info-banner {
  background: var(--section-pale);
}

.themed-section .button--primary {
  background: var(--section-accent);
  color: var(--section-ink);
}

.themed-section.contact address {
  background: var(--section-pale);
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

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

.section {
  padding: 8.5rem 0;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--blue-dark);
  font-size: var(--fs-xs);
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: var(--fs-display);
}

h2 {
  font-size: var(--fs-section);
}

h3,
h4,
p {
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .85rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

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

.button--primary {
  background: var(--apricot);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--section-accent) 50%, transparent);
}

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

.button--outline {
  border-color: var(--ink);
}

.button--secondary {
  gap: .65rem;
  border-color: currentColor;
  background: transparent;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.service-cta .button--secondary:hover,
.service-cta .button--secondary:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
}

.button__icon {
  display: block;
  width: 1rem;
  height: 1rem;
  line-height: 0;
}

.button__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.button__icon--back {
  transform: rotate(180deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.reveal {
  animation: rise .7s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
}

.header__inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: block;
  width: 230px;
}

.themed-logo {
  display: block;
  line-height: 0;
}

.themed-logo svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.footer__logo {
  width: 190px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: var(--fs-sm);
  font-weight: 800;
}

.nav>a:not(.nav__cta) {
  position: relative;
  padding: .2rem 0;
  transition: color .2s ease;
}

.nav>a:not(.nav__cta)::after,
.nav-dropdown>button::after {
  position: absolute;
  right: 0;
  bottom: .2rem;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav>a:not(.nav__cta):hover::after,
.nav>a:not(.nav__cta):focus-visible::after,
.nav-dropdown>button:hover::after,
.nav-dropdown>button:focus-visible::after,
.nav-dropdown>button[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: .65rem 1.1rem;
  transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>button {
  position: relative;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .2rem 0;
  border: 0;
  background: none;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.nav-dropdown__chevron {
  width: .75rem;
  height: .5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.nav-dropdown>button[aria-expanded="true"] .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + .7rem);
  left: 50%;
  width: 330px;
  padding: .7rem .7rem .7rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--site-paper, #fffbf3);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -5px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown__menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: .8rem;
  content: "";
}

.nav-dropdown__menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  display: block;
  padding: .85rem !important;
  border-radius: .8rem;
  font-size: var(--fs-sm);
  line-height: 1.25;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: var(--cream);
}

.nav-dropdown__menu a span {
  color: var(--brand-cyan);
  font-size: var(--fs-xs);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 0;
  background: var(--service-bg, var(--cream));
  color: var(--service-ink, var(--ink));
}

.hero__wash {
  position: absolute;
  width: 58vw;
  height: 58vw;
  left: -27vw;
  top: 8rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-accent, var(--page-accent)) 20%, transparent);
  filter: blur(2px);
  transform-origin: center;
  animation: wash-drift 15s ease-in-out infinite alternate;
}

.hero__grid {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: stretch;
  gap: 5vw;
}

.hero__copy {
  align-self: center;
  padding: 2rem 0 5rem;
}

.hero h1 em {
  color: var(--brand-cyan);
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 2rem 0 2.35rem;
  color: color-mix(in srgb, var(--service-ink, var(--ink)) 72%, transparent);
  font-size: var(--fs-lead);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero__visual {
  --noodle-x: 0px;
  --noodle-y: 0px;
  --bubble-x: 0px;
  --bubble-y: 0px;
  --dot-x: 0px;
  --dot-y: 0px;
  --ring-x: 0px;
  --ring-y: 0px;
  position: relative;
  min-height: 600px;
}

.hero__parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.hero__parallax--noodle {
  transform: translate3d(var(--noodle-x), 0, 0);
}

.hero__parallax--bubble {
  z-index: 2;
  transform: translate3d(var(--bubble-x), var(--bubble-y), 0);
}

.hero__parallax--apricot {
  z-index: 3;
  transform: translate3d(var(--dot-x), var(--dot-y), 0);
}

.hero__parallax--ring {
  z-index: 1;
  transform: translate3d(var(--ring-x), var(--ring-y), 0);
}

.hero__noodle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(340px, 92%);
  height: 475px;
  border-radius: 180px 180px 0 0;
  background: var(--pink-pale);
  box-shadow: var(--shadow);
  transform-origin: center bottom;
  animation: shape-breathe 9s ease-in-out infinite;
}

.hero__bubble {
  position: absolute;
  left: -3%;
  bottom: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: var(--shadow);
  animation: bubble-float 7.5s ease-in-out infinite;
}

.hero__dot {
  position: absolute;
  top: 10%;
  right: -2%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--apricot);
  animation: dot-float 6.5s ease-in-out infinite;
}

.hero__ring {
  position: absolute;
  top: 27%;
  left: -8%;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(62, 111, 197, .35);
  border-radius: 50%;
  animation: ring-float 8s ease-in-out infinite;
}

@keyframes shape-breathe {

  0%,
  100% {
    scale: 1 1;
  }

  50% {
    scale: 1.018 1.025;
  }
}

@keyframes bubble-float {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 8px -14px;
  }
}

@keyframes dot-float {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: -7px 11px;
  }
}

@keyframes ring-float {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 9px 7px;
  }
}

@keyframes wash-drift {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, -1.5%, 0) scale(1.025);
  }

  100% {
    transform: translate3d(0, 2%, 0) scale(.985);
  }
}

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

.section-heading h2 {
  max-width: 760px;
}

.intro__heading {
  display: block;
  margin-bottom: 5rem;
}

.intro__heading .eyebrow {
  margin-bottom: 1.25rem;
}

.intro__heading h2 {
  max-width: 900px;
  font-size: var(--fs-section);
}

.intro__profile {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 1.25rem;
  align-items: stretch;
}

.intro__identity {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pink-pale);
}

.intro__identity picture,
.intro__identity img {
  display: block;
  width: 100%;
  height: 100%;
}

.intro__identity img {
  object-fit: cover;
}

.intro__name {
  margin-bottom: .85rem;
  font-family: var(--font-display);
  font-size: var(--fs-card);
  font-weight: 850;
  line-height: 1.05;
}

.intro__identity p {
  max-width: 420px;
  color: var(--muted);
  margin-bottom: 20px;
}

.intro__identity strong {
  max-width: 440px;
  margin-top: 0px;
  font-family: var(--font-display);
  font-size: var(--fs-card);
  line-height: 1.25;
}

.intro__highlight {
  max-width: 620px;
  color: var(--section-ink);
  font-family: var(--font-display);
  font-size: var(--fs-card);
  line-height: 1.25;
}

.intro__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}

.team-hero {
  overflow: hidden;
}

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

.colleague {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: 5rem 0;
}

.colleague + .colleague {
  border-top: 1px solid var(--line);
}

.colleague:nth-child(even) .colleague__portrait {
  order: 2;
}

.colleague:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.colleague__portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pink-pale);
  box-shadow: var(--shadow);
}

.colleague__portrait picture,
.colleague__portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.colleague__portrait img {
  object-fit: cover;
}

.colleague__copy h2 {
  margin: .6rem 0 1.4rem;
  font-size: var(--fs-section);
}

.colleague__highlight {
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-weight: 800;
  line-height: 1.4;
}

.colleague__copy .prose {
  color: var(--muted);
}

.team-recruitment {
  background: var(--blue-dark);
  color: white;
}

.team-recruitment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.team-recruitment h2 {
  max-width: 520px;
  font-size: var(--fs-section);
}

.team-recruitment p {
  margin-bottom: 2rem;
  font-size: var(--fs-lead);
}

.team-recruitment .button--primary {
  background: var(--apricot);
  color: var(--ink-deep);
}

.article-section {
  background-color: var(--section-bg, var(--paper)) !important;
}

.article-copy {
  max-width: 820px;
  margin-right: auto;
}

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

.article-copy h2,
.article-copy h3 {
  margin: 4.5rem 0 1.5rem;
  color: var(--section-ink);
  font-family: var(--font-display);
  line-height: 1.1;
}

.article-copy h2 {
  font-size: clamp(2.3rem, 5vw, 3.75rem);
}

.article-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.article-copy p,
.article-copy li {
  color: color-mix(in srgb, var(--section-ink) 72%, transparent);
  font-size: var(--fs-base);
}

.article-copy p {
  margin-bottom: 1.7rem;
}

.article-copy ul,
.article-copy ol {
  margin: 1rem 0 1.75rem;
  padding-left: 1.4rem;
}

.article-copy li {
  margin-bottom: .2rem;
  padding-left: .35rem;
}

.article-copy li:last-child {
  margin-bottom: 0;
}

.article-copy li p {
  margin: 0;
}

.article-copy strong {
  color: var(--section-ink);
}

.topic-list__intro {
  max-width: 760px;
  margin-bottom: 3rem;
  color: var(--section-ink);
  font-family: var(--font-display);
  font-size: var(--fs-card);
  font-weight: 800;
  line-height: 1.25;
}

.topic-list__outro {
  max-width: 900px;
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--section-ink);
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-weight: 800;
  line-height: 1.4;
}

.intro__content {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  gap: 30px;
}

.large-copy {
  font-family: var(--font-display);
  font-size: var(--fs-card);
  font-weight: 700;
  line-height: 1.35;
}

.intro__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  color: var(--muted);
  font-size: var(--fs-base);
}

.credentials {
  display: grid;
  margin-top: auto;
}

.credential {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  font-weight: 750;
  line-height: 1.35;
}

.credential:last-child {
  padding-bottom: 0;
}

.credential__year {
  display: grid;
  width: 66px;
  height: 66px;
  place-content: center;
  border-radius: 50%;
  background: var(--apricot);
  font-family: var(--font-display);
  font-size: var(--fs-lead);
}

.services-overview {
  background: var(--brand-cyan);
  color: var(--ink-deep);
  padding-block: 7rem;
}

.services-overview .eyebrow {
  color: var(--ink-deep);
}

.services-overview .section-heading--split>p {
  color: var(--ink-deep);
  margin-bottom: 3px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 2.25rem;
  border-radius: var(--radius);
  color: var(--ink-deep);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(3, 47, 103, .2);
}

.service-card--blue {
  background: #dfe8f8;
}

.service-card--apricot {
  background: #f8d19d;
}

.service-card--pink {
  background: #f8e3e2;
}

.service-card__icon {
  display: block;
  width: 72px;
  height: 72px;
}

.service-card__icon svg,
.process-card__icon svg,
.info-banner__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card h3 {
  align-self: end;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: var(--fs-card);
  font-weight: 800;
  line-height: 1.08;
}

.service-card p {
  min-height: 3.4em;
  margin: 0 0 1rem;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.service-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(3, 47, 103, .2);
  font-size: var(--fs-sm);
  font-weight: 850;
}

.home-story {
  background: var(--paper);
}

.home-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;
}

.home-story__image {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pink);
}

.home-story__image img {
  object-fit: cover;
}

.home-story h2 {
  margin-bottom: 2rem;
}

.home-story p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 40px;
}

.services {
  background: var(--blue);
  color: white;
}

.services .eyebrow {
  color: var(--ink);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 3.75rem;
}

.section-heading--split>p {
  max-width: 430px;
  margin: 0;
  opacity: .8;
  line-height: 1.65;
  margin-bottom: 3px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, .42);
}

.service-row {
  border-bottom: 1px solid rgba(255, 255, 255, .42);
}

.service-row button {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  min-height: 105px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.service-row__number {
  font-size: var(--fs-xs);
  font-weight: 850;
  opacity: .7;
}

.service-row__title {
  font-family: var(--font-display);
  font-size: var(--fs-card);
}

.service-row__symbol {
  justify-self: end;
  font-size: var(--fs-card);
  font-weight: 300;
}

.service-row__panel {
  max-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 80px;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease, padding .3s ease;
}

.service-row--active .service-row__panel {
  max-height: 120px;
  padding-bottom: 1.8rem;
  opacity: 1;
}

.service-row__panel p {
  margin: 0;
  opacity: .82;
}

.service-row__panel a {
  font-weight: 850;
}

.consultation {
  background: var(--cream);
}

.consultation__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 9vw;
  align-items: start;
}

.consultation__sticky {
  position: sticky;
  top: 3rem;
}

.consultation__sticky p:not(.eyebrow) {
  margin: 2rem 0;
  color: var(--muted);
}

.consultation__detail {
  padding-top: .5rem;
}

.consultation__detail h3 {
  font-size: var(--fs-lead);
}

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 1.5rem 0 4rem;
}

.topic-grid span {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 2rem;
  border-radius: 1rem;
  background: white;
  font-size: var(--fs-sm);
  font-weight: 750;
}

.topic-grid span::before {
  content: "";
  position: absolute;
  left: .85rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  transform: translateY(-50%);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process>div {
  padding: 1.4rem;
  border-top: 1px solid var(--ink);
}

.process span {
  color: var(--blue-dark);
  font-weight: 900;
}

.process h4 {
  margin: 1.5rem 0 .5rem;
  font-size: var(--fs-base);
}

.process p {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.online-note {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: var(--pink-pale);
  font-style: normal;
}

.online-note span {
  max-width: 350px;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.mother-circle {
  background: #f9e8d5;
}

.circle-intro {
  display: grid;
  grid-template-columns: 1.1fr .65fr;
  align-items: end;
  gap: 5rem;
  margin-bottom: 4rem;
}

.circle-intro>p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery--featured-left,
.gallery--featured-right {
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 240px 240px;
}

.gallery--featured-left .gallery__large {
  grid-row: 1 / 3;
}

.gallery--featured-right {
  grid-template-columns: .65fr 1.35fr;
}

.gallery--featured-right .gallery__large {
  grid-column: 2;
  grid-row: 1 / 3;
}

.gallery--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--pink);
}

.gallery img {
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: .5rem .8rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, .86);
  font-size: var(--fs-xs);
  font-weight: 800;
}

.circle-bottom {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.mother-logo {
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.circle-bottom p {
  max-width: 630px;
  margin: 0;
}

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

.eating__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 7vw;
  align-items: center;
}

.eating__visual {
  min-height: 470px;
  display: grid;
  place-content: center;
  border-radius: 48% 48% 34% 34%;
  background: var(--pink-pale);
  color: #9b5d66;
  text-align: center;
  transform: rotate(-2deg);
}

.eating__copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 2rem 0;
  color: var(--muted);
}

.principles {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: var(--ink);
  color: white;
}

.principles>.shell {
  position: relative;
  z-index: 1;
}

.principles__circles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.principles__circles span:nth-child(1) {
  top: -70px;
  right: 8%;
  width: 180px;
  height: 180px;
  background: var(--pink);
  animation: principles-float-a 9s ease-in-out infinite;
}

.principles__circles span:nth-child(2) {
  bottom: 9%;
  left: 4%;
  width: 72px;
  height: 72px;
  background: var(--apricot);
  animation: principles-float-b 7s ease-in-out infinite;
}

.principles__circles span:nth-child(3) {
  right: 3%;
  bottom: 14%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue-pale);
  animation: principles-float-c 8s ease-in-out infinite;
}

@keyframes principles-float-a {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 22px, 0);
  }
}

@keyframes principles-float-b {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(14px, -18px, 0);
  }
}

@keyframes principles-float-c {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-10px, -24px, 0);
  }
}

.principles .eyebrow {
  color: var(--apricot);
}

.principles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.principles__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.principles__grid li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
}

.contact h2 {
  margin-bottom: 2rem;
}

.contact p {
  max-width: 560px;
  color: var(--muted);
  margin-bottom: 30px;
}

.contact .button {
  margin-top: 1rem;
}

.contact address {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--page-bg) 82%, var(--page-pale));
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact address div {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.contact address div:last-child {
  padding-bottom: 0;
  border: 0;
}

.contact address span {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue-dark);
  font-size: var(--fs-xs);
  font-weight: 850;
  text-transform: uppercase;
}

.contact address a {
  font-weight: 850;
}

.contact address p {
  margin: 0;
  color: var(--ink);
}

.contact address .contact__map-button {
  width: fit-content;
  margin-top: 1rem;
}

.application-hero {
  position: relative;
  overflow: hidden;
  padding: 12rem 0 6rem;
  background: var(--service-bg, #dfe8f8);
  color: var(--service-ink, var(--ink));
}

.application-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: center;
  gap: 5vw;
}

.application-hero h1 {
  max-width: 850px;
  margin-bottom: 1.5rem;
}

.application-hero p:not(.eyebrow) {
  max-width: 650px;
  color: color-mix(in srgb, var(--service-ink, var(--ink)) 72%, transparent);
  font-size: var(--fs-lead);
}

.application-hero__circles {
  position: relative;
  width: min(430px, 100%);
  height: 300px;
  min-height: 300px;
}

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

.application-layout {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.application-layout>div>p:not(.eyebrow) {
  color: var(--muted);
}

.application-layout>div>.button {
  margin-top: 2rem;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.application-form-section.themed-section .contact-form {
  background: var(--section-pale);
  color: var(--section-ink);
}

.application-form-section.themed-section .contact-form input,
.application-form-section.themed-section .contact-form select,
.application-form-section.themed-section .contact-form textarea {
  background: var(--section-bg);
  color: var(--section-ink);
}

.application-form-section.themed-section .contact-form input:focus,
.application-form-section.themed-section .contact-form select:focus,
.application-form-section.themed-section .contact-form textarea:focus {
  border-color: var(--section-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--section-accent) 22%, transparent);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: .45rem;
}

.contact-form label>span {
  font-size: var(--fs-sm);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: .85rem;
  padding: .9rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62, 111, 197, .15);
}

.contact-form textarea {
  resize: vertical;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 1.5rem 0;
}

.form-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .2rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-status {
  min-height: 2rem;
  margin-top: 1rem;
  font-size: var(--fs-sm);
  font-weight: 750;
}

.form-status--success {
  color: #28734b;
}

.form-status--error {
  color: #a33a47;
}

.subhero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  display: flex;
  align-items: center;
  padding: 11rem 0 6rem;
}

.subhero--blue {
  background: #dfe8f8;
}

.subhero--consultation {
  align-items: flex-end;
  padding-bottom: 0;
}

.subhero--consultation .subhero__grid {
  align-items: end;
  margin-bottom: 0;
}

.subhero--consultation .subhero__copy {
  padding-bottom: 6rem;
}

.subhero--apricot {
  background: #f9ddb9;
}

.subhero--pink {
  background: var(--pink-pale);
}

.subhero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 6vw;
}

.subhero h1 {
  max-width: 850px;
  font-size: var(--fs-display);
}

.subhero__lead {
  max-width: 650px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: var(--fs-lead);
}

.subhero__shape {
  justify-self: end;
  width: min(370px, 35vw);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 48% 48% 34% 34%;
  background: var(--blue);
  color: white;
  text-align: center;
  transform: rotate(3deg);
}

.subhero__shape>span {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: 900;
  line-height: .7;
}

.subhero__shape small {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  text-transform: uppercase;
}

.subhero__shape--logo {
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
}

.subhero__shape--logo img {
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.subhero__shape--placeholder {
  background: var(--pink);
  color: #814b67;
}

.subhero__shape--placeholder>span {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.5;
}

.service-art {
  position: relative;
  justify-self: end;
  align-self: end;
  width: min(430px, 38vw);
  height: 500px;
}

.service-art__noodle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 225px;
  height: 440px;
  border-radius: 120px 120px 0 0;
  background: var(--blue);
  transform-origin: center bottom;
  animation: shape-breathe 9s ease-in-out infinite;
}

.service-art__noodle-small {
  position: absolute;
  z-index: 1;
  left: 180px;
  bottom: 0;
  width: 135px;
  height: 265px;
  border-radius: 75px 75px 0 0;
  background: var(--blue-pale);
  transform-origin: center bottom;
  animation: shape-breathe 7.5s ease-in-out infinite reverse;
}

.service-art__age {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 58px;
  width: 250px;
  height: 250px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink-deep);
  text-align: center;
  box-shadow: var(--shadow);
  animation: bubble-float 8s ease-in-out infinite;
}

.service-art__age strong {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  line-height: .9;
}

.service-art__age span {
  margin-top: .75rem;
  font-size: var(--fs-xs);
  font-weight: 900;
  text-transform: uppercase;
}

.service-art__dot {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 28px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--apricot);
  animation: dot-float 7s ease-in-out infinite;
}

.service-art__ring {
  position: absolute;
  top: 80px;
  left: 20px;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(0, 159, 195, .45);
  border-radius: 50%;
  animation: ring-float 9s ease-in-out infinite;
}

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

.content-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 9vw;
}

.content-grid aside {
  position: static;
}

.content-grid aside h2 {
  font-size: var(--fs-section);
}

.rich-copy>p:not(.large-copy) {
  color: var(--muted);
}

.rich-copy {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}

.topic-section {
  background: var(--cream);
}

.topic-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.topic-list div {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  min-height: 130px;
  padding: 1.5rem;
  border: 1.5px solid var(--section-accent);
  border-radius: 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.25;
  transform: translateY(0px);
  box-shadow: 0px 0px 0px var(--section-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-list div:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 0px var(--section-accent);
}

.topic-list span,
.process-cards>article>span,
.value-grid>article>span {
  color: var(--brand-cyan);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 900;
}

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

.process-cards,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-cards article,
.value-grid article {
  min-height: 285px;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--cream);
}

.process-cards h3,
.value-grid h3 {
  margin: 1rem 0 .75rem;
  font-family: var(--font-display);
  font-size: var(--fs-card);
  font-weight: 800;
}

.process-card__icon {
  display: block;
  width: 74px;
  height: 74px;
  margin-top: 0rem;
  color: var(--ink);
}

.process-cards p,
.value-grid p {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.process-cards__after {
  max-width: 820px;
  margin: 3rem 0 0;
  color: var(--muted);
}

.info-banner {
  display: grid;
  grid-template-columns: 64px .65fr 1.35fr;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 1.25rem;
  background: #dfe8f8;
}

.info-banner__icon {
  display: block;
  width: 64px;
  height: 64px;
  color: var(--ink);
}

.info-banner p {
  margin: 0;
  color: var(--muted);
}

.circle-gallery {
  padding-top: 0;
  background: var(--paper);
}

.circle-values {
  background: #f9e8d5;
}

.circle-values .eyebrow {
  margin-bottom: 2.5rem;
}

.value-grid article {
  background: var(--paper);
}

.coming-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 2rem;
}

.coming-list span {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--pink-pale);
  font-weight: 750;
}

.service-cta {
  padding: 6rem 0;
  background: var(--ink);
  color: white;
}

.service-cta .eyebrow {
  color: var(--apricot);
}

.service-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  row-gap: 1.75rem;
}

.service-cta__inner h2 {
  font-size: var(--fs-section);
}

.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: var(--fs-xs);
  font-weight: 750;
}

.footer__inner p {
  margin: 0;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 700px);
    --fs-card: 1.75rem;
    --fs-section: 3.25rem;
    --fs-display: 4.25rem;
  }

  .section {
    padding: 6rem 0;
  }

  .menu-toggle {
    z-index: 3;
    width: 54px;
    height: 54px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--ink);
    border-radius: 50%;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
  }

  .menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s ease;
  }

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

  .nav>a {
    font-family: var(--font-display);
    font-size: var(--fs-card);
    font-weight: 800;
  }

  .nav__cta {
    font-family: var(--font-sans) !important;
    font-size: var(--fs-base) !important;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown>button {
    font-family: var(--font-display);
    font-size: var(--fs-card);
    font-weight: 800;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown__menu::before {
    content: none;
  }

  .nav-dropdown__menu--open {
    max-height: 230px;
    padding: .5rem 0;
    pointer-events: auto;
  }

  .nav-dropdown__menu a {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
  }

  .hero {
    min-height: auto;
    padding-top: 10rem;
  }

  .hero__grid,
  .intro__grid,
  .consultation__grid,
  .eating__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 3rem;
  }

  .hero__visual {
    min-height: 430px;
    height: 430px;
    width: 100%;
    max-width: 520px;
  }

  .hero__noodle {
    height: 390px;
    width: min(300px, 78%);
  }

  .hero__bubble {
    width: 220px;
    height: 220px;
    left: 2%;
  }

  .hero__dot {
    width: 64px;
    height: 64px;
    right: 2%;
  }

  .intro__grid {
    gap: 3rem;
  }

  .intro__heading {
    margin-bottom: 3rem;
  }

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

  .colleague,
  .team-recruitment__inner {
    grid-template-columns: 1fr;
  }

  .colleague:nth-child(even) .colleague__portrait {
    order: 0;
  }

  .intro__identity {
    min-height: 310px;
  }

  .section-heading--split,
  .circle-intro,
  .principles__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .service-card {
    min-height: 300px;
  }

  .home-story__grid,
  .subhero__grid,
  .content-grid,
  .application-hero__grid,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-hero__circles {
    justify-self: start;
    height: 280px;
    min-height: 280px;
  }

  .home-story__image {
    min-height: 0;
  }

  .subhero {
    min-height: auto;
  }

  .subhero__shape {
    justify-self: start;
    width: min(340px, 70vw);
  }

  .service-art {
    justify-self: start;
    width: min(430px, 100%);
    height: 470px;
  }

  .content-grid aside {
    position: static;
  }

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

  .consultation__sticky {
    position: static;
  }

  .circle-bottom {
    grid-template-columns: 120px 1fr;
  }

  .circle-bottom .text-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  :root {
    --fs-card: 1.625rem;
    --fs-section: 2.75rem;
    --fs-display: 3.25rem;
  }

  body {
    font-size: var(--fs-base);
  }

  .header__inner {
    min-height: 90px;
  }

  .brand {
    width: 175px;
  }

  h1 {
    font-size: var(--fs-display);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero__visual {
    min-height: 370px;
    height: 370px;
  }

  .hero__noodle {
    height: 340px;
    width: min(260px, 78%);
  }

  .hero__bubble {
    width: 170px;
    height: 170px;
    bottom: 8px;
  }

  .hero__dot {
    width: 50px;
    height: 50px;
  }

  .hero__ring {
    width: 58px;
    height: 58px;
    left: 0;
  }

  .hero__note {
    width: 118px;
    height: 118px;
    right: 0;
    font-size: var(--fs-sm);
  }

  .intro__columns,
  .topic-grid,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .intro__content {
    padding: 1.6rem;
  }

  .intro__identity {
    padding: 0;
  }

  .intro__columns {
    gap: 1rem;
  }

  .service-row button {
    grid-template-columns: 42px 1fr 32px;
    min-height: 90px;
  }

  .service-row__panel {
    display: block;
    padding-left: 42px;
  }

  .service-row--active .service-row__panel {
    max-height: 150px;
  }

  .service-row__panel p {
    margin-bottom: .5rem;
  }

  .online-note {
    flex-direction: column;
    gap: .5rem;
  }

  .gallery--featured-left,
  .gallery--featured-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 170px;
  }

  .gallery--featured-left .gallery__large,
  .gallery--featured-right .gallery__large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery--grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .circle-bottom {
    grid-template-columns: 90px 1fr;
  }

  .circle-bottom .mother-logo {
    width: 90px;
    height: 90px;
  }

  .eating__visual {
    min-height: 360px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .service-art {
    height: 380px;
  }

  .service-art__noodle {
    width: 175px;
    height: 340px;
  }

  .service-art__age {
    bottom: 38px;
    width: 190px;
    height: 190px;
  }

  .service-art__dot {
    width: 52px;
    height: 52px;
  }

  .process-cards,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .process-cards article,
  .value-grid article {
    min-height: 240px;
  }

  .info-banner {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

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

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

  .service-cta__inner .text-link {
    grid-column: auto;
  }

  .service-cta__inner>.button {
    justify-self: start;
    margin-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
