/* =========================================================
   K-ASSETS — quiet luxury edition
   dark charcoal × champagne gold × serif
   ========================================================= */
:root {
  --bg: #0f1013;
  --bg-2: #14161a;
  --bg-3: #191b20;
  --paper: #f4f1ea;
  --paper-2: #ebe7dd;
  --txt: #eae8e2;
  --txt-mute: #a8a59d;
  --ink: #1b1c1f;
  --ink-mute: #625e55;
  --ink-body: #3c3a34;
  --gold: #c5a662;
  --gold-soft: #d9c491;
  --gold-deep: #7c6335;
  --line-d: rgba(255, 255, 255, 0.14);
  --line-l: rgba(27, 28, 31, 0.16);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", "MS PMincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "Noto Sans JP", "メイリオ", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--txt);
  line-height: 2;
  font-size: 15px;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 56px); }

::selection { background: var(--gold); color: var(--bg); }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
  .hero-bg::before, .hero-bg::after, .hero-bg .hero-photo { animation: none !important; }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(15, 16, 19, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-d);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; flex-direction: column; gap: 7px; z-index: 210; }

.brand-logo { height: 28px; width: auto; }

.brand .co {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--txt-mute);
}

.global-nav { display: flex; align-items: center; gap: 34px; }

.global-nav a {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--txt-mute);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.global-nav a:hover { color: var(--gold-soft); }

.global-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* --- hamburger --- */
.menu-btn {
  display: none;
  z-index: 210;
  background: none;
  border: 0;
  cursor: pointer;
  width: 48px; height: 48px;
  position: relative;
}

.menu-btn span {
  position: absolute;
  left: 10px;
  width: 28px; height: 1px;
  background: var(--txt);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), opacity 0.3s;
}

.menu-btn span:nth-child(1) { top: 20px; }
.menu-btn span:nth-child(2) { top: 28px; }

body.menu-open .menu-btn span:nth-child(1) { top: 24px; transform: rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { top: 24px; transform: rotate(-45deg); }

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(13, 14, 17, 0.97);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.menu-open .overlay-menu { opacity: 1; visibility: visible; }

.overlay-menu ul { list-style: none; text-align: center; }

.overlay-menu li {
  margin: 26px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

body.menu-open .overlay-menu li { opacity: 1; transform: none; }

body.menu-open .overlay-menu li:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .overlay-menu li:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .overlay-menu li:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .overlay-menu li:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .overlay-menu li:nth-child(5) { transition-delay: 0.32s; }

.overlay-menu a {
  font-family: var(--serif);
  font-size: clamp(22px, 4.5vw, 30px);
  letter-spacing: 0.24em;
  color: var(--txt);
  transition: color 0.3s;
}

.overlay-menu a:hover { color: var(--gold); }

.overlay-menu .en {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-bottom: 4px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-bg .hero-photo {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center 30% / cover no-repeat;
  filter: brightness(0.52) saturate(0.78) contrast(1.04);
  animation: heroZoom 34s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 46% 38% at 74% 24%, rgba(197, 166, 98, 0.14), transparent 68%),
    radial-gradient(ellipse 60% 48% at 18% 86%, rgba(40, 52, 82, 0.35), transparent 70%),
    linear-gradient(160deg, rgba(16, 17, 22, 0.86) 0%, rgba(14, 15, 18, 0.55) 55%, rgba(18, 19, 23, 0.68) 100%);
  animation: drift 26s ease-in-out infinite alternate;
}

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

.hero-bg .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 90%);
}

.hero-bg .beam {
  position: absolute;
  top: -12%;
  right: clamp(170px, 19vw, 320px);
  width: 1px;
  height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(197, 166, 98, 0.5) 35%, rgba(197, 166, 98, 0.08) 75%, transparent);
  transform: rotate(24deg);
  transform-origin: top;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(15, 16, 19, 0.9), transparent 60%);
  animation: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px clamp(24px, 6vw, 72px) 96px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* vertical catch copy */
.hero-catch {
  position: absolute;
  top: 50%;
  right: clamp(28px, 9vw, 128px);
  transform: translateY(-52%);
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(18px, 3vw, 40px);
}

.hero-catch .line {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.3em;
  color: var(--txt);
  text-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

@media (max-height: 660px) and (min-width: 921px) {
  .hero-catch .line { font-size: clamp(26px, 4.2vw, 42px); }
}

.hero-catch .line b { color: var(--gold); font-weight: 500; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.52em;
  color: var(--gold);
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 470px;
  font-size: 15px;
  line-height: 2.4;
  color: var(--txt-mute);
}

.hero-lead strong { color: var(--txt); font-weight: 500; }

/* staggered entrance */
[data-hero] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
}

body.is-loaded [data-hero] { opacity: 1; transform: none; }

body.is-loaded [data-hero="1"] { transition-delay: 0.15s; }
body.is-loaded [data-hero="2"] { transition-delay: 0.4s; }
body.is-loaded [data-hero="3"] { transition-delay: 0.65s; }

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 1px;
  height: 88px;
  overflow: hidden;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--txt-mute);
  white-space: nowrap;
}

.marquee-track > span { padding-right: 72px; }

.marquee-track .dot { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Section shell
   ========================================================= */
.sec { padding: clamp(96px, 13vw, 170px) 0; position: relative; }

.sec.paper {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(197, 166, 98, 0.25);
  border-bottom: 1px solid rgba(197, 166, 98, 0.25);
}

.sec.deep { background: var(--bg-2); }

.sec-head { margin-bottom: clamp(48px, 7vw, 88px); }

.sec-index {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.sec-index .no {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
}

.sec:not(.paper) .sec-index .no { color: var(--txt-mute); }

.sec-index .rule { width: 56px; height: 1px; background: currentColor; opacity: 0.35; }

.sec-index .en {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.sec:not(.paper) .sec-index .en { color: var(--txt-mute); }

.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 46px);
  letter-spacing: 0.18em;
  line-height: 1.7;
}

/* =========================================================
   Philosophy
   ========================================================= */
.phi-statement {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 2.2;
  letter-spacing: 0.16em;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.phi-statement em {
  font-style: normal;
  color: var(--gold-deep);
}

.phi-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.phi-text p { margin-bottom: 22px; font-size: 15px; line-height: 2.3; color: var(--ink-body); }

/* pillars */
.pillars { list-style: none; border-top: 1px solid var(--line-l); }

.pillars li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line-l);
}

.pillars .p-no {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  padding-top: 5px;
}

.pillars h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.pillars p { font-size: 13px; line-height: 2; color: var(--ink-mute); }

/* stats strip */
.stats-strip {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
}

.stats-strip .stat {
  padding: 38px 12px;
  text-align: center;
}

.stats-strip .stat + .stat { border-left: 1px solid var(--line-l); }

.stats-strip .num {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 54px);
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--ink);
}

.stats-strip .num small { font-size: 0.42em; letter-spacing: 0.2em; margin-left: 4px; color: var(--ink-mute); }

.stats-strip .num.struct {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(1.3 * clamp(38px, 5vw, 54px));
}

.stats-strip .label { font-size: 11px; letter-spacing: 0.3em; color: var(--ink-mute); margin-top: 10px; }

/* =========================================================
   Portfolio
   ========================================================= */
.property {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.property + .property { margin-top: clamp(72px, 10vw, 128px); }

.property.flip .p-art { order: 2; }

.p-art {
  position: relative;
  border: 1px solid var(--line-d);
  background: var(--bg-3);
}

.p-art img { width: 100%; aspect-ratio: 16 / 10.5; object-fit: cover; }

.p-art .art-caption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--txt-mute);
}

.p-info .p-no {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 14px;
}

.p-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.16em;
  margin-bottom: 26px;
  line-height: 1.7;
}

.spec { width: 100%; border-collapse: collapse; font-size: 13px; }

.spec th, .spec td {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-d);
  text-align: left;
  font-weight: 400;
  vertical-align: top;
}

.spec th {
  width: 7em;
  color: var(--txt-mute);
  font-size: 11px;
  letter-spacing: 0.22em;
  padding-top: 16px;
}

.portfolio-note {
  margin-top: clamp(56px, 7vw, 80px);
  padding-top: 26px;
  border-top: 1px solid var(--line-d);
  font-size: 12px;
  line-height: 2.1;
  color: var(--txt-mute);
}

.portfolio-note a { color: var(--gold-soft); border-bottom: 1px solid rgba(197, 166, 98, 0.4); }

/* =========================================================
   News
   ========================================================= */
.news-list { list-style: none; border-top: 1px solid var(--line-d); }

.news-list li {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line-d);
}

.news-list time {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--txt-mute);
  white-space: nowrap;
}

.news-tag {
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--gold);
  border: 1px solid rgba(197, 166, 98, 0.45);
  padding: 4px 14px;
  white-space: nowrap;
}

.news-tag.closed { color: var(--txt-mute); border-color: var(--line-d); }

.news-text { font-size: 15px; line-height: 2.1; flex: 1; min-width: 240px; }

.news-text a { color: var(--gold-soft); border-bottom: 1px solid rgba(197, 166, 98, 0.4); transition: opacity 0.3s; }

.news-text a:hover { opacity: 0.7; }

/* =========================================================
   Company
   ========================================================= */
.company-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--line-l); }

.company-table th, .company-table td {
  padding: 22px 8px;
  border-bottom: 1px solid var(--line-l);
  text-align: left;
  font-weight: 400;
  font-size: 15px;
  vertical-align: top;
}

.company-table th {
  width: 220px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  padding-top: 26px;
}

/* ===== CEO message ===== */
.ceo {
  margin: clamp(56px, 8vw, 96px) auto 0;
  max-width: 720px;
  border-left: 2px solid var(--gold-deep);
  padding-left: clamp(26px, 4vw, 48px);
}

.ceo .ceo-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 27px);
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 26px;
}

.ceo p { font-size: 14.5px; line-height: 2.3; color: var(--ink-body); margin-bottom: 18px; }

.ceo .ceo-sign {
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-align: right;
}

/* ===== Company timeline ===== */
.timeline {
  margin-top: clamp(40px, 6vw, 64px);
}

.timeline h3 {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 18px;
}

.timeline ul { list-style: none; border-top: 1px solid var(--line-l); }

.timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line-l);
  font-size: 14px;
}

.timeline .year {
  font-family: var(--serif);
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

@media (max-width: 920px) {
  .timeline li { grid-template-columns: 96px 1fr; gap: 12px; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact-wrap { text-align: center; max-width: 640px; margin: 0 auto; }

.contact-copy { font-size: 15px; line-height: 2.4; color: var(--txt-mute); margin-bottom: 44px; }

.contact-copy strong { color: var(--txt); font-weight: 500; }

.contact-mail {
  display: inline-block;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  border: 1px solid rgba(197, 166, 98, 0.5);
  padding: 20px 64px;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.contact-mail:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(197, 166, 98, 0.06);
}

.contact-sub { margin-top: 30px; font-size: 12px; line-height: 2.2; color: var(--txt-mute); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #0b0c0e;
  border-top: 1px solid var(--line-d);
  padding: 64px 0 44px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-logo { height: 20px; width: auto; }

.footer-brand .co { font-size: 11px; letter-spacing: 0.26em; color: var(--txt-mute); margin-top: 10px; }

.footer-note { font-size: 11px; letter-spacing: 0.12em; color: var(--txt-mute); line-height: 2.2; }

.footer-links { display: flex; gap: 26px; font-size: 11px; letter-spacing: 0.2em; }

.footer-links a { color: var(--txt-mute); transition: color 0.3s; }

.footer-links a:hover { color: var(--gold-soft); }

.copyright { font-size: 11px; letter-spacing: 0.2em; color: #817c72; margin-top: 34px; }

/* =========================================================
   Sub pages (privacy / 404)
   ========================================================= */
.page-hero { padding: 190px 0 80px; border-bottom: 1px solid var(--line-d); }

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0.2em;
}

.page-hero .en { font-size: 11px; letter-spacing: 0.42em; color: var(--gold); margin-bottom: 18px; }

.page-body { padding: 72px 0 130px; max-width: 780px; }

.page-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin: 44px 0 14px;
}

.page-body p, .page-body li { font-size: 15px; line-height: 2.3; color: var(--txt); margin-bottom: 10px; }

.page-body ul { padding-left: 1.5em; }

.page-body a { color: var(--gold-soft); border-bottom: 1px solid rgba(197, 166, 98, 0.4); }

.page-body .updated { margin-top: 52px; font-size: 12px; color: #817c72; }

.notfound {
  min-height: 72svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 160px 24px 80px;
}

.notfound .code {
  font-family: var(--serif);
  font-size: clamp(72px, 14vw, 130px);
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.notfound p { color: var(--txt-mute); margin: 18px 0 34px; letter-spacing: 0.1em; }

.notfound a {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  border: 1px solid rgba(197, 166, 98, 0.5);
  padding: 14px 44px;
  transition: background 0.3s, color 0.3s;
}

.notfound a:hover { background: var(--gold); color: var(--bg); }

/* =========================================================
   Accessibility & utilities
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sec-head.center { text-align: center; }

.sec-head.center .sec-index { justify-content: center; }

.sec-head.center .sec-title::after { margin-left: auto; margin-right: auto; }

.global-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.global-nav a:focus-visible,
.overlay-menu a:focus-visible,
.menu-btn:focus-visible,
.contact-mail:focus-visible,
.footer-links a:focus-visible,
.brand:focus-visible,
.news-text a:focus-visible,
.portfolio-note a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

@media print {
  body { background: #fff; color: #111; }
  .site-header, .overlay-menu, .hero-bg, .marquee, .scroll-cue, .menu-btn, .hero-catch, .site-footer .footer-links { display: none !important; }
  .hero { min-height: 0; }
  .hero-inner { padding: 24px 0; }
  .sec, .sec.paper, .sec.deep { background: #fff; color: #111; padding: 24px 0; border: 0; }
  .sec-title, .p-info h3, .phi-statement, .stats-strip .num { color: #111; }
  .company-table th, .company-table td, .spec th, .spec td { color: #111; border-color: #ccc; }
  .page-body p, .page-body li, .news-text, .hero-lead, .phi-text p { color: #111; }
  .site-footer { background: #fff; color: #111; border: 0; }
  [data-reveal], [data-hero] { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 920px) {
  .global-nav { display: none; }
  .menu-btn { display: block; }
  .header-inner { height: 72px; }
  .brand-logo { height: 24px; }

  .hero { flex-direction: column; }

  .hero-catch {
    position: static;
    transform: none;
    justify-content: flex-end;
    margin-bottom: 48px;
    min-height: 46svh;
    align-items: flex-start;
  }

  .hero-catch .line { font-size: clamp(30px, 9vw, 44px); }

  .hero-inner { padding-top: 120px; padding-bottom: 80px; }

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

  .property, .property.flip { grid-template-columns: 1fr; gap: 28px; }

  .property.flip .p-art { order: 0; }

  .stats-strip { grid-template-columns: 1fr; }

  .stats-strip .stat + .stat { border-left: 0; border-top: 1px solid var(--line-l); }

  .company-table th { width: 120px; letter-spacing: 0.18em; }

  .contact-mail { padding: 18px 34px; font-size: 15px; }

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