:root {
  --ink: #1a1612;
  --wood: #4a3b2e;
  --gold: #b8914c;
  --gold-bright: #c9a961;
  --paper: #f5efe6;
  --slab: #efe5d4;
  --smoke: #8a827b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--paper);
}

body {
  font-family: "Noto Serif SC", "Source Han Serif SC", STSong, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.ff-en { font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif; }
.ff-display { font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif; }

.page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 76% 38% at 50% 0%, rgba(201, 169, 97, 0.08) 0%, transparent 58%),
    linear-gradient(180deg, #1f1913 0%, #100d0a 100%);
  overflow: hidden;
}

.frame {
  position: fixed;
  inset: 24px;
  border: 1px solid rgba(201, 169, 97, 0.24);
  pointer-events: none;
  z-index: 5;
}

.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.58 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

.header {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--gold-bright);
  letter-spacing: 0.22em;
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(245, 239, 230, 0.72);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.34);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 28px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.policy-hero {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 104px 28px 84px;
  text-align: center;
}

.eyebrow {
  color: var(--gold-bright);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 22px;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 1.05;
  letter-spacing: 0.12em;
  color: var(--paper);
  font-weight: 500;
}

.identity {
  margin: 24px 0 0;
  color: var(--gold-bright);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.45;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.intro {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(245, 239, 230, 0.72);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.policy-hero .intro {
  margin-left: auto;
  margin-right: auto;
}

.policy-note {
  max-width: 720px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(201, 169, 97, 0.24);
  border-bottom: 1px solid rgba(201, 169, 97, 0.24);
  padding: 20px 0;
  color: rgba(245, 239, 230, 0.54);
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.cover-slot {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(201, 169, 97, 0.32);
  background:
    linear-gradient(135deg, rgba(74, 59, 46, 0.82), rgba(26, 22, 18, 0.96)),
    repeating-linear-gradient(110deg, rgba(245, 239, 230, 0.06) 0 1px, transparent 1px 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cover-slot.poster-cover {
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 760px);
  margin-left: auto;
  background: #eef3f7;
}

.cover-slot.headshot-cover {
  aspect-ratio: 2 / 3;
  max-height: min(72vh, 760px);
  margin-left: auto;
  background: #eef3f7;
}

.cover-slot.headshot-cover.authority-cover {
  aspect-ratio: 3 / 4;
}

.cover-slot.landscape-cover {
  aspect-ratio: 4 / 3;
  align-self: center;
  background: #efe5d4;
}

.cover-slot img,
.photo-slot img,
.video-slot video {
  width: 100%;
  height: 100%;
  display: block;
}

.cover-slot img,
.photo-slot img {
  object-fit: cover;
}

.cover-slot.poster-cover img {
  object-fit: contain;
}

.cover-slot.headshot-cover img {
  object-fit: cover;
}

.cover-slot.landscape-cover img {
  object-fit: cover;
}

.video-slot video {
  object-fit: contain;
  background: #080605;
}

.slot-mark {
  text-align: center;
  color: rgba(201, 169, 97, 0.72);
}

.slot-mark strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0.28em;
  font-weight: 400;
}

.slot-mark span {
  display: block;
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.48);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 28px;
}

.section.light {
  max-width: none;
  margin: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(184, 145, 76, 0.08) 0%, transparent 58%),
    linear-gradient(180deg, #f6f0e5 0%, #ebe0cc 100%);
  color: var(--ink);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--gold-bright);
}

.section.light .section-title { color: #8b6914; }

.line {
  width: 58px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title span {
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 11px;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.video-grid.single {
  grid-template-columns: minmax(260px, 360px);
  justify-content: center;
}

.video-grid.three {
  grid-template-columns: repeat(3, minmax(220px, 320px));
  justify-content: center;
}

.video-slot {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 169, 97, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    #15110d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-slot.portrait {
  aspect-ratio: 9 / 16;
}

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

.photo-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.photo-slot {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(139, 105, 20, 0.26);
  background:
    linear-gradient(135deg, rgba(74, 59, 46, 0.2), rgba(245, 239, 230, 0.48)),
    repeating-linear-gradient(110deg, rgba(139, 105, 20, 0.1) 0 1px, transparent 1px 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(74, 59, 46, 0.62);
  overflow: hidden;
}

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

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

.policy-card {
  border: 1px solid rgba(139, 105, 20, 0.22);
  background: rgba(255, 255, 255, 0.22);
  padding: 28px;
}

.policy-card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.policy-card p {
  margin: 0;
  color: rgba(26, 22, 18, 0.72);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  font-weight: 300;
}

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

.note {
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 24px;
  min-height: 150px;
}

.note h3 {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.note p {
  margin: 0;
  color: rgba(245, 239, 230, 0.68);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.summary-panel {
  border-top: 1px solid rgba(201, 169, 97, 0.24);
  border-bottom: 1px solid rgba(201, 169, 97, 0.24);
  padding: 34px 0;
  max-width: 880px;
  margin: 0 auto;
}

.summary-panel h2 {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.summary-panel p {
  margin: 0;
  color: rgba(245, 239, 230, 0.72);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 300;
}

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

.related-link {
  display: block;
  border-top: 1px solid rgba(201, 169, 97, 0.26);
  padding-top: 18px;
}

.related-link strong {
  display: block;
  color: var(--gold-bright);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.related-link span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 239, 230, 0.58);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.cta-band {
  text-align: center;
  padding-bottom: 110px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(201, 169, 97, 0.62);
  color: var(--paper);
  padding: 16px 34px;
  letter-spacing: 0.18em;
  transition: all 0.35s ease;
}

.cta:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.footer {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 44px;
  color: rgba(201, 169, 97, 0.62);
  font-size: 11px;
  letter-spacing: 0.28em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 860px) {
  .frame { inset: 14px; }
  .header {
    padding: 32px 22px 0;
    align-items: flex-start;
  }
  .brand { font-size: 18px; }
  .nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 72px 22px 64px;
  }
  .policy-hero { padding: 72px 22px 58px; }
  h1 { letter-spacing: 0.08em; }
  .cover-slot {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  .section { padding: 58px 22px; }
  .video-grid,
  .photo-grid,
  .notes,
  .related-links,
  .policy-grid,
  .policy-grid-three {
    grid-template-columns: 1fr;
  }
  .photo-slot { aspect-ratio: 16 / 11; }
  .footer {
    padding: 0 22px 34px;
    flex-direction: column;
  }
}
