@charset "UTF-8";

:root {
  --bg: #f7f3eb;
  --paper: #fffdf8;
  --ink: #171717;
  --text: #34302a;
  --muted: #766f64;
  --line: #ded5c8;
  --accent: #a56a43;
  --accent-2: #315d50;
  --soft: #eee4d5;
  --shadow: 0 24px 70px rgba(23, 23, 23, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.78;
  letter-spacing: .01em;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}
.header-inner {
  height: 72px;
  background: rgba(255,253,248,.86);
  border: 1px solid rgba(222,213,200,.78);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(23,23,23,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-symbol {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  font-weight: 900;
}
.brand-copy strong { display: block; font-size: 14px; line-height: 1.15; }
.brand-copy small { display: block; color: var(--muted); font-size: 10px; margin-top: 3px; }
.global-nav { display: flex; align-items: center; gap: 8px; }
.global-nav a {
  padding: 10px 16px; border-radius: 999px;
  color: var(--muted); font-size: 12px; font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.global-nav a:hover { background: var(--soft); color: var(--ink); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 58vw; height: 58vw;
  background: radial-gradient(circle, rgba(165,106,67,.18), transparent 62%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  margin: 0 0 18px;
}
.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: .98;
  letter-spacing: -.07em;
}
.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 8px 8px 0 rgba(23,23,23,.12); }
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.ghost { background: transparent; color: var(--ink); }

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.78), rgba(238,228,213,.7)),
    radial-gradient(circle at 20% 20%, rgba(49,93,80,.26), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(165,106,67,.22), transparent 28%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 64px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 50%;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 132px;
  border: 1px dashed rgba(165,106,67,.42);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.orb { position: absolute; border-radius: 50%; }
.orb-a { width: 210px; height: 210px; left: -54px; top: 90px; background: rgba(49,93,80,.16); }
.orb-b { width: 300px; height: 300px; right: -90px; bottom: -70px; background: rgba(165,106,67,.18); }
.trade-card {
  position: absolute;
  background: rgba(255,253,248,.76);
  border: 1px solid rgba(222,213,200,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 58px rgba(23,23,23,.08);
}
.card-main {
  left: 50%; top: 50%; width: 260px; min-height: 260px;
  border-radius: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; text-align: center; padding: 36px; z-index: 3;
}
.card-main span { color: var(--accent); font-size: 12px; letter-spacing: .12em; font-weight: 900; }
.card-main strong { display: block; margin-top: 8px; color: var(--ink); font-size: 24px; line-height: 1.15; }
.card-sub { padding: 18px 20px; border-radius: 24px; min-width: 190px; z-index: 4; }
.card-sub b { color: var(--accent); margin-right: 10px; }
.card-sub span { color: var(--text); font-weight: 800; }
.card-sub-1 { top: 118px; right: 48px; }
.card-sub-2 { left: 42px; bottom: 126px; }

.section { padding: 76px 0; }
.section-title h2, .section-head h2, .cta h2, .page-hero h1, .message-grid h2, .contact-copy h2 {
  margin: 0; color: var(--ink); letter-spacing: -.055em;
}
.section-title h2, .section-head h2, .message-grid h2, .contact-copy h2 {
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.14;
}
.intro {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-grid, .process-grid, .message-grid, .contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}
.sticky-title { position: sticky; top: 130px; }
.intro-text { display: grid; gap: 26px; font-size: 16px; color: var(--muted); }
.intro-text p { margin: 0; }

.section-head.center { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-head.center > p:not(.eyebrow) { color: var(--muted); margin: 16px 0 0; }
.service-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: auto auto auto;
  gap: 22px;
}
.service-card {
  min-height: 210px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 48px rgba(23,23,23,.04);
}
.service-card.large {
  grid-row: span 2;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(23,23,23,.86), rgba(49,93,80,.86)),
    radial-gradient(circle at 30% 20%, rgba(255,253,248,.18), transparent 30%);
  color: var(--paper);
}
.service-card.wide {
  grid-column: span 2;
  min-height: 210px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: end;
  gap: 24px;
  background: var(--soft);
}
.service-card span, .service-row > span, .flow-list span {
  color: var(--accent); font-weight: 900; letter-spacing: .12em; font-size: 12px;
}
.service-card.large span, .service-card.large p { color: rgba(255,253,248,.72); }
.service-card h3 {
  margin: 26px 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -.04em;
}
.service-card.large h3 { color: var(--paper); font-size: clamp(30px, 3.6vw, 46px); }
.service-card.wide h3 { margin: 0; }
.service-card p { margin: 0; color: var(--muted); }

.process {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flow-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.flow-list div {
  display: grid;
  grid-template-columns: 70px 150px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.flow-list strong { color: var(--ink); font-size: 23px; letter-spacing: -.03em; }
.flow-list p { margin: 0; color: var(--muted); }

.cta { padding: 76px 0; }
.cta-box {
  padding: clamp(42px, 7vw, 78px);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(49,93,80,.94), rgba(23,23,23,.94)),
    radial-gradient(circle at 80% 20%, rgba(165,106,67,.22), transparent 24%);
  color: var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta h2 {
  color: var(--paper);
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.12;
}
.cta .btn.primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.page-hero {
  padding: 138px 0 68px;
  background:
    linear-gradient(135deg, rgba(23,23,23,.96), rgba(49,93,80,.92)),
    radial-gradient(circle at 80% 20%, rgba(165,106,67,.24), transparent 25%);
  color: var(--paper);
}
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: .98;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,253,248,.72);
  margin: 24px 0 0;
  font-size: 16px;
}
.message-body, .contact-copy p { color: var(--muted); font-size: 16px; }
.profile-section, .contact-section { background: var(--paper); border-top: 1px solid var(--line); }
.profile-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(23,23,23,.04);
}
.profile-table th, .profile-table td {
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.profile-table tr:last-child th, .profile-table tr:last-child td { border-bottom: none; }
.profile-table th {
  width: 230px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .12em;
  background: rgba(238,228,213,.42);
}
.profile-table td { color: var(--text); }

.service-list { display: grid; gap: 22px; }
.service-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23,23,23,.04);
}
.service-row h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -.05em;
}
.service-row p { margin: 0; color: var(--muted); }

.address-card {
  margin-top: 32px;
  padding: 26px;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.address-card strong, .address-card span { display: block; }
.address-card span { margin-top: 8px; color: var(--muted); }
.contact-form {
  padding: clamp(30px, 5vw, 48px);
  border-radius: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label { display: block; color: var(--ink); font-weight: 900; margin-bottom: 22px; }
.contact-form input, .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 3px solid rgba(165,106,67,.16);
  border-color: var(--accent);
}
.form-note { color: var(--muted); font-size: 12px; margin: 16px 0 0; }

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: rgba(255,253,248,.72);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-start;
}
.footer-logo {
  display: inline-block;
  color: var(--paper);
  font-weight: 900;
  margin-bottom: 12px;
}
.footer-inner p { margin: 0; }
.footer-address { text-align: right; display: grid; gap: 10px; }

@media (max-width: 920px) {
  .container { width: min(100% - 32px, 1180px); }
  .header-inner { height: 66px; border-radius: 24px; padding: 0 18px; }
  .brand-copy small { display: none; }
  .nav-toggle {
    display: grid;
    width: 42px; height: 42px;
    border: 0; background: transparent;
    place-items: center; padding: 10px;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
  .global-nav {
    position: absolute;
    top: 78px; left: 16px; right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,253,248,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .global-nav.open { display: flex; }
  .hero { padding: 118px 0 58px; min-height: auto; }
  .hero-grid, .intro-grid, .process-grid, .message-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .sticky-title { position: static; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.large, .service-card.wide {
    grid-column: auto; grid-row: auto; min-height: 260px; display: block;
  }
  .service-card.wide h3 { margin: 26px 0 14px; }
  .flow-list div { grid-template-columns: 1fr; gap: 8px; }
  .service-row { grid-template-columns: 1fr; }
  .profile-table th, .profile-table td {
    display: block;
    width: 100%;
    padding: 17px 20px;
  }
  .profile-table th { padding-bottom: 5px; }
  .profile-table td { padding-top: 5px; }
  .footer-inner { flex-direction: column; }
  .footer-address { text-align: left; }
}

@media (max-width: 560px) {
  .brand-copy strong { font-size: 13px; }
  .brand-symbol { width: 38px; height: 38px; }
  .hero h1 { font-size: 42px; }
  .hero-visual { min-height: 360px; border-radius: 32px; }
  .card-main { width: 200px; min-height: 200px; }
  .card-main strong { font-size: 23px; }
  .card-sub { min-width: 150px; padding: 14px 16px; }
  .card-sub-1 { top: 70px; right: 18px; }
  .card-sub-2 { left: 18px; bottom: 72px; }
  .section { padding: 58px 0; }
  .page-hero { padding: 116px 0 54px; }
  .cta { padding: 58px 0; }
}


/* v5 typography refinement */
body {
  font-size: 15.5px;
}

h1, h2, h3, .brand-copy strong, .btn {
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-title h2,
.section-head h2,
.message-grid h2,
.contact-copy h2,
.cta h2,
.service-row h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero-lead,
.intro-text,
.message-body,
.contact-copy p,
.service-card p,
.service-row p,
.flow-list p,
.page-hero p:not(.eyebrow) {
  font-size: 15.5px;
  line-height: 1.85;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .08em;
}

.service-card h3 {
  font-weight: 800;
}

.card-main strong {
  font-size: 23px;
}

.flow-list strong {
  font-size: 22px;
}

@media (max-width: 920px) {
  .hero h1 {
    font-size: clamp(40px, 10vw, 58px);
  }
  .page-hero h1 {
    font-size: clamp(38px, 10vw, 58px);
  }
  .section-title h2,
  .section-head h2,
  .message-grid h2,
  .contact-copy h2 {
    font-size: clamp(26px, 7vw, 38px);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14.5px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .hero-lead,
  .intro-text,
  .message-body,
  .contact-copy p,
  .service-card p,
  .service-row p,
  .flow-list p,
  .page-hero p:not(.eyebrow) {
    font-size: 14.5px;
  }
  .brand-copy strong {
    font-size: 12.5px;
  }
}


/* v6 compact layout + visual fillers */
.quick-info {
  margin-top: -34px;
  position: relative;
  z-index: 5;
  padding-bottom: 42px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,253,248,.92);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 18px 56px rgba(23,23,23,.07);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.quick-info-grid div {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.quick-info-grid div:last-child {
  border-right: none;
}

.quick-info-grid span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.quick-info-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.bridge-copy {
  padding: 26px 0;
  background: var(--ink);
  color: var(--paper);
}

.bridge-copy p {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

.support-strip {
  padding: 0 0 54px;
}

.support-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.support-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.intro {
  padding-top: 68px;
}

.service-preview {
  padding-top: 72px;
}

.process {
  padding-top: 72px;
}

.cta {
  padding-top: 76px;
}

.section-head.center {
  margin-bottom: 40px;
}

@media (max-width: 920px) {
  .quick-info {
    margin-top: -20px;
    padding-bottom: 28px;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .quick-info-grid div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
  }

  .quick-info-grid div:last-child {
    border-bottom: none;
  }

  .bridge-copy p {
    font-size: 15px;
    text-align: left;
  }

  .support-strip {
    padding-bottom: 36px;
  }

  .support-strip-inner {
    justify-content: flex-start;
  }
}


/* v7 product-manager + user-view refined layout */
.hero {
  padding: 136px 0 64px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 620px;
  margin-top: 24px;
  font-size: 16px;
}

.refined-visual {
  min-height: 520px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.refined-visual::before,
.refined-visual::after,
.refined-visual .orb,
.refined-visual .trade-card {
  display: none;
}

.visual-panel-title {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 900;
  font-size: 12px;
}

.visual-service-list {
  display: grid;
  gap: 14px;
}

.visual-service-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(222,213,200,.86);
  box-shadow: 0 14px 36px rgba(23,23,23,.05);
}

.visual-service-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.visual-service-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.visual-service-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -22px;
  padding-bottom: 38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 18px 54px rgba(23,23,23,.07);
  backdrop-filter: blur(14px);
}

.trust-grid div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: none;
}

.trust-grid span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 7px;
}

.trust-grid strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.intro {
  padding-top: 68px;
}

.service-preview {
  padding-top: 78px;
}

.service-card.large {
  min-height: 390px;
}

.service-card {
  min-height: 200px;
}

.service-card.wide {
  min-height: 190px;
}

.mini-cta {
  padding: 0 0 62px;
}

.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(23,23,23,.05);
}

.mini-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.mini-cta .btn {
  min-height: 46px;
  flex: 0 0 auto;
}

.strengths {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strength-grid article {
  padding: 30px;
  border-radius: 30px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.strength-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.strength-grid h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.strength-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.company-summary {
  padding-top: 78px;
  padding-bottom: 78px;
}

.company-summary-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 38px;
  border-radius: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(23,23,23,.05);
}

.company-summary h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.company-summary p {
  margin: 0;
  color: var(--muted);
}

.company-summary table {
  width: 100%;
  border-collapse: collapse;
}

.company-summary th,
.company-summary td {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.company-summary tr:last-child th,
.company-summary tr:last-child td {
  border-bottom: none;
}

.company-summary th {
  width: 90px;
  color: var(--accent);
  font-size: 13px;
}

.company-summary td {
  color: var(--text);
}

.cta {
  padding-top: 28px;
}

.cta-box {
  padding: clamp(34px, 5.8vw, 62px);
}

.cta h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

.bridge-copy,
.support-strip,
.quick-info {
  display: none;
}

@media (max-width: 920px) {
  .hero {
    padding: 120px 0 48px;
  }

  .hero-grid,
  .company-summary-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(34px, 8vw, 50px);
  }

  .refined-visual {
    min-height: auto;
    padding: 24px;
  }

  .trust-strip {
    margin-top: 0;
    padding-bottom: 30px;
  }

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

  .trust-grid div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
  }

  .trust-grid div:last-child {
    border-bottom: none;
  }

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

  .company-summary-grid {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 34px;
  }

  .visual-service-list div {
    grid-template-columns: 38px 1fr;
    padding: 15px;
  }

  .visual-service-list span {
    width: 36px;
    height: 36px;
  }

  .visual-service-list strong {
    font-size: 16px;
  }

  .strength-grid article {
    padding: 24px;
  }
}


/* v8 featured service image */
.service-preview .service-card.large {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23,23,23,.82) 0%, rgba(49,93,80,.72) 42%, rgba(49,93,80,.18) 100%),
    url("../img/service-warehouse.png") center center / cover no-repeat;
}

.service-preview .service-card.large::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(0,0,0,.18), transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
  pointer-events: none;
}

.service-preview .service-card.large > * {
  position: relative;
  z-index: 1;
}

.service-preview .service-card.large h3,
.service-preview .service-card.large p,
.service-preview .service-card.large span {
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

@media (max-width: 920px) {
  .service-preview .service-card.large {
    background:
      linear-gradient(90deg, rgba(23,23,23,.86) 0%, rgba(49,93,80,.74) 58%, rgba(49,93,80,.34) 100%),
      url("../img/service-warehouse.png") center center / cover no-repeat;
  }
}
