:root {
  --paper: #f4efe5;
  --paper-light: #fbf8f1;
  --paper-deep: #e9dfcf;
  --ink: #1f1b17;
  --ink-soft: #493f35;
  --muted: #766b5e;
  --wood: #5c3724;
  --wood-dark: #2e1d15;
  --copper: #a76c43;
  --gold: #c6a56a;
  --moss: #52604f;
  --line: rgba(66, 49, 35, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 56px rgba(48, 35, 24, 0.14);
  --radius: 4px;
  --serif: "Noto Serif SC", "Songti SC", SimSun, Georgia, serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.17;
}

.section-copy,
.lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  color: #fffaf0;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(14px);
}

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

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

.brand-seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.brand-en {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  opacity: 0.76;
  text-transform: uppercase;
}

.desktop-nav,
.nav-links,
.nav-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 26px;
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  opacity: 0.88;
}

.nav-links a:hover,
.language-switch a:hover {
  opacity: 1;
  color: var(--copper);
}

.language-switch {
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.language-switch a {
  opacity: 0.62;
}

.language-switch a[aria-current="page"] {
  color: var(--copper);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span {
  opacity: 0;
}

.menu-toggle.is-active::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  overflow: hidden;
  place-items: center;
  color: #fffaf0;
  background: #221a15;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 17, 13, 0.92) 0%, rgba(24, 17, 13, 0.72) 42%, rgba(24, 17, 13, 0.2) 78%),
    linear-gradient(180deg, rgba(22, 15, 11, 0.5), rgba(22, 15, 11, 0.18) 52%, rgba(22, 15, 11, 0.72));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin-right: auto;
  padding-top: 92px;
}

.hero .eyebrow {
  color: #d8bd8a;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9vw, 7.7rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}

.hero-subtitle {
  margin: 23px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0.12em;
}

.hero-studio {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--wood);
  color: #fffaf0;
  background: var(--wood);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--copper);
  background: var(--copper);
}

.button-outline {
  border-color: rgba(255, 250, 240, 0.58);
  color: #fffaf0;
  background: transparent;
}

.button-outline:hover {
  border-color: #fffaf0;
  color: var(--ink);
  background: #fffaf0;
}

.button-light {
  border-color: var(--paper-light);
  color: var(--wood-dark);
  background: var(--paper-light);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 250, 240, 0.76);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.hero-note::before {
  width: 1px;
  height: 72px;
  background: rgba(255, 250, 240, 0.4);
  content: "";
}

.intro {
  padding: 118px 0 92px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 74px;
  align-items: start;
}

.intro-quote {
  margin: 0;
  color: var(--wood-dark);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.32;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 35px;
  background: var(--line);
}

.stat {
  min-height: 112px;
  padding: 18px;
  background: var(--paper-light);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--wood);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.stat span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-overview-section {
  padding: 0 0 108px;
}

.material-overview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.material-overview-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.material-overview-head p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.material-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.material-overview-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  margin: 0;
  background: var(--paper-deep);
}

.material-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.material-overview-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 70px 20px 20px;
  color: #fffaf0;
  background: linear-gradient(180deg, transparent, rgba(31, 24, 19, 0.84));
}

.material-overview-card span,
.material-overview-card strong,
.material-overview-card small {
  display: block;
}

.material-overview-card span,
.material-overview-card small {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-overview-card strong {
  margin: 4px 0 3px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
}

.works-section,
.craft-section,
.international-section,
.contact-section {
  background: var(--paper-light);
}

.works-section,
.spaces-section,
.craft-section,
.process-section,
.culture-section,
.international-section,
.contact-section {
  padding: 108px 0;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 32px;
}

.filter-button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--wood);
  color: #fffaf0;
  background: var(--wood);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 0;
  background: var(--paper-deep);
  cursor: pointer;
  text-align: left;
}

.work-card:nth-child(1),
.work-card:nth-child(8) {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.work-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 18px 16px;
  color: #fffaf0;
  background: linear-gradient(180deg, transparent, rgba(25, 17, 12, 0.86));
}

.work-overlay strong,
.work-overlay span {
  display: block;
}

.work-overlay strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

.work-overlay span {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.space-card {
  min-height: 230px;
  padding: 30px 24px;
  background: var(--paper);
}

.space-card:nth-child(2),
.space-card:nth-child(7) {
  background: var(--paper-deep);
}

.space-index {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1rem;
}

.space-card h3 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.space-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: 640px;
  background: var(--wood-dark);
}

.craft-media {
  min-height: 470px;
}

.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.craft-copy {
  padding: 70px 64px;
  color: #fffaf0;
}

.craft-copy .eyebrow {
  color: #d8bd8a;
}

.craft-copy .section-title {
  max-width: 510px;
}

.craft-copy > p {
  color: rgba(255, 250, 240, 0.72);
}

.craft-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.craft-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-top: 17px;
  border-top: 1px solid var(--line-light);
}

.craft-point span {
  color: #d8bd8a;
  font-family: var(--serif);
}

.craft-point h3,
.craft-point p {
  margin: 0;
}

.craft-point h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.craft-point p {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.84rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.process-step {
  min-height: 220px;
  padding: 24px;
  background: var(--paper);
}

.process-step span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-step h3 {
  margin: 30px 0 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.culture-grid,
.international-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.culture-image,
.international-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.culture-image img,
.international-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.culture-copy .section-title,
.international-copy .section-title {
  margin-bottom: 20px;
}

.culture-copy p,
.international-copy p {
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tag-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.international-image::after,
.culture-image::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.48);
  content: "";
  pointer-events: none;
}

.contact-card {
  padding: 42px;
  color: #fffaf0;
  background: var(--wood-dark);
}

.contact-card .eyebrow {
  color: #d8bd8a;
}

.contact-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 500;
  line-height: 1.18;
}

.contact-card > p {
  color: rgba(255, 250, 240, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
}

.contact-list strong {
  display: inline-block;
  min-width: 76px;
  color: #d8bd8a;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-qr {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  background: rgba(255, 250, 240, 0.06);
}

.contact-qr img {
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.contact-qr strong {
  display: block;
  color: #d8bd8a;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
}

.contact-qr p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.82rem;
}

.inquiry-panel {
  padding: 12px 0;
}

.inquiry-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.inquiry-panel > p {
  color: var(--muted);
}

.inquiry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
}

.inquiry-list span {
  min-height: 82px;
  padding: 18px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 250, 240, 0.68);
  background: #1f1712;
  font-size: 0.75rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.62fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: 34px;
}

.footer-brand,
.footer-contact,
.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-kicker,
.footer-group h2 {
  margin: 0;
  color: #d8bd8a;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-brand strong {
  display: block;
  margin-top: 10px;
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
}

.footer-brand p:last-child {
  max-width: 390px;
  margin: 13px 0 0;
  line-height: 1.85;
}

.footer-group h2 {
  margin-bottom: 16px;
}

.footer-nav a,
.footer-contact span {
  line-height: 1.7;
}

.footer-contact span {
  overflow-wrap: anywhere;
}

.footer-contact a:hover,
.footer-nav a:hover,
.footer-languages a:hover {
  color: #fffaf0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.footer-languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-languages span {
  color: #d8bd8a;
}

.footer-records {
  margin-top: 16px;
  text-align: right;
}

.footer-records a {
  margin-left: 14px;
}

.footer-records[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: #fffaf0;
  background: rgba(19, 14, 11, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  display: grid;
  max-width: min(1040px, 100%);
  max-height: calc(100vh - 56px);
  gap: 12px;
}

.lightbox img {
  max-height: calc(100vh - 118px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  color: #fffaf0;
  background: rgba(31, 23, 18, 0.78);
  cursor: pointer;
  font-size: 1.4rem;
}

.lightbox-meta {
  color: rgba(255, 250, 240, 0.82);
  font-family: var(--serif);
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    z-index: 45;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 28px 24px;
    color: var(--ink);
    background: #f8f4ec;
    box-shadow: 0 18px 34px rgba(48, 35, 24, 0.12);
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.28rem;
  }

  .mobile-nav .language-switch {
    gap: 16px;
    margin-top: 24px;
    padding-left: 0;
    border-left: 0;
  }

  .mobile-nav .language-switch a {
    display: inline-block;
    border-bottom: 0;
    font-family: var(--sans);
    font-size: 0.7rem;
  }

  .hero {
    min-height: 780px;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .craft-copy {
    padding: 52px 44px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section-head,
  .intro-grid,
  .culture-grid,
  .international-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-header .brand-en {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(24, 17, 13, 0.88), rgba(24, 17, 13, 0.4)),
      linear-gradient(180deg, rgba(22, 15, 11, 0.36), rgba(22, 15, 11, 0.72));
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 19vw, 5.5rem);
  }

  .hero-subtitle {
    letter-spacing: 0.06em;
  }

  .hero-note {
    display: none;
  }

  .hero-actions .button {
    min-height: 45px;
    padding: 0 14px;
    font-size: 0.67rem;
  }

  .intro,
  .works-section,
  .spaces-section,
  .craft-section,
  .process-section,
  .culture-section,
  .international-section,
  .contact-section {
    padding: 76px 0;
  }

  .intro-stats,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .work-card,
  .work-card:nth-child(1),
  .work-card:nth-child(8) {
    grid-column: span 1;
    min-height: 214px;
  }

  .work-card:nth-child(1) {
    grid-column: span 2;
    min-height: 270px;
  }

  .space-card {
    min-height: 194px;
    padding: 22px 18px;
  }

  .space-card h3 {
    margin-top: 17px;
    font-size: 1.18rem;
  }

  .craft-copy {
    padding: 34px 24px;
  }

  .culture-image,
  .international-image {
    min-height: 360px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-qr {
    align-items: flex-start;
  }

  .contact-qr img {
    width: 112px;
    height: 112px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    display: grid;
    gap: 14px;
  }

  .footer-languages {
    justify-content: flex-start;
  }
}

/* Editorial artwork layout added for the root and bamboo collections. */
.light-header {
  color: var(--ink);
}

.editorial-hero {
  min-height: 900px;
  color: var(--ink);
  background: #f8f5ef;
}

.editorial-hero .hero-media {
  inset: 90px -4vw 38px 37vw;
}

.editorial-hero .hero-media::after {
  background: linear-gradient(90deg, #f8f5ef 0%, rgba(248, 245, 239, 0.86) 12%, rgba(248, 245, 239, 0) 46%);
}

.editorial-hero .hero-media img {
  object-fit: contain;
  filter: none;
  mix-blend-mode: multiply;
}

.editorial-hero .hero-content {
  width: min(100%, 620px);
  padding-top: 116px;
}

.editorial-hero .eyebrow {
  color: var(--copper);
}

.editorial-hero .hero-studio {
  color: var(--copper);
}

.editorial-hero h1 {
  max-width: 660px;
  color: var(--wood-dark);
  font-size: clamp(3.8rem, 8vw, 7.2rem);
}

.editorial-hero .hero-copy {
  color: var(--ink-soft);
}

.editorial-hero .button-outline {
  border-color: rgba(58, 36, 24, 0.48);
  color: var(--wood-dark);
}

.editorial-hero .button-outline:hover {
  border-color: var(--wood-dark);
  color: #fffaf0;
  background: var(--wood-dark);
}

.editorial-hero .hero-note {
  color: rgba(58, 36, 24, 0.56);
}

.editorial-hero .hero-note::before {
  background: rgba(58, 36, 24, 0.3);
}

.collection-block + .collection-block {
  margin-top: 96px;
  padding-top: 84px;
  border-top: 1px solid var(--line);
}

.collection-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.collection-header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.collection-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.collection-grid {
  display: grid;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.collection-grid-bamboo {
  grid-auto-rows: 220px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 0;
  background: #ebe8e1;
  cursor: pointer;
  text-align: left;
}

.collection-card:nth-child(1),
.collection-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.collection-card:nth-child(3),
.collection-card:nth-child(8) {
  grid-row: span 2;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.collection-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 16px 14px;
  color: #fffaf0;
  background: linear-gradient(180deg, transparent, rgba(31, 24, 19, 0.8));
}

.collection-overlay strong,
.collection-overlay span {
  display: block;
}

.collection-overlay strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 500;
}

.collection-overlay span {
  margin-top: 2px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-section {
  padding: 108px 0;
  background: #e8dfd1;
}

.material-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
  align-items: center;
}

.material-copy .section-title {
  margin-bottom: 20px;
}

.material-copy p {
  color: var(--ink-soft);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
}

.detail-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--paper-light);
}

.detail-grid figure:first-child {
  grid-row: span 2;
}

.detail-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.detail-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 12px 10px;
  color: #fffaf0;
  background: linear-gradient(180deg, transparent, rgba(31, 24, 19, 0.72));
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

@media (max-width: 1020px) {
  .editorial-hero .hero-media {
    inset: 104px -17vw 58px 28vw;
  }

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

@media (max-width: 760px) {
  .editorial-hero {
    display: block;
    min-height: 760px;
    padding-top: 76px;
  }

  .editorial-hero .hero-media {
    inset: 300px -22vw 24px 1vw;
  }

  .editorial-hero .hero-media::after {
    background: linear-gradient(180deg, #f8f5ef 0%, rgba(248, 245, 239, 0.34) 24%, rgba(248, 245, 239, 0) 56%);
  }

  .editorial-hero .hero-content {
    padding-top: 56px;
  }

  .editorial-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.1rem);
  }

  .editorial-hero .hero-copy {
    max-width: 92%;
  }

  .collection-header,
  .material-overview-head,
  .material-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .material-overview-head {
    display: grid;
  }

  .material-overview-section {
    padding-bottom: 76px;
  }

  .material-overview-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .material-overview-card {
    min-height: 260px;
  }

  .collection-block + .collection-block {
    margin-top: 68px;
    padding-top: 62px;
  }

  .collection-grid {
    grid-auto-rows: 172px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .collection-card:nth-child(1),
  .collection-card:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .collection-card:nth-child(3),
  .collection-card:nth-child(8) {
    grid-row: span 1;
  }

  .material-section {
    padding: 76px 0;
  }

  .detail-grid {
    grid-auto-rows: 154px;
    gap: 8px;
  }
}
