:root {
  --ink: #020711;
  --muted: #5f6870;
  --line: #cfcfcf;
  --panel: #eeeeed;
  --white: #ffffff;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-enter: cubic-bezier(0, 0, 0.2, 1);
  --ease-exit: cubic-bezier(0.4, 0, 1, 1);
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxury-deep: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-fade: cubic-bezier(0.33, 1, 0.68, 1);
  --section-label-size: 11px;
  --section-label-size-sm: 10px;
  --section-title-size: 22px;
  --section-title-size-sm: 19px;
  --section-title-line-height: 1.45;
  --section-heading-gap: 50px;
  --section-heading-gap-sm: 10px;
  --section-heading-margin: 34px;
  --section-heading-margin-sm: 28px;
  --reading-measure: 66ch;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Helvetica, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

body.shop-dialog-open {
  overflow: hidden;
}

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

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

.mobile-header {
  display: none;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(2, 7, 17, 0.08);
  background: var(--white);
}

.page-header__logo {
  display: block;
  line-height: 0;
}

.page-header__logo img {
  width: 104px;
  height: auto;
}

.menu-button {
  position: fixed;
  top: 23px;
  right: 27px;
  z-index: 60;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  padding: 0;
}

.menu-button span {
  position: absolute;
  right: 13px;
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms var(--ease-standard), top 260ms var(--ease-standard);
}

.menu-button span:first-child {
  top: 19px;
}

.menu-button span:last-child {
  top: 27px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.menu-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 340ms var(--ease-exit);
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
  transition-duration: 460ms;
  transition-timing-function: var(--ease-enter);
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  width: clamp(390px, 40vw, 760px);
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  transform: translateX(100%);
  transition: transform 420ms var(--ease-exit);
}

.menu-panel.is-open {
  transform: translateX(0);
  transition-duration: 560ms;
  transition-timing-function: var(--ease-luxury-deep);
}

.menu-panel__inner {
  display: grid;
  gap: 28px;
  padding: min(24vh, 210px) 9.8vw 52px 6vw;
}

.menu-primary,
.menu-group__head {
  font-size: 22px;
  line-height: 1.2;
}

.menu-group {
  display: grid;
  gap: 0;
}

.menu-group__head {
  display: grid;
  width: min(230px, 100%);
  grid-template-columns: 1fr 28px;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.menu-mark {
  position: relative;
  width: 28px;
  height: 18px;
  justify-self: end;
  font-size: 0;
  line-height: 1;
  text-align: right;
}

.menu-mark::before,
.menu-mark::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
  transition: transform 260ms var(--ease-standard), opacity 180ms var(--ease-fade);
}

.menu-mark::after {
  transform: translateY(-50%) rotate(90deg);
}

.menu-group.is-open .menu-mark::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.menu-subnav {
  display: grid;
  grid-template-rows: 0fr;
  margin-left: min(130px, 36%);
  font-size: 16px;
  line-height: 1.45;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: grid-template-rows 360ms var(--ease-luxury),
    opacity 240ms var(--ease-fade), padding-top 360ms var(--ease-luxury),
    transform 360ms var(--ease-luxury), visibility 0s step-end 360ms;
  visibility: hidden;
}

.menu-group.is-open .menu-subnav {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-top: 18px;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.menu-subnav__inner {
  display: grid;
  gap: 16px;
  min-height: 0;
  overflow: hidden;
}

.menu-panel__footer {
  display: grid;
  gap: 22px;
  padding: 0 9.8vw 38px 6vw;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.menu-panel__footer p {
  margin: 0;
}

.menu-panel__footer a,
.menu-subnav a {
  position: relative;
  transition: opacity 220ms var(--ease-fade);
}

.menu-panel__footer a:hover,
.menu-subnav a:hover,
.menu-primary:hover {
  opacity: 0.58;
}

.first-view {
  position: relative;
  display: grid;
  grid-template-columns: 33.1vw 1fr;
  height: 100vh;
  background: var(--white);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMarkIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileHeroMarkIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.985);
  }

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

@keyframes pageHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageContentIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pageImageIn {
  from {
    opacity: 0;
    transform: scale(1.018);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes productPageSurfaceIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes productCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.988);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes productImageSettle {
  from {
    opacity: 0;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes productNameIn {
  from {
    opacity: 0;
    transform: translate3d(0, 9px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-page .page-header,
  .product-page .mobile-header,
  .factory-page .page-header,
  .factory-page .mobile-header,
  .philosophy-page .page-header,
  .philosophy-page .mobile-header {
    animation: pageHeaderIn 680ms var(--ease-luxury) both;
  }

  .philosophy-page .philosophy-hero__copy {
    animation: pageContentIn 980ms var(--ease-luxury) 120ms both;
  }

  .factory-page .factory-hero,
  .philosophy-page .philosophy-hero__image {
    overflow: hidden;
    animation: pageContentIn 1040ms var(--ease-luxury) 80ms both;
  }

  .factory-page .factory-hero img,
  .philosophy-page .philosophy-hero__image img {
    animation: pageImageIn 1300ms var(--ease-luxury) 120ms both;
  }

  .product-page .product-section--page {
    animation: productPageSurfaceIn 620ms var(--ease-fade) backwards;
  }

  .product-page .product-card {
    animation: productCardIn 1180ms var(--ease-luxury) 170ms backwards;
    transform-origin: center top;
  }

  .product-page .product-card__image img {
    animation: productImageSettle 1480ms var(--ease-luxury) 250ms backwards;
  }

  .product-page .product-card__name {
    animation: productNameIn 760ms var(--ease-fade) 560ms backwards;
  }
}

.reveal-ready .js-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.992);
  transition: opacity 900ms var(--ease-fade), transform 1100ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .js-reveal--soft {
  transform: translate3d(0, 18px, 0) scale(0.996);
}

.reveal-ready .js-reveal--row {
  transform: translate3d(0, 14px, 0);
}

.reveal-ready .js-reveal--image {
  transform: translate3d(0, 34px, 0) scale(0.986);
}

.reveal-ready .js-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-ready .js-reveal.is-reveal-complete {
  will-change: auto;
}

.reveal-ready .factory-gallery .js-reveal img,
.reveal-ready .philosophy-craft__image.js-reveal img {
  transform: scale(1.035);
  transition: transform 1400ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform;
}

.reveal-ready .factory-gallery .js-reveal.is-revealed img,
.reveal-ready .philosophy-craft__image.js-reveal.is-revealed img {
  transform: scale(1);
}

.reveal-ready .factory-gallery .js-reveal.is-reveal-complete img,
.reveal-ready .philosophy-craft__image.js-reveal.is-reveal-complete img {
  will-change: auto;
}

.first-view__copy {
  position: relative;
  min-height: 100%;
  padding-left: 96px;
}

.intro-copy {
  position: absolute;
  top: 190px;
  left: 96px;
  width: 340px;
  text-align: center;
}

.brand-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 36px;
  line-height: 0;
  opacity: 0;
  animation: heroMarkIn 1120ms var(--ease-luxury) 160ms both;
}

.brand-logo img {
  width: 156px;
  max-width: 100%;
  height: auto;
}

.statement {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeUp 960ms var(--ease-luxury) 380ms both;
}

.intro-copy p:last-child {
  margin: 0;
  color: #17202d;
  font-size: 13px;
  line-height: 1.72;
  letter-spacing: 0.07em;
  opacity: 0;
  animation: heroFadeUp 980ms var(--ease-luxury) 540ms both;
}

.first-view__visual {
  position: relative;
  align-self: start;
  height: calc(100vh - 92px);
  margin: 42px 100px 50px 0;
  overflow: hidden;
  background: #e7ecee;
  opacity: 0;
  transform-origin: center;
  animation: heroVisualIn 1380ms var(--ease-luxury) 220ms both;
  will-change: opacity, transform;
}

.first-view__slide {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1500ms var(--ease-fade), transform 8200ms var(--ease-enter);
  will-change: opacity, transform;
}

.first-view__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1.04);
}

.first-view__mobile-brand {
  display: none;
}

.feature-band {
  background: var(--panel);
  padding: 73px 0 109px;
}

.feature-grid {
  display: grid;
  width: calc(100% - 230px);
  max-width: 1670px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
}

.feature-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
}

.feature-card__image::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms var(--ease-fade);
}

.feature-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 680ms var(--ease-luxury), filter 520ms var(--ease-fade);
}

.feature-card:hover img,
.feature-card:focus-visible img {
  filter: brightness(0.72);
  transform: scale(1.045);
}

.feature-card:hover .feature-card__image::after,
.feature-card:focus-visible .feature-card__image::after {
  opacity: 1;
}

.feature-card div {
  padding: 30px 38px 35px;
  text-align: center;
}

.feature-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.feature-card p {
  margin: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.03em;
}

.product-section {
  scroll-margin-top: 0;
  background: var(--panel);
  padding: 73px 0 109px;
}

.product-page-main {
  background: var(--panel);
}

.factory-page-main {
  background: var(--white);
}

.product-grid {
  display: grid;
  width: calc(100% - 230px);
  max-width: 1670px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 88px;
  overflow: hidden;
  background: var(--white);
}

.product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #dfe4e5;
}

.product-card__image::before,
.product-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  transition: opacity 480ms var(--ease-fade);
}

.product-card__image::before {
  background: var(--product-overlay, transparent);
  opacity: var(--product-overlay-opacity, 0);
}

.product-card__image::after {
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
}

.product-card img {
  height: 100%;
  object-fit: cover;
  object-position: var(--product-position, center);
  transform: scale(1);
  transition: transform 720ms var(--ease-luxury), filter 560ms var(--ease-fade);
  will-change: transform, filter;
}

.product-card:hover .product-card__image img,
.product-card:focus-visible .product-card__image img,
.product-card__image:hover img {
  filter: brightness(0.88);
  transform: scale(1.035);
}

.product-card:hover .product-card__image::after,
.product-card:focus-visible .product-card__image::after,
.product-card__image:hover::after {
  opacity: 1;
}

.product-card__name {
  display: flex;
  min-width: 0;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: clamp(17px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.13em;
  text-align: center;
  text-wrap: balance;
}

.shop-dialog {
  width: min(560px, calc(100% - 44px));
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.shop-dialog::backdrop {
  background: rgba(2, 7, 17, 0.46);
  backdrop-filter: blur(5px) saturate(0.92);
  -webkit-backdrop-filter: blur(5px) saturate(0.92);
}

.shop-dialog__inner {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(2, 7, 17, 0.13);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 86px rgba(2, 7, 17, 0.18);
  padding: 54px clamp(28px, 5vw, 58px) 44px;
  text-align: center;
}

.shop-dialog__inner::before {
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 4px;
  background: rgba(2, 7, 17, 0.42);
  content: "";
}

.shop-dialog__eyebrow,
.shop-dialog__product {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.shop-dialog h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.shop-dialog__product {
  color: #000;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.shop-dialog p:not(.shop-dialog__eyebrow):not(.shop-dialog__product) {
  max-width: 28em;
  margin: 0 auto;
  color: #17202d;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.shop-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.shop-dialog__actions button,
.shop-dialog__actions a {
  display: inline-flex;
  min-width: 138px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(2, 7, 17, 0.18);
  background: transparent;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  padding: 0 20px;
  transition: border-color 260ms var(--ease-fade), background 260ms var(--ease-fade),
    color 260ms var(--ease-fade);
}

.shop-dialog__actions a {
  background: #101c24;
  border-color: #101c24;
  color: #fff;
}

.shop-dialog__actions button:hover,
.shop-dialog__actions button:focus-visible {
  border-color: rgba(2, 7, 17, 0.46);
}

.shop-dialog__actions a:hover,
.shop-dialog__actions a:focus-visible {
  background: #000;
  border-color: #000;
}

.shop-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  padding: 0;
}

.shop-dialog__close span {
  position: absolute;
  top: 21px;
  left: 12px;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.shop-dialog__close span:first-child {
  transform: rotate(45deg);
}

.shop-dialog__close span:last-child {
  transform: rotate(-45deg);
}

.shop-dialog__close:focus-visible,
.shop-dialog__actions button:focus-visible,
.shop-dialog__actions a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .shop-dialog[open] .shop-dialog__inner {
    animation: pageContentIn 760ms var(--ease-luxury) both;
  }
}

.product-card--lotus {
  --product-overlay: #f0eee8;
  --product-overlay-opacity: 0.36;
  --product-position: 44% 54%;
}

.product-card--fresca {
  --product-overlay: #dfeef4;
  --product-overlay-opacity: 0.08;
  --product-position: 50% 58%;
}

.product-card--coca {
  --product-overlay: #dbece7;
  --product-overlay-opacity: 0.2;
  --product-position: 54% 42%;
}

.product-card--cloud {
  --product-overlay: #f5f4ed;
  --product-overlay-opacity: 0.28;
  --product-position: 42% 50%;
}

.product-card--zero {
  --product-overlay: #1c2428;
  --product-overlay-opacity: 0.16;
  --product-position: 50% 50%;
}

.product-card--cross {
  --product-overlay: #07172c;
  --product-overlay-opacity: 0.12;
  --product-position: 58% 46%;
}

.product-card--king {
  --product-overlay: #e7e2d7;
  --product-overlay-opacity: 0.2;
  --product-position: 46% 52%;
}

.factory-hero {
  height: 32vw;
  min-height: 360px;
  max-height: 610px;
  margin: 0;
  overflow: hidden;
  background: #222;
}

.factory-hero img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.factory-intro {
  width: min(1088px, calc(100% - 320px));
  margin: 0 auto;
  padding: 46px 0 56px;
}

.factory-intro__kicker {
  margin: 0 0 16px;
  color: var(--muted);
  text-align: center;
  font-size: var(--section-label-size);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.factory-intro h1 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.factory-intro__body {
  display: grid;
  gap: 0;
  color: #0f1720;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.02em;
}

.factory-intro__body p {
  margin: 0;
}

.factory-gallery {
  display: grid;
  width: min(1339px, calc(100% - 250px));
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 50px 26px;
  padding: 2px 0 68px;
}

.factory-gallery__wide,
.factory-gallery__image {
  overflow: hidden;
  background: #e5e5e5;
}

.factory-gallery__wide {
  grid-column: span 3;
  aspect-ratio: 1.5 / 1;
}

.factory-gallery__image {
  grid-column: span 2;
  aspect-ratio: 1.5 / 1;
}

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

.factory-gallery__image--weave img {
  object-position: 60% 52%;
}

.factory-gallery__image--fabric img {
  object-position: 46% 52%;
}

.factory-gallery__image--project img {
  object-position: 50% 48%;
}

.factory-gallery__image--detail img {
  object-position: 64% 38%;
}

.factory-specs {
  --factory-specs-column-gap: 50px;
  width: min(1284px, calc(100% - 304px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.factory-specs dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--factory-specs-column-gap);
  margin: 0;
}

.factory-specs div {
  min-height: 102px;
  border-top: 1px solid var(--line);
  padding: 24px 24px 21px;
}

.factory-specs div:last-child {
  border-bottom: 1px solid var(--line);
}

.factory-specs__wide {
  grid-column: 1 / -1;
}

.factory-specs__columns dd {
  display: grid;
  grid-template-columns: calc((100% + 48px - var(--factory-specs-column-gap)) / 2) minmax(0, 1fr);
  column-gap: var(--factory-specs-column-gap);
  max-width: none;
}

.factory-specs__columns span {
  display: block;
}

.factory-specs dt {
  margin: 0 0 9px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.factory-specs dd {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.philosophy-page-main {
  background: var(--white);
}

.philosophy-hero {
  display: block;
  margin: 0;
  padding: 0;
}

.philosophy-hero__copy {
  width: min(1088px, calc(100% - 320px));
  max-width: none;
  margin: 0 auto;
  padding: 46px 0 56px;
  text-align: center;
}

.philosophy-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--section-label-size);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.philosophy-hero h1,
.philosophy-craft h2,
.philosophy-closing h2 {
  margin: 0;
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: var(--section-title-line-height);
  letter-spacing: 0.04em;
}

.philosophy-hero__copy p:last-child,
.philosophy-statement p,
.philosophy-value-list p,
.philosophy-craft__copy p,
.philosophy-closing p {
  margin: 0;
  color: #0f1720;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.86;
  letter-spacing: 0.02em;
}

.philosophy-hero h1 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.philosophy-hero__copy p:last-child {
  max-width: var(--reading-measure);
  margin: 30px auto 0;
  text-align: center;
  text-wrap: pretty;
}

.philosophy-hero__image,
.philosophy-craft__image {
  margin: 0;
  overflow: hidden;
  background: #e8e8e6;
}

.philosophy-hero__image {
  height: 32vw;
  min-height: 360px;
  max-height: 610px;
  background: #d7d8d2;
}

.philosophy-hero__image img,
.philosophy-craft__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-hero__image img {
  object-position: 50% 50%;
}

.philosophy-statement {
  width: min(920px, calc(100% - 360px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}

.philosophy-statement p {
  text-align: center;
}

.philosophy-values {
  width: min(1284px, calc(100% - 304px));
  margin: 0 auto;
  padding: 78px 0 92px;
}

.philosophy-section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 44px;
  text-align: center;
}

.philosophy-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: var(--section-label-size);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.philosophy-section-heading h2 {
  margin: 0;
  max-width: 16em;
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: var(--section-title-line-height);
  letter-spacing: 0.04em;
}

.philosophy-value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 34px 0 38px;
  list-style: none;
}

.philosophy-value-list li {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding: 0 clamp(18px, 2vw, 30px);
}

.philosophy-value-list li:first-child {
  border-left: 0;
  padding-left: 0;
}

.philosophy-value-list li:last-child {
  padding-right: 0;
}

.philosophy-value-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.philosophy-value-list h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.philosophy-value-list p {
  font-size: 13px;
  line-height: 1.84;
}

.philosophy-craft {
  display: grid;
  width: min(1284px, calc(100% - 304px));
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(58px, 6vw, 78px);
  padding: 0 0 92px;
}

.philosophy-craft__image {
  --philosophy-craft-image-position: 50% 48%;
  width: min(100%, 456px);
  aspect-ratio: 0.74 / 1;
  justify-self: end;
}

.philosophy-craft__image--history {
  --philosophy-craft-image-position: 100% 50%;
}

.philosophy-craft__image img {
  object-position: var(--philosophy-craft-image-position);
}

.philosophy-craft__copy {
  display: grid;
  max-width: 560px;
  gap: 18px;
}

.philosophy-craft__copy .philosophy-kicker {
  margin-bottom: -2px;
  color: var(--muted);
  font-size: var(--section-label-size);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.philosophy-craft__copy h3 {
  margin: 8px 0 -6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.philosophy-closing {
  width: min(760px, calc(100% - 360px));
  margin: 0 auto;
  padding: 4px 0 112px;
  text-align: center;
}

.philosophy-closing .philosophy-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--section-label-size);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
}

.philosophy-closing p:not(.philosophy-kicker) {
  margin-top: 24px;
}

.news-section {
  padding: 60px 0 90px;
  background: var(--white);
}

.news-section h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.news-list {
  width: 73.4%;
  max-width: 1396px;
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  align-items: start;
  padding: 29px 0 25px;
}

.news-item:first-child {
  border-top: 0;
}

.news-item time {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.news-item p {
  margin: -5px 0 0;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.footer {
  display: flex;
  min-height: 272px;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 0;
  padding: 0 176px 72px;
  background: #101c24;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.footer p {
  margin: 0;
}

.footer nav p + p {
  margin-top: 2px;
}

.footer a {
  transition: opacity 220ms var(--ease-fade);
}

.footer a:hover,
.footer a:focus-visible {
  opacity: 0.72;
}

@media (max-width: 1199px) {
  .first-view {
    grid-template-columns: minmax(300px, 34vw) minmax(0, 1fr);
    height: max(720px, 100vh);
  }

  .first-view__copy {
    padding-left: clamp(30px, 4vw, 52px);
  }

  .intro-copy {
    top: 184px;
    left: clamp(30px, 4vw, 52px);
    width: clamp(240px, 24vw, 280px);
  }

  .brand-logo {
    margin-bottom: 34px;
  }

  .brand-logo img {
    width: clamp(122px, 12vw, 136px);
  }

  .first-view__visual {
    height: calc(max(720px, 100vh) - 92px);
    margin-right: 64px;
  }

  .first-view__slide {
    height: 100%;
  }

  .feature-grid,
  .product-grid,
  .news-list {
    width: calc(100% - 120px);
  }

  .feature-card {
    grid-template-rows: auto 1fr;
  }

  .feature-card div {
    padding: 28px 24px 32px;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.72;
  }

  .feature-card h2 {
    font-size: 17px;
  }

  .product-card {
    grid-template-rows: auto 82px;
  }

  .product-card__name {
    min-height: 82px;
    font-size: clamp(15.5px, 1.6vw, 17px);
    line-height: 1.18;
  }

  .news-section h2 {
    font-size: 17px;
  }

  .news-item p {
    font-size: 15px;
    line-height: 1.55;
  }

  .news-item time {
    font-size: 11px;
  }

  .footer {
    padding-right: 80px;
    padding-left: 80px;
  }

  .factory-intro {
    width: calc(100% - 180px);
  }

  .factory-gallery,
  .factory-specs {
    width: calc(100% - 120px);
  }

  .philosophy-hero,
  .philosophy-values,
  .philosophy-craft {
    width: calc(100% - 120px);
  }

  .philosophy-hero {
    width: 100%;
  }

  .philosophy-hero__copy {
    width: calc(100% - 180px);
  }

  .philosophy-statement,
  .philosophy-closing {
    width: calc(100% - 220px);
  }

  .philosophy-hero,
  .philosophy-craft {
    gap: 56px;
  }

  .philosophy-craft {
    grid-template-columns: minmax(240px, 0.76fr) minmax(330px, 1fr);
  }

  .philosophy-craft__image {
    width: min(100%, 420px);
  }
}

@media (max-width: 780px) {
  .philosophy-craft {
    grid-template-columns: 1fr;
  }

  .philosophy-craft__image,
  .philosophy-craft__copy {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .philosophy-craft__image {
    aspect-ratio: 1.26 / 1;
  }

  .philosophy-craft__image--history {
    --philosophy-craft-image-position: 100% 50%;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .philosophy-values {
    width: calc(100% - 48px);
  }

  .philosophy-value-list {
    padding: 30px 0 34px;
  }

  .philosophy-value-list li {
    gap: 13px;
    padding: 0 14px;
  }

  .philosophy-value-list li:first-child {
    padding-left: 0;
  }

  .philosophy-value-list li:last-child {
    padding-right: 0;
  }

  .philosophy-value-list h3 {
    font-size: 15px;
  }

  .philosophy-value-list p {
    font-size: 12px;
    line-height: 1.78;
  }
}

@media (max-width: 640px) {
  .page-header {
    display: none;
  }

  .mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 45;
    display: flex;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(2, 7, 17, 0.1);
    background: var(--white);
    color: #000;
  }

  .mobile-header__logo {
    display: block;
    line-height: 0;
  }

  .mobile-header__logo img {
    width: 86px;
    height: auto;
  }

  .menu-button {
    top: 12px;
    right: 17px;
    color: #000;
  }

  .menu-button[aria-expanded="true"] {
    color: #000;
  }

  .menu-panel {
    width: 100vw;
  }

  .menu-panel__inner {
    gap: 28px;
    padding: 172px 38px 46px;
  }

  .menu-primary,
  .menu-group__head {
    font-size: 22px;
  }

  .menu-group__head {
    width: 145px;
  }

  .menu-subnav {
    margin-left: 132px;
    font-size: 16px;
  }

  .menu-subnav__inner {
    gap: 17px;
  }

  .menu-panel__footer {
    gap: 24px;
    padding: 0 38px 38px;
    font-size: 16px;
  }

  .first-view {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 72px 0 0;
  }

  .first-view__copy {
    order: 2;
    min-height: 0;
    padding: 0;
  }

  .intro-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 26px 28px 16px;
  }

  .brand-logo {
    display: none;
  }

  .first-view__visual {
    order: 1;
    align-self: stretch;
    width: 100%;
    height: clamp(320px, 46vh, 430px);
    min-height: 0;
    margin: 0;
  }

  .first-view__slide {
    height: 100%;
    min-height: 0;
  }

  .first-view__mobile-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    width: clamp(106px, 28vw, 136px);
    aspect-ratio: 520 / 759;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 46px rgba(2, 7, 17, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.985);
    animation: mobileHeroMarkIn 1180ms var(--ease-luxury) 420ms both;
    backdrop-filter: blur(6px) saturate(0.9);
    -webkit-backdrop-filter: blur(6px) saturate(0.9);
  }

  .first-view__mobile-brand img {
    width: 83%;
    height: auto;
  }

  .feature-band {
    padding: 16px 22px 62px;
  }

  .feature-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-rows: auto auto;
  }

  .feature-card__image {
    aspect-ratio: 1.26 / 1;
  }

  .feature-card div {
    padding: 28px 30px 34px;
  }

  .product-section {
    scroll-margin-top: 72px;
    padding: 24px 22px 62px;
  }

  .product-section--page {
    padding-top: 96px;
  }

  .factory-hero {
    height: 56vh;
    min-height: 340px;
    max-height: none;
    margin-top: 72px;
  }

  .factory-intro {
    width: 100%;
    padding: 36px 28px 42px;
  }

  .factory-intro__kicker {
    margin-bottom: 12px;
    font-size: var(--section-label-size-sm);
  }

  .factory-intro h1 {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .factory-intro__body {
    gap: 0;
    font-size: 13px;
    line-height: 1.76;
  }

  .factory-gallery {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 22px 52px;
  }

  .factory-gallery__wide,
  .factory-gallery__image {
    grid-column: auto;
    aspect-ratio: 1.26 / 1;
  }

  .factory-specs {
    width: 100%;
    padding: 0 22px 72px;
  }

  .factory-specs dl {
    grid-template-columns: 1fr;
  }

  .factory-specs div {
    min-height: 96px;
    padding: 22px 0 20px;
  }

  .factory-specs__columns dd {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .factory-specs dt {
    font-size: 12px;
  }

  .factory-specs dd {
    font-size: 15px;
    line-height: 1.45;
  }

  .philosophy-hero {
    width: 100%;
    padding: 0;
  }

  .philosophy-hero__image {
    height: 56vh;
    min-height: 340px;
    max-height: none;
    margin-top: 72px;
    aspect-ratio: auto;
  }

  .philosophy-hero__copy {
    width: 100%;
    padding: 36px 28px 42px;
  }

  .philosophy-kicker {
    margin-bottom: 12px;
    font-size: var(--section-label-size-sm);
  }

  .philosophy-hero h1,
  .philosophy-craft h2,
  .philosophy-closing h2 {
    font-size: var(--section-title-size-sm);
    line-height: var(--section-title-line-height);
  }

  .philosophy-hero h1 {
    line-height: 1.2;
  }

  .philosophy-hero__copy p:last-child,
  .philosophy-statement p,
  .philosophy-value-list p,
  .philosophy-craft__copy p,
  .philosophy-closing p {
    font-size: 13px;
    line-height: 1.82;
  }

  .philosophy-hero__copy p:last-child {
    max-width: 34em;
    margin-top: 26px;
    text-align: center;
  }

  .philosophy-statement {
    width: auto;
    margin: 0 22px;
    padding: 36px 0;
  }

  .philosophy-statement p {
    text-align: left;
  }

  .philosophy-values {
    width: 100%;
    padding: 52px 22px 62px;
  }

  .philosophy-section-heading {
    gap: 11px;
    margin-bottom: 32px;
    text-align: center;
  }

  .philosophy-section-heading h2 {
    margin: 0 auto;
    font-size: var(--section-title-size-sm);
  }

  .philosophy-value-list {
    grid-template-columns: 1fr;
    border-bottom: 0;
    padding: 0;
  }

  .philosophy-value-list li {
    grid-template-columns: 1fr;
    gap: 9px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px 0 26px;
  }

  .philosophy-value-list h3 {
    font-size: 16px;
  }

  .philosophy-value-list p {
    font-size: 13px;
    line-height: 1.82;
  }

  .philosophy-craft {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 22px 64px;
  }

  .philosophy-craft__image {
    aspect-ratio: 1.26 / 1;
  }

  .philosophy-craft__copy {
    gap: 18px;
  }

  .philosophy-craft__copy .philosophy-kicker,
  .philosophy-craft__copy h2 {
    text-align: center;
  }

  .philosophy-craft__copy .philosophy-kicker {
    font-size: var(--section-label-size-sm);
  }

  .philosophy-closing {
    width: auto;
    margin: 0 22px;
    padding: 0 0 78px;
    text-align: center;
  }

  .philosophy-closing .philosophy-kicker {
    font-size: var(--section-label-size-sm);
  }

  .product-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    grid-template-rows: auto 76px;
  }

  .product-card__image {
    aspect-ratio: 1.26 / 1;
  }

  .product-card__name {
    min-height: 76px;
    padding: 0 18px;
    font-size: clamp(15.5px, 4vw, 16.5px);
    line-height: 1.2;
    letter-spacing: 0.12em;
  }

  .news-section {
    padding: 46px 22px 72px;
  }

  .news-list {
    width: 100%;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-item time {
    text-align: left;
  }

  .news-item p {
    font-size: 15px;
  }

  .footer {
    display: grid;
    min-height: 220px;
    gap: 34px;
    padding: 68px 22px 48px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .brand-logo,
  .statement,
  .intro-copy p:last-child,
  .first-view__visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .first-view__mobile-brand {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    animation: none !important;
  }
}
