:root {
  --primary: #181d26;
  --primary-active: #0d1218;
  --canvas: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #e0e2e6;
  --surface-dark: #181d26;
  --surface-dark-elevated: #1d1f25;
  --hairline: #dddddd;
  --ink: #181d26;
  --body-text: #333840;
  --muted: #41454d;
  --on-primary: #ffffff;
  --link: #1b61c9;
  --link-active: #1a3866;
  --sig-coral: #aa2d00;
  --sig-forest: #0a2e0e;
  --sig-cream: #f5e9d4;
  --sig-peach: #fcab79;
  --sig-mint: #a8d8c4;
  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;
  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-xxl: 48px;
  --sp-section: 96px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--canvas);
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-active); text-decoration: underline; }

img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--sp-md); }
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span { color: var(--muted); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-text);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); font-weight: 500; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: var(--sp-xs);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 var(--sp-md); }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--sp-xl) var(--sp-xl);
    gap: var(--sp-lg);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
}

.hero-band {
  padding: var(--sp-section) 0;
  background: var(--canvas);
}

.hero-band h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  max-width: 700px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-text);
  max-width: 600px;
  margin-top: var(--sp-lg);
}

.section-band {
  padding: var(--sp-section) 0;
  background: var(--canvas);
}

.section-band.bg-soft { background: var(--surface-soft); }

.section-title {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-xl);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .article-grid { grid-template-columns: 1fr; }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.15s;
}

.article-card:hover {
  box-shadow: 0 4px 24px rgba(24, 29, 38, 0.08);
  text-decoration: none;
}

.article-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-strong);
}

.article-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}

.article-card__body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.article-card__body p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.55;
  flex: 1;
}

.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
  padding-top: var(--sp-xs);
}

.signature-coral-card {
  padding: var(--sp-xxl) 0;
  background: var(--sig-coral);
  border-radius: 0;
}

.signature-coral-card h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--on-primary);
  max-width: 680px;
  margin-bottom: var(--sp-md);
  line-height: 1.25;
}

.signature-coral-card p {
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: var(--sp-xl);
  font-size: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col__img { order: -1; }
}

.two-col__text h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}

.two-col__text p {
  margin-bottom: var(--sp-md);
  font-size: 15px;
  line-height: 1.65;
}

.two-col__img img {
  border-radius: var(--r-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.cta-band-light {
  padding: var(--sp-xxl) 0;
  background: var(--surface-strong);
  border-radius: var(--r-lg);
  margin: var(--sp-section) auto;
  max-width: 1280px;
  padding-left: var(--sp-xxl);
  padding-right: var(--sp-xxl);
}

.cta-band-light h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: var(--sp-md);
}

.cta-band-light p {
  max-width: 600px;
  margin-bottom: var(--sp-xl);
  font-size: 15px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 14px var(--sp-lg);
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover,
.btn-primary:active { background: var(--primary-active); color: var(--on-primary); text-decoration: none; }

.btn-secondary {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  padding: 14px var(--sp-lg);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover { color: var(--ink); text-decoration: none; border-color: var(--muted); }

.btn-secondary-on-dark {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  padding: 14px var(--sp-lg);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  text-decoration: none;
}

.btn-secondary-on-dark:hover { text-decoration: none; opacity: 0.92; }

.btn-legal {
  display: inline-block;
  background: var(--link);
  color: var(--on-primary);
  font-size: 13.12px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--r-xs);
  border: none;
  cursor: pointer;
}

.btn-legal--outline {
  background: transparent;
  color: var(--body-text);
  border: 1px solid var(--hairline);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-xxl);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info p { margin-bottom: var(--sp-sm); font-size: 15px; }
.contact-info a { color: var(--link); }

.contact-form { display: flex; flex-direction: column; gap: var(--sp-md); }

.form-row { display: flex; flex-direction: column; gap: var(--sp-xxs); }

.form-row label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.form-row input {
  height: 44px;
  padding: 0 var(--sp-md);
  font-size: 14px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.15s;
}

.form-row input:focus { border-color: #458fff; }

.form-note { font-size: 14px; color: var(--link); }

.article-hero {
  padding: var(--sp-xxl) 0 var(--sp-xl) 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.article-hero h1 {
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  max-width: 820px;
  line-height: 1.2;
  margin-top: var(--sp-sm);
}

.article-body { padding: var(--sp-section) 0; }

.article-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-xxl);
  align-items: start;
}

@media (max-width: 1024px) {
  .article-container {
    grid-template-columns: 1fr;
  }
  .article-sidebar { order: -1; }
}

.article-main h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--sp-xl) 0 var(--sp-md) 0;
  line-height: 1.3;
}

.article-main h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: var(--sp-xl) 0 var(--sp-sm) 0;
}

.article-main p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: var(--sp-md);
}

.article-main ul {
  margin: var(--sp-sm) 0 var(--sp-md) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.article-main ul li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body-text);
}

.article-figure {
  margin: var(--sp-xl) 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.article-figure--inline img {
  height: 300px;
}

.article-figure figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: var(--sp-xs) 0 0 0;
  line-height: 1.5;
}

.data-table-wrap {
  overflow-x: auto;
  margin: var(--sp-lg) 0 var(--sp-xs) 0;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 500;
  padding: var(--sp-sm) var(--sp-md);
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  white-space: nowrap;
}

.data-table td {
  padding: var(--sp-sm) var(--sp-md);
  border-bottom: 1px solid var(--hairline);
  color: var(--body-text);
  line-height: 1.5;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--surface-soft); }

.table-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--sp-xs);
}

.article-cta-card {
  margin-top: var(--sp-xl);
  padding: var(--sp-xl);
  background: var(--sig-cream);
  border-radius: var(--r-md);
}

.article-cta-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--sp-sm) 0;
}

.article-cta-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.article-cta-card ul li::before { content: '→ '; color: var(--muted); }

.article-sidebar { position: sticky; top: 80px; }

.sidebar-card {
  background: var(--surface-soft);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-lg);
  border: 1px solid var(--hairline);
}

.sidebar-card--dark {
  background: var(--surface-dark);
  border-color: transparent;
  color: rgba(255,255,255,0.88);
}

.sidebar-card--dark .sidebar-label { color: rgba(255,255,255,0.6); }
.sidebar-card--dark p { color: rgba(255,255,255,0.88); font-size: 14px; }
.sidebar-card--dark a { color: #7bb3f5; }

.sidebar-card--forest {
  background: var(--sig-forest);
  border-color: transparent;
}

.sidebar-card--forest .sidebar-label { color: rgba(255,255,255,0.6); }
.sidebar-card--forest p { color: rgba(255,255,255,0.88); font-size: 14px; }
.sidebar-card--forest a { color: #7de8b8; }

.sidebar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: var(--sp-sm);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.sidebar-list li {
  font-size: 14px;
  color: var(--body-text);
  padding-left: var(--sp-md);
  position: relative;
}

.sidebar-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.inner-hero {
  padding: var(--sp-xxl) 0;
  border-bottom: 1px solid var(--hairline);
}

.inner-hero h1 {
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
}

.content-narrow { max-width: 760px; }

.content-narrow h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: var(--sp-xl) 0 var(--sp-sm) 0;
}

.content-narrow p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}

.content-narrow ul {
  margin: var(--sp-sm) 0 var(--sp-md) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.content-narrow ul li {
  font-size: 15px;
  line-height: 1.65;
}

.contact-block {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  margin: var(--sp-sm) 0 var(--sp-lg) 0;
  padding: var(--sp-lg);
  background: var(--surface-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
}

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-section) 0 var(--sp-xl) 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: var(--sp-xl);
}

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: var(--sp-xs); }
.footer-tagline { font-size: 14px; color: var(--muted); margin-bottom: var(--sp-md); line-height: 1.5; }
.footer-contact { font-size: 14px; color: var(--muted); line-height: 1.9; }
.footer-contact a { color: var(--muted); }

.footer-heading {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-xs); }
.footer-col ul a { font-size: 14px; color: var(--muted); }
.footer-col ul a:hover { color: var(--ink); }

.footer-legal {
  max-width: 1280px;
  margin: var(--sp-xl) auto 0 auto;
  padding: var(--sp-lg) var(--sp-xxl) 0 var(--sp-xxl);
  border-top: 1px solid var(--hairline);
}

.footer-legal p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-legal a { color: var(--muted); }

.disclaimer-bar {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-md) 0;
}

.disclaimer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface-dark);
  padding: var(--sp-md) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xxl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.cookie-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

.cookie-actions { display: flex; gap: var(--sp-sm); flex-shrink: 0; }

@media (max-width: 768px) {
  .hero-band h1 { font-size: 28px; }
  .article-hero h1 { font-size: 26px; }
  .section-title { font-size: 24px; }
  .two-col__text h2 { font-size: 24px; }
  .cta-band-light { margin: var(--sp-xxl) var(--sp-md); padding: var(--sp-xl) var(--sp-lg); border-radius: var(--r-lg); }
  .footer-inner { padding: 0 var(--sp-md); }
  .footer-legal { padding: var(--sp-lg) var(--sp-md) 0 var(--sp-md); }
  .disclaimer-inner { padding: 0 var(--sp-md); }
  .cookie-inner { padding: 0 var(--sp-md); }
  .nav-inner { padding: 0 var(--sp-md); }
  .article-figure img { height: 220px; }
  .article-figure--inline img { height: 180px; }
}
