:root {
  --lacquer: #6d0d12;
  --lacquer-deep: #4a070b;
  --lacquer-mid: #8a1219;
  --vermilion: #b8151b;
  --gold: #c9a227;
  --gold-light: #f0d896;
  --gold-dim: #8a6a15;
  --ivory: #f7efe0;
  --ivory-deep: #efe3cd;
  --ink: #241612;
  --ink-soft: #4a352c;
  --muted: #7b6350;
  --line-gold: rgba(201, 162, 39, 0.42);
  --line-ink: rgba(36, 22, 18, 0.14);
  --shadow-deep: 0 26px 70px rgba(45, 8, 10, 0.35);
  --shadow-soft: 0 14px 40px rgba(45, 8, 10, 0.14);
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", sans-serif;
  --max: 1140px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(201, 162, 39, 0.12), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(184, 21, 27, 0.1), transparent 40%),
    repeating-linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0 2px, transparent 2px 7px);
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main { flex: 1 0 auto; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  background: var(--lacquer);
  color: var(--gold-light);
  padding: 0.75rem 1rem;
}

/* ---------- ornaments ---------- */

.gold-edge {
  height: 3px;
  background:
    linear-gradient(180deg, rgba(240, 216, 150, 0.9) 0 1px, rgba(201, 162, 39, 0.55) 1px 2px, rgba(74, 7, 11, 0.6) 2px 3px);
}

.gold-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.gold-rule::before,
.gold-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 6rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-rule span {
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
  background: var(--gold);
}

.gold-rule.left { justify-content: flex-start; }
.gold-rule.left::before { display: none; }
.gold-rule.left::after { max-width: 10rem; }

/* ---------- header ---------- */

.topbar {
  background: var(--lacquer-deep);
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  padding: 0.45rem 1rem;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-note { opacity: 0.85; text-align: center; }
@media (max-width: 720px) {
  .topbar { letter-spacing: 0.08em; font-size: 0.7rem; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background:
    linear-gradient(180deg, var(--lacquer) 0%, var(--lacquer-deep) 100%);
  box-shadow: 0 10px 28px rgba(45, 8, 10, 0.28);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ivory);
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  flex: none;
  background: url("../img/logo.png") center/contain no-repeat;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(247, 239, 224, 0.7);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: rgba(247, 239, 224, 0.88);
  padding: 0.3rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -0.1rem;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
}

.site-nav a:hover { color: var(--gold-light); }
.site-nav a:hover::after { left: 0; right: 0; }

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-gold);
  background: transparent;
  color: var(--gold-light);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--gold-light);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--lacquer-deep);
  color: var(--ivory);
  overflow: hidden;
}

.hero-frame {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  /* Zoom past the logo baked into the left of the source artwork. */
  background-size: auto 132%;
  background-position: right center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(74, 7, 11, 0.94) 0%, rgba(109, 13, 18, 0.78) 38%, rgba(74, 7, 11, 0.35) 72%, rgba(74, 7, 11, 0.6) 100%),
    radial-gradient(circle at 75% 40%, rgba(201, 162, 39, 0.18), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
  animation: rise 1.1s ease both;
}

.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.6rem;
  background: rgba(74, 7, 11, 0.5);
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.08;
  margin: 0 0 0.6rem;
  background: linear-gradient(180deg, #fbf0cf 0%, var(--gold-light) 35%, var(--gold) 70%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.35em;
  color: var(--gold-light);
  margin: 0 0 1.4rem;
}

.hero-lead {
  max-width: 32rem;
  color: rgba(247, 239, 224, 0.86);
  margin: 0 0 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero .gold-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-serif);
  letter-spacing: 0.18em;
  border: 1px solid var(--gold);
  position: relative;
  transition: transform 0.25s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.28);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-dim));
  color: var(--lacquer-deep);
}

.btn-ghost {
  color: var(--gold-light);
  background: rgba(74, 7, 11, 0.4);
}

.btn-ghost.on-light {
  color: var(--lacquer);
  background: transparent;
}

/* ---------- sections ---------- */

.section { padding: 5.5rem 0; position: relative; }

/* Tighter first section right under the title bar */
.page-title-bar + .section { padding-top: 3rem; }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-inner.narrow { max-width: 800px; }

.section-dark {
  background:
    linear-gradient(180deg, var(--lacquer) 0%, var(--lacquer-deep) 100%);
  color: var(--ivory);
}

.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.34em;
  color: var(--gold-dim);
  margin: 0 0 0.9rem;
}

.section-head { margin-bottom: 2.5rem; text-align: center; }
.section-head.left { text-align: left; }

.section-head h2,
.page-hero h1,
.group-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0;
  color: var(--lacquer);
}

.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.lede { color: var(--muted); }

.section-dark :is(.eyebrow, .lede) { color: rgba(247, 239, 224, 0.8); }
.section-dark :is(.section-head h2, .group-title, h2, h3) { color: var(--gold-light); }
.section-more { margin-top: 2.5rem; text-align: center; }

.text-link {
  font-family: var(--font-serif);
  letter-spacing: 0.16em;
  color: var(--vermilion);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.text-link:hover { color: var(--gold-dim); border-color: var(--gold); }
.section-dark .text-link { color: var(--gold-light); }

/* ---------- split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.portrait-frame {
  margin: 0;
  position: relative;
  padding: 0.7rem;
  background: linear-gradient(140deg, var(--gold-light), var(--gold) 45%, var(--gold-dim));
  box-shadow: var(--shadow-deep);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.3s ease;
}

.portrait-frame:hover img { transform: scale(1.05); }

/* ---------- cards ---------- */

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

.work-card {
  display: block;
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  padding: 0.6rem 0.6rem 1.2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.section-dark .work-card {
  background: rgba(247, 239, 224, 0.06);
  border-color: rgba(201, 162, 39, 0.5);
}

.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: url("../img/corner.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.work-card::before { top: 6px; left: 6px; }
.work-card::after { bottom: 6px; right: 6px; transform: rotate(180deg); }

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.work-card:hover::before,
.work-card:hover::after { opacity: 1; }

.work-card-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ivory-deep);
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.work-card:hover img { transform: scale(1.06); }

.work-card h3 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 1rem 0.6rem 0.3rem;
  text-align: center;
  color: var(--lacquer);
}
.section-dark .work-card h3 { color: var(--gold-light); }

.work-card time {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.section-dark .work-card time { color: rgba(247, 239, 224, 0.6); }

/* ---------- masters / craft ---------- */

.master-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.master-card {
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.master-card:hover { transform: translateY(-5px); border-color: var(--gold); }

.master-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 0.4s ease, transform 0.9s ease;
}
.master-card:hover img { filter: saturate(1.05); transform: scale(1.05); }

.master-card span {
  display: block;
  padding: 0.7rem 0.5rem 0.9rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.craft-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.craft-item {
  overflow: hidden;
  border: 1px solid var(--line-gold);
  background: var(--ivory-deep);
}

.craft-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.craft-item:hover img { transform: scale(1.07); }

/* ---------- news ---------- */

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-gold);
}

.news-list li { border-bottom: 1px solid var(--line-gold); }

.news-list a {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1.25rem;
  padding: 1.25rem 0.4rem;
  align-items: baseline;
  transition: background 0.3s ease, padding 0.3s ease;
}

.news-list a:hover {
  background: rgba(201, 162, 39, 0.08);
  padding-left: 1rem;
}

.news-list time {
  color: var(--gold-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.news-list .news-title {
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

.news-list .news-more {
  color: var(--vermilion);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

/* ---------- inner page banner + title bar ---------- */

.page-banner {
  position: relative;
  background: var(--lacquer-deep);
}

.page-banner-media {
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
  height: clamp(180px, 24vw, 300px);
}

.page-title-bar {
  background: linear-gradient(180deg, var(--lacquer-mid) 0%, var(--lacquer) 100%);
  box-shadow:
    inset 0 1px 0 rgba(240, 216, 150, 0.55),
    inset 0 -1px 0 rgba(240, 216, 150, 0.35);
  color: var(--ivory);
}

.page-title-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.9rem 1.25rem 2rem;
}

.page-title-bar .eyebrow { color: rgba(247, 239, 224, 0.68); margin-bottom: 0.55rem; }
.page-title-bar h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--gold-light);
  margin: 0;
}
.page-title-bar .lede {
  color: rgba(247, 239, 224, 0.72);
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.crumb { color: var(--gold-light); }
.crumb:hover { text-decoration: underline; }
.crumb-sep { margin: 0 0.4rem; color: var(--gold-dim); }

/* ---------- subnav ---------- */

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  justify-content: center;
}

.subnav a {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--line-gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--lacquer);
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.subnav a:hover,
.subnav a.is-active {
  background: linear-gradient(180deg, var(--lacquer-mid), var(--lacquer));
  color: var(--gold-light);
  border-color: var(--gold);
}

/* ---------- prose ---------- */

.prose {
  position: relative;
  background: #fffdf7;
  border: 1px solid var(--line-gold);
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  font-size: 1.03rem;
  color: var(--ink-soft);
}

.prose::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  pointer-events: none;
}

.prose :is(p, ul, ol, table) { margin: 0 0 1.15rem; }
.prose :is(h1, h2, h3, h4) {
  font-family: var(--font-serif);
  color: var(--lacquer);
  letter-spacing: 0.1em;
}
.prose a { color: var(--vermilion); text-decoration: underline; }
.prose img {
  margin: 1.5rem auto;
  border: 1px solid var(--line-gold);
  padding: 6px;
  background: var(--ivory);
}
.prose table { max-width: 100%; }

/* ---------- article ---------- */

.article-cover {
  margin: 0 0 2.5rem;
  padding: 0.7rem;
  background: linear-gradient(140deg, var(--gold-light), var(--gold) 45%, var(--gold-dim));
  box-shadow: var(--shadow-deep);
}
.article-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.75rem;
  justify-content: center;
}

/* ---------- forms ---------- */

.form {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 3rem;
  background: #fffdf7;
  border: 1px solid var(--line-gold);
  padding: 2rem clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}

.form label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-ink);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.form .btn { justify-self: start; }

.notice {
  padding: 0.95rem 1.2rem;
  background: rgba(201, 162, 39, 0.12);
  border-left: 3px solid var(--gold);
  margin-bottom: 1.75rem;
}

.order-product {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 1rem;
  border: 1px solid var(--line-gold);
  background: #fffdf7;
}
.order-product img { width: 130px; height: 165px; object-fit: cover; }
.order-product h2 { font-family: var(--font-serif); margin: 0 0 0.4rem; color: var(--lacquer); }

.message-list { display: grid; gap: 1.1rem; }
.message-card {
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line-gold);
  background: #fffdf7;
}
.message-card h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.5rem;
  color: var(--lacquer);
  letter-spacing: 0.08em;
}
.message-card .reply { margin-top: 0.85rem; color: var(--vermilion); }

/* ---------- misc ---------- */

.pager {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
}
.pager a { color: var(--vermilion); }

.empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
}

.empty-panel {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--line-gold);
  background: rgba(255, 253, 247, 0.7);
}

.group-title {
  margin: 3rem 0 1.5rem;
  font-size: 1.45rem;
  text-align: center;
}
.section-dark .group-title { color: var(--gold-light); }

/* ---------- footer ---------- */

.site-footer {
  background: linear-gradient(180deg, var(--lacquer) 0%, var(--lacquer-deep) 100%);
  color: rgba(247, 239, 224, 0.78);
  position: relative;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3rem;
  display: grid;
  gap: 1.75rem;
  text-align: center;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  letter-spacing: 0.3em;
  margin: 0 0 0.4rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-tag { margin: 0; color: rgba(247, 239, 224, 0.68); font-size: 0.88rem; letter-spacing: 0.16em; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.6rem;
  justify-content: center;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-copy { margin: 0; font-size: 0.8rem; color: rgba(247, 239, 224, 0.42); letter-spacing: 0.08em; }

/* ---------- motion ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-drift {
  from { transform: scale(1.05); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .site-nav a { font-size: 0.9rem; }
  .site-nav ul { gap: 0.2rem 1rem; }
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lacquer-deep);
    border-top: 1px solid var(--line-gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .site-nav.is-open { max-height: 75vh; overflow: auto; }
  .site-nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.9rem;
  }
}

@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .master-row { grid-template-columns: repeat(3, 1fr); }
  .craft-strip { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
  .master-row,
  .craft-strip { grid-template-columns: repeat(2, 1fr); }
  .news-list a { grid-template-columns: 1fr; gap: 0.3rem; }
  .news-list .news-more { display: none; }
  .hero-frame { min-height: 74vh; }
  .hero-brand { letter-spacing: 0.16em; }
  .order-product { grid-template-columns: 1fr; }
  .order-product img { width: 100%; height: 220px; }
  .section { padding: 4rem 0; }
}
