* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #9f7630;
  --gold-deep: #7e5d23;
  --dark: #181614;
  --mid: #3f3933;
  --light: #f4efe7;
  --paper: #fbf8f2;
  --white: #ffffff;
  --text: #282420;
  --text-light: #6d655c;
  --line: rgba(73, 58, 34, 0.12);
  --shadow: 0 24px 60px rgba(38, 28, 12, 0.08);
  --wash: rgba(201, 170, 120, 0.12);
}

body {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 185, 134, 0.16) 0%, rgba(214, 185, 134, 0) 26%),
    radial-gradient(circle at bottom right, rgba(179, 140, 84, 0.1) 0%, rgba(179, 140, 84, 0) 24%),
    linear-gradient(to bottom, #fcfbf8 0%, #f8f4ed 100%);
  line-height: 1.72;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body.lightbox-open {
  overflow: hidden;
}

/* LANGUAGE TOGGLE */
.zh,
.es {
  display: none;
}

body.lang-zh .en,
body.lang-zh .es,
body.lang-es .en,
body.lang-es .zh {
  display: none !important;
}

body.lang-zh .zh,
body.lang-es .es {
  display: inline !important;
}

.lang-switcher {
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 4px 12px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-toggle.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(251,248,242,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-name {
  font-size: 1.08rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cn {
  color: var(--gold);
  margin-left: 8px;
}

.nav-links a {
  margin-left: 32px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.88;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(18, 13, 9, 0.82) 0%, rgba(18, 13, 9, 0.24) 42%, rgba(18, 13, 9, 0.1) 100%),
    linear-gradient(to right, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.02) 50%),
    linear-gradient(to top right, rgba(191, 149, 83, 0.12) 0%, rgba(191, 149, 83, 0) 38%);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 72px 48px 82px;
  width: 100%;
  color: white;
}

.hero-text::before {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 54px;
  width: 74px;
  height: 1px;
  background: rgba(245, 217, 161, 0.8);
}

.hero-text h1 {
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 0.94;
  max-width: 9ch;
}

.hero-sub {
  font-size: 1.55rem;
  color: var(--gold);
  margin-top: 10px;
  letter-spacing: 0.18em;
  opacity: 0.92;
}

.hero-desc {
  font-size: 1rem;
  margin-top: 28px;
  opacity: 0.9;
  letter-spacing: 0.04em;
  max-width: 34rem;
}

.hero-statement {
  margin-top: 26px;
  max-width: 36rem;
  padding-left: 18px;
  border-left: 2px solid rgba(245, 217, 161, 0.55);
}

.hero-statement p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 13px 20px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-action:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

.hero-action--primary {
  background: rgba(245, 217, 161, 0.14);
  border-color: rgba(245, 217, 161, 0.44);
}

/* SECTIONS */
.section {
  padding: 112px 0;
  position: relative;
}

.section-dark {
  background: var(--light);
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}

h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.35rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  margin-bottom: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  line-height: 1.02;
}

h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(to right, var(--gold), rgba(159, 118, 48, 0));
}

.cn-small {
  font-size: 1rem;
  color: var(--gold);
  margin-left: 14px;
  letter-spacing: 0.08em;
}

.section-intro {
  max-width: 780px;
  color: var(--text-light);
  margin-bottom: 52px;
  font-size: 1rem;
  line-height: 1.95;
}

.section-intro--compact {
  margin-bottom: 28px;
}

.collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -10px 0 46px;
}

.collection-nav a {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(159, 118, 48, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.collection-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 118, 48, 0.42);
  box-shadow: 0 14px 30px rgba(42, 30, 11, 0.06);
}

/* ABOUT */
.about-portrait {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  background: #ece5d8;
  border: 10px solid rgba(255,255,255,0.72);
}

.about-studio-figure {
  display: flex;
  flex-direction: column;
}

.about-studio-caption {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1.7fr) minmax(220px, 0.72fr);
  gap: 56px;
  align-items: start;
}

.about-text {
  position: relative;
}

.about-text::before {
  content: "Studio Notes";
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text p {
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.95;
}

.about-copy {
  position: relative;
}

.about-copy.is-clamped {
  max-height: 15.5em;
  overflow: hidden;
}

.about-copy.is-clamped::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.5em;
  background: linear-gradient(to bottom, rgba(249, 246, 240, 0), rgba(249, 246, 240, 0.98));
  pointer-events: none;
}

.about-toggle {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.about-toggle:hover {
  text-decoration: underline;
}

.about-details p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 16px 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(159, 118, 48, 0.12);
  box-shadow: 0 12px 30px rgba(42, 30, 11, 0.04);
}

.about-details strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-details a {
  color: var(--text);
  text-decoration: underline;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.gallery-5col {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(148, 118, 68, 0.12);
  box-shadow: 0 16px 40px rgba(42, 30, 11, 0.045);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 12, 8, 0.3) 0%, rgba(17, 12, 8, 0) 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(42, 30, 11, 0.08);
  border-color: rgba(159, 118, 48, 0.22);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 1px;
  background: linear-gradient(to right, rgba(159, 118, 48, 0), rgba(159, 118, 48, 0.34), rgba(159, 118, 48, 0));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 14px 15px 16px;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.58;
}

.gallery-view {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  background: rgba(17, 12, 8, 0.7);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-view {
  opacity: 1;
  transform: translateY(0);
}

.category-heading {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 56px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.category-heading:first-of-type {
  margin-top: 0;
}

.category-heading--major {
  margin-top: 72px;
}

.category-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 34px;
  height: 1px;
  background: rgba(159, 118, 48, 0.34);
}

.gallery-desc {
  margin-top: 8px;
  font-size: 0.81rem;
  color: var(--text-light);
  line-height: 1.58;
}

.gallery-desc.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gallery-desc.is-expanded {
  display: block;
}

.gallery-desc-toggle {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.gallery-desc-toggle:hover {
  text-decoration: underline;
}

.gallery-caption strong {
  display: block;
  color: var(--gold-deep);
  font-size: 0.96rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.gallery-caption strong .es,
.gallery-caption strong .en,
.gallery-caption strong .zh {
  text-wrap: balance;
}

.gallery-item--hidden {
  display: none;
}

.gallery-more-btn {
  display: block;
  margin: 4px auto 40px;
  background: transparent;
  border: 1px solid rgba(159, 118, 48, 0.42);
  color: var(--gold-deep);
  padding: 11px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.gallery-more-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.gallery-anchor-offset {
  scroll-margin-top: 110px;
}

.works-browser-note {
  max-width: 860px;
  margin: -8px 0 34px;
  padding: 14px 18px 14px 20px;
  border-left: 2px solid rgba(159, 118, 48, 0.45);
  background: linear-gradient(to right, rgba(255,255,255,0.54), rgba(255,255,255,0));
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.88;
}

.inquire-note {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}

.inquire-note a {
  color: var(--gold);
  text-decoration: none;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 8, 0.95);
  z-index: 1000;
  overflow-y: auto;
}

.lightbox.active {
  display: block;
}

.lightbox-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 72px 24px 38px;
  max-width: 90vw;
  margin: 0 auto;
  min-height: 100%;
  box-sizing: border-box;
}

.lightbox-main {
  max-width: 82vw;
  max-height: 62vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 28px 90px rgba(0,0,0,0.35);
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.lb-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.lb-thumb:hover, .lb-thumb.active {
  opacity: 1;
  border-color: white;
}

.lightbox-caption {
  color: white;
  font-size: 0.92rem;
  text-align: center;
  opacity: 0.88;
  max-width: 840px;
  line-height: 1.8;
}

.lightbox-caption p {
  margin-top: 12px;
  color: rgba(255,255,255,0.76);
}

.lightbox-caption strong {
  color: #f5d9a1;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
}

.lightbox-actions {
  margin-top: 18px;
}

.lightbox-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(245, 217, 161, 0.5);
  background: rgba(245, 217, 161, 0.08);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-inquire:hover {
  background: rgba(245, 217, 161, 0.18);
  border-color: rgba(245, 217, 161, 0.82);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  background: none;
  border: none;
  line-height: 1;
  z-index: 1001;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.84;
}

.lightbox-nav:hover {
  opacity: 1;
  background: rgba(255,255,255,0.14);
}

.lightbox-nav--prev {
  left: 24px;
}

.lightbox-nav--next {
  right: 24px;
}

.window-intro-grid {
  margin-bottom: 56px;
}

.window-intro-grid .section-intro {
  max-width: 760px;
  margin-bottom: 0;
  padding: 0;
  color: rgba(42, 42, 42, 0.86);
  position: relative;
}

.window-intro-grid .section-intro::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, rgba(159, 118, 48, 0), rgba(159, 118, 48, 0.44), rgba(159, 118, 48, 0));
}

@media (max-width: 768px) {
  .window-intro-grid .section-intro {
    max-width: none;
    padding: 0;
  }
}

/* CONTACT */
.contact-container {
  text-align: center;
  max-width: 760px;
  padding-top: 10px;
}

.contact-container::before {
  content: "Collector & Exhibition Enquiries";
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-container p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.email-link {
  display: inline-block;
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 118, 48, 0.72);
  padding-bottom: 8px;
  margin: 22px 0 30px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}

.email-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-note {
  font-size: 0.85rem;
}

.contact-collector-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.9;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.46);
  text-align: center;
  padding: 36px 32px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section {
    padding: 84px 0;
  }

  nav {
    padding: 10px 14px 8px;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav-name {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    flex: 1 1 auto;
  }

  .nav-links {
    width: 100%;
    order: 3;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 14px;
    flex: 0 0 auto;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .lang-switcher {
    margin-left: 0;
    gap: 4px;
    flex: 0 0 auto;
  }

  .lang-toggle {
    margin-left: 0;
    padding: 3px 8px;
    font-size: 0.72rem;
  }

  .hero-text h1 {
    font-size: 2.3rem;
    line-height: 0.98;
  }

  .hero-text {
    padding: 82px 20px 34px;
  }

  .hero-text::before {
    left: 20px;
    bottom: 20px;
    width: 46px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-label {
    font-size: 0.72rem;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 1rem;
    margin-top: 6px;
    letter-spacing: 0.12em;
  }

  .hero-desc {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-statement {
    margin-top: 16px;
    padding-left: 12px;
  }

  .hero-statement p {
    font-size: 0.86rem;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-action {
    width: 100%;
    min-width: 0;
    padding: 11px 14px;
    font-size: 0.69rem;
    letter-spacing: 0.1em;
  }

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

  .about-portrait {
    aspect-ratio: 16 / 11;
  }

  .about-text p {
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.82;
  }

  .about-copy.is-clamped {
    max-height: 13.8em;
  }

  .about-details p {
    margin-bottom: 14px;
    padding: 12px 14px;
    font-size: 0.84rem;
  }

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

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

  .gallery-caption {
    padding: 11px 11px 12px;
  }

  .gallery-caption strong {
    font-size: 0.82rem;
    margin-bottom: 3px;
  }

  .gallery-desc {
    margin-top: 6px;
    font-size: 0.73rem;
    line-height: 1.46;
  }

  .gallery-desc-toggle {
    margin-top: 6px;
    font-size: 0.67rem;
  }

  .gallery-more-btn {
    margin: 2px auto 32px;
    padding: 10px 22px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .works-browser-note {
    margin: -4px 0 28px;
    padding: 12px 14px 12px 16px;
    font-size: 0.9rem;
  }

  .collection-nav {
    gap: 10px;
    margin-bottom: 28px;
  }

  .collection-nav a {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.69rem;
    letter-spacing: 0.1em;
  }

  .lightbox-body {
    max-width: 96vw;
    padding: 66px 12px 22px;
  }

  .lightbox-main {
    max-width: 92vw;
    max-height: 48vh;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 112px;
    transform: none;
  }

  .lightbox-nav--prev {
    left: 12px;
  }

  .lightbox-nav--next {
    right: 12px;
  }

  .lb-thumb {
    width: 58px;
    height: 58px;
  }

  .window-intro-grid .section-intro::before {
    display: none;
  }

  .contact-container::before,
  .about-text::before {
    letter-spacing: 0.16em;
  }
}

@media (max-width: 480px) {
  h2 {
    margin-bottom: 30px;
    padding-bottom: 14px;
  }

  h2::after {
    margin-top: 12px;
    width: 40px;
  }

  .section-intro,
  .section-intro--compact {
    margin-bottom: 22px;
    font-size: 0.9rem;
    line-height: 1.76;
  }

  .category-heading {
    margin: 40px 0 14px;
    padding-bottom: 10px;
    font-size: 0.86rem;
    letter-spacing: 0.14em;
  }

  .gallery {
    gap: 10px;
  }

  .gallery-item img {
    aspect-ratio: 1 / 1.2;
  }

  .gallery-view {
    display: none;
  }

  .lightbox-caption {
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .lightbox-caption strong {
    font-size: 0.96rem;
  }

  .lightbox-inquire {
    min-width: 0;
    width: 100%;
    padding: 11px 14px;
    font-size: 0.68rem;
  }
}

/* HERO LABEL */
.hero-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
}

/* SECTION LIGHT */
.section-light {
  background: linear-gradient(to bottom, rgba(244,239,231,0.92) 0%, rgba(249,246,240,0.95) 100%);
}

/* CRAFT SECTION */
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
}

.craft-text p {
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text);
}

.craft-facts {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.fact {
  display: flex;
  flex-direction: column;
}

.fact-num {
  font-size: 2.35rem;
  color: var(--gold);
  font-weight: normal;
  line-height: 1;
}

.fact-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.craft-img-col {
  position: sticky;
  top: 80px;
}

.craft-img {
  width: 100%;
  display: block;
  box-shadow: var(--shadow);
}

.craft-img-caption {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* CONTACT DETAILS */
.contact-details {
  max-width: 500px;
  margin: 0 auto;
  padding: 18px 24px 0;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .craft-facts {
    flex-wrap: wrap;
    gap: 24px;
  }

  .craft-img-col {
    position: static;
  }
}
