:root {
  --bg:             #080706;
  --bg-card:        rgba(20, 17, 15, 0.55);
  --bg-card-hover:  rgba(28, 23, 19, 0.72);
  --bg-panel:       rgba(16, 14, 12, 0.88);
  --text:           #ded5c4;
  --text-dim:       #b5a994;
  --muted:          #827a6d;
  --gold:           #c2a76a;
  --gold-bright:    #d4ba7a;
  --gold-dim:       rgba(194, 167, 106, 0.08);
  --gold-line:      rgba(194, 167, 106, 0.14);
  --gold-soft:      rgba(194, 167, 106, 0.24);
  --gold-hover:     rgba(194, 167, 106, 0.38);
  --white-line:     rgba(255, 255, 255, 0.07);
  --white-line-strong: rgba(255, 255, 255, 0.12);
  --radius:         4px;
  --radius-card:    6px;
  --gap:            24px;
  --content:        min(1080px, calc(100vw - 56px));
  --content-narrow: min(720px, calc(100vw - 56px));
  --content-text:   min(620px, calc(100vw - 56px));
  --shadow-card:    0 40px 100px rgba(0, 0, 0, 0.42);
  --glow:           0 0 36px rgba(194, 167, 106, 0.14), 0 0 90px rgba(194, 167, 106, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 25% 85%, rgba(194, 167, 106, 0.05), transparent 38%),
    radial-gradient(circle at 80% 15%, rgba(108, 49, 54, 0.14), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- HEADER ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  background: rgba(8, 7, 6, 0.62);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #efe0c0 55%, rgba(255,255,255,0.5));
  box-shadow: 0 0 16px rgba(194, 167, 106, 0.4);
  transition: box-shadow 400ms ease;
  flex-shrink: 0;
}

.brand:hover .brand-mark {
  box-shadow: 0 0 24px rgba(194, 167, 106, 0.6), 0 0 56px rgba(194, 167, 106, 0.2);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 280ms ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--text); }

.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 280ms ease, opacity 200ms ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 3, 0.86) 0%, rgba(4, 4, 3, 0.42) 44%, rgba(4, 4, 3, 0.1) 64%, rgba(4, 4, 3, 0.52) 100%),
    linear-gradient(0deg, rgba(4, 4, 3, 0.84) 0%, rgba(4, 4, 3, 0.06) 56%, rgba(4, 4, 3, 0.22) 100%);
  box-shadow: inset 0 0 200px rgba(8, 7, 6, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 140px 0 96px;
  display: grid;
  gap: 24px;
}

.hero-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.94rem;
  letter-spacing: 0.03em;
}

.hero h1 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.04;
  max-width: 14ch;
  color: #f6ede0;
}

.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--text);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  margin-top: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ---------- BUTTONS ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 320ms ease,
    background 280ms ease,
    border-color 280ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #dbc395);
  color: #120e09;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(194, 167, 106, 0.26), 0 0 56px rgba(194, 167, 106, 0.08);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 32px rgba(194, 167, 106, 0.06);
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
  border-radius: var(--radius);
  box-shadow: 0 0 0 3px rgba(194, 167, 106, 0.15);
}

.button:active {
  transform: scale(0.97);
}

/* ---------- SECTIONS ---------- */

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

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.section-narrow { width: var(--content-narrow); }
.section-text  { width: var(--content-text); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.section h2 {
  margin: 0 0 32px;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.55;
}

.section p {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 1.04rem;
  line-height: 1.78;
}

.section p:last-child { margin-bottom: 0; }

/* ---------- BRAND ESSENCE ---------- */

.essence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 40px;
}

.essence-item {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
  transition:
    border-color 400ms ease,
    background 400ms ease,
    box-shadow 400ms ease;
}

.essence-item:hover {
  border-color: var(--gold-soft);
  background: var(--bg-card-hover);
  box-shadow: var(--glow), var(--shadow-card);
}

.essence-item h3 {
  margin: 0 0 14px;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.essence-item p {
  font-size: 0.96rem;
  margin: 0;
}

.essence-item:active {
  transform: scale(0.98);
}

/* ---------- BRANCH CARDS ---------- */

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 40px;
}

.branch-card {
  display: grid;
  gap: 16px;
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
  transition:
    border-color 400ms ease,
    background 400ms ease,
    box-shadow 400ms ease,
    transform 300ms ease;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--gold-dim), transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.branch-card:hover {
  border-color: var(--gold-soft);
  background: var(--bg-card-hover);
  box-shadow: var(--glow), var(--shadow-card);
  transform: translateY(-2px);
}

.branch-card:hover::before { opacity: 1; }

.branch-card:active {
  transform: scale(0.98);
}

.branch-card-inner { position: relative; z-index: 1; }

.branch-card h3 {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.branch-card h3 .en-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.branch-card p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---------- STILLSTAGE BRIDGE ---------- */

.stillstage-bridge {
  margin-top: 64px;
  padding: 40px 36px;
  border-left: 2px solid var(--gold);
  background: var(--bg-panel);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  transition: border-color 400ms ease, background 400ms ease;
}

.stillstage-bridge:hover {
  border-color: var(--gold-bright);
}

.stillstage-bridge p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.stillstage-bridge a {
  color: var(--gold);
  transition: color 200ms ease;
}

.stillstage-bridge a:hover { color: var(--gold-bright); }

/* ---------- FOUNDER ---------- */

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.founder-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-text h2 { margin-bottom: 18px; }

.founder-text .founder-role {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--gold);
}

/* ---------- FINAL CTA ---------- */

.final-cta {
  text-align: center;
  padding: 72px 0 100px;
}

.final-cta-inner {
  width: var(--content-narrow);
  margin: 0 auto;
}

.final-cta h2 { text-align: center; }
.final-cta h2::after { left: 50%; transform: translateX(-50%); }

.final-cta .cta-email {
  display: inline-block;
  margin: 24px 0 0;
  font-size: 1.45rem;
  color: var(--gold);
  transition: color 200ms ease;
}

.final-cta .cta-email:hover { color: var(--gold-bright); }

.final-cta .cta-note {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- CONTENT PAGES ---------- */

.content-page h2 {
  margin: 36px 0 14px;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.content-page p { margin: 0 0 14px; }
.content-page p:last-child { margin-bottom: 0; }

.content-page .doc-date {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.content-page ol { padding-left: 20px; color: var(--text-dim); line-height: 1.78; }
.content-page li { margin-bottom: 6px; }

/* ---------- JOURNAL ---------- */

.journal-hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.journal-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journal-hero-media img,
.journal-card-media img,
.journal-featured-media img,
.journal-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-hero-media img { object-position: center center; }

.journal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.92) 0%, rgba(5, 5, 4, 0.58) 42%, rgba(5, 5, 4, 0.16) 66%, rgba(5, 5, 4, 0.58) 100%),
    linear-gradient(0deg, rgba(5, 5, 4, 0.9) 0%, rgba(5, 5, 4, 0.24) 58%, rgba(5, 5, 4, 0.45) 100%);
  box-shadow: inset 0 0 220px rgba(8, 7, 6, 0.86);
}

.journal-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 148px 0 76px;
}

.journal-hero h1 {
  margin: 0;
  max-width: 12ch;
  color: #f6ede0;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.04;
}

.journal-hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.journal-hero-copy {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--text-dim);
  font-size: 1.04rem;
}

.journal-featured-section { padding-top: 84px; }

.journal-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 0;
  overflow: hidden;
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.82), rgba(9, 8, 7, 0.94));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.journal-featured-media {
  display: block;
  min-height: 420px;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
}

.journal-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.journal-featured-content h2 {
  display: block;
  margin: 16px 0 20px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.journal-featured-content h2::after { display: none; }

.journal-featured-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.specs {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--muted);
}

.specs li {
  position: relative;
  padding-left: 16px;
}

.specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.spotlight-price {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.announce-note {
  margin-top: 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.announce-note a {
  color: var(--gold);
}

.journal-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.journal-meta-line a,
.journal-read-link,
.journal-back-link {
  color: var(--gold);
  transition: color 200ms ease;
}

.journal-meta-line a:hover,
.journal-read-link:hover,
.journal-back-link:hover { color: var(--gold-bright); }

.journal-meta-line span + span::before,
.journal-meta-line a + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  vertical-align: middle;
}

.journal-read-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  font-size: 0.94rem;
}

.journal-read-link::after,
.journal-back-link::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.journal-read-link::after { margin-left: 10px; }
.journal-back-link::before { margin-right: 10px; }

.journal-section-head,
.journal-home-head,
.journal-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: end;
}

.journal-section-head h2,
.journal-home-head h2,
.journal-about-layout h2 { margin-bottom: 0; }

.journal-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.journal-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.journal-filter a:hover,
.journal-filter a[aria-current="page"] {
  color: var(--text);
  border-color: var(--gold-soft);
  background: rgba(194, 167, 106, 0.08);
}

.journal-filter-note {
  margin: 28px 0 0;
  color: var(--muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 40px;
}

.journal-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
  transition:
    transform 280ms ease,
    border-color 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.journal-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  background: var(--bg-card-hover);
  box-shadow: var(--glow), var(--shadow-card);
}

.journal-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(42, 28, 20, 0.62), rgba(10, 9, 8, 0.92));
  border-bottom: 1px solid var(--white-line);
}

.journal-card-media--small { aspect-ratio: 1.45 / 1; }

.journal-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 26px;
}

.journal-card h3 {
  margin: 14px 0 12px;
  color: var(--text);
  font-weight: 400;
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.22;
}

.journal-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.64;
}

.journal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.journal-tags span {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  font-size: 0.78rem;
  line-height: 1.25;
}

.journal-tags--stacked { margin-top: 8px; }

.journal-home-section {
  background:
    linear-gradient(180deg, transparent, rgba(194, 167, 106, 0.025) 45%, transparent),
    rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.journal-home-button { margin-top: 28px; }

.journal-about-section {
  padding-top: 16px;
}

.journal-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 40px;
}

.journal-about-item {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.026);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
}

.journal-about-item h3 {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 1.22rem;
}

.journal-about-item p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.96rem;
}

.journal-cta-section {
  padding: 76px 0 96px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(194, 167, 106, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(8, 7, 6, 0), rgba(8, 7, 6, 0.7));
  text-align: center;
}

.journal-cta-inner {
  width: var(--content-narrow);
  margin: 0 auto;
}

.journal-cta-section h2 {
  margin: 0;
  color: #f6ede0;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.journal-cta-section p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--text-dim);
}

.journal-cta-section .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

/* ---------- JOURNAL ARTICLE ---------- */

.journal-article-hero {
  padding: 132px 0 52px;
}

.journal-article-hero-inner {
  width: var(--content);
  margin: 0 auto;
}

.journal-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 0.92rem;
}

.journal-article-kicker { margin-bottom: 18px; }

.journal-article-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #f6ede0;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.journal-article-subtitle {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--text-dim);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.58;
}

.journal-article-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 42px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.journal-article-layout {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(240px, 300px);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
  padding: 28px 0 64px;
}

.journal-article-body {
  color: var(--text);
  font-size: clamp(1.06rem, 1.4vw, 1.16rem);
  line-height: 1.86;
}

.journal-article-body p {
  margin: 0 0 24px;
  color: var(--text-dim);
}

.journal-article-body h2 {
  margin: 48px 0 18px;
  color: var(--text);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.18;
}

.journal-article-body blockquote {
  margin: 36px 0;
  padding: 28px 30px;
  color: var(--text);
  background: rgba(194, 167, 106, 0.06);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.62;
}

.journal-article-body ul {
  margin: 0 0 26px;
  padding-left: 22px;
  color: var(--text-dim);
}

.journal-article-body li { margin-bottom: 10px; }

.journal-inline-cta {
  margin: 38px 0;
  padding: 26px 28px;
  background: var(--bg-panel);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-card);
}

.journal-inline-cta p {
  margin: 0;
}

.journal-article-figure {
  margin: 38px 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
}

.journal-article-aside {
  position: sticky;
  top: 96px;
  padding: 26px;
  background: rgba(16, 14, 12, 0.72);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
}

.journal-aside-block {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--white-line);
}

.journal-aside-block:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}

.journal-aside-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.journal-article-aside a {
  color: var(--gold);
}

.journal-article-aside a:hover {
  color: var(--gold-bright);
}

.journal-aside-cta p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.94rem;
}

.journal-legal-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.journal-related-section {
  padding-top: 18px;
}

.journal-article-cta-section {
  padding-top: 68px;
}

.journal-filter a:focus-visible,
.journal-card a:focus-visible,
.journal-read-link:focus-visible,
.journal-back-link:focus-visible,
.footer-nav a:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* ---------- FOOTER ---------- */

.site-footer {
  border-top: 1px solid var(--white-line);
  padding: 32px 0 48px;
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 40px;
  margin-bottom: 20px;
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 200ms ease;
}

.footer-nav a:hover { color: var(--text); }

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  opacity: 0.65;
}

.footer-version {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  font-size: 0.72rem;
  letter-spacing: 0;
  opacity: 0.68;
}

.footer-version::before {
  content: "";
  width: 14px;
  height: 1px;
  margin: 0 10px 0 0;
  background: currentColor;
  opacity: 0.55;
}

/* ---------- FORMS ---------- */

.form-section {
  margin-top: 36px;
  padding: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-card);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.form-field label .required {
  color: var(--gold);
  margin-left: 3px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-line-strong);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(194, 167, 106, 0.06);
}

.form-field textarea { min-height: 100px; resize: vertical; }

.honeypot {
  position: absolute;
  left: -99999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
  cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.consent-checkbox a { color: var(--gold); text-decoration: underline; }
.consent-checkbox a:hover { color: var(--gold-bright); }

.form-submit { margin-top: 8px; }

.form-note {
  margin-top: 16px;
  min-height: 1.5em;
  color: var(--gold);
  font-size: 0.94rem;
}

/* ---------- COOKIE NOTICE ---------- */

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(10, 8, 7, 0.95);
  border-top: 1px solid var(--white-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
}

.cookie-notice[hidden] { display: none; }

.cookie-notice-inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-notice p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.cookie-actions a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color 200ms ease;
  text-decoration: underline;
}

.cookie-actions a:hover { color: var(--text); }

.cookie-actions button {
  padding: 10px 22px;
  background: var(--gold);
  color: #120e09;
  border: none;
  border-radius: var(--radius);
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 220ms ease, box-shadow 280ms ease;
}

.cookie-actions button:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 20px rgba(194, 167, 106, 0.2);
}

/* ---------- PAGE HERO (subpages) ---------- */

.page-hero {
  position: relative;
  min-height: 56vh;
  min-height: 56svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 3, 0.92) 0%, rgba(4, 4, 3, 0.48) 42%, rgba(4, 4, 3, 0.12) 64%, rgba(4, 4, 3, 0.48) 100%),
    linear-gradient(0deg, rgba(4, 4, 3, 0.85) 0%, transparent 50%, rgba(4, 4, 3, 0.35) 100%);
  box-shadow: inset 0 0 200px rgba(8, 7, 6, 0.8);
  z-index: 1;
}

.page-hero-overlay--dark {
  background: rgba(8, 7, 6, 0.7);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: 100px 0 64px;
}

.page-hero .eyebrow { margin-bottom: 8px; }

.page-hero h1 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.06;
}

.page-hero .en-label {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- CONTACT LINES ---------- */

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 1rem;
}

.contact-lines a {
  color: var(--gold);
  transition: color 200ms ease;
}

.contact-lines a:hover { color: var(--gold-bright); }

/* ---------- REVEAL ANIMATIONS ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TOUCH DEVICES — prevent sticky hover ---------- */

@media (hover: none) and (pointer: coarse) {
  .branch-card:hover,
  .essence-item:hover,
  .stillstage-bridge:hover,
  .journal-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--bg-card);
    border-color: var(--white-line);
  }
  .branch-card:hover::before { opacity: 0; }
  .button-primary:hover {
    transform: none;
    box-shadow: none;
  }
  .button-secondary:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
  }
  .brand:hover .brand-mark {
    box-shadow: 0 0 16px rgba(194, 167, 106, 0.4);
  }
  .site-nav a:hover { color: var(--muted); }
  .site-nav a:hover::after { width: 0; }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .essence-grid        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .branch-grid         { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-grid        { grid-template-columns: 1fr; gap: 28px; }
  .founder-portrait    { aspect-ratio: 1 / 1; }
  .page-hero           { min-height: 48vh; min-height: 48svh; }
  .journal-featured-card { grid-template-columns: 1fr; }
  .journal-featured-media { min-height: auto; aspect-ratio: 16 / 9; }
  .journal-grid,
  .journal-about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-section-head,
  .journal-home-head,
  .journal-about-layout { grid-template-columns: 1fr; align-items: start; }
  .journal-filter { justify-content: flex-start; }
  .journal-article-layout { grid-template-columns: 1fr; }
  .journal-article-aside { position: static; }
}

@media (max-width: 680px) {
  :root {
    --content:        min(100vw - 32px, 1000px);
    --content-narrow: min(100vw - 32px, 1000px);
    --content-text:   min(100vw - 32px, 1000px);
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 8, 7, 0.96);
    border-bottom: 1px solid var(--white-line);
    padding: 0;
    gap: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 420ms ease,
      opacity 360ms ease,
      padding 360ms ease,
      visibility 0s 420ms;
  }

  .site-nav.open {
    max-height: 500px;
    opacity: 1;
    padding: 16px 0 20px;
    visibility: visible;
    transition:
      max-height 420ms ease,
      opacity 360ms ease,
      padding 360ms ease,
      visibility 0s 0s;
  }

  .site-nav a {
    padding: 12px 16px;
    width: var(--content);
    margin: 0 auto;
  }

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

  .site-nav a:active {
    background: rgba(194, 167, 106, 0.08);
    border-radius: var(--radius);
  }

  .nav-toggle { display: flex; }

  .essence-grid,
  .branch-grid,
  .journal-grid,
  .journal-about-grid { grid-template-columns: 1fr; gap: 16px; }

  body { font-size: 1.06rem; line-height: 1.78; }

  .button { width: 100%; }

  .hero-content { padding: 130px 0 80px; }
  .hero h1 em { font-size: clamp(1.2rem, 4vw, 1.5rem); }
  .journal-hero { min-height: 86vh; min-height: 86svh; }
  .journal-hero-inner { padding: 120px 0 58px; }
  .journal-hero h1 { font-size: clamp(2.45rem, 14vw, 3.7rem); }
  .journal-hero-lead { font-size: 1.12rem; }

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

  .stillstage-bridge { padding: 28px 24px; }
  .journal-featured-section { padding-top: 56px; }
  .journal-featured-content,
  .journal-card-content,
  .journal-about-item,
  .journal-article-aside,
  .journal-inline-cta { padding: 22px; }
  .journal-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .journal-filter a { white-space: nowrap; }
  .journal-article-hero { padding: 108px 0 34px; }
  .journal-article-cover { margin-top: 30px; aspect-ratio: 4 / 3; }
  .journal-article-layout { padding-top: 12px; }
  .journal-article-body blockquote { padding: 22px; }
  .journal-cta-section { padding: 58px 0 72px; }

  .founder-portrait { aspect-ratio: 1 / 1; }

  .form-section { padding: 22px; }

  .footer-row { flex-direction: column; gap: 16px; }

  .footer-nav { flex-direction: column; gap: 10px; }

  .cookie-notice-inner { flex-direction: column; align-items: flex-start; }

  .page-hero-inner { padding: 80px 0 48px; }
  .page-hero        { min-height: 40vh; min-height: 40svh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- PRINT ---------- */

@media print {
  body {
    background: #fff;
    color: #111;
    font-size: 12pt;
  }
  .site-header,
  .cookie-notice,
  .nav-toggle,
  .hero-overlay,
  .page-hero-overlay,
  .cookie-actions,
  .hero-media {
    display: none;
  }
  .hero-content,
  .page-hero-inner {
    position: static;
    padding: 20px 0;
  }
  .hero h1,
  .page-hero h1 {
    color: #111;
    font-size: 24pt;
  }
  a { color: #111; text-decoration: underline; }
  .section { padding: 20px 0; }
}
