:root {
  --ink: #0a1628;
  --ink-2: #1a2942;
  --ink-soft: #4a5876;
  --paper: #fafaf7;
  --paper-2: #f2efe8;
  --line: #e3dfd5;
  --accent: #ff5b2e;
  --accent-2: #ffb547;
  --accent-soft: #ffe7dd;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 2px 6px rgba(10, 22, 40, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08), 0 2px 6px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.14), 0 8px 16px rgba(10, 22, 40, 0.06);
  --radius: 18px;
  --radius-sm: 10px;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  --content-max: 1280px;
  --content-wide: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(10, 22, 40, 0.2);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  color: #fff;
}
.site-header.scrolled {
  background: rgba(250, 250, 247, 0.92);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.site-header .brand { color: inherit; }
.site-header.scrolled .brand-mark { background: var(--ink); color: var(--paper); }
.site-header .brand-mark {
  background: #fff;
  color: var(--ink);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-dot {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--paper);
}
.brand-text {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
  margin-left: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.site-header:not(.scrolled) .nav a:hover { background: rgba(255, 255, 255, 0.15); }
.site-header.scrolled .nav a:hover { background: var(--paper-2); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #e84819 !important; }
.site-header.scrolled .nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
}
.site-header.scrolled .nav-cta:hover { background: var(--ink-2) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  cursor: pointer;
}
.site-header.scrolled .nav-toggle { border-color: var(--line); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav[hidden] { display: none !important; }
.mobile-nav {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 99;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
  animation: slide-in 0.22s ease;
}
@media (min-width: 821px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
}
@keyframes slide-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn.small { padding: 10px 20px; font-size: 14px; }
.btn.big { padding: 18px 36px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 91, 46, 0.35);
}
.btn-primary:hover { background: #e84819; transform: translateY(-1px); box-shadow: 0 14px 32px rgba(255, 91, 46, 0.45); }
.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 160px clamp(20px, 5vw, 64px) 120px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-image-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.55) 40%, rgba(10, 22, 40, 0.9) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.6) 0%, transparent 60%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.orb-1 { width: 480px; height: 480px; top: -120px; right: -120px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); }
.orb-2 { width: 380px; height: 380px; bottom: -160px; left: -100px; background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%); opacity: 0.35; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
}
.hero-title {
  font-size: clamp(44px, 8.5vw, 96px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-title-row { display: block; }
.hero-title-row.accent {
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 0 40px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: clamp(16px, 4vw, 56px);
  flex-wrap: wrap;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-stats dd {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  color: #fff;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ Section Heads ============ */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head.light { color: var(--paper); }
.section-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-en);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.section-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: 0.04em;
}
.section-head.light .section-sub { color: rgba(250, 250, 247, 0.6); }

/* ============ Philosophy ============ */
.philosophy {
  position: relative;
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}
.philosophy-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}
.philosophy-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink) 100%);
}
.philosophy .section-head { position: relative; z-index: 1; }
.section-head.light h2 { color: var(--paper); }

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.philosophy-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}
.philosophy-text {
  font-size: 16px;
  line-height: 2.05;
  color: rgba(250, 250, 247, 0.78);
  max-width: 720px;
  margin: 0 auto 80px;
}
.values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.values li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.values li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 91, 46, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.value-num {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.values h3 {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.values h3 small {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 247, 0.5);
}
.values p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(250, 250, 247, 0.78);
  margin: 0;
}

/* ============ Services ============ */
.services {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--paper);
}
.services-lede {
  text-align: center;
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-soft);
  max-width: 640px;
  margin: -32px auto 56px;
}
.service-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 91, 46, 0.4);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.service-card > p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service-list li {
  font-size: 14px;
  color: var(--ink);
  padding: 7px 0 7px 22px;
  position: relative;
  font-weight: 500;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============ Message ============ */
.message {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--paper-2);
}
.message-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.message-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.message-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.message-visual-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.7);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.message-body .section-num { display: inline-block; margin-bottom: 8px; }
.message-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.message-lead {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 28px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}
.message-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.message-sign {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.sign-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}
.sign-name {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ============ Leaders ============ */
.leaders {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.leaders::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 91, 46, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.leaders::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.leader-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.leader-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
}
.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 91, 46, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.leader-card.primary {
  background: linear-gradient(135deg, rgba(255, 91, 46, 0.18) 0%, rgba(255, 181, 71, 0.08) 100%);
  border-color: rgba(255, 91, 46, 0.35);
}
.leader-role {
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  margin-bottom: 20px;
}
.leader-card.primary .leader-role {
  background: var(--accent);
  color: #fff;
}
.leader-name {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.leader-name-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(250, 250, 247, 0.5);
}
.leader-bio {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(250, 250, 247, 0.78);
  margin: 0 0 18px;
  flex: 1;
}
.leader-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
  align-self: flex-start;
}
.leader-link:hover { border-bottom-color: var(--accent-2); }
.leader-keywords {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.leader-keywords li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 250, 247, 0.75);
}
.leader-card.primary .leader-keywords li {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ============ About ============ */
.about {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--paper);
}
.about-grid {
  max-width: var(--content-max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-headline {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  position: relative;
  padding-left: 20px;
}
.about-headline::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4em;
  width: 4px;
  height: calc(100% - 0.6em);
  background: var(--accent);
  border-radius: 2px;
}
.about-text {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pillar-num {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.pillar-label {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.company-table {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 8px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.company-table .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.company-table .row:last-child { border-bottom: none; }
.company-table dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-top: 2px;
}
.company-table dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
}
.company-table dd small { color: var(--ink-soft); font-size: 12px; }
.company-table dd a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.company-table dd a:hover { border-bottom-color: var(--accent); }

.access-strip {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #fff 0%, var(--paper-2) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.access-zip {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 6px;
}
.access-address {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.4;
}
.access-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.access-map {
  position: relative;
  aspect-ratio: 5 / 3;
  background: linear-gradient(135deg, #fff 0%, var(--paper) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.access-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin { position: relative; z-index: 1; }
.pin-dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #fff, 0 4px 16px rgba(255, 91, 46, 0.5);
  position: relative;
  z-index: 2;
}
.pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(3.6); opacity: 0; }
}
.map-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ============ Contact ============ */
.contact {
  padding: 120px clamp(20px, 5vw, 64px);
  background:
    radial-gradient(ellipse at top, rgba(255, 91, 46, 0.1) 0%, transparent 60%),
    var(--paper);
  text-align: center;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.contact-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0 0 20px;
}
.contact-lede {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.contact-fineprint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 16px 0 0;
}
.br-sm { display: none; }

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 247, 0.7);
  padding: 56px clamp(20px, 5vw, 64px) 32px;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand .brand-mark {
  background: var(--paper);
  color: var(--ink);
}
.footer-name {
  margin: 0;
  font-weight: 700;
  color: var(--paper);
  font-size: 15px;
}
.footer-addr {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.55);
}
.footer-addr a {
  color: rgba(250, 250, 247, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.footer-addr a:hover { border-bottom-color: rgba(250, 250, 247, 0.78); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
}
.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 250, 247, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 0;
  white-space: nowrap;
}

/* ============ Wide Desktop Enhancements ============ */
@media (min-width: 1280px) {
  .hero { padding: 180px clamp(40px, 6vw, 96px) 140px; }
  .philosophy, .services, .message, .leaders, .about, .contact {
    padding-left: clamp(40px, 6vw, 96px);
    padding-right: clamp(40px, 6vw, 96px);
  }
  .hero-title { font-size: clamp(56px, 6.5vw, 104px); }
  .philosophy-headline { font-size: clamp(32px, 3.4vw, 52px); }
  .section-head h2 { font-size: clamp(44px, 4.4vw, 64px); }
  .service-grid { gap: 28px; }
  .service-card { padding: 48px 44px; }
  .values { gap: 28px; }
  .values li { padding: 44px 36px; }
  .leader-grid { gap: 24px; }
  .leader-card { padding: 40px 34px; }
  .about-grid { gap: 80px; }
}
@media (min-width: 1600px) {
  .hero-inner, .philosophy-inner, .service-grid, .leader-grid, .about-grid, .message-grid, .access-strip, .footer-inner, .hero-stats {
    max-width: var(--content-wide);
  }
}

/* ============ Responsive ============ */
@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .message-grid { grid-template-columns: 1fr; gap: 32px; }
  .message-visual { aspect-ratio: 16 / 10; max-width: 540px; }
  .access-strip { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 130px 20px 80px; min-height: auto; }
  .philosophy, .services, .message, .leaders, .about, .contact { padding: 80px 20px; }
  .br-sm { display: inline; }
  .company-table { padding: 8px 20px; }
  .company-table .row { grid-template-columns: 96px 1fr; gap: 16px; padding: 14px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav { justify-content: center; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats { gap: 20px; }
  .hero-stats div { flex: 1 1 calc(50% - 10px); min-width: 0; }
  .service-card { padding: 32px 24px; }
  .values li { padding: 28px 24px; }
  .leader-card { padding: 28px 24px; }
  .about-pillars { gap: 12px; }
}

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