@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #050402;
  --surface: rgba(232, 215, 176, 0.075);
  --surface-strong: rgba(232, 215, 176, 0.13);
  --ink: #f8ead3;
  --muted: #bca98a;
  --line: rgba(211, 205, 190, 0.17);
  --line-strong: rgba(224, 218, 202, 0.34);
  --accent: #c7a05d;
  --accent-dark: #ead0a0;
  --green: #284d45;
  --steel: #a7a199;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 56px);
  --section: clamp(72px, 10vw, 132px);
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    "Noto Serif SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(201, 154, 80, 0.24), transparent 30rem),
    radial-gradient(circle at 82% 16%, rgba(109, 87, 45, 0.18), transparent 36rem),
    linear-gradient(135deg, #020202 0%, #0b0907 36%, #151008 70%, #080706 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: #09090d;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 99;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: var(--bg);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  background: rgba(7, 8, 13, 0.68);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 13, 0.86);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 21px;
  font-style: italic;
  font-weight: 650;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle-line {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.section-shell {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding-block: clamp(54px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-style: italic;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  display: grid;
  max-width: 680px;
  gap: 2px;
  font-size: 76px;
  font-style: italic;
  font-weight: 520;
  line-height: 0.98;
}

h1 span {
  display: block;
}

h2 {
  font-size: 54px;
  font-style: italic;
  font-weight: 520;
}

h3 {
  font-size: 28px;
  font-style: italic;
  font-weight: 560;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 22px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 18px;
  font-style: italic;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--bg);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #09090d;
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-strong);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  left: clamp(12px, 2vw, 24px);
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(6, 7, 11, 0.72);
  border: 1px solid rgba(246, 239, 227, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
  backdrop-filter: blur(14px);
}

.hero-visual figcaption span,
.hero-visual figcaption strong {
  color: var(--ink);
}

.intro-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 25px;
  font-style: italic;
}

.work-section,
.approach-section,
.about-section,
.contact-section {
  padding-block: var(--section);
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 18px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 17px;
  font-style: italic;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

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

.work-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.work-card[hidden] {
  display: none;
}

.work-card:hover,
.work-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.work-card a {
  display: grid;
  height: 100%;
}

.work-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.work-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.work-card-tall {
  grid-row: span 2;
}

.work-card-tall img {
  aspect-ratio: 4 / 5.5;
}

.work-card-wide {
  grid-column: span 2;
}

.work-card:hover img,
.work-card:focus-within img {
  transform: scale(1.025);
}

.work-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 2px;
  padding: 12px;
  background: rgba(23, 23, 23, 0.78);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.work-card figcaption span {
  font-size: 12px;
  text-transform: uppercase;
}

.work-card figcaption strong {
  color: #fff;
  font-style: italic;
}

.work-card p {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  font-size: 18px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach-grid article {
  display: grid;
  min-height: 270px;
  align-content: space-between;
  gap: 28px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.step-number {
  color: var(--accent);
  font-weight: 800;
}

.approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.about-image img {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-copy {
  max-width: 720px;
}

.about-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-panel {
  padding: clamp(20px, 3vw, 34px);
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--bg);
}

.contact-panel p {
  margin: 0 0 24px;
  color: rgba(247, 244, 239, 0.78);
}

.contact-panel .button-primary {
  width: 100%;
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: rgba(247, 244, 239, 0.72);
  font-size: 14px;
}

.contact-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--gutter);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .work-grid,
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    max-width: 720px;
    font-size: 62px;
  }

  h2 {
    font-size: 46px;
  }

  .work-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-block: 14px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .lead,
  .intro-strip p {
    font-size: 20px;
  }

  .hero-facts,
  .work-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual figcaption {
    position: static;
    margin-top: 10px;
  }

  .work-card-tall {
    grid-row: span 1;
  }

  .work-card-tall img,
  .work-card img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.site-nav {
  gap: clamp(10px, 1.4vw, 22px);
  font-size: 15px;
}

.site-nav .nav-feature {
  padding: 8px 14px;
  color: #071018;
  background: linear-gradient(135deg, #f6efe3, #c99a6b);
  border: 1px solid rgba(246, 239, 227, 0.78);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(201, 154, 107, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-nav a[aria-current="page"] {
  color: #f6efe3;
}

.site-nav .nav-feature::after {
  display: none;
}

.lead {
  color: #d9c8ad;
}

.intro-strip p {
  max-width: 980px;
  color: #dec7a4;
}

.filter-bar {
  gap: 12px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(12, 21, 29, 0.82), rgba(28, 45, 55, 0.44));
  border: 1px solid rgba(98, 211, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  width: fit-content;
}

.filter-button {
  position: relative;
  min-width: 92px;
  color: #d9c8ad;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border-color: rgba(98, 211, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-shadow: 0 0 12px rgba(246, 239, 227, 0.22);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: #071018;
  background: linear-gradient(135deg, #f6efe3 0%, #d9b783 48%, #78d8ff 100%);
  border-color: rgba(246, 239, 227, 0.86);
  box-shadow: 0 0 24px rgba(120, 216, 255, 0.34), 0 16px 34px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.work-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 20%, rgba(222, 199, 164, 0.18), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(98, 211, 255, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(24, 39, 47, 0.92), rgba(8, 10, 15, 0.96));
  border: 1px solid rgba(120, 216, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(246, 239, 227, 0.09),
    inset 0 0 46px rgba(98, 211, 255, 0.07);
}

.work-card::before,
.work-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.work-card::before {
  inset: 12px;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 6px;
  box-shadow: 0 0 22px rgba(98, 211, 255, 0.18), inset 0 0 30px rgba(201, 154, 107, 0.07);
}

.work-card::after {
  inset: -40% -20%;
  background:
    linear-gradient(100deg, transparent 14%, rgba(246, 239, 227, 0.12) 18%, transparent 24%),
    radial-gradient(ellipse at 50% 110%, rgba(246, 239, 227, 0.16), transparent 42%);
  opacity: 0.58;
  transform: rotate(-8deg);
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 239, 227, 0.48);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.55), 0 0 34px rgba(98, 211, 255, 0.16),
    inset 0 0 0 1px rgba(246, 239, 227, 0.16);
}

.work-card a,
.work-card figure,
.work-card img,
.work-card figcaption,
.work-card p {
  display: none;
}

.site-footer {
  position: relative;
  padding: 26px var(--gutter);
  color: #f6efe3;
  background: linear-gradient(135deg, rgba(5, 8, 13, 0.98), rgba(16, 28, 36, 0.98));
  border-top: 1px solid rgba(246, 239, 227, 0.24);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-family: Arial, "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-style: normal;
}

.site-footer > p {
  display: none;
}

.footer-info {
  display: grid;
  gap: 6px;
}

.footer-info a,
.footer-top {
  color: #dec7a4;
  font-weight: 700;
}

.footer-top {
  padding: 10px 14px;
  border: 1px solid rgba(246, 239, 227, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.category-main {
  min-height: 100vh;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.46fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  padding-block: clamp(72px, 11vw, 142px) clamp(44px, 7vw, 86px);
}

.category-title {
  max-width: 760px;
}

.category-title h1 {
  max-width: 760px;
  margin-top: 12px;
}

.category-summary {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 10px;
  color: #d9c8ad;
  box-shadow: var(--shadow);
}

.category-summary p {
  margin: 0;
  font-size: 20px;
}

.category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-meta li {
  padding: 7px 12px;
  color: #071018;
  background: linear-gradient(135deg, #f6efe3, #c99a6b);
  border-radius: 999px;
  font-family: Arial, "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.collection-section {
  padding-block: 0 var(--section);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.collection-card {
  position: relative;
  display: grid;
  min-height: 270px;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 24% 20%, rgba(222, 199, 164, 0.18), transparent 23%),
    radial-gradient(circle at 80% 82%, rgba(98, 211, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(23, 37, 48, 0.94), rgba(7, 8, 13, 0.98));
  border: 1px solid rgba(120, 216, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(246, 239, 227, 0.09);
}

.collection-card::before,
.collection-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.collection-card::before {
  inset: 12px;
  border: 1px solid rgba(246, 239, 227, 0.14);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(98, 211, 255, 0.16), inset 0 0 34px rgba(201, 154, 107, 0.07);
}

.collection-card::after {
  inset: -40% -18%;
  background: linear-gradient(100deg, transparent 12%, rgba(246, 239, 227, 0.12) 18%, transparent 24%);
  opacity: 0.55;
  transform: rotate(-8deg);
}

.collection-card span,
.collection-card strong {
  position: relative;
  z-index: 1;
}

.collection-card span {
  color: #c99a6b;
  font-family: Arial, "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-card strong {
  margin-top: 6px;
  color: #f6efe3;
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  font-weight: 520;
  line-height: 1.04;
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 239, 227, 0.5);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.56), 0 0 34px rgba(98, 211, 255, 0.16);
}

.work-card,
.collection-card {
  cursor: zoom-in;
}

.work-card,
.collection-card {
  --window-image: none;
}

.work-card.has-image,
.collection-card.has-image {
  background:
    linear-gradient(145deg, rgba(7, 8, 13, 0.08), rgba(7, 8, 13, 0.52)),
    var(--window-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, contain;
}

.work-card.has-image::after,
.collection-card.has-image::after {
  opacity: 0.34;
}

.collection-card.has-image span,
.collection-card.has-image strong {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.site-header {
  background: rgba(4, 4, 4, 0.72);
}

.site-header.is-scrolled {
  background: rgba(4, 4, 4, 0.9);
}

.brand,
.site-nav,
h1,
h2,
h3,
.button,
.filter-button,
.footer-info {
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    "Noto Serif SC", serif;
}

.lead,
.about-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.category-summary p,
.site-footer {
  color: #d8c39d;
}

.site-nav .nav-feature,
.footer-top,
.category-meta li {
  color: #f7f0df;
  background:
    linear-gradient(145deg, rgba(116, 116, 112, 0.96), rgba(42, 42, 40, 0.98) 52%, rgba(20, 20, 19, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  border: 1px solid rgba(224, 218, 202, 0.82);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -14px 22px rgba(0, 0, 0, 0.34);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.72);
}

.site-nav .nav-feature:hover,
.site-nav .nav-feature:focus-visible,
.footer-top:hover,
.footer-top:focus-visible,
.category-meta li:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 239, 227, 0.96);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.52),
    0 0 28px rgba(205, 198, 180, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -14px 22px rgba(0, 0, 0, 0.38);
}

.category-meta li {
  color: #f7f0df;
  border-radius: 999px;
  font-family: Inter, Arial, "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-bar,
.category-summary,
.work-card,
.collection-card {
  background:
    radial-gradient(circle at 24% 18%, rgba(221, 198, 148, 0.14), transparent 27%),
    linear-gradient(145deg, rgba(24, 21, 16, 0.96), rgba(6, 6, 5, 0.98));
  border-color: rgba(205, 198, 180, 0.3);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(246, 239, 227, 0.08),
    inset 0 0 46px rgba(199, 160, 93, 0.06);
}

.filter-button {
  color: #dfcfad;
  border-color: rgba(205, 198, 180, 0.35);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: #11100d;
  background: linear-gradient(135deg, #f8ead3 0%, #d5b171 48%, #a7a199 100%);
  border-color: rgba(246, 239, 227, 0.86);
  box-shadow:
    0 0 24px rgba(199, 160, 93, 0.28),
    0 16px 34px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.work-card::before,
.collection-card::before {
  border-color: rgba(224, 218, 202, 0.2);
  box-shadow: 0 0 24px rgba(205, 198, 180, 0.14), inset 0 0 34px rgba(199, 160, 93, 0.08);
}

.work-card:hover,
.collection-card:hover {
  border-color: rgba(246, 239, 227, 0.52);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(199, 160, 93, 0.14),
    inset 0 0 0 1px rgba(246, 239, 227, 0.16);
}

.site-footer {
  background: linear-gradient(135deg, rgba(5, 5, 4, 0.98), rgba(22, 18, 12, 0.98));
  border-top-color: rgba(224, 218, 202, 0.26);
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  width: auto;
  max-width: min(100%, 1280px);
  max-height: min(100%, 82vh);
  object-fit: contain;
  border: 1px solid rgba(224, 218, 202, 0.38);
  border-radius: 10px;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.72), 0 0 42px rgba(199, 160, 93, 0.14);
}

.lightbox-close {
  position: fixed;
  top: clamp(18px, 3vw, 32px);
  right: clamp(18px, 3vw, 32px);
  z-index: 1;
  padding: 10px 16px;
  color: #f7f0df;
  background:
    linear-gradient(145deg, rgba(116, 116, 112, 0.96), rgba(42, 42, 40, 0.98) 52%, rgba(20, 20, 19, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  border: 1px solid rgba(224, 218, 202, 0.82);
  border-radius: 999px;
  cursor: pointer;
  font-family: Inter, Arial, "Microsoft YaHei", sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -14px 22px rgba(0, 0, 0, 0.34);
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
    padding-inline: clamp(18px, 3vw, 28px);
  }

  .site-nav {
    gap: 10px;
    font-size: 14px;
  }

  .site-nav .nav-feature {
    padding: 7px 11px;
  }

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

  .category-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .filter-bar {
    width: 100%;
    border-radius: 18px;
  }

  .filter-button {
    min-width: auto;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
