:root {
  --ink: #1c2221;
  --muted: #606863;
  --line: #dde2de;
  --paper: #fff;
  --wash: #f4f6f3;
  --purple: #7040a3;
  --green: #245d4a;
  --gutter: 4%;
  --header-height: 88px;
  font-family:
    Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
button svg,
a svg {
  flex-shrink: 0;
}
svg.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  line-height: 1.9;
}
h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}
h3 {
  font-size: 26px;
  line-height: 1.5;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
::selection {
  background: #e1d4ed;
}
[hidden] {
  display: none !important;
}
.page-width {
  width: 92%;
  max-width: 1760px;
  margin-inline: auto;
}
.section-space {
  padding-block: 104px;
}
.eyebrow {
  font:
    600 11px/1.5 Arial,
    sans-serif;
  margin-bottom: 27px;
  color: var(--muted);
}
.mobile-only {
  display: none;
}
.accent-square {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--purple);
  margin-right: 10px;
  vertical-align: 1px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: transparent;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  width: fit-content;
}
.text-link svg {
  width: 17px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  min-height: 56px;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s;
  width: fit-content;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  background: #fff;
}
.skip-link:focus {
  top: 12px;
}
.anchor-alias {
  position: absolute;
  top: 0;
}
.site-header {
  height: var(--header-height);
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 226, 222, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  width: 132px;
  flex: none;
}
.brand img {
  width: 132px;
  height: 53px;
  object-fit: contain;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 38px;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a {
  position: relative;
  padding-block: 12px;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  width: 0;
  transition: width 0.2s;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 0 12px 32px;
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  background: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 6% 24px;
  box-shadow: 0 12px 20px #00000008;
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.hero {
  position: relative;
  height: min(730px, calc(100svh - 162px));
  min-height: 540px;
  isolation: isolate;
  overflow: hidden;
  background: #e9eeec;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #f5f7f7a6, transparent 70%);
  pointer-events: none;
}
.hero-content {
  padding-top: 70px;
}
.hero .eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.42;
  font-weight: 600;
}
.hero-message {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}
.hero-description {
  margin-top: 13px;
  font-size: 15px;
  color: #414c47;
  line-height: 1.9;
}
.hero .button {
  margin-top: 28px;
}
.hero-bottom {
  position: absolute;
  bottom: 22px;
  left: 4%;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: #414c47;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #202825;
}
.hero-bottom svg {
  width: 15px;
  height: 15px;
}
.field-band {
  border-bottom: 1px solid var(--line);
}
.field-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.field-links a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  min-height: 76px;
  padding-inline: 28px;
  border-left: 1px solid var(--line);
  transition: background 0.2s;
}
.field-links a:first-child {
  padding-left: 0;
  border: 0;
}
.field-links a:last-child {
  padding-right: 0;
}
.field-links a > span {
  color: #7e8781;
  font-size: 11px;
  font-weight: 400;
}
.field-links small {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.field-links svg {
  margin-left: auto;
  width: 17px;
}
.field-links a:hover {
  background: var(--wash);
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.intro-copy {
  font-size: 16px;
  padding-top: 44px;
  max-width: 620px;
}
.intro-copy p + p {
  margin-top: 22px;
  color: var(--muted);
}
.products {
  position: relative;
  background: var(--wash);
  border-top: 1px solid #ebeeea;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 44px;
}
.section-heading h2 {
  font-size: 36px;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 7px;
  max-width: 460px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cdd5ce;
  margin-bottom: 36px;
  gap: 20px;
}
.filters {
  display: flex;
  gap: 32px;
}
.filters button {
  font-size: 13px;
  font-weight: 600;
  background: none;
  padding: 19px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  min-height: 50px;
}
.filters button span {
  font-size: 10px;
  margin-left: 9px;
  color: #767f79;
  font-weight: 400;
}
.filters button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
}
.filters button[aria-pressed="false"] {
  color: #6c756e;
}
.filters button:hover {
  color: var(--purple);
}
#product-count {
  font:
    11px Arial,
    sans-serif;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 28px;
}
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid #d4dcd4;
}
.product-visual {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e3e8e4;
  border-radius: 4px;
  padding: 0;
  text-align: left;
}
.product-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.3, 1);
}
a.product-visual:hover > img,
button.product-visual:hover > img {
  transform: scale(1.035);
}
.visual-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 9px;
  padding: 3px 7px;
  color: #4d5751;
  border-radius: 2px;
  line-height: 1.5;
}
.card-arrow {
  display: grid;
  place-items: center;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
}
.card-arrow svg {
  width: 17px;
}
.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 23px;
  margin-bottom: 11px;
  font-size: 11px;
  color: #69736d;
  min-height: 22px;
}
.category-tag {
  color: #615177;
  background: #eae5f0;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 10px;
}
.medical-tag {
  color: #2e6252;
  background: #dfeee5;
}
.entertainment-tag {
  color: #5e6132;
  background: #e9eccf;
}
.product-card h3 {
  font-family: Arial, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-card > p {
  color: #626c65;
  font-size: 14px;
  line-height: 1.9;
  max-width: 95%;
  margin-bottom: 22px;
}
.product-card > .text-link,
.product-card > .product-status {
  margin-top: auto;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-top: auto;
}
.product-actions .text-link {
  min-height: 44px;
  gap: 12px;
}
.product-status {
  font-size: 11px;
  color: #757e78;
  border-bottom: 1px solid #bbc4bd;
  line-height: 2;
}
.medical-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #285c4b;
  background: #dfebe4;
}
.medical-visual > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}
.medical-visual > strong {
  font-size: 32px;
  font-weight: 500;
}
.medical-visual > span {
  font-size: 11px;
}
.medical-lines {
  display: flex;
  width: 66%;
  gap: 6px;
  margin-top: 13px;
}
.medical-lines b {
  height: 3px;
  background: #b9d0c1;
  flex: 1;
}
.medical-lines b:nth-child(2) {
  background: #568b6c;
}
.konami-visual > img {
  object-position: center 30%;
}
.proof-visual {
  background: #252e2a;
  color: #e9eee9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9%;
  gap: 18px;
}
.proof-kicker {
  font:
    10px Arial,
    sans-serif;
  color: #b9c4ba;
}
.proof-visual > strong {
  font:
    500 30px/1.2 Arial,
    sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.proof-visual strong > span {
  font-size: 20px;
  color: #d7e5a1;
}
.proof-track {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7e5a1;
  font:
    10px Arial,
    sans-serif;
}
.proof-track b {
  height: 1px;
  background: #7a876a;
  flex: 1;
}
.proof-track span {
  border: 1px solid #738368;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}
.proof-subtitle {
  font-size: 10px;
  color: #bac6bb;
}
.product-footnote {
  margin-top: 32px;
  font-size: 11px;
  color: #717a74;
}
.approach {
  background: #222b27;
  color: #edf0eb;
  position: relative;
}
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.approach .eyebrow {
  color: #b6c4b8;
}
.approach-title > p:not(.eyebrow) {
  color: #b9c6bd;
  font-size: 14px;
  margin-top: 26px;
}
.approach-signature {
  display: block;
  margin-top: 60px;
  font:
    10px Arial,
    sans-serif;
  color: #bac79e;
}
.principles article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  gap: 18px;
  border-top: 1px solid #536057;
  padding: 28px 0;
}
.principles article:last-child {
  border-bottom: 1px solid #536057;
}
.principle-no {
  font:
    11px/2.4 Arial,
    sans-serif;
  color: #c3d999;
}
.principles h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.principles p {
  font-size: 13px;
  color: #bbc6be;
}
.principles svg {
  color: #c3d999;
  margin-top: 4px;
}
.studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.studio-copy {
  font-size: 14px;
  color: var(--muted);
  margin-top: 28px;
}
.studio-facts {
  margin: 0;
  padding-top: 6px;
}
.studio-facts > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.9;
}
.studio-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}
.studio-facts dt {
  color: #69736d;
}
.studio-facts dd {
  margin: 0;
}
.contact {
  background: #eaf0e8;
  border-block: 1px solid #d9e2d7;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact h2 {
  font-size: 38px;
}
.contact-layout > div > p:not(.eyebrow) {
  font-size: 14px;
  color: #626f63;
  margin-top: 23px;
}
.contact-detail {
  padding: 12px 0 12px 48px;
  border-left: 1px solid #bfcdbc;
}
.contact-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.contact-status > span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #657764;
}
.contact-detail .text-link {
  margin-top: 24px;
}
.footer {
  padding-block: 42px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer > p {
  font:
    600 23px Georgia,
    serif;
}
.footer > p > span {
  display: block;
  font:
    10px Arial,
    sans-serif;
  color: var(--muted);
  margin-top: 10px;
}
.footer nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
}
.footer nav a:last-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.footer small {
  font-size: 10px;
  color: var(--muted);
}
dialog {
  border: 0;
  padding: 0;
  border-radius: 6px;
  width: min(850px, 90%);
  max-height: 88svh;
  overflow: auto;
  color: var(--ink);
  box-shadow: 0 20px 80px #0004;
}
dialog::backdrop {
  background: #14231dcc;
  backdrop-filter: blur(6px);
}
dialog[open] {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
dialog > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.dialog-copy {
  padding: 55px 34px;
}
.dialog-copy h2 {
  font-size: 29px;
}
.dialog-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin: 24px 0;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #fff;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}
body.dialog-open {
  overflow: hidden;
}
@media (min-width: 1700px) {
  .hero-content {
    padding-top: 85px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-message {
    font-size: 22px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero .button {
    margin-top: 35px;
  }
  .section-space {
    padding-block: 120px;
  }
  .product-grid {
    gap: 55px 36px;
  }
  .product-card > p {
    max-width: 420px;
  }
}
@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }
  .site-header {
    gap: 24px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .header-contact {
    padding-left: 20px;
    gap: 12px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero-content {
    padding-top: 62px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero {
    min-height: 555px;
  }
  .field-links a {
    font-size: 13px;
    gap: 12px;
    padding-inline: 18px;
  }
  .field-links small {
    display: none;
  }
  .section-space {
    padding-block: 80px;
  }
  h2 {
    font-size: 34px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .intro,
  .approach-layout,
  .studio,
  .contact-layout {
    gap: 45px;
  }
  .intro-copy {
    font-size: 14px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 330px;
  }
  .product-grid {
    gap: 38px 20px;
  }
  .product-card h3 {
    font-size: 23px;
  }
  .product-card > p {
    font-size: 13px;
  }
  .proof-visual > strong {
    font-size: 23px;
  }
  .proof-visual > strong > span {
    font-size: 17px;
  }
  .proof-visual {
    gap: 13px;
  }
  .medical-visual > strong {
    font-size: 27px;
  }
  .medical-visual {
    gap: 6px;
  }
  .filters {
    gap: 23px;
  }
  .studio-facts > div {
    grid-template-columns: 94px 1fr;
  }
  .contact h2 {
    font-size: 32px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 6%;
    --header-height: 72px;
    scroll-padding-top: 94px;
  }
  .page-width {
    width: 88%;
  }
  .site-header {
    padding-inline: 6%;
    gap: 15px;
  }
  .brand,
  .brand img {
    width: 113px;
  }
  .brand img {
    height: 46px;
  }
  .desktop-nav {
    display: none;
  }
  .header-contact {
    margin-left: auto;
    font-size: 11px;
    border: 0;
    padding: 10px 0;
    gap: 9px;
  }
  .header-contact svg {
    width: 16px;
  }
  .menu-toggle {
    display: flex;
    flex: none;
  }
  .hero {
    height: 690px;
    min-height: 0;
    max-height: none;
  }
  .hero-photo {
    object-position: 70% bottom;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(248, 250, 249, 0.97) 0%,
      rgba(248, 250, 249, 0.91) 26%,
      rgba(248, 250, 249, 0.35) 47%,
      transparent 63%
    );
  }
  .hero-content {
    padding-top: 38px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 1.5;
  }
  .hero-message {
    font-size: 15px;
    margin-top: 18px;
  }
  .hero-message br {
    display: none;
  }
  .hero-description {
    font-size: 12px;
    margin-top: 11px;
    line-height: 1.9;
    max-width: 270px;
  }
  .hero .button {
    min-height: 48px;
    padding: 14px 18px;
    margin-top: 20px;
    font-size: 12px;
    gap: 30px;
  }
  .hero-bottom {
    left: 6%;
    bottom: 17px;
    color: #fff;
  }
  .hero-bottom a {
    color: #fff;
    font-size: 9px;
    text-shadow: 0 1px 4px #0006;
  }
  .hero-bottom > span {
    font-size: 8px;
    text-shadow: 0 1px 4px #0006;
  }
  .field-links {
    width: 100%;
  }
  .field-links a,
  .field-links a:first-child,
  .field-links a:last-child {
    padding: 16px 12px;
    min-height: 81px;
    position: relative;
    gap: 6px;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: center;
    font-size: 12px;
    line-height: 1.6;
  }
  .field-links a > span {
    width: 100%;
    font-size: 9px;
  }
  .field-links a > svg {
    position: absolute;
    top: 15px;
    right: 12px;
    width: 13px;
    height: 13px;
  }
  .field-links a:last-child {
    font-size: 10px;
  }
  .section-space {
    padding-block: 62px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 29px;
    line-height: 1.55;
  }
  .intro-copy {
    padding: 0;
    font-size: 14px;
  }
  .intro-copy p + p {
    margin-top: 16px;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .section-heading {
    display: block;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 19px;
    font-size: 12px;
  }
  .product-toolbar {
    display: block;
    margin-bottom: 27px;
    overflow: visible;
  }
  .filters {
    gap: 23px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #bbc5bc transparent;
  }
  .filters button {
    font-size: 12px;
    padding-block: 15px;
    flex-shrink: 0;
  }
  .filters button span {
    font-size: 9px;
    margin-left: 6px;
  }
  #product-count {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
  .product-visual {
    aspect-ratio: 4/3;
  }
  .product-card h3 {
    font-size: 20px;
  }
  .product-card > p {
    font-size: 12px;
    max-width: none;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .product-meta {
    font-size: 9px;
    gap: 6px;
    margin-top: 15px;
    margin-bottom: 8px;
    align-content: flex-start;
    min-height: 38px;
  }
  .category-tag {
    font-size: 9px;
  }
  .product-card {
    padding-bottom: 20px;
  }
  .product-card .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .product-status {
    font-size: 10px;
  }
  .visual-label {
    font-size: 8px;
    bottom: 7px;
    left: 7px;
    padding: 2px 4px;
  }
  .card-arrow {
    height: 27px;
    width: 27px;
    bottom: 7px;
    right: 7px;
  }
  .card-arrow svg {
    width: 14px;
  }
  .medical-visual > strong {
    font-size: 22px;
  }
  .medical-visual > svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
  }
  .medical-visual > span {
    display: none;
  }
  .medical-lines {
    margin-top: 8px;
  }
  .proof-visual > strong {
    font-size: 18px;
    display: block;
  }
  .proof-visual > strong > span {
    font-size: 12px;
    margin-left: 7px;
  }
  .proof-kicker {
    font-size: 7px;
  }
  .proof-visual {
    gap: 10px;
    padding: 10%;
  }
  .proof-track {
    gap: 4px;
    font-size: 8px;
  }
  .proof-track span {
    width: 18px;
    height: 18px;
  }
  .proof-subtitle {
    font-size: 8px;
  }
  .product-footnote {
    font-size: 10px;
    margin-top: 24px;
  }
  .approach-layout,
  .studio,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .approach-title > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 20px;
  }
  .approach-signature {
    display: none;
  }
  .principles article {
    padding-block: 23px;
    grid-template-columns: 22px 1fr 20px;
    gap: 12px;
  }
  .principles h3 {
    font-size: 18px;
  }
  .principles p {
    font-size: 12px;
  }
  .studio-copy {
    font-size: 13px;
    margin-top: 20px;
  }
  .studio-facts > div {
    grid-template-columns: 89px 1fr;
    gap: 15px;
    font-size: 12px;
    padding-block: 18px;
  }
  .contact h2 {
    font-size: 29px;
  }
  .contact-layout > div > p:not(.eyebrow) {
    font-size: 12px;
    margin-top: 17px;
  }
  .contact-detail {
    border-left: 0;
    border-top: 1px solid #bfcdbc;
    padding: 26px 0 0;
  }
  .contact-status {
    font-size: 13px;
  }
  .footer {
    padding-block: 32px;
    flex-wrap: wrap;
    gap: 25px;
  }
  .footer > p {
    font-size: 22px;
  }
  .footer nav {
    gap: 15px;
    font-size: 10px;
  }
  .footer nav a:last-child {
    height: 32px;
    width: 32px;
  }
  .footer nav svg {
    height: 16px;
    width: 16px;
  }
  .footer small {
    width: 100%;
    font-size: 9px;
  }
  dialog[open] {
    grid-template-columns: 1fr;
    width: min(460px, 90%);
  }
  dialog > img {
    height: 280px;
    object-position: center 30%;
  }
  .dialog-copy {
    padding: 28px;
  }
  .dialog-copy h2 {
    font-size: 27px;
  }
  .dialog-copy > p:not(.eyebrow) {
    margin-block: 18px;
  }
}
@media (max-width: 430px) {
  .hero {
    height: 665px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-photo {
    object-position: 69% bottom;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .product-visual {
    aspect-ratio: 16/10;
  }
  .product-meta {
    min-height: 0;
    font-size: 10px;
    margin-top: 19px;
  }
  .product-card h3 {
    font-size: 26px;
  }
  .product-card > p {
    font-size: 13px;
  }
  .product-card .text-link {
    font-size: 12px;
    gap: 20px;
  }
  .medical-visual > strong {
    font-size: 32px;
  }
  .medical-visual > span {
    display: block;
    font-size: 11px;
  }
  .medical-visual {
    gap: 10px;
  }
  .medical-visual > svg {
    width: 30px;
    height: 30px;
  }
  .proof-visual > strong {
    font-size: 29px;
    display: flex;
  }
  .proof-visual > strong > span {
    font-size: 22px;
  }
  .proof-kicker {
    font-size: 10px;
  }
  .proof-visual {
    gap: 20px;
  }
  .proof-track span {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .proof-subtitle {
    font-size: 10px;
  }
  .product-status {
    font-size: 11px;
  }
  .footer > p {
    width: 100%;
  }
  .footer nav {
    margin-left: 0;
    width: 100%;
  }
  .footer nav a:last-child {
    margin-left: auto;
  }
  .filters {
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 29px;
  }
  .header-contact {
    font-size: 10px;
    gap: 4px;
  }
  .site-header {
    gap: 8px;
  }
  .brand,
  .brand img {
    width: 100px;
  }
  .field-links a:last-child {
    font-size: 9px;
  }
  .hero-message {
    font-size: 13px;
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .hero-photo {
    object-position: 85% bottom;
  }
  .hero {
    height: 610px;
  }
  .hero::after {
    background: linear-gradient(90deg, #f5f7f7cf, transparent 85%);
  }
}
@media (max-width: 760px) {
  .hero {
    height: min(665px, calc(100svh - 148px));
    min-height: 505px;
    background: #f5f7f7;
  }
  .hero-photo {
    height: 70%;
    top: auto;
    bottom: 0;
    object-position: 100% bottom;
  }
  .hero::after {
    background: linear-gradient(
      180deg,
      #f5f7f7 0%,
      #f5f7f7 26%,
      #f5f7f777 42%,
      transparent 59%
    );
  }
  .filters {
    gap: 24px;
  }
  .filters button {
    font-size: 11px;
  }
  .filters button span {
    display: none;
  }
  .product-card > .text-link {
    min-height: 40px;
  }
  .hero-bottom a {
    background: #18251e80;
    padding: 5px 8px;
    border-radius: 2px;
  }
  .hero-bottom > span {
    align-self: flex-end;
  }
}
@media (max-width: 760px) and (max-height: 740px) {
  .hero-content {
    padding-top: 23px;
  }
  .hero h1 {
    font-size: 29px;
    line-height: 1.4;
  }
  .hero .eyebrow {
    margin-bottom: 14px;
  }
  .hero-message {
    font-size: 12px;
    margin-top: 13px;
  }
  .hero-description {
    font-size: 11px;
    margin-top: 8px;
    line-height: 1.75;
  }
  .hero .button {
    margin-top: 14px;
    min-height: 43px;
    padding-block: 12px;
  }
  .hero-photo {
    height: 65%;
  }
}
@media (max-width: 760px) {
  .hero-photo {
    mask-image: linear-gradient(180deg, transparent, #000 32%);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 32%);
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
