:root {
  --color-ink: #111111;
  --color-muted: #666666;
  --color-line: #e8e5df;
  --color-surface: #f8f7f3;
  --color-soft: #efebe3;
  --color-accent: #8a7359;
  --color-accent-dark: #5e503f;
  --color-white: #ffffff;
  --font-latin: "Merriweather Sans", "Poppins", Arial, sans-serif;
  --font-ko: "Noto Sans KR", "Merriweather Sans", Arial, sans-serif;
  --font-ja: "Noto Sans JP", "Merriweather Sans", Arial, sans-serif;
  --font-zh: "Noto Sans SC", "Merriweather Sans", Arial, sans-serif;
  --font-sans: var(--font-latin);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-style: normal;
  line-height: 1.65;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

html:lang(ko-KR),
html:lang(ko) {
  --font-sans: var(--font-ko);
}

html:lang(ja) {
  --font-sans: var(--font-ja);
}

html:lang(zh-CN),
html:lang(zh) {
  --font-sans: var(--font-zh);
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  color: var(--color-white);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
.site-header:focus-within {
  color: var(--color-ink);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(20, 18, 16, 0.08);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 20px 0 18px;
}

.site-header-top {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.site-brand {
  position: relative;
  justify-self: center;
  width: min(240px, 42vw);
}

.site-brand img {
  width: 100%;
  height: auto;
  transition: opacity 180ms ease;
}

.site-logo-light {
  position: absolute;
  inset: 0;
}

.site-logo-dark {
  opacity: 0;
}

.site-logo-light {
  opacity: 1;
}

.site-header.is-scrolled .site-logo-dark,
.site-header:focus-within .site-logo-dark {
  opacity: 1;
}

.site-header.is-scrolled .site-logo-light,
.site-header:focus-within .site-logo-light {
  opacity: 0;
}

.site-brand .custom-logo-link,
.site-brand .custom-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-header-language {
  position: relative;
  z-index: 35;
  justify-self: end;
}

.site-navigation,
.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-menu,
.language-menu,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a,
.language-switcher a {
  position: relative;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-menu a::after,
.language-switcher a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-menu a:hover::after,
.language-switcher a:hover::after {
  opacity: 0.65;
  transform: scaleX(1);
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.language-icon-light {
  position: absolute;
  inset: 9px;
}

.language-icon-dark {
  opacity: 0;
}

.language-icon-light {
  opacity: 1;
}

.site-header.is-scrolled .language-icon-dark,
.site-header:focus-within .language-icon-dark {
  opacity: 1;
}

.site-header.is-scrolled .language-icon-light,
.site-header:focus-within .language-icon-light {
  opacity: 0;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  display: none;
  padding: 10px 15px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(42, 34, 25, 0.12);
}

.language-menu a {
  color: var(--color-ink);
}

.language-switcher.is-open .language-menu,
.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-menu .lang-item {
  list-style: none;
  white-space: nowrap;
}

.language-menu .current-lang a {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.site-navigation {
  display: grid;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  margin-top: 18px;
}

.primary-menu {
  justify-self: center;
  gap: clamp(28px, 3.2vw, 46px);
}

.nav-balance {
  width: 44px;
  height: 1px;
}

.nav-toggle {
  display: block;
  visibility: hidden;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 78px));
  padding: 140px 52px 92px;
  color: var(--color-white);
  background: linear-gradient(135deg, #24211e, #9a8a78);
  background-position: center;
  background-size: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 48%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: #e8d2ba;
}

h1,
h2,
h3 {
  margin: 0;
  font-style: normal;
  line-height: 1.18;
  font-weight: 600;
}

h1 {
  font-size: clamp(44px, 6vw, 92px);
}

.page-hero p:not(.eyebrow),
.product-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  color: inherit;
  font-size: 18px;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  padding: 170px 52px 72px;
  color: var(--color-white);
  overflow: hidden;
}

.home-hero-slides,
.home-hero-slide {
  position: absolute;
  inset: 0;
}

.home-hero-slides {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1100ms ease, transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero.is-hero-ready .home-hero-slides {
  opacity: 1;
  transform: translateX(0);
}

.home-hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  animation: lelaffeHeroKenBurns 14s infinite;
}

.home-hero-slide:nth-child(2) {
  animation-delay: 7s;
}

.home-hero-slide.is-active {
  opacity: 1;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.05));
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  margin: 0 auto;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms ease 260ms, transform 980ms cubic-bezier(0.22, 1, 0.36, 1) 260ms;
}

.home-hero.is-hero-ready .home-hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.home-hero h1 {
  max-width: 850px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.home-hero p,
.home-hero-subtitle {
  max-width: 1060px;
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.home-hero-subtitle p {
  margin: 0;
}

.home-hero-subtitle p + p {
  margin-top: 12px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 760ms ease, transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-from-left {
  transform: translateX(-52px);
}

.reveal-on-scroll.reveal-from-right {
  transform: translateX(52px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes lelaffeHeroKenBurns {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  58% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.home-intro {
  padding: 86px 52px 96px;
  background: var(--color-white);
  text-align: center;
}

.home-intro-inner {
  max-width: 760px;
}

.home-intro h2 {
  color: #575757;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
}

.home-intro p,
.home-intro-content {
  max-width: 980px;
  margin: 18px auto 0;
  color: #777777;
  font-size: 19px;
  line-height: 1.55;
}

.home-intro-content p {
  margin: 0;
}

.home-intro-content p + p {
  margin-top: 18px;
}

.home-overlay-feature {
  padding: 0 52px 116px;
  background: var(--color-white);
  color: var(--color-ink);
}

.home-overlay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 36px;
  align-items: stretch;
  width: min(1600px, 100%);
  max-width: 1600px;
}

.content-inner.home-overlay-grid {
  width: min(1600px, 100%);
}

.home-overlay-side-media,
.home-overlay-banner {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.home-overlay-side-media {
  background: #111111;
}

.home-overlay-side-media img,
.home-overlay-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-technology-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 960px;
  padding: 0;
  background: #e6e6e6;
  color: #555555;
}

.home-overlay-copy {
  position: absolute;
  top: 50%;
  left: 12%;
  width: min(620px, 72%);
  transform: translateY(-50%);
}

.home-overlay-copy h2 {
  max-width: 520px;
  color: #565656;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.18;
}

.home-overlay-copy p,
.home-overlay-text {
  max-width: 560px;
  margin: 22px 0 28px;
  color: #646464;
  font-size: 19px;
  line-height: 1.5;
}

.home-overlay-text p {
  margin: 0;
}

.home-overlay-text p + p {
  margin-top: 14px;
}

.home-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 9px 24px;
  border: 1px solid #545454;
  border-radius: 24px;
  color: #555555;
  font-size: 16px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-outline-button:hover,
.home-outline-button:focus-visible {
  color: var(--color-white);
  border-color: #373737;
  background: #373737;
}

.home-technology-text {
  display: grid;
  align-items: center;
  padding: 78px 7vw;
}

.home-technology-copy {
  max-width: 640px;
}

.home-technology-copy h2 {
  color: #555555;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.18;
}

.home-technology-copy p,
.home-technology-body {
  margin: 24px 0 26px;
  color: #666666;
  font-size: 19px;
  line-height: 1.62;
}

.home-technology-body p {
  margin: 0;
}

.home-technology-body p + p {
  margin-top: 16px;
}

.home-technology-media {
  margin: 0;
  overflow: hidden;
}

.home-technology-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lelaffe-page-contact-us .page-hero,
.lelaffe-page-clinical-partners .page-hero {
  min-height: 460px;
}

.lelaffe-page-contact-us .page-hero {
  background-image: url("../images/hero-new2-product01.jpg");
  background-position: center top;
  padding-bottom: 68px;
}

.product-price-text {
  margin: 24px 0 0;
  font-size: 22px;
}

.product-delivery-text {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.content-section,
.product-grid-section {
  padding: 96px 52px;
}

.content-inner {
  width: min(1600px, 100%);
  margin: 0 auto;
}

.rich-content {
  color: #2d2a27;
  font-size: 17px;
}

.rich-content > *:first-child {
  margin-top: 0;
}

.rich-content > *:last-child {
  margin-bottom: 0;
}

.page-intro {
  background: linear-gradient(180deg, var(--color-white), #fbfaf7);
  text-align: center;
}

.page-intro .content-inner {
  max-width: 920px;
}

.template-page-flow {
  background: var(--color-white);
}

.template-page-intro {
  border-bottom: 1px solid rgba(42, 34, 25, 0.08);
}

.template-brand-section:first-child {
  padding-top: 128px;
}

.clone-section {
  padding: 108px 52px;
}

.clone-section:nth-child(even) {
  background: linear-gradient(180deg, var(--color-surface), var(--color-soft));
}

.clone-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.clone-section:nth-child(even) .clone-section-inner {
  direction: rtl;
}

.clone-section:nth-child(even) .clone-section-copy,
.clone-section:nth-child(even) .clone-section-media {
  direction: ltr;
}

.clone-section-copy h2 {
  margin-bottom: 22px;
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 48px);
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.clone-section-media {
  margin: 0;
  background: var(--color-white);
  box-shadow: 0 24px 60px rgba(42, 34, 25, 0.12);
  overflow: hidden;
}

.clone-section-media img {
  width: 100%;
  transition: transform 500ms ease;
}

.clone-section-media:hover img {
  transform: scale(1.035);
}

.technology-herbs {
  position: relative;
  overflow: hidden;
  padding: 140px 52px 155px;
  background: #f4f4f1 url("../images/technology-herbs/technology_wheel_bg1-scaled.jpg") center top / cover no-repeat;
}

.technology-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  padding: 150px 52px 95px;
  background: #c9d0da url("../images/technology-hero.png") center center / cover no-repeat;
}

.technology-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.technology-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.technology-hero h1,
.technology-section-header h2,
.technology-block-title,
.technology-panel-copy h3 {
  margin: 0;
  color: var(--color-accent-dark);
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.technology-hero h1 {
  color: #ffffff;
  font-size: 40px;
}

.technology-science,
.technology-transport {
  padding: 112px clamp(28px, 4vw, 52px);
  background: #ffffff;
}

.technology-stem {
  padding: 104px clamp(28px, 4vw, 52px) 118px;
  background: #f1f1f1;
}

.technology-section-inner {
  width: min(1600px, 100%);
  max-width: none;
}

.technology-section-header {
  max-width: 1600px;
  margin: 0 auto 56px;
  text-align: center;
}

.technology-section-header p {
  max-width: 980px;
  margin: 22px auto 0;
  text-align: center;
}

.technology-section-header p,
.technology-panel-copy p,
.technology-transport-precopy p,
.technology-transport-copy p {
  margin: 22px 0 0;
  color: #3d3d3d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.technology-section-header p {
  margin-right: auto;
  margin-left: auto;
}

.technology-science-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1600px, 100%);
  margin: 0 auto;
}

.technology-science-grid figure {
  margin: 0;
  text-align: center;
}

.technology-science-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
}

.technology-science-grid figcaption {
  margin-top: 22px;
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.technology-block-title {
  margin-bottom: 52px;
  text-align: center;
}

.technology-stem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1600px, 100%);
  margin: 0 auto;
  background: #ffffff;
}

.technology-panel {
  min-height: 520px;
  margin: 0;
}

.technology-panel-image {
  overflow: hidden;
}

.technology-panel-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5vw, 96px);
  background: #ffffff;
}

.technology-panel-copy h3 {
  font-size: 20px;
}

.technology-transport {
  padding-top: 132px;
  padding-bottom: 140px;
}

.technology-transport-header {
  max-width: 1600px;
  margin-bottom: 58px;
}

.technology-transport-header .technology-lead {
  margin-top: 24px;
  color: #202020;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.32;
}

.technology-transport-precopy {
  width: min(1600px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.technology-transport-precopy p {
  text-align: center;
}

.technology-transport-media {
  width: min(1600px, 100%);
  margin: 0 auto;
}

.technology-transport-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.technology-transport-copy {
  width: min(1600px, 100%);
  margin: 30px auto 0;
  text-align: center;
}

.technology-transport-copy p {
  margin-top: 18px;
  text-align: center;
}

.technology-herbs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.24);
}

.technology-herbs-inner {
  position: relative;
  z-index: 1;
}

.technology-herbs-header {
  margin-bottom: 44px;
  text-align: center;
}

.technology-herbs-header h2 {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
}

.technology-herbs-divider {
  display: block;
  width: 2px;
  height: 60px;
  margin: 22px auto 0;
  background: #292929;
}

.technology-herbs-stage {
  position: relative;
  width: min(930px, 100%);
  min-height: 790px;
  margin: 0 auto;
}

.technology-herbs-stage::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(810px, 88vw);
  aspect-ratio: 810 / 800;
  transform: translateX(-50%);
  background: url("../images/technology-herbs/infographic_bg2a.png") center center / contain no-repeat;
  opacity: 0.96;
  pointer-events: none;
}

.technology-herbs-wheel {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  z-index: 2;
}

.technology-herb-node {
  position: absolute;
  display: block;
  width: 180px;
  aspect-ratio: 232 / 265;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 260ms ease, filter 260ms ease;
}

.technology-herb-node img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.technology-herb-node:hover,
.technology-herb-node:focus-visible,
.technology-herb-node.is-active {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}

.technology-herb-node-1 {
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}

.technology-herb-node-1:hover,
.technology-herb-node-1:focus-visible,
.technology-herb-node-1.is-active {
  transform: translateX(-50%) translateY(-6px) scale(1.06);
}

.technology-herb-node-2 {
  top: 53px;
  right: 11%;
}

.technology-herb-node-3 {
  top: 40%;
  right: 2%;
}

.technology-herb-node-4 {
  right: 11%;
  bottom: -1%;
}

.technology-herb-node-5 {
  bottom: -101px;
  left: 50%;
  transform: translateX(-50%);
}

.technology-herb-node-5:hover,
.technology-herb-node-5:focus-visible,
.technology-herb-node-5.is-active {
  transform: translateX(-50%) translateY(-6px) scale(1.06);
}

.technology-herb-node-6 {
  bottom: -1%;
  left: 11%;
}

.technology-herb-node-7 {
  top: 40%;
  left: 1%;
}

.technology-herb-node-8 {
  top: 53px;
  left: 11%;
}

.technology-herb-copy {
  position: absolute;
  top: 46%;
  left: 50%;
  width: min(460px, 52vw);
  transform: translate(-50%, -44%);
  color: #101010;
  text-align: center;
  z-index: 3;
}

.technology-herb-copy h3 {
  margin: 0;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.technology-herb-tagline {
  margin: 22px 0 0;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.technology-herb-description {
  margin: 42px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
  text-align: left;
}

.technology-herbs-stage.is-changing .technology-herb-copy {
  animation: herbCopyFade 360ms ease;
}

@keyframes herbCopyFade {
  from {
    opacity: 0.2;
    transform: translate(-50%, -40%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -44%);
  }
}

.philosophy-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  padding: 150px 52px 95px;
  background: #d8dedf url("../images/philosophy001sm.jpg") center center / cover no-repeat;
}

.philosophy-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.philosophy-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.philosophy-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
}

.philosophy-body {
  padding: 155px clamp(28px, 4vw, 52px) 180px;
  background: #ffffff;
}

.philosophy-body-inner {
  width: min(1600px, 100%);
  max-width: none;
}

.philosophy-intro-copy {
  max-width: 720px;
  margin: 0 auto 86px;
  text-align: center;
}

.philosophy-intro-copy h2 {
  margin: 0;
  color: var(--color-accent-dark);
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.philosophy-intro-copy p {
  margin: 24px 0 0;
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.philosophy-collage {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(380px, 1.05fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 3vw, 58px);
  align-items: start;
}

.philosophy-card {
  color: #1f1f1f;
  text-align: center;
}

.philosophy-card h3 {
  margin: 0 0 26px;
  color: var(--color-accent-dark);
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
}

.philosophy-card p {
  max-width: 520px;
  margin: 0 auto;
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.philosophy-card-image {
  margin: 0;
  overflow: hidden;
}

.philosophy-card-image img {
  display: block;
  width: 100%;
}

.philosophy-card-effectiveness {
  padding-top: 20px;
}

.philosophy-card-image-model {
  margin-bottom: 40px;
}

.philosophy-card-image-model img {
  aspect-ratio: 500 / 380;
  object-fit: contain;
  object-position: center bottom;
}

.philosophy-card-safeness {
  padding-top: 52px;
}

.philosophy-card-image-hand {
  margin-top: 54px;
}

.philosophy-card-image-hand img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: center center;
}

.philosophy-card-image-products {
  margin-bottom: 36px;
}

.philosophy-card-image-products img {
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center center;
}

.philosophy-card-mission {
  padding-top: 22px;
}

.philosophy-card-mission h3 {
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
}

.philosophy-card-mission p {
  max-width: 470px;
}

.story-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  padding: 150px 52px 95px;
  background: #c9d0da url("../images/story-hero.jpg") center center / cover no-repeat;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.story-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.story-body {
  padding: 88px clamp(28px, 4vw, 52px) 160px;
  background: #ffffff;
}

.story-body > .story-body-inner {
  width: min(1600px, 100%);
  max-width: none;
}

.story-intro {
  max-width: 760px;
  margin: 0 auto 96px;
  text-align: center;
}

.story-intro h2,
.story-copy h3 {
  margin: 0;
  color: var(--color-accent-dark);
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
}

.story-intro p,
.story-copy p {
  margin: 26px 0 0;
  color: #3d3d3d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.story-row + .story-row,
.story-wide-media + .story-row {
  margin-top: 134px;
}

.story-copy-stack {
  display: grid;
  gap: 40px;
}

.story-media,
.story-wide-media {
  margin: 0;
  overflow: hidden;
}

.story-media img,
.story-wide-media img {
  display: block;
  width: 100%;
}

.story-media img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.story-media-bubbles img,
.story-media-final img {
  aspect-ratio: 1.18 / 1;
}

.story-wide-media {
  max-width: 1600px;
  margin: 96px auto 0;
}

.story-wide-media img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.history-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  padding: 150px 52px 95px;
  background: #c9d0da url("../images/history-hero.jpg") center center / cover no-repeat;
}

.history-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.history-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.history-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.history-timeline {
  padding: 118px clamp(28px, 4vw, 52px) 170px;
  background: #ffffff;
}

.history-timeline-inner,
.history-row {
  width: min(1600px, 100%);
  max-width: 1600px;
}

.history-row {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
  gap: clamp(72px, 8vw, 140px);
  align-items: start;
  margin: 0 auto;
}

.history-row + .history-row {
  margin-top: 210px;
}

.history-media-stack {
  display: grid;
  gap: 28px;
  padding-top: 0;
}

.history-media {
  margin: 0;
  overflow: hidden;
}

.history-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}

.history-copy-stack {
  display: grid;
  gap: 72px;
}

.history-entry {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 44px;
  min-height: 240px;
}

.history-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.history-marker::before {
  content: "";
  position: absolute;
  top: 4px;
  width: 28px;
  height: 28px;
  border: 4px solid #252525;
  border-radius: 999px;
  background: #ffffff;
}

.history-marker::after {
  content: "";
  position: absolute;
  top: 58px;
  width: 3px;
  height: calc(100% + 150px);
  background: #252525;
}

.history-row:last-child .history-entry:last-child .history-marker::after {
  height: 100%;
}

.history-entry-body h2 {
  margin: 0 0 34px;
  color: #252525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.history-events,
.history-events ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-events {
  display: grid;
  gap: 24px;
  color: #141414;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.history-events > li > span {
  display: block;
}

.history-events ul {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.45;
}

.history-events ul li {
  position: relative;
}

.history-events ul li::before {
  content: "-";
  position: absolute;
  left: -16px;
}

.lelaffe-page-story .clone-section,
.lelaffe-page-technology .clone-section,
.lelaffe-page-history .clone-section,
.lelaffe-page-philosophy .clone-section {
  position: relative;
}

.lelaffe-page-story .clone-section::before,
.lelaffe-page-technology .clone-section::before,
.lelaffe-page-history .clone-section::before,
.lelaffe-page-philosophy .clone-section::before {
  position: absolute;
  top: 48px;
  right: 52px;
  color: rgba(94, 80, 63, 0.08);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 700;
  line-height: 1;
  content: "LE LAFFE";
  pointer-events: none;
}

.lelaffe-page-technology .clone-section::before {
  content: "SCIENCE";
}

.lelaffe-page-history .clone-section::before {
  content: "HISTORY";
}

.lelaffe-page-philosophy .clone-section::before {
  content: "PHILOSOPHY";
}

.catalog-hero {
  position: relative;
  padding: 118px 52px 72px;
  color: var(--color-ink);
  background: linear-gradient(135deg, var(--color-surface), var(--color-soft));
  background-position: center;
  background-size: cover;
}

.product-list-hero {
  display: grid;
  min-height: 900px !important;
  padding: 0 52px;
  place-items: center;
  background-position: center center;
}

.product-list-hero .content-inner {
  text-align: center;
}

.product-list-hero h1 {
  margin: 0;
  color: var(--color-white);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.product-list-hero .catalog-hero-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.catalog-hero .content-inner {
  position: relative;
  z-index: 1;
}

.catalog-hero-overlay {
  display: none;
}

.catalog-hero[style] {
  min-height: 430px;
  color: var(--color-white);
}

.catalog-hero[style] .eyebrow {
  color: #e8d2ba;
}

.catalog-hero[style] .catalog-hero-overlay {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.08));
}

.catalog-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 80px;
}

.catalog-intro {
  margin-bottom: 42px;
  text-align: center;
}

.catalog-intro h1,
.catalog-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.25;
}

.product-card {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-4px);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  width: min(100%, 400px);
  margin: 0 auto;
  background: #f1f2f4;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 220ms ease, transform 420ms ease;
}

.product-card-image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-card-image-primary {
  transform: scale(1.025);
}

.product-card:hover .product-card-image-hover {
  opacity: 1;
}

.product-card-copy {
  padding: 18px 4px 0;
}

.product-card h2 {
  max-width: 340px;
  margin: 0 auto;
  color: #4f4f4f;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card p {
  max-width: 300px;
  margin: 0 auto;
  color: #777777;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.product-card-heading {
  margin-top: 18px !important;
  color: #626262 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.product-card-description {
  margin-top: 2px !important;
}

.product-card-price {
  margin-top: 18px !important;
  color: var(--color-ink) !important;
  font-size: 15px;
  font-weight: 700;
}

.product-card-price-note {
  margin-top: 4px !important;
  color: #a35a9c !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.product-grid-section {
  background: #e6e6e6;
}

.text-link {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--color-accent-dark);
}

.product-detail {
  background: #c9c9c9;
}

.product-detail-hero-wrap {
  padding: 190px 52px 80px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  align-items: stretch;
  width: min(1600px, 100%);
  margin: 0 auto;
  background: var(--color-white);
}

.home-product-preview {
  padding-top: 116px;
  padding-bottom: 118px;
  padding-right: 52px;
  padding-left: 52px;
  background: #e6e6e6;
  border-top: 100px solid var(--color-white);
}

.product-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid-home {
  width: min(1760px, 100%);
  gap: 64px 58px;
}

.product-card-home {
  border: 0;
  background: transparent;
  text-align: center;
}

.product-card-home:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.product-card-home .product-card-media {
  aspect-ratio: 1 / 1;
  width: min(100%, 400px);
  margin: 0 auto;
  background: #f1f2f4;
}

.product-card-home .product-card-media img {
  object-fit: contain;
}

.product-card-home .product-card-copy {
  padding-top: 18px;
}

.product-card-home h2 {
  color: #4f4f4f;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card-home p {
  max-width: 300px;
  margin: 10px auto 0;
  color: #777777;
  font-size: 15px;
  line-height: 1.45;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.special-section {
  padding: 108px 52px;
}

.contact-panel-section {
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.88), rgba(94, 80, 63, 0.76)),
    var(--color-accent-dark);
  color: var(--color-white);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}

.contact-panel .eyebrow {
  color: #e8d2ba;
}

.contact-panel h2 {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
}

.contact-panel-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.contact-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-card dl {
  margin: 0;
}

.contact-card dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card dl > div:first-child {
  padding-top: 0;
}

.contact-card dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card dt {
  color: #e8d2ba;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-card a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-hero {
  position: relative;
  display: grid;
  min-height: 1120px;
  overflow: hidden;
  background: #151515 url("../images/contact-hero.jpg") center center / cover no-repeat;
  color: var(--color-white);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.36);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  max-width: 1600px;
  margin: 0 auto;
  padding: 190px 52px 160px;
}

.contact-hero h1 {
  margin: 0 0 28px;
  color: var(--color-white);
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.contact-form-shell {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.contact-form-panel[hidden] {
  display: none;
}

.contact-inquiry-selector {
  display: flex;
  width: fit-content;
  gap: 4px;
  margin: 0 auto 16px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 34px rgba(30, 30, 30, 0.12);
  backdrop-filter: blur(8px);
}

.contact-inquiry-selector button {
  min-height: 38px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2a2a2a;
  cursor: pointer;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.contact-inquiry-selector button.is-active {
  background: #ffffff;
  color: #141414;
  box-shadow: 0 8px 20px rgba(30, 30, 30, 0.14);
}

.contact-inquiry-note {
  width: min(720px, 100%);
  margin: -4px auto 94px;
  color: #1f1f1f;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.75);
}

.contact-inquiry-note[hidden] {
  display: block;
  visibility: hidden;
}

.lelaffe-contact-form,
.contact-form-shell form {
  display: grid;
  gap: 28px;
}

.contact-form-shell form p {
  margin: 0;
}

.contact-form-shell br {
  display: none;
}

.contact-form-shell h3 {
  margin: 8px 0 -10px;
  color: #141414;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.65);
}

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

.contact-form-grid > p {
  display: contents;
}

.lelaffe-contact-form label,
.contact-form-shell label {
  display: grid;
  gap: 7px;
  color: #141414;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.65);
}

.lelaffe-contact-form em,
.contact-form-shell em {
  color: #cf1f1f;
  font-style: normal;
}

.lelaffe-contact-form input,
.lelaffe-contact-form textarea,
.contact-form-shell input:not([type="submit"]),
.contact-form-shell select,
.contact-form-shell textarea {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  color: #161616;
  font: inherit;
  outline: none;
  padding: 9px 12px;
}

.contact-form-shell select {
  appearance: auto;
}

.contact-form-shell .wpcf7-list-item {
  margin: 0;
}

.contact-form-shell .wpcf7-acceptance label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.contact-form-shell .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.lelaffe-contact-form textarea,
.contact-form-shell textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-captcha-preview,
.contact-form-shell .wpcf7-form-control-wrap[data-name*="recaptcha"],
.contact-form-shell .wpcf7-form-control-wrap[data-name*="captcha"] {
  display: grid;
  gap: 7px;
  color: #141414;
  font-size: 15px;
  font-weight: 400;
}

.contact-captcha-box {
  display: grid;
  width: 245px;
  height: 76px;
  place-items: center;
  border: 1px solid #d6d6d6;
  background: #f7f7f7;
  color: #777777;
  font-size: 13px;
}

.lelaffe-contact-form button,
.contact-form-shell input[type="submit"] {
  display: block;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 3px;
  background: #ffffff;
  color: #222222;
  cursor: pointer;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease;
}

.lelaffe-contact-form button:hover,
.contact-form-shell input[type="submit"]:hover {
  background: #373737;
  color: #ffffff;
}

.contact-form-shell .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffe3e3;
  font-size: 13px;
}

.contact-form-shell .wpcf7-response-output {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 14px;
}

.clinical-overview-section {
  background: var(--color-white);
}

.clinical-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 76px;
  align-items: start;
}

.clinical-overview h2 {
  max-width: 640px;
  color: var(--color-accent-dark);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
}

.clinical-overview-copy {
  padding-top: 10px;
}

.clinical-overview-copy p {
  margin: 0 0 20px;
}

.clinical-overview-copy .button {
  margin-top: 14px;
}

.clinical-image-flow {
  padding: 18px 0 96px;
  background: #f7f3ee;
}

.clinical-image-section {
  padding: 46px 52px 0;
}

.clinical-image-section figure {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 24px 70px rgba(42, 34, 25, 0.12);
}

.clinical-image-section img {
  width: 100%;
}

.clinical-hero {
  position: relative;
  display: grid;
  min-height: 900px;
  place-items: center;
  overflow: hidden;
  background: #222222 url("../images/clinical-hero.jpg") center center / cover no-repeat;
  color: var(--color-white);
  text-align: center;
}

.clinical-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.clinical-hero-inner {
  position: relative;
  z-index: 1;
}

.clinical-hero h1 {
  margin: 0;
  color: var(--color-white);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.clinical-partners {
  padding: 110px 52px 120px;
  background: var(--color-white);
}

.clinical-partners-inner {
  width: min(1600px, 100%);
  max-width: 1600px;
  margin: 0 auto;
}

.clinical-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 54px;
  background: #cdc8c5;
}

.clinical-tab {
  min-height: 74px;
  border: 0;
  border-radius: 0;
  background: #cdc8c5;
  color: #151515;
  cursor: pointer;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease;
}

.clinical-tab.is-active {
  background: #6f6664;
  color: #ffffff;
}

.clinical-panel[hidden] {
  display: none;
}

.clinical-partner-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.08fr);
  gap: 84px;
  align-items: start;
}

.clinical-partner-layout-korea {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.clinical-partner-layout-global {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.clinical-partner-layout-global .clinical-partner-copy {
  grid-column: span 2;
}

.clinical-partner-copy {
  padding: 46px 0 0 82px;
}

.clinical-partner-logo {
  width: min(360px, 100%);
  margin: 0 0 54px;
}

.clinical-partner-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.clinical-partner-copy h2 {
  margin: 0;
  color: #444444;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.28;
}

.clinical-partner-copy p {
  margin: 18px 0 0;
  color: #444444;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
}

.clinical-home-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: #4e31d9;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.clinical-home-icon {
  position: relative;
  width: 15px;
  height: 12px;
  border-radius: 2px 2px 1px 1px;
  background: #5d3bff;
}

.clinical-home-icon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 1px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #5d3bff;
  transform: rotate(45deg);
}

.clinical-home-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 4px;
  height: 7px;
  background: #ffffff;
}

.clinical-gallery-item {
  margin: 0;
  overflow: hidden;
  background: #f5f1ef;
}

.clinical-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinical-gallery {
  display: grid;
  gap: 44px;
  margin-top: 0;
}

.clinical-gallery-korea {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  padding-left: 0;
}

.clinical-partner-layout-korea .clinical-gallery {
  display: contents;
}

.clinical-partner-layout-global .clinical-gallery {
  display: contents;
}

.clinical-gallery-global {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-left: 0;
}

.clinical-gallery-korea .clinical-gallery-item {
  aspect-ratio: 800 / 533;
}

.clinical-gallery-korea .clinical-gallery-item:first-child {
  grid-column: 2;
}

.clinical-gallery-global .clinical-gallery-item {
  aspect-ratio: 330 / 520;
}

.clinical-gallery-global .clinical-gallery-item:first-child {
  grid-column: 3 / span 2;
  aspect-ratio: 800 / 533;
}

.product-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: start;
  min-height: 680px;
  padding: 78px 80px 64px;
}

.product-category-label {
  margin: 0 0 18px;
  color: #777777;
  font-size: 15px;
  font-weight: 400;
}

.product-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #202020;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
}

.product-hero-copy .product-subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: #222222;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.product-hero-copy .product-price-text {
  margin: 0 0 18px;
  color: #141414;
  font-size: 24px;
  font-weight: 700;
}

.product-purchase-block {
  margin: auto 0 0;
}

.product-smartstore-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  padding: 0 28px;
  background: #29c85a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.product-smartstore-button:hover,
.product-smartstore-button:focus-visible {
  background: #20b84f;
  color: #ffffff;
  transform: translateY(-1px);
}

.product-purchase-block .product-delivery-text {
  margin: 18px 0 0;
  color: #141414;
  font-size: 14px;
  font-weight: 600;
}

.product-hero-media {
  display: grid;
  min-width: 0;
  background: #f2f3f4;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: #f2f3f4;
  overflow: hidden;
}

.product-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 260ms ease, transform 360ms ease;
}

.product-main-image.is-changing img {
  opacity: 0;
  transform: translateX(34px);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.product-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: #eceeef;
  cursor: pointer;
  overflow: hidden;
}

.product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 240ms ease;
}

.product-thumb:hover img,
.product-thumb:focus-visible img,
.product-thumb.is-active img {
  opacity: 1;
  transform: scale(1.025);
}

.product-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button:hover {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
}

.product-story-section {
  padding: 86px 52px;
  background: #ffffff;
}

.product-story-section-alt {
  background: #e6e6e6;
}

.product-story-content {
  width: min(1600px, 100%);
  max-width: none;
  text-align: center;
}

.product-story-content > p,
.product-story-content > ul,
.product-story-content > ol {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.product-story-content h2,
.product-story-content h3 {
  font-size: 24px;
  font-weight: 700;
}

.product-story-content img {
  max-width: 100%;
  height: auto;
}

.product-detail-image-section {
  padding: 0 52px 86px;
  background: #e6e6e6;
}

.product-detail-image-frame {
  width: min(1600px, 100%);
  text-align: center;
}

.product-detail-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-detail-content-section {
  padding: 96px 52px;
}

.product-detail-intro-section {
  background: #ffffff;
}

.product-detail-intro {
  width: min(1600px, 100%);
  text-align: center;
}

.product-detail-intro h2 {
  margin: 0 0 30px;
  color: #111111;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
}

.product-detail-intro h2 strong {
  font-weight: 700;
}

.product-detail-intro p {
  max-width: 1350px;
  margin: 0 auto 28px;
  color: #111111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.product-detail-intro p:last-child {
  margin-bottom: 0;
}

.product-detail-split-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background: #e6e6e6;
}

.product-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  width: min(1200px, 100%);
}

.product-detail-split + .product-detail-split {
  margin-top: 70px;
}

.product-detail-split-text-image .product-detail-split-media {
  order: 2;
}

.product-detail-split-text-image .product-detail-split-copy {
  order: 1;
}

.product-detail-split-media {
  margin: 0;
}

.product-detail-split-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-split-copy {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.product-detail-split-copy p {
  margin: 0 0 22px;
}

.product-detail-split-copy p:last-child {
  margin-bottom: 0;
}

.product-seoul-intro-section {
  padding: 104px 52px 86px;
  background: #ffffff;
}

.product-seoul-intro {
  width: min(1600px, 100%);
  text-align: center;
}

.product-seoul-intro h2 {
  margin: 0 0 24px;
  color: #111111;
  font-family: "Merriweather Sans", var(--font-body);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
}

.product-seoul-intro h2 strong {
  font-weight: 700;
}

.product-seoul-subtitle {
  margin: 0 auto 34px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.product-seoul-intro p:not(.product-seoul-subtitle) {
  max-width: 1180px;
  margin: 0 auto 30px;
  color: #222222;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.product-seoul-hero-image {
  max-width: 1100px;
  margin: 52px auto 0;
}

.product-seoul-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-seoul-products-section {
  padding: 92px 52px 106px;
  background: #e6e6e6;
}

.product-seoul-products {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: start;
  width: min(1320px, 100%);
}

.product-seoul-products-media {
  margin: 0;
}

.product-seoul-products-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-seoul-products-copy {
  padding-top: 4px;
  color: #111111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.42;
}

.product-seoul-products-copy p {
  margin: 0 0 10px;
}

.product-seoul-products-copy p:first-child {
  margin-bottom: 26px;
  font-weight: 700;
}

.product-seoul-copy-gap {
  display: block;
  height: 10px;
}

.product-accordion-section {
  padding: 86px 52px 110px;
  background: #e6e6e6;
}

.product-accordion {
  width: min(1320px, 100%);
  color: #222222;
}

.product-accordion-item {
  border-top: 1px solid #a8a8a8;
}

.product-accordion-item:last-child {
  border-bottom: 1px solid #a8a8a8;
}

.product-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  list-style: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.product-accordion-item summary:hover {
  color: #000000;
}

.product-accordion-item summary::-webkit-details-marker {
  display: none;
}

.product-accordion-icon {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px;
}

.product-accordion-icon::before,
.product-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: #242424;
  transform: translateY(-50%);
}

.product-accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 180ms ease;
}

.product-accordion-item[open] .product-accordion-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.product-accordion-panel {
  padding: 2px 0 46px;
  color: #262626;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.76;
}

.product-accordion-panel > p {
  max-width: 1200px;
  margin: 0 0 18px;
}

.product-accordion-panel > p:last-child {
  margin-bottom: 0;
}

.product-accordion-panel > h2:first-child,
.product-accordion-panel > h3:first-child {
  display: none;
}

.product-accordion-panel table {
  width: 100%;
  max-width: 1040px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.62;
}

.product-accordion-panel th,
.product-accordion-panel td {
  padding: 16px 0;
  border-bottom: 1px solid #cfcfcf;
  text-align: left;
  vertical-align: top;
}

.product-accordion-panel th {
  width: 260px;
  padding-right: 34px;
  color: #555555;
  font-weight: 600;
}

.product-accordion-panel td {
  color: #222222;
  font-weight: 400;
}

.product-howto-banner {
  display: block;
  width: min(1200px, 100%);
  height: auto;
  margin: 8px auto 56px;
}

.product-routine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px;
  max-width: 1240px;
}

.product-routine-column h3 {
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #bfbfbf;
  color: #000000;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}

.product-routine-step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 0 0 32px;
}

.product-routine-step img {
  display: block;
  width: 96px;
  height: auto;
  object-fit: contain;
}

.product-routine-step p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.64;
}

.product-related-section {
  padding-top: 86px;
}

.product-related-heading {
  margin-bottom: 40px;
  text-align: center;
}

.product-related-heading h2 {
  margin: 0;
  color: #444444;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-gallery-section {
  padding: 72px 44px 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-gallery figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-image {
  background: var(--color-surface);
}

.product-detail-image img {
  width: 100%;
}

.pagination {
  margin-top: 44px;
}

.site-footer {
  padding: 104px 52px 96px;
  background: #1b1b1b;
  color: #ffffff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.footer-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
}

.footer-main {
  padding: 48px 0 66px;
}

.footer-logo {
  display: inline-block;
  width: 175px;
  margin-bottom: 38px;
}

.footer-logo img {
  width: 100%;
}

.footer-company {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.48;
}

.footer-company span {
  display: block;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.footer-company a,
.footer-policy-links a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  padding: 20px 0 0;
  color: #a7a7a7;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 920px) {
  body {
    overflow-x: hidden;
  }

  .site-header-inner {
    padding: 14px 20px;
  }

  .site-header-top {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .site-brand {
    width: min(184px, 48vw);
  }

  .nav-toggle {
    visibility: visible;
    pointer-events: auto;
  }

  .site-navigation {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 22px;
    padding: 26px 20px;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-white);
    color: var(--color-ink);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .nav-balance {
    display: none;
  }

  .primary-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .language-menu {
    top: calc(100% + 19px);
    right: -6px;
    flex-wrap: wrap;
    gap: 8px 12px;
    max-width: calc(100vw - 32px);
  }

  .page-hero,
  .home-hero,
  .home-intro,
  .content-section,
  .product-grid-section,
  .catalog-hero,
  .clone-section,
  .special-section,
  .home-technology-band {
    padding-right: 22px;
    padding-left: 22px;
  }

  .page-hero,
  .home-hero {
    min-height: 560px;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .home-hero h1 {
    max-width: 620px;
    font-size: 34px;
    line-height: 1.22;
  }

  .home-hero p,
  .home-hero-subtitle {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.55;
  }

  .home-intro h2,
  .home-overlay-copy h2,
  .home-technology-copy h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .home-intro p,
  .home-intro-content,
  .home-overlay-copy p,
  .home-overlay-text,
  .home-technology-copy p,
  .home-technology-body {
    font-size: 16px;
    line-height: 1.58;
  }

  .home-overlay-feature {
    padding-bottom: 74px;
  }

  .home-overlay-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .home-overlay-side-media {
    aspect-ratio: 4 / 5;
  }

  .home-overlay-banner {
    min-height: 360px;
  }

  .home-overlay-copy {
    left: 8%;
    width: min(360px, 84%);
  }

  .home-technology-band {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .home-technology-text {
    padding: 72px 22px;
  }

  .home-technology-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .home-technology-media {
    min-height: 340px;
  }

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

  .product-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 44px);
    gap: 28px;
    padding-top: 52px;
  }

  .product-detail-hero-wrap {
    padding: 126px 0 52px;
  }

  .clone-section-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .technology-hero {
    min-height: 620px;
    padding: 150px 22px 82px;
  }

  .technology-science,
  .technology-stem,
  .technology-transport {
    padding-right: 22px;
    padding-left: 22px;
  }

  .technology-science {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .technology-stem {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .technology-transport {
    padding-top: 92px;
    padding-bottom: 96px;
  }

  .technology-section-header {
    margin-bottom: 44px;
  }

  .technology-science-grid,
  .technology-stem-grid {
    grid-template-columns: 1fr;
    width: min(760px, 100%);
  }

  .technology-panel {
    min-height: 0;
  }

  .technology-panel-copy {
    padding: 34px 28px;
  }

  .technology-hero h1,
  .technology-section-header h2,
  .technology-block-title {
    font-size: 26px;
  }

  .technology-panel-copy h3 {
    font-size: 19px;
  }

  .technology-section-header p,
  .technology-panel-copy p,
  .technology-transport-precopy p,
  .technology-transport-copy p {
    font-size: 14px;
  }

  .technology-herbs {
    padding: 92px 20px 110px;
    background-size: 520px auto;
  }

  .technology-herbs::before {
    background-size: 520px auto;
  }

  .technology-herbs-stage {
    display: grid;
    gap: 32px;
    min-height: 0;
  }

  .technology-herbs-stage::before {
    display: none;
  }

  .technology-herbs-wheel {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    order: 2;
  }

  .technology-herb-node,
  .technology-herb-node-1,
  .technology-herb-node-2,
  .technology-herb-node-3,
  .technology-herb-node-4,
  .technology-herb-node-5,
  .technology-herb-node-6,
  .technology-herb-node-7,
  .technology-herb-node-8 {
    position: static;
    width: 100%;
    max-width: 112px;
    margin: 0 auto;
    transform: none;
  }

  .technology-herb-node:hover,
  .technology-herb-node:focus-visible,
  .technology-herb-node.is-active,
  .technology-herb-node-1:hover,
  .technology-herb-node-1:focus-visible,
  .technology-herb-node-1.is-active,
  .technology-herb-node-5:hover,
  .technology-herb-node-5:focus-visible,
  .technology-herb-node-5.is-active {
    transform: translateY(-4px) scale(1.04);
  }

  .technology-herb-copy {
    position: static;
    width: min(560px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .technology-herb-copy h3 {
    font-size: 25px;
  }

  .technology-herb-tagline {
    font-size: 16px;
  }

  .technology-herb-description {
    margin-top: 26px;
    font-size: 15px;
    text-align: center;
  }

  .philosophy-hero {
    min-height: 620px;
    padding: 150px 22px 82px;
  }

  .philosophy-body {
    padding: 84px 22px 96px;
  }

  .philosophy-intro-copy {
    margin-bottom: 54px;
  }

  .philosophy-intro-copy h2 {
    font-size: 28px;
  }

  .philosophy-intro-copy p {
    font-size: 14px;
  }

  .philosophy-collage {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .philosophy-card,
  .philosophy-card-effectiveness,
  .philosophy-card-safeness,
  .philosophy-card-mission {
    padding-top: 0;
  }

  .philosophy-card h3 {
    font-size: 26px;
  }

  .philosophy-card p {
    font-size: 14px;
  }

  .story-hero {
    min-height: 620px;
    padding: 150px 22px 82px;
  }

  .story-body {
    padding: 84px 22px 96px;
  }

  .story-intro {
    margin-bottom: 64px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 760px;
  }

  .story-row-crossroads .story-media,
  .story-row-mastery .story-media {
    order: -1;
  }

  .story-row + .story-row,
  .story-wide-media + .story-row {
    margin-top: 84px;
  }

  .story-wide-media {
    max-width: 760px;
    margin-top: 72px;
  }

  .story-intro h2,
  .story-copy h3 {
    font-size: 26px;
  }

  .story-intro p,
  .story-copy p {
    font-size: 14px;
  }

  .history-hero {
    min-height: 620px;
    padding: 150px 22px 82px;
  }

  .history-hero h1 {
    font-size: 32px;
  }

  .history-timeline {
    padding: 84px 22px 110px;
  }

  .history-row {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 760px;
  }

  .history-row + .history-row {
    margin-top: 96px;
  }

  .history-copy-stack {
    gap: 52px;
  }

  .history-entry {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
  }

  .history-marker::before {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .history-marker::after {
    top: 42px;
    width: 2px;
    height: calc(100% + 86px);
  }

  .history-entry-body h2 {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .history-events {
    font-size: 16px;
  }

  .history-events ul {
    font-size: 14px;
  }

  .contact-panel,
  .clinical-overview {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-hero {
    min-height: 980px;
  }

  .contact-hero-inner {
    padding: 145px 22px 100px;
  }

  .contact-hero h1 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .contact-inquiry-selector {
    display: flex;
    width: 100%;
  }

  .contact-inquiry-selector button {
    flex: 1;
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-inquiry-note {
    margin-bottom: 72px;
  }

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

  .clinical-hero {
    min-height: 680px;
  }

  .clinical-partners {
    padding: 72px 22px 86px;
  }

  .clinical-tabs {
    margin-bottom: 42px;
  }

  .clinical-tab {
    min-height: 58px;
    font-size: 15px;
  }

  .clinical-partner-copy h2 {
    font-size: 26px;
  }

  .clinical-partner-copy p {
    font-size: 16px;
  }

  .clinical-partner-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clinical-partner-copy {
    padding: 0;
  }

  .clinical-partner-logo {
    width: min(280px, 72vw);
    margin-bottom: 34px;
  }

  .clinical-gallery,
  .clinical-gallery-korea,
  .clinical-gallery-global {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
  }

  .clinical-gallery-korea .clinical-gallery-item:first-child {
    grid-column: auto;
  }

  .clinical-partner-layout-global .clinical-partner-copy,
  .clinical-gallery-global .clinical-gallery-item:first-child {
    grid-column: auto;
  }

  .clinical-gallery-global .clinical-gallery-item {
    aspect-ratio: 4 / 3;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-hero-copy {
    position: static;
    min-height: 0;
    padding: 12px 24px 34px;
  }

  .product-hero-copy h1 {
    max-width: none;
    font-size: 30px;
  }

  .product-hero-copy .product-subtitle {
    margin-top: 18px;
    font-size: 16px;
  }

  .product-hero-copy .product-price-text {
    font-size: 22px;
  }

  .product-purchase-block {
    margin-top: 34px;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-detail-content-section,
  .product-story-section,
  .product-accordion-section,
  .product-related-section,
  .product-grid-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .product-detail-intro p {
    max-width: 680px;
    font-size: 16px;
  }

  .product-detail-split {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(680px, 100%);
  }

  .product-detail-split-text-image .product-detail-split-media,
  .product-detail-split-text-image .product-detail-split-copy {
    order: initial;
  }

  .product-detail-split + .product-detail-split {
    margin-top: 48px;
  }

  .product-detail-split-copy {
    font-size: 15px;
  }

  .product-accordion-item summary {
    min-height: 62px;
    gap: 18px;
    font-size: 20px;
  }

  .product-accordion-panel {
    font-size: 15px;
  }

  .product-accordion-panel table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .product-routine-grid {
    grid-template-columns: 1fr;
  }

  .product-routine-step {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .product-routine-step img {
    width: 76px;
  }

  .product-seoul-intro-section {
    padding: 74px 22px 58px;
  }

  .product-seoul-intro h2 {
    font-size: 22px;
  }

  .product-seoul-subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .product-seoul-intro p:not(.product-seoul-subtitle) {
    font-size: 15px;
  }

  .product-seoul-hero-image {
    margin-top: 36px;
  }

  .product-seoul-products-section {
    padding: 58px 22px 74px;
  }

  .product-seoul-products {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(760px, 100%);
  }

  .product-seoul-products-copy {
    font-size: 17px;
  }

  .site-footer {
    padding: 72px 22px 64px;
  }

  .footer-main {
    padding: 38px 0 52px;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 30px;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  p,
  a,
  summary,
  button {
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .site-header-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-brand {
    width: min(164px, 52vw);
  }

  .primary-menu a,
  .language-switcher a {
    font-size: 11px;
  }

  .language-menu {
    min-width: min(250px, calc(100vw - 32px));
    padding: 12px 14px;
  }

  .page-hero,
  .home-hero {
    min-height: 520px;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .page-hero h1,
  .product-list-hero h1,
  .philosophy-hero h1,
  .technology-hero h1,
  .history-hero h1,
  .clinical-hero h1,
  .contact-hero h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .page-hero p:not(.eyebrow),
  .catalog-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.26;
  }

  .home-hero p,
  .home-hero-subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.56;
  }

  .home-intro {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .home-intro h2,
  .home-overlay-copy h2,
  .home-technology-copy h2 {
    font-size: 25px;
    line-height: 1.28;
  }

  .home-intro p,
  .home-intro-content,
  .home-overlay-copy p,
  .home-overlay-text,
  .home-technology-copy p,
  .home-technology-body {
    font-size: 14px;
    line-height: 1.62;
  }

  .home-overlay-feature {
    padding: 0 18px 66px;
  }

  .home-overlay-grid {
    gap: 22px;
  }

  .home-overlay-banner {
    min-height: 300px;
  }

  .home-overlay-copy {
    left: 7%;
    width: 86%;
  }

  .home-technology-text {
    padding: 58px 18px;
  }

  .home-technology-media {
    min-height: 280px;
  }

  .content-section,
  .clone-section,
  .special-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

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

  h1 {
    font-size: 28px;
  }

  .catalog-intro {
    text-align: left;
  }

  .product-grid-section,
  .home-product-preview {
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-product-preview {
    padding-top: 74px;
    padding-bottom: 82px;
    border-top-width: 64px;
  }

  .product-grid-home {
    gap: 44px;
  }

  .product-card-home h2 {
    font-size: 19px;
    line-height: 1.28;
  }

  .product-card-home p {
    font-size: 13px;
  }

  .product-detail-hero-wrap {
    padding-top: 112px;
    padding-bottom: 36px;
  }

  .product-hero {
    width: calc(100% - 24px);
    gap: 0;
  }

  .product-hero-copy {
    padding: 24px 18px 30px;
  }

  .product-category-label {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .product-hero-copy h1 {
    font-size: 23px;
    line-height: 1.24;
  }

  .product-hero-copy .product-subtitle {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-hero-copy .product-price-text {
    font-size: 18px;
  }

  .product-smartstore-button {
    width: 100%;
    min-width: 0;
  }

  .product-detail-content-section,
  .product-story-section,
  .product-accordion-section,
  .product-related-section {
    padding: 58px 18px;
  }

  .product-detail-intro h2,
  .product-seoul-intro h2 {
    font-size: 19px;
    line-height: 1.34;
  }

  .product-detail-intro p,
  .product-seoul-intro p:not(.product-seoul-subtitle),
  .product-detail-split-copy {
    font-size: 13px;
    line-height: 1.62;
  }

  .product-seoul-products-copy {
    font-size: 14px;
  }

  .product-accordion-item summary {
    min-height: 58px;
    font-size: 16px;
  }

  .product-accordion-panel {
    padding: 6px 0 26px;
    font-size: 13px;
  }

  .product-routine-step {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
  }

  .product-routine-step img {
    width: 60px;
  }

  .product-routine-column h3 {
    font-size: 21px;
  }

  .product-routine-step p {
    font-size: 13px;
    line-height: 1.58;
  }

  .technology-section-header h2,
  .technology-block-title,
  .technology-herbs-header h2,
  .philosophy-intro-copy h2,
  .philosophy-card h3,
  .story-intro h2,
  .story-copy h3,
  .catalog-intro h1,
  .catalog-intro h2 {
    font-size: 23px;
    line-height: 1.3;
  }

  .technology-section-header p,
  .technology-panel-copy p,
  .technology-transport-precopy p,
  .technology-transport-copy p,
  .philosophy-intro-copy p,
  .philosophy-card p,
  .story-intro p,
  .story-copy p {
    font-size: 13px;
    line-height: 1.62;
  }

  .technology-science-grid figcaption,
  .technology-transport-header .technology-lead {
    font-size: 16px;
  }

  .technology-herb-copy h3 {
    font-size: 20px;
  }

  .technology-herb-tagline {
    font-size: 14px;
  }

  .technology-herb-description {
    font-size: 13px;
  }

  .technology-herbs-wheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-herb-node,
  .technology-herb-node-1,
  .technology-herb-node-2,
  .technology-herb-node-3,
  .technology-herb-node-4,
  .technology-herb-node-5,
  .technology-herb-node-6,
  .technology-herb-node-7,
  .technology-herb-node-8 {
    max-width: 96px;
  }

  .history-entry {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 18px;
  }

  .history-entry-body h2 {
    font-size: 26px;
  }

  .history-events {
    font-size: 14px;
  }

  .history-events ul {
    font-size: 13px;
  }

  .contact-hero {
    min-height: 900px;
  }

  .contact-hero-inner {
    padding: 126px 18px 74px;
  }

  .contact-hero h1 {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .contact-inquiry-note {
    margin-bottom: 48px;
    font-size: 13px;
  }

  .clinical-partners {
    padding-right: 18px;
    padding-left: 18px;
  }

  .clinical-tab {
    font-size: 14px;
  }

  .clinical-partner-copy h2 {
    font-size: 22px;
  }

  .clinical-partner-copy p,
  .clinical-home-link {
    font-size: 14px;
  }

  .site-footer {
    padding: 58px 18px 54px;
  }

  .footer-company,
  .footer-copy {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slides,
  .home-hero-copy,
  .home-hero-slide,
  .reveal-on-scroll,
  .product-card,
  .product-card-media img {
    animation: none !important;
    transition: none !important;
  }

  .home-hero-slides,
  .home-hero-copy,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
