:root {
  --ink: #151a1f;
  --deep: #101b26;
  --navy: #14283a;
  --blue: #1f4f6f;
  --blue-soft: #dce8ef;
  --slate: #eff3f5;
  --bronze: #b48a56;
  --bronze-soft: #eadfcc;
  --ivory: #fbf8ef;
  --paper: #fffdf7;
  --white: #ffffff;
  --muted: #65727c;
  --line: #e1e6e9;
  --shadow: 0 24px 60px rgba(16, 27, 38, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, .9);
  border-bottom: 1px solid rgba(16,27,38,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  box-shadow: 0 16px 32px rgba(16,27,38,.18);
}
.brand-mark::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 17px;
  height: 22px;
  border-left: 2px solid rgba(255,255,255,.82);
  border-bottom: 2px solid rgba(255,255,255,.82);
  transform: rotate(45deg);
}
.brand-mark::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(180,138,86,.92);
  border-radius: 50%;
}
.brand-text {
  display: grid;
  line-height: 1.2;
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: .07em;
  font-weight: 700;
  color: var(--deep);
}
.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #44505a;
  font-size: 14px;
  font-weight: 800;
}
.nav a:hover { color: var(--blue); }
.nav-contact {
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--deep);
  box-shadow: 0 12px 28px rgba(16,27,38,.18);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 28%, rgba(180,138,86,.20), transparent 18%),
    radial-gradient(circle at 88% 76%, rgba(31,79,111,.24), transparent 22%),
    linear-gradient(135deg, #101b26 0%, #14283a 52%, #203e4c 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.grid-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.grid-line-a { width: 70%; right: -10%; top: 30%; transform: rotate(-16deg); }
.grid-line-b { width: 60%; left: -14%; bottom: 26%; transform: rotate(12deg); }
.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 10px rgba(180,138,86,.12);
}
.node-a { right: 19%; top: 27%; }
.node-b { right: 34%; bottom: 28%; }
.node-c { left: 12%; bottom: 22%; }
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.orbit-a { width: 420px; height: 420px; right: 8%; top: 18%; }
.orbit-b { width: 720px; height: 720px; right: -12%; bottom: -34%; }

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 740px;
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 58px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #d9c69e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker::before { content:""; width: 42px; height: 1px; background: currentColor; }
.hero h1 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.22;
  letter-spacing: -0.04em;
}
.hero-lead {
  margin-top: 30px;
  max-width: 650px;
  color: rgba(255,255,255,.80);
  font-size: 17px;
  line-height: 2.1;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  transition: .22s ease;
}
.button-primary {
  background: var(--white);
  color: var(--deep);
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
}
.button-primary:hover { transform: translateY(-2px); background: var(--slate); }
.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.button-ghost:hover { background: rgba(255,255,255,.16); }

.hero-panel {
  padding: 42px;
  border-radius: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.panel-label {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-panel h2 {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}
.hero-panel p {
  margin-top: 22px;
  color: rgba(255,255,255,.72);
}
.panel-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.panel-matrix span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 800;
}

.section { padding: 104px 0; }
.section-paper { background: var(--ivory); }
.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16,27,38,.97), rgba(31,79,111,.88)),
    radial-gradient(circle at 80% 20%, rgba(180,138,86,.22), transparent 24%);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before { content:""; width: 28px; height: 1px; background: currentColor; }
.section-dark .kicker { color: #d9c69e; }
h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.36;
  letter-spacing: -0.04em;
  color: var(--deep);
}
.section-dark h2 { color: var(--white); }
h3 { font-size: 22px; line-height: 1.55; font-weight: 900; }
p { color: var(--muted); }
.section-dark p { color: rgba(255,255,255,.74); }
.center { text-align: center; margin-inline: auto; }
.section-head { margin-bottom: 54px; }
.section-head p { margin-top: 14px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 58px;
  align-items: center;
}
.about-copy .lead {
  margin-top: 28px;
  font-size: 17px;
  line-height: 2.1;
}
.about-copy p + p { margin-top: 20px; }
.about-card {
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(31,79,111,.20), rgba(180,138,86,.14));
}
.about-card-inner {
  min-height: 420px;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.80);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.greek-note {
  color: var(--bronze);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.about-card h3 {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  color: var(--deep);
}
.about-card p { margin-top: 22px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.service-card {
  min-height: 322px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(16,27,38,.06);
  transition: .22s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-num {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--slate), var(--bronze-soft));
  font-weight: 900;
  letter-spacing: .08em;
}
.service-card p { margin-top: 14px; font-size: 14px; line-height: 1.9; }

.approach-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.approach-list {
  display: grid;
  gap: 16px;
}
.approach-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.approach-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--deep);
  font-weight: 900;
  flex: 0 0 auto;
}
.approach-item h3 { color: var(--white); font-size: 19px; }
.approach-item p { margin-top: 6px; font-size: 14px; line-height: 1.85; }

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.strength-card {
  padding: 32px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.strength-card p { margin-top: 14px; font-size: 15px; line-height: 1.95; }

.company-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 42px;
  align-items: start;
}
.company-table {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16,27,38,.06);
}
.company-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid var(--line);
}
.company-row:last-child { border-bottom: 0; }
.company-key {
  padding: 20px 24px;
  color: var(--deep);
  background: #f3f5f6;
  font-weight: 900;
}
.company-value {
  padding: 20px 24px;
  color: #53616b;
}
.company-value a:hover { color: var(--blue); }
.company-side {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31,79,111,.10), rgba(180,138,86,.06)),
    var(--slate);
  border: 1px solid var(--line);
}
.company-side h3 { color: var(--deep); }
.company-side p { margin-top: 18px; }

.contact {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16,27,38,.96), rgba(31,79,111,.90)),
    radial-gradient(circle at 75% 30%, rgba(180,138,86,.22), transparent 24%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.contact h2 { color: var(--white); }
.contact p {
  margin-top: 18px;
  max-width: 720px;
  color: rgba(255,255,255,.88);
  font-weight: 500;
}
.contact-card {
  min-width: 340px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  color: var(--deep);
  box-shadow: var(--shadow);
}
.contact-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}
.email-link {
  color: var(--deep);
  font-size: 18px;
  font-weight: 900;
  word-break: break-all;
}
.email-link:hover { color: var(--blue); }

.footer {
  padding: 34px 0;
  background: var(--deep);
  color: rgba(255,255,255,.72);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}
.footer-brand {
  display: grid;
  gap: 4px;
}
.footer-brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: .07em;
}
.footer-brand small { font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer a:hover { color: var(--white); }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-inner,
  .about-grid,
  .approach-grid,
  .company-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .hero, .hero-inner { min-height: 680px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .strength-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 70px; }
  .brand-name { font-size: 22px; }
  .brand-sub { display: none; }
  .brand-mark { width: 36px; height: 36px; border-radius: 12px; }
  .hero, .hero-inner { min-height: 620px; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-panel { padding: 28px; }
  .hero-panel h2 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 74px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .panel-matrix { grid-template-columns: repeat(2, 1fr); }
  .company-row { grid-template-columns: 1fr; }
  .company-key, .company-value { padding: 16px 18px; }
  .contact-card { min-width: 0; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}


/* v5: exact Concept 03 logo and display refinements */
.brand-logo {
  display: block;
  width: 224px;
  max-height: 66px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: 205px;
  max-height: 64px;
  object-fit: contain;
}

.footer-brand small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.about-title {
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.35;
  white-space: nowrap;
}

.hero {
  padding-bottom: 78px;
}

.hero-inner {
  min-height: 0;
  padding: 84px 0 0;
}

.hero-panel {
  padding-bottom: 52px;
}

.contact .kicker {
  color: #d8b483;
}

.contact p {
  color: rgba(255,255,255,.88);
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 70px;
  }
  .hero-inner {
    min-height: 0;
    padding: 66px 0 0;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 178px;
    max-height: 54px;
  }
  .brand-sub {
    display: none;
  }
  .footer-logo {
    width: 172px;
  }
  .about-title {
    white-space: normal;
    font-size: clamp(26px, 7.2vw, 40px);
  }
  .hero {
    padding-bottom: 54px;
  }
  .hero-inner {
    min-height: 0;
    padding: 52px 0 0;
  }
}
