:root {
  --paper: #f4f6f2;
  --paper-soft: #fbfbf8;
  --surface: #ffffff;
  --ink: #171512;
  --muted: #756c5d;
  --line: rgba(31, 28, 22, .13);
  --gold: #b18746;
  --red: #9e2f26;
  --green: #426552;
  --dark: #191612;
  --shadow: 0 24px 70px rgba(37, 31, 22, .13);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 48px));
  --serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: #f7f8f5;
  font-family: var(--serif);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, rgba(66, 101, 82, .08), transparent 25%),
    linear-gradient(180deg, #fbfbf8 0%, #edf1eb 100%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 28, 22, .08);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

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

.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  color: #171512;
  white-space: nowrap;
}

.brand-domain {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  font-family: var(--sans);
  font-size: 15px;
  color: #332d25;
}

.nav a {
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width .2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  font-family: var(--sans);
}

.header-search {
  position: relative;
  width: 44px;
  height: 44px;
  transition: width .22s ease;
}

.header-search:focus-within {
  width: 230px;
}

.header-search input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .68);
  opacity: 0;
  transition: opacity .15s ease;
}

.header-search:focus-within input {
  opacity: 1;
}

.header-search button {
  position: absolute;
  inset: 0 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #2e2921;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

.header-search:focus-within button {
  border-color: transparent;
  background: transparent;
}

.header-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
}

.contact-link,
.primary-button,
.secondary-button,
.small-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-link,
.primary-button {
  background: var(--dark);
  color: #fff8e8;
}

.primary-button.light {
  background: #fffaf1;
  color: var(--dark);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fffdf7;
  background: rgba(255, 255, 255, .08);
}

.small-link {
  min-height: 36px;
  padding: 0 16px;
  color: var(--red);
  background: rgba(158, 47, 38, .08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #fffaf1;
  background: #15130f;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 15, 10, .94) 0%, rgba(18, 15, 10, .62) 38%, rgba(18, 15, 10, .08) 78%),
    linear-gradient(180deg, rgba(18, 15, 10, .26) 0%, rgba(18, 15, 10, .08) 54%, rgba(18, 15, 10, .68) 100%);
}

.hero-inner {
  position: relative;
  width: var(--container);
  min-height: 790px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 24px;
}

.hero-copy {
  width: min(610px, 58vw);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: 0;
}

.hero-subtitle {
  width: min(548px, 100%);
  margin: 30px 0 0;
  font-size: clamp(18px, 1.66vw, 24px);
  line-height: 1.75;
  color: rgba(255, 250, 241, .88);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-panel {
  align-self: flex-end;
  width: 332px;
  margin-bottom: 142px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(23, 21, 18, .42);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.hero-panel span,
.work-large span,
.meta-label {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 250, 241, .66);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 500;
}

.hero-panel p {
  margin: 18px 0 0;
  font-size: 15px;
  color: rgba(255, 250, 241, .74);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: var(--container);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 250, 241, .78);
  font-family: var(--sans);
  font-size: 14px;
}

.hero-strip span {
  padding: 18px 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero-strip span:last-child {
  border-right: 0;
}

.section,
.artists-section,
.works-section,
.news-section {
  width: var(--container);
  margin: 0 auto;
}

.intro-section {
  padding: 92px 0 86px;
}

.section-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 86px;
}

.section-heading h2,
.section-headline h2,
.contact-section h2,
.page-title,
.content-main h1 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.intro-copy p {
  margin: 0;
  color: #4e473c;
  font-size: 18px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.intro-facts div,
.artist-card,
.work-row,
.news-feature,
.list-card,
.form-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 45px rgba(45, 36, 24, .06);
}

.intro-facts div {
  min-height: 112px;
  padding: 22px;
}

.intro-facts span {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
}

.intro-facts strong {
  display: block;
  margin-top: 16px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.custom-section {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.custom-layout {
  display: grid;
  grid-template-columns: .92fr 1.38fr;
  gap: 24px;
}

.custom-feature,
.custom-cards article {
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(45, 36, 24, .06);
}

.custom-feature {
  min-height: 100%;
  padding: 34px;
  color: #fffaf1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    #191612;
}

.custom-feature > span,
.custom-cards span {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
}

.custom-feature h3 {
  margin: 18px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.custom-feature p {
  margin: 0;
  color: rgba(255, 250, 241, .74);
  font-size: 17px;
  line-height: 1.85;
}

.custom-feature .small-link {
  margin-top: 28px;
  background: #fffaf1;
  color: var(--dark);
}

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

.custom-cards article {
  min-height: 202px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .84);
}

.custom-cards h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  font-weight: 600;
}

.custom-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.artists-section,
.works-section,
.news-section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-headline a {
  color: var(--red);
  font-family: var(--sans);
  font-size: 15px;
  white-space: nowrap;
}

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

.artist-card {
  min-height: 388px;
  padding: 16px;
}

.artist-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(.92);
}

.artist-card h3,
.list-card h2,
.work-row h3,
.news-feature h3 {
  margin: 18px 0 8px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
}

.artist-card p,
.list-card p,
.work-row p,
.news-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.featured-artist {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 24px;
  align-items: end;
  padding: 18px;
  background: #191612;
  color: #fffaf1;
}

.featured-artist img {
  height: 352px;
}

.featured-artist p {
  color: rgba(255, 250, 241, .72);
}

.works-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}

.work-large {
  min-height: 604px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1c1914;
  color: #fffaf1;
  box-shadow: var(--shadow);
}

.work-large img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: #fff;
}

.work-large div {
  padding: 28px 30px 32px;
}

.work-large span {
  color: #d7b56f;
}

.work-large h3 {
  margin: 10px 0 8px;
  font-size: 28px;
  font-weight: 600;
}

.work-large p {
  margin: 0;
  color: rgba(255, 250, 241, .7);
  font-size: 15px;
  line-height: 1.7;
}

.work-list {
  display: grid;
  gap: 18px;
}

.work-row {
  display: grid;
  grid-template-columns: 216px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 188px;
  padding: 18px;
}

.work-row img {
  width: 216px;
  height: 148px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.work-row h3 {
  margin-top: 0;
  font-size: 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.news-feature {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px;
}

.news-feature img {
  width: 220px;
  height: 168px;
  object-fit: cover;
  border-radius: 6px;
}

.news-feature h3 {
  margin-top: 0;
  font-size: 25px;
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  color: #3f392f;
  font-size: 18px;
}

.contact-section {
  width: auto;
  margin-top: 50px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--dark);
  color: #fffaf1;
}

.contact-section p {
  width: min(690px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 250, 241, .72);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero {
  position: relative;
  height: 370px;
  overflow: hidden;
  color: #fffaf1;
  background: #171512;
}

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

.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 15, 10, .86), rgba(18, 15, 10, .32));
}

.page-hero-inner {
  position: relative;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero p {
  margin: 0 0 18px;
  color: rgba(255, 250, 241, .68);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .18em;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
}

.page-hero span {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 250, 241, .78);
  font-size: 20px;
  line-height: 1.65;
}

.page-main {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid.artist-list {
  grid-template-columns: repeat(4, 1fr);
}

.list-card {
  overflow: hidden;
}

.list-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #fff;
}

.artist-list .list-card img {
  height: 270px;
}

.list-card-body {
  padding: 22px;
}

.list-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
}

.article-item img {
  width: 260px;
  height: 168px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.article-item time {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
}

.article-item h2 {
  margin: 10px 0 12px;
  font-size: 25px;
  line-height: 1.4;
}

.article-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.content-main {
  width: min(860px, var(--container));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.content-meta {
  margin: 20px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}

.content-cover {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.content-cover img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.content-body {
  color: #3f392f;
  font-size: 18px;
  line-height: 2;
}

.content-body p {
  margin: 0 0 1.2em;
}

.content-body img {
  height: auto !important;
  margin: 24px auto;
  border-radius: 6px;
}

.custom-main {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 100px;
}

.custom-page-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}

.custom-page-intro h1 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 600;
  line-height: 1.14;
}

.custom-page-section,
.custom-process,
.custom-cta {
  margin-top: 76px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.custom-service-grid,
.custom-scene-grid {
  display: grid;
  gap: 18px;
}

.custom-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-scene-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-service-grid article,
.custom-scene-grid article {
  min-height: 206px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 45px rgba(45, 36, 24, .06);
}

.custom-service-grid span {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
}

.custom-service-grid h3,
.custom-scene-grid h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  font-weight: 600;
}

.custom-service-grid p,
.custom-scene-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.custom-process ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.custom-process li {
  min-height: 206px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fffaf1;
  background: #191612;
}

.custom-process span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
}

.custom-process strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  font-weight: 600;
}

.custom-process p {
  margin: 12px 0 0;
  color: rgba(255, 250, 241, .72);
  font-size: 15px;
  line-height: 1.75;
}

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

.custom-cta {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border: 0;
  border-radius: var(--radius);
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    var(--dark);
  box-shadow: var(--shadow);
}

.custom-cta h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.2;
}

.custom-cta p {
  margin: 18px 0 0;
  color: rgba(255, 250, 241, .72);
  font-size: 17px;
  line-height: 1.8;
}

.custom-cta-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.custom-cta-actions strong {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 500;
}

.custom-cta-actions span {
  color: rgba(255, 250, 241, .72);
  font-family: var(--sans);
  font-size: 15px;
}

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

.imported-gallery figure {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}

.imported-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  object-fit: contain;
  background: #fff;
}

.imported-gallery figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

.prev-next {
  margin-top: 56px;
  padding-top: 24px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--sans);
}

.pager {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
}

.pager a,
.pager span {
  min-width: 38px;
  min-height: 38px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
}

.form-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
}

.contact-card,
.form-card {
  padding: 32px;
}

.contact-card h2,
.form-card h2 {
  margin: 0 0 20px;
  font-size: 28px;
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sans);
  color: #463f34;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  color: var(--ink);
  background: #fff;
}

.form-group input {
  height: 46px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.codeimg {
  height: 42px;
  border-radius: 6px;
}

.empty {
  padding: 72px 0;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  background: #15130f;
  color: rgba(255, 250, 241, .78);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 56px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 241, .18);
  border-radius: 6px;
  background: rgba(255, 250, 241, .06);
}

.footer-seal {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid #d84b3c;
  border-radius: 50%;
  color: #ff6f5e;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.footer-logo strong,
.footer-logo em {
  display: block;
  font-style: normal;
  letter-spacing: 0;
}

.footer-logo strong {
  color: #fffaf1;
  font-size: 26px;
  line-height: 1;
}

.footer-logo em {
  margin-top: 4px;
  color: rgba(255, 250, 241, .58);
  font-family: var(--sans);
  font-size: 11px;
}

.footer-brand p {
  max-width: 370px;
  margin: 22px 0 0;
  line-height: 1.8;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 18px;
  color: #fffaf1;
  font-size: 20px;
}

.footer-nav div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 250, 241, .12);
  font-family: var(--sans);
  font-size: 13px;
}

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

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

  .featured-artist {
    grid-column: 1 / -1;
  }

  .works-layout,
  .news-grid,
  .form-layout,
  .custom-layout,
  .custom-page-intro,
  .custom-cta,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .custom-service-grid,
  .custom-scene-grid,
  .custom-process ol,
  .custom-artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 32px, 1180px);
  }

  .header-inner {
    height: 70px;
  }

  .brand {
    gap: 8px;
  }

  .brand-seal {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-domain {
    font-size: 10px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 70px 0 auto 0;
    max-height: calc(100vh - 70px);
    overflow: auto;
    padding: 22px 24px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .contact-link {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-subtitle {
    max-width: calc(100vw - 32px);
    font-size: 17px;
    line-height: 1.8;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .section-heading p,
  .intro-copy p,
  .content-body {
    font-size: 16px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .section-grid {
    gap: 36px;
  }

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

  .hero-strip span:nth-child(2) {
    border-right: 0;
  }

  .intro-facts,
  .artist-grid,
  .custom-cards,
  .card-grid,
  .card-grid.artist-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .custom-section {
    padding: 58px 0;
  }

  .custom-feature,
  .custom-cards article,
  .custom-service-grid article,
  .custom-scene-grid article,
  .custom-process li,
  .custom-cta {
    padding: 24px;
  }

  .custom-service-grid,
  .custom-scene-grid,
  .custom-process ol,
  .custom-artist-grid {
    grid-template-columns: 1fr;
  }

  .custom-main {
    padding: 52px 0 72px;
  }

  .custom-page-intro {
    gap: 28px;
  }

  .custom-page-section,
  .custom-process,
  .custom-cta {
    margin-top: 52px;
    padding-top: 48px;
  }

  .custom-cta {
    padding-top: 28px;
    border-radius: var(--radius);
  }

  .featured-artist,
  .work-row,
  .news-feature,
  .article-item {
    grid-template-columns: 1fr;
  }

  .featured-artist img,
  .artist-card img,
  .list-card img,
  .artist-list .list-card img {
    height: auto;
    max-height: 420px;
  }

  .work-row img,
  .news-feature img,
  .article-item img {
    width: 100%;
    height: auto;
    max-height: 320px;
  }

  .work-large img {
    height: auto;
  }

  .imported-gallery {
    grid-template-columns: 1fr;
  }

  .contact-section,
  .section-headline,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-main,
  .content-main {
    padding: 52px 0 72px;
  }
}

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