:root {
  color-scheme: light;
  --page: #f4f1e9;
  --page-deep: #ece8de;
  --surface: #fffdf8;
  --surface-soft: #efede5;
  --ink: #16211e;
  --ink-soft: #34433e;
  --muted: #68746f;
  --line: #d9d7ce;
  --line-strong: #bbbdb5;
  --teal: #0a6d63;
  --teal-dark: #103a35;
  --orange: #df6039;
  --green: #557d32;
  --rust: #af4e31;
  --blue: #356caa;
  --pink: #a24378;
  --indigo: #5c56a6;
  --yellow: #9b6b13;
  --coral: #c74c38;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 1px 2px rgba(22, 33, 30, 0.04), 0 12px 30px rgba(22, 33, 30, 0.07);
  --shadow-md: 0 12px 24px rgba(22, 33, 30, 0.08), 0 30px 70px rgba(22, 33, 30, 0.12);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "kern" 1;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(16, 58, 53, 0.08) 0.65px, transparent 0.65px);
  background-size: 8px 8px;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(10, 109, 99, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(22, 33, 30, 0.09);
  background: rgba(244, 241, 233, 0.88);
  backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-dark);
  color: #f8faf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(10, 109, 99, 0.2);
}

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

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-links a {
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.top-links a:hover {
  background: rgba(255, 253, 248, 0.8);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(22, 33, 30, 0.1);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 33, 30, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 30, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.52), transparent 70%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.64;
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  left: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(94, 170, 146, 0.26), rgba(94, 170, 146, 0));
}

.hero-glow-two {
  right: -180px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(223, 96, 57, 0.17), rgba(223, 96, 57, 0));
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(1240px, calc(100% - 56px));
  min-height: 690px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: 72px;
  padding: 76px 0 84px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: #42a37a;
  box-shadow: 0 0 0 5px rgba(66, 163, 122, 0.12);
  vertical-align: 1px;
}

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

h1,
h2 {
  font-family: "Iowan Old Style", "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.8rem, 5.4vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h1 em {
  position: relative;
  color: var(--teal);
  font-style: italic;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 2%;
  bottom: 2px;
  left: 4%;
  height: 8px;
  border-radius: 999px;
  background: rgba(223, 96, 57, 0.34);
  content: "";
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-text {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.88;
}

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

.button,
.asset-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.button {
  padding: 0 18px;
  border: 1px solid var(--line-strong);
}

.button.primary {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: #f8fbf7;
  box-shadow: 0 12px 24px rgba(16, 58, 53, 0.16);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink-soft);
}

.button:hover,
.asset-actions a:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: #184b45;
}

.button.secondary:hover {
  border-color: #989e97;
  background: var(--surface);
}

.hero-metrics {
  display: grid;
  max-width: 600px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero-metrics div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-metrics dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 680;
}

.hero-gallery {
  position: relative;
  min-height: 550px;
  isolation: isolate;
}

.hero-gallery::before {
  position: absolute;
  top: 48px;
  right: 22px;
  width: 75%;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 58, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.35);
  content: "";
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(22, 33, 30, 0.18);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  background: rgba(13, 27, 24, 0.82);
  color: #fff;
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
}

.hero-shot figcaption strong {
  font-size: 0.8rem;
}

.hero-shot figcaption span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-shot-main {
  z-index: 2;
  top: 112px;
  right: 0;
  width: 78%;
  aspect-ratio: 16 / 10;
  transform: rotate(1.5deg);
}

.hero-shot-top {
  z-index: 3;
  top: 4px;
  left: 0;
  width: 48%;
  aspect-ratio: 16 / 10;
  transform: rotate(-3deg);
}

.hero-shot-bottom {
  z-index: 4;
  bottom: 2px;
  left: 8%;
  width: 49%;
  aspect-ratio: 16 / 10;
  transform: rotate(2.5deg);
}

.gallery-note {
  position: absolute;
  z-index: 5;
  right: 2px;
  bottom: 16px;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.45;
  transform: rotate(-4deg);
}

.section {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 104px 0 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: end;
  gap: 44px;
  margin-bottom: 34px;
}

.section-heading h2,
.principles h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-note {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: 0 10px 34px rgba(22, 33, 30, 0.045);
}

.search-field {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
  pointer-events: none;
  transform: rotate(-16deg);
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 62px 0 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
}

.search-field input::placeholder {
  color: #89928e;
}

.search-field input::-webkit-search-cancel-button {
  appearance: none;
}

.search-clear {
  position: absolute;
  right: 7px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
}

.filter-tabs {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter-tabs button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 760;
  white-space: nowrap;
}

.filter-tabs button span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(22, 33, 30, 0.07);
  color: var(--muted);
  font-size: 0.68rem;
}

.filter-tabs button:hover {
  background: rgba(22, 33, 30, 0.05);
}

.filter-tabs button[aria-pressed="true"] {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 58, 53, 0.14);
}

.filter-tabs button[aria-pressed="true"] span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.84);
}

.result-summary {
  min-height: 20px;
  margin: 14px 2px 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 680;
}

.empty-state {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.6);
  color: var(--muted);
  text-align: center;
}

.empty-state strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.empty-state button {
  min-height: 40px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  font-weight: 750;
}

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

.asset-card {
  --accent: var(--teal);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.asset-card::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 20px;
  left: 20px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--accent);
  content: "";
}

.tone-teal { --accent: var(--teal); }
.tone-green { --accent: var(--green); }
.tone-rust { --accent: var(--rust); }
.tone-blue { --accent: var(--blue); }
.tone-pink { --accent: var(--pink); }
.tone-indigo { --accent: var(--indigo); }
.tone-yellow { --accent: var(--yellow); }
.tone-slate { --accent: #56635f; }
.tone-coral { --accent: var(--coral); }

.asset-visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.asset-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.asset-visual::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 20, 18, 0.18));
  content: "";
  pointer-events: none;
}

.asset-visual-static {
  cursor: default;
}

.poster-crop {
  object-position: 50% 38%;
}

.tone-slate .asset-visual {
  background:
    radial-gradient(circle at 24% 22%, rgba(86, 99, 95, 0.15), transparent 32%),
    #e9ece7;
}

.tone-slate .asset-visual img {
  object-fit: contain;
  padding: 28px;
}

.visual-domain {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 13px;
  max-width: calc(100% - 28px);
  overflow: hidden;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(12, 26, 23, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.asset-body {
  display: flex;
  min-height: 238px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 24px;
}

.asset-type {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.asset-body h3 {
  margin: 9px 0 0;
  font-size: 1.34rem;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.asset-body p:not(.asset-type) {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.release-meta li {
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, white);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 7%, white);
  color: color-mix(in srgb, var(--accent) 76%, black);
  font-size: 0.68rem;
  font-weight: 760;
}

.asset-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.asset-actions a {
  min-height: 40px;
  padding: 0 13px;
  background: color-mix(in srgb, var(--accent) 11%, white);
  color: color-mix(in srgb, var(--accent) 78%, black);
  font-size: 0.84rem;
}

.asset-actions code {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.principles {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
  color: #f7f5ed;
}

.principles::before {
  position: absolute;
  right: -160px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
  content: "";
}

.principles-inner {
  position: relative;
  display: grid;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  padding: 110px 0 118px;
}

.principles .eyebrow {
  color: #86cfb2;
}

.principles-intro > p:last-child {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(247, 245, 237, 0.68);
  line-height: 1.86;
}

.principle-list {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principle-list li > span {
  color: #86cfb2;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
}

.principle-list strong {
  font-size: 1.12rem;
}

.principle-list p {
  margin: 8px 0 0;
  color: rgba(247, 245, 237, 0.62);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 0 50px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
}

.footer-trust span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ca47d;
  box-shadow: 0 0 0 4px rgba(76, 164, 125, 0.12);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-meta a {
  color: var(--ink-soft);
  font-weight: 740;
  text-decoration: none;
}

.legal-main {
  width: min(880px, calc(100% - 56px));
  margin: 0 auto;
  padding: 88px 0 104px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 64px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.legal-main h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.legal-lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.9;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 46px 0 60px;
}

.legal-summary div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
}

.legal-summary strong {
  font-size: 0.88rem;
}

.legal-summary span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.legal-content {
  display: grid;
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid var(--line-strong);
}

.legal-content section:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.legal-content h2 {
  margin: 0;
  font-family: inherit;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.legal-content p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.86;
}

@media (hover: hover) {
  .asset-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
  }

  .asset-card:hover .asset-visual img {
    transform: scale(1.035);
  }
}

@media (max-width: 1080px) {
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 68px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .hero-shot-main {
    width: 72%;
  }

  .hero-shot-top {
    width: 44%;
  }

  .hero-shot-bottom {
    left: 14%;
    width: 45%;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .top-links a {
    padding: 8px 9px;
    font-size: 0.8rem;
  }

  .hero-inner,
  .section,
  .principles-inner,
  .site-footer {
    width: min(100% - 30px, 1240px);
  }

  .hero-inner {
    gap: 34px;
    padding: 54px 0 62px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.78rem, 12.2vw, 3.65rem);
    letter-spacing: -0.07em;
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    min-height: 44px;
  }

  .hero-metrics {
    margin-top: 34px;
  }

  .hero-metrics div {
    padding: 15px 10px 0 0;
  }

  .hero-metrics div + div {
    padding-left: 10px;
  }

  .hero-metrics dt {
    font-size: 1.4rem;
  }

  .hero-metrics dd {
    font-size: 0.68rem;
  }

  .hero-gallery {
    min-height: 340px;
  }

  .hero-shot {
    border-radius: 14px;
  }

  .hero-shot-main {
    top: 68px;
    width: 82%;
  }

  .hero-shot-top {
    width: 53%;
  }

  .hero-shot-bottom {
    left: 5%;
    width: 52%;
  }

  .hero-shot figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px 8px;
    font-size: 0.62rem;
  }

  .hero-shot figcaption strong {
    font-size: 0.65rem;
  }

  .gallery-note {
    display: none;
  }

  .section {
    padding: 72px 0 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .principles h2 {
    font-size: 2.65rem;
  }

  .directory-toolbar {
    gap: 12px;
    margin-right: -15px;
    margin-left: -15px;
    padding: 12px 15px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 2px 26px 5px 0;
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 26px), transparent 100%);
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

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

  .asset-body {
    min-height: 218px;
    padding: 21px;
  }

  .principles-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 78px 0 84px;
  }

  .principle-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 0 40px;
  }

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

  .legal-main {
    width: min(100% - 30px, 880px);
    padding: 54px 0 74px;
  }

  .back-link {
    margin-bottom: 44px;
  }

  .legal-main h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .legal-lead {
    font-size: 0.96rem;
  }

  .legal-summary {
    grid-template-columns: 1fr;
    margin: 36px 0 48px;
  }
}

@media (max-width: 440px) {
  .brand-text small {
    display: none;
  }

  .top-links a:last-child {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-gallery {
    min-height: 300px;
  }

  .hero-shot figcaption span {
    display: none;
  }

  .asset-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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