/* Chrome additions — Zoho mega-menu dropdown */

.nav-zoho-wrap { position: relative; }
.nav-zoho-trigger {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-zoho-trigger:hover, .nav-zoho-trigger.active { color: var(--text-strong); }

.nav-zoho-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15,20,25,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
  z-index: 60;
}
.nav-zoho-menu.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-zoho-menu-inner {
  padding: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 32px;
}
.nav-zoho-overview {
  border-right: 1px solid var(--border);
  padding-right: 28px;
}
.nav-zoho-overview-link {
  display: block;
  font-size: 18px; font-weight: 600;
  color: var(--text-strong); text-decoration: none;
  line-height: 1.3;
}
.nav-zoho-overview-link:hover { color: var(--brand-blue); }
.nav-zoho-overview-desc {
  margin: 12px 0 0;
  font-size: 13px; color: var(--text-muted);
  line-height: 1.55;
}
.nav-zoho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.nav-zoho-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard);
}
.nav-zoho-item:hover { background: var(--off-white); }
.nav-zoho-swatch {
  width: 32px; height: 32px; border-radius: 6px;
  display: grid; place-items: center;
  color: #fff; font-size: 13px; font-weight: 600;
  flex-shrink: 0; overflow: hidden;
}
img.nav-zoho-swatch {
  object-fit: contain; background: transparent;
}
.nav-zoho-name {
  display: block;
  font-size: 13px; font-weight: 600; color: var(--text-strong);
}
.nav-zoho-sub {
  display: block;
  font-size: 11px; color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Mobile presentation of the Zoho menu (inline inside the nav drawer)
   is handled in styles/site.css responsive layer. */

/* ========== About page ========== */
.about-hero {
  background: #fff;
  padding: 96px 0 80px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero h1 {
  font-size: 48px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.1;
  text-wrap: balance;
}
.about-hero .sub {
  margin-top: 24px; font-size: 17px; line-height: 1.65;
  color: var(--text-body); max-width: 520px;
}
.about-architecture {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.about-architecture .tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--brand-blue); text-transform: uppercase;
  margin-bottom: 20px;
}
.about-architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-pillar {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 20px 16px;
  text-align: center;
}
.about-pillar .label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 6px;
}
.about-pillar .name {
  font-size: 15px; font-weight: 600; color: var(--text-strong);
  margin-bottom: 8px;
}
.about-pillar .role {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.5;
}
.about-pillar .who {
  margin-top: 12px;
  font-size: 13px; font-weight: 500;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.about-pillar.revenue .who    { color: #E94B3C; }
.about-pillar.control .who    { color: #5BA84A; }
.about-pillar.technology .who { color: #2A7DC9; }

.about-architecture .foot {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); text-align: center;
}

.about-principals {
  background: #fff;
  padding: 96px 0;
}
.about-principals .heading {
  text-align: center;
  margin-bottom: 56px;
}
.about-principals .eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-blue);
  margin-bottom: 14px;
}
.about-principals h2 {
  font-size: 36px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text-strong); margin: 0; line-height: 1.2;
  text-wrap: balance;
}
.about-principals h2 .italic {
  font-style: italic; color: var(--brand-blue);
}
.about-principals .lead {
  max-width: 720px; margin: 24px auto 0;
  font-size: 16px; line-height: 1.7; color: var(--text-body);
}
.about-principals .closer {
  margin-top: 48px; text-align: center;
  font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
}

.about-origin {
  background: var(--brand-blue-light);
  padding: 96px 0;
}
.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
}
.about-origin h2 {
  font-size: 32px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.25;
  text-wrap: balance;
}
.about-origin h2 .italic { font-style: italic; color: var(--brand-blue); }
.about-origin .rule {
  display: block; width: 32px; height: 2px;
  background: var(--brand-red); border: 0;
  margin: 18px 0 28px;
}
.about-origin p {
  font-size: 15px; line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 18px;
  max-width: 560px;
}
.about-origin .facts {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 24px;
  align-self: start;
}
.about-origin .fact {
  display: flex; flex-direction: column;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.about-origin .fact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.about-origin .fact .lbl {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.about-origin .fact .val {
  font-size: 18px; font-weight: 600; color: var(--text-strong);
  letter-spacing: -0.005em;
}

.about-founders {
  background: #fff;
  padding: 96px 0;
}
.about-founders .heading {
  margin-bottom: 56px;
}
.about-founders h2 {
  font-size: 36px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.2;
}
.about-founders h2 .italic { font-style: italic; color: var(--brand-red); }

.founder-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 24px;
}
.founder-portrait {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--brand-blue-light);
}
.founder-portrait svg { width: 100%; height: 100%; display: block; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.founder-meta .name {
  font-size: 24px; font-weight: 600;
  color: var(--text-strong);
  margin: 0;
}
.founder-meta .title {
  margin-top: 4px;
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.founder-meta .focus {
  margin-top: 8px;
  font-size: 15px; font-weight: 500;
  color: var(--brand-blue);
}
.founder-meta p {
  margin: 24px 0 0;
  font-size: 15px; line-height: 1.7;
  color: var(--text-body);
}
.founder-meta .chips {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.founder-meta .chip {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--text-body);
  border: 1px solid var(--border);
}

.about-quote {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.about-quote .label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.about-quote blockquote {
  margin: 0 auto; max-width: 820px;
  font-size: 26px; font-weight: 500; font-style: italic;
  color: #fff; line-height: 1.4; letter-spacing: -0.005em;
  text-wrap: balance;
}
.about-quote .attrib {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.about-principles {
  background: #fff;
  padding: 96px 0;
}
.about-principles .heading {
  text-align: center;
  margin-bottom: 56px;
}
.about-principles h2 {
  font-size: 36px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.2;
}
.about-principles h2 .italic { font-style: italic; color: var(--brand-blue); }
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.principle {
  padding: 28px 0;
  border-top: 2px solid var(--brand-red);
}
.principle .num {
  font-size: 13px; font-weight: 500;
  color: var(--brand-red);
  margin-bottom: 16px;
}
.principle h3 {
  font-size: 20px; font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.principle p {
  font-size: 14px; line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

.about-firm {
  background: var(--off-white);
  padding: 96px 0;
}
.about-firm-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-firm h2 {
  font-size: 36px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.2;
}
.about-firm h2 .italic { font-style: italic; color: var(--brand-blue); }
.about-firm .rule {
  display: block; width: 32px; height: 2px;
  background: var(--brand-red); border: 0;
  margin: 18px 0 0;
}
.firm-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.firm-fact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.firm-fact .lbl {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 12px;
}
.firm-fact .val {
  font-size: 18px; font-weight: 600; color: var(--text-strong);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .about-hero { padding: 64px 0; }
  .about-hero-grid, .about-origin-grid, .about-firm-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-principals, .about-origin, .about-founders, .about-quote, .about-principles, .about-firm { padding: 64px 0; }
  .about-architecture-grid, .about-principles-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .founder-portrait { max-width: 240px; }
  .firm-facts { grid-template-columns: 1fr; }
}

/* ========== Value Matrix page ========== */
.vm-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #E8F0FB 100%);
  padding: 96px 0 80px;
}
.vm-hero h1 {
  font-size: 48px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.1;
  text-wrap: balance;
  max-width: 880px;
}
.vm-hero h1 .italic { font-style: italic; color: var(--brand-blue); }
.vm-hero .sub {
  margin-top: 24px; font-size: 17px; line-height: 1.7;
  color: var(--text-body); max-width: 720px;
}

.vm-layers { background: #fff; padding: 96px 0; }
.vm-layer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.vm-layer:first-child { padding-top: 0; }
.vm-layer:last-child { border-bottom: 0; padding-bottom: 0; }
.vm-layer-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-blue);
  margin-bottom: 14px;
}
.vm-layer-no {
  font-family: var(--font-family-mono);
  font-size: 64px; font-weight: 400;
  color: var(--text-strong);
  line-height: 1; letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.vm-layer h2 {
  font-size: 36px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text-strong); margin: 0; line-height: 1.15;
}
.vm-layer .rule {
  display: block; width: 32px; height: 2px;
  background: var(--brand-red); border: 0;
  margin: 18px 0 0;
}
.vm-layer .layer-desc {
  margin-top: 24px;
  font-size: 16px; line-height: 1.7;
  color: var(--text-body);
  max-width: 460px;
}
.vm-layer-detail .module-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.vm-layer-detail .module-card .tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
}
.vm-layer-detail .module-card h3 {
  margin: 0;
  font-size: 22px; font-weight: 600;
  color: var(--text-strong);
}
.vm-layer-detail .module-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.vm-layer-detail .module-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px; color: var(--text-body);
  line-height: 1.55;
}
.vm-layer-detail .module-card li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
.vm-layer.revenue    .module-card { border-left: 3px solid #E94B3C; }
.vm-layer.control    .module-card { border-left: 3px solid #5BA84A; }
.vm-layer.execution  .module-card { border-left: 3px solid #2A7DC9; }
.vm-layer.revenue    .vm-layer-no { color: #E94B3C; }
.vm-layer.control    .vm-layer-no { color: #5BA84A; }
.vm-layer.execution  .vm-layer-no { color: #2A7DC9; }

@media (max-width: 960px) {
  .vm-hero { padding: 64px 0; }
  .vm-layers { padding: 64px 0; }
  .vm-layer { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}

/* ========== Contact page ========== */
.contact-hero {
  background: #fff;
  padding: 96px 0 64px;
  text-align: center;
}
.contact-hero h1 {
  font-size: 48px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text-strong); margin: 14px 0 0; line-height: 1.1;
  text-wrap: balance;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.contact-hero .sub {
  margin: 24px auto 0;
  font-size: 17px; line-height: 1.65;
  color: var(--text-body); max-width: 560px;
}

.contact-body { background: #fff; padding: 32px 0 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.contact-form h2 {
  font-size: 24px; font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.contact-form .form-desc {
  font-size: 14px; color: var(--text-muted);
  margin: 0 0 32px;
}
.zd-field { margin-bottom: 20px; }
.zd-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zd-form-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.zd-form-success {
  background: #E8F4ED;
  border: 1px solid #BFE0CD;
  border-radius: 6px;
  padding: 20px;
  color: #1E6B41;
  font-size: 14px;
  margin-top: 24px;
  display: none;
}
.zd-form-success.visible { display: block; }

.contact-sidebar > .block { margin-bottom: 32px; }
.contact-sidebar .block-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-blue);
  margin-bottom: 12px;
}
.contact-sidebar h3 {
  font-size: 20px; font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.contact-sidebar p, .contact-sidebar a {
  font-size: 15px; line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  text-decoration: none;
}
.contact-sidebar a { display: block; padding: 4px 0; }
.contact-sidebar a:hover { color: var(--brand-blue); }
.contact-sidebar .office {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.contact-sidebar .office .city {
  font-size: 15px; font-weight: 600; color: var(--text-strong);
  margin-bottom: 6px;
}
.contact-sidebar .office .addr {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.contact-sidebar .office .phone-num {
  font-size: 14px; color: var(--text-body);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .contact-hero { padding: 64px 0 32px; }
  .contact-body { padding: 16px 0 64px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px; }
  .zd-field-row { grid-template-columns: 1fr; }
}
