:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --surface-2: #eff4ef;
  --surface-3: #e4ece7;
  --line: #d6e0da;
  --line-strong: #b8c8bf;
  --text: #172420;
  --text-soft: #55645d;
  --muted: #73827a;
  --navy: #0f766e;
  --navy-strong: #0a5c56;
  --teal: #0f766e;
  --teal-strong: #0a5c56;
  --teal-soft: rgba(15, 118, 110, 0.10);
  --danger: #b42318;
  --success: #0f7259;
  --shadow: 0 20px 48px rgba(15, 35, 29, 0.08);
  --shadow-soft: 0 12px 28px rgba(15, 35, 29, 0.06);
  --radius: 1.5rem;
  --radius-sm: 1rem;
  --radius-xs: 0.75rem;
  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.25rem;
  --space-4: 1.75rem;
  --space-5: 2.5rem;
  --space-6: 3.75rem;
  --space-7: 5.5rem;
  --space-8: 7.5rem;
  --shell: min(1200px, calc(100vw - 2rem));
  --measure: 62ch;
  --header-h: 5rem;
  --transition: 180ms ease;
  --phi: 1.618;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic",
    "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.72;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbfeff 0%, var(--bg) 100%);
  text-rendering: optimizeLegibility;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-color: rgba(23, 36, 32, 0.24);
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-color: currentColor;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
}

textarea {
  resize: vertical;
}

figure {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy-strong);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.45);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, var(--space-7)) 0;
  border-top: 1px solid var(--line);
}

.section-tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 244, 239, 0.92));
}

.section-dark {
  background: linear-gradient(180deg, rgba(239, 244, 239, 0.92), rgba(228, 236, 230, 1));
}

.section-cta {
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.lead {
  max-width: var(--measure);
  font-size: clamp(1rem, 1vw + 0.86rem, 1.16rem);
  color: var(--text-soft);
}

.section-head {
  max-width: 60rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2vw + 1.1rem, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.split-head {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.on-dark,
.section-dark .section-head p,
.section-dark .work-copy p,
.section-dark .work-link {
  color: inherit;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid rgba(23, 36, 32, 0.18);
}

.text-link::after {
  content: "↗";
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(16px);
  background: rgba(253, 255, 255, 0.9);
  border-bottom: 1px solid rgba(212, 223, 216, 0.92);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: 0.95rem;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(23, 36, 32, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
}

.site-nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.site-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav > ul > li > a:hover::after,
.site-nav > ul > li > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.16rem auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-small {
  min-height: 2.5rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.btn-solid {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-solid:hover {
  background: var(--navy-strong);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(23, 36, 32, 0.08);
  color: var(--navy);
}

.hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3.25rem, 6vw, 5rem);
  border-top: 0;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.618fr) minmax(0, 1fr);
  align-items: start;
}

.hero-copy {
  padding-top: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-copy .lead {
  margin: 1.5rem 0 0;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.hero-points,
.check-list,
.footer-links,
.breadcrumbs ol,
.process-grid,
.filter-bar,
.confirm-grid,
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.hero-points li,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-panel,
.page-hero-media,
.approach-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #eff4ef 100%);
  border: 1px solid rgba(177, 196, 187, 0.44);
  box-shadow: var(--shadow);
}

.hero-panel {
  aspect-ratio: 1 / 1.25;
}

.hero-panel img,
.page-hero-media img,
.approach-media img,
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: min(18rem, 88%);
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(177, 196, 187, 0.45);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  line-height: 1.35;
}

.floating-card p {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.floating-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.floating-top {
  top: 1.15rem;
  left: -1rem;
}

.floating-bottom {
  right: -0.85rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.floating-bottom span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-strip {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
  border-top: 1px solid var(--line);
}

.news-strip-grid {
  display: grid;
  gap: 1.5rem;
}

.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.news-item time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.news-item span {
  min-width: 0;
  font-weight: 600;
}

.news-item::after {
  content: "View";
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.approach-grid,
.contact-layout,
.page-hero-grid,
.legal-layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  align-items: start;
}

.approach-media {
  aspect-ratio: 1.2 / 1;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 10rem), linear-gradient(180deg, #fcfcf9 0%, #eff4ef 100%);
}

.approach-media img {
  object-fit: contain;
}

.approach-copy h2,
.contact-note h2,
.legal-intro p:first-child {
  margin: 0;
  font-size: clamp(1.9rem, 2vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.approach-copy p,
.contact-note p,
.contact-card p,
.archive-callout p,
.legal-intro p,
.legal-section p,
.legal-section li {
  color: var(--text-soft);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.75rem;
  height: 1px;
  background: var(--teal);
}

.service-grid,
.reason-grid,
.works-grid,
.post-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.reason-card,
.process-card,
.post-card,
.work-card,
.contact-card,
.archive-callout,
.confirmation-panel,
.error-panel,
.legal-section,
.work-static {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border-radius: 1.3rem;
  border: 1px solid rgba(177, 196, 187, 0.44);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-card,
.reason-card,
.process-card,
.post-card,
.work-card,
.legal-section,
.work-static {
  overflow: hidden;
}

.service-card::before,
.reason-card::before,
.process-card::before,
.post-card::before,
.work-card::before,
.contact-card::before,
.archive-callout::before,
.confirmation-panel::before,
.error-panel::before,
.legal-section::before,
.work-static::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.service-card h3,
.reason-card h3,
.process-card h3,
.post-card h3,
.work-copy h3,
.contact-card h3,
.archive-callout h2,
.legal-section h2,
.error-panel h1,
.confirmation-panel h1,
.confirmation-panel h2 {
  margin: 0;
  font-size: clamp(1.12rem, 1vw + 0.86rem, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-card p,
.reason-card p,
.process-card p,
.post-card p,
.work-copy p,
.contact-card p,
.archive-callout p,
.confirmation-panel p,
.error-panel p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.service-index,
.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--teal-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-strong);
}

.reason-card {
  min-height: 100%;
}

.work-card,
.work-card-light {
  padding: 0;
}

.work-card a,
.post-card a {
  display: grid;
  gap: 0;
  min-height: 100%;
  text-decoration: none;
}

.work-card a:hover .work-media img {
  transform: scale(1.03);
}

.work-media {
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
  border-radius: 1.1rem 1.1rem 0 0;
  background: #e6eff3;
}

.work-media img {
  transition: transform 240ms ease;
}

.work-copy {
  padding: 1rem 1.1rem 1.15rem;
}

.work-tag,
.post-meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.work-link,
.post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.work-link::after,
.post-link::after {
  content: "↗";
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  min-height: 100%;
}

.post-card-large {
  min-height: 100%;
}

.archive-callout {
  margin-top: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.1rem 3rem 1.1rem 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 0 1.15rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
}

.page-hero {
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-top: 0;
}

.breadcrumbs {
  margin-bottom: 1.4rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.55rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-hero-media {
  aspect-ratio: 1.2 / 0.95;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-note,
.contact-form-wrap {
  position: relative;
  padding: clamp(1.3rem, 2vw, 1.8rem);
  border-radius: var(--radius);
  border: 1px solid rgba(177, 196, 187, 0.44);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.contact-note::before,
.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 1.15rem;
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 0.6rem;
}

.contact-form span,
.contact-form legend {
  font-weight: 700;
}

.contact-form em {
  font-style: normal;
  color: var(--teal);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-option {
  position: relative;
}

.choice-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-option span {
  display: grid;
  min-height: 100%;
  align-content: center;
  padding: 1rem 1rem 1rem 2.7rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-weight: 600;
  transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.choice-option span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  transform: translateY(-50%);
}

.choice-option input:checked + span {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(15, 118, 110, 0.08);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.09);
}

.choice-option input:checked + span::before {
  border-color: var(--teal);
  background: radial-gradient(circle, var(--teal) 0 45%, #fff 46% 100%);
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form textarea,
.contact-form select {
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
}

.contact-form textarea {
  min-height: 10rem;
}

.label-block {
  display: grid;
  gap: 0.6rem;
}

.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
}

.check-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  accent-color: var(--teal);
}

.check-row span {
  font-weight: 500;
  color: var(--text-soft);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.confirmation-inner {
  max-width: 52rem;
  margin: 0 auto;
}

.confirmation-panel,
.error-panel {
  display: grid;
  gap: 1rem;
}

.confirm-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.confirm-grid dt,
.confirm-grid dd {
  margin: 0;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.confirm-grid dt {
  font-weight: 700;
  color: var(--navy);
}

.confirm-grid dd {
  color: var(--text-soft);
}

.preserve-breaks {
  white-space: pre-line;
}

.error-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--danger);
}

.form-status {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(13, 107, 83, 0.18);
  background: rgba(13, 107, 83, 0.07);
}

.error-section {
  min-height: calc(100vh - var(--header-h) - 14rem);
  display: grid;
  align-items: center;
}

.legal-layout {
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
}

.legal-intro {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.legal-note {
  font-size: 0.92rem;
}

.legal-body {
  display: grid;
  gap: 1rem;
}

.legal-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.cta-panel {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  border: 1px solid rgba(177, 196, 187, 0.44);
  background:
    radial-gradient(circle at right top, rgba(15, 118, 110, 0.11), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 239, 0.98));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 0.85rem 0 0;
  max-width: 50ch;
  color: var(--text-soft);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.site-footer {
  margin-top: clamp(3.5rem, 7vw, 5rem);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr));
  padding: 2rem 0;
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: var(--text-soft);
}

.footer-grid h2 {
  margin: 0 0 0.9rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1.6rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .featured-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .split-head,
  .cta-panel,
  .hero-grid,
  .approach-grid,
  .contact-layout,
  .page-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .reason-grid,
  .works-grid,
  .post-grid,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav > ul > li > a,
  .header-actions .btn,
  .lang-link {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .floating-top {
    left: 1rem;
  }

  .floating-bottom {
    right: 1rem;
  }

  .legal-intro {
    position: static;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1200px, calc(100vw - 1.25rem));
  }

  .header-shell {
    min-height: 4.4rem;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
  }

  .hero-panel {
    aspect-ratio: 1.08 / 1;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .news-item::after {
    content: "View ↗";
  }

  .floating-card {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
  }

  .hero-visual {
    display: grid;
  }

  .featured-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .form-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .lang-link {
    width: 100%;
  }

  .hero-points,
  .chip-group {
    gap: 0.55rem;
  }

  .work-copy,
  .contact-note,
  .contact-form-wrap,
  .service-card,
  .reason-card,
  .process-card,
  .post-card,
  .archive-callout,
  .confirmation-panel,
  .error-panel,
  .legal-section {
    padding-inline: 1rem;
  }
}



body {
  -webkit-text-size-adjust: 100%;
}

body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
  will-change: opacity, transform;
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(23, 36, 32, 0.18);
  backdrop-filter: blur(5px);
  pointer-events: none;
}

main > section[id],
main > section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.hero,
.page-hero,
.signal-band {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(18rem, 42vw, 26rem);
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
  pointer-events: none;
  animation: gridDrift 18s linear infinite;
}

.hero-grid,
.page-hero-grid,
.news-strip-grid,
.cta-panel,
.approach-grid,
.contact-layout,
.legal-layout {
  position: relative;
  z-index: 1;
}

.hero-visual {
  isolation: isolate;
}

.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-orbit,
.hero-glow {
  position: absolute;
  pointer-events: none;
}

.hero-orbit {
  z-index: 0;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 999px;
}

.hero-orbit-1 {
  top: -1.6rem;
  right: -1.6rem;
  width: clamp(14rem, 28vw, 20rem);
  aspect-ratio: 1;
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit-2 {
  bottom: 0.25rem;
  left: -2rem;
  width: clamp(11rem, 22vw, 15rem);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbitSpinReverse 14s linear infinite;
}

.hero-glow-1 {
  top: 8%;
  right: 10%;
  z-index: 1;
  width: clamp(9rem, 18vw, 13rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.18), rgba(15, 118, 110, 0) 68%);
  filter: blur(0.25rem);
  animation: glowPulse 8.5s ease-in-out infinite;
}

.floating-card {
  backdrop-filter: blur(10px);
}

.signal-band {
  padding: 0.65rem 0 1.35rem;
  border-top: 1px solid rgba(177, 196, 187, 0.6);
  border-bottom: 1px solid rgba(177, 196, 187, 0.6);
  background:
    radial-gradient(circle at 12% 50%, rgba(15, 118, 110, 0.07), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 239, 0.96));
}

.signal-marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-inline: 1rem;
  animation: signalFlow 28s linear infinite;
}

.signal-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(23, 36, 32, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--navy);
}

.swipe-deck {
  position: relative;
}

.mobile-dock {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 116;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(177, 196, 187, 0.65);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(23, 36, 32, 0.12);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.mobile-dock.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-dock-copy {
  min-width: 0;
}

.mobile-dock-title {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.mobile-dock-copy span:last-child {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.76rem;
  color: var(--text-soft);
}

.mobile-dock-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mobile-dock .btn {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(0.96) translate3d(0, 0, 0);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.06) translate3d(0, 0.3rem, 0);
    opacity: 1;
  }
}

@keyframes signalFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(2.5rem);
  }
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(22rem, calc(100vw - 1rem));
    gap: 1rem;
    padding: calc(var(--header-h) + 1rem) 1rem 1rem;
    border: 0;
    border-left: 1px solid rgba(177, 196, 187, 0.6);
    border-radius: 1.5rem 0 0 1.5rem;
    background:
      radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 10rem),
      rgba(255, 255, 255, 0.98);
    box-shadow: -30px 0 54px rgba(23, 36, 32, 0.16);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), visibility 280ms ease;
    overflow-y: auto;
    z-index: 130;
  }

  .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav ul {
    gap: 0.35rem;
  }

  .site-nav > ul > li > a,
  .header-actions .btn,
  .lang-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 3rem;
    padding-inline: 1rem;
    border-radius: 1rem;
  }

  .site-nav > ul > li > a {
    background: rgba(239, 244, 239, 0.7);
  }

  .header-actions {
    gap: 0.55rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .nav-toggle {
    position: relative;
    z-index: 131;
  }

  body.nav-open .nav-toggle {
    border-color: rgba(15, 118, 110, 0.18);
    background: var(--navy);
  }

  body.nav-open .nav-toggle span {
    background: #fff;
  }
}

@media (max-width: 720px) {
  .section {
    padding: clamp(3rem, 10vw, 4rem) 0;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .section-head h2,
  .approach-copy h2,
  .contact-note h2,
  .cta-panel h2,
  .legal-intro p:first-child {
    font-size: clamp(1.85rem, 8.2vw, 2.6rem);
    line-height: 1.06;
  }

  .hero {
    padding: 2rem 0 2.25rem;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-copy .lead,
  .page-hero .lead {
    margin-top: 1.05rem;
    max-width: none;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1.3rem;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1.1rem;
  }

  .hero-points li,
  .chip {
    justify-content: center;
    min-height: 2.45rem;
    text-align: center;
  }

  .hero-panel {
    aspect-ratio: 1.08 / 0.88;
  }

  .hero-visual {
    display: grid;
    gap: 0.8rem;
  }

  .hero-orbit-1 {
    top: -0.6rem;
    right: -0.7rem;
    width: 9rem;
  }

  .hero-orbit-2 {
    left: -0.8rem;
    bottom: 0.65rem;
    width: 6.75rem;
  }

  .hero-glow-1 {
    width: 7.25rem;
    top: 6%;
    right: 6%;
  }

  .floating-card {
    position: static;
    max-width: 100%;
    margin-top: 0;
    padding: 0.95rem 1rem;
  }

  .floating-card strong {
    font-size: 0.96rem;
  }

  .floating-card p {
    margin-top: 0.45rem;
    font-size: 0.84rem;
  }

  .floating-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.45rem;
  }

  .floating-bottom span {
    min-height: 1.95rem;
    padding: 0.32rem 0.62rem;
    font-size: 0.7rem;
  }

  .signal-band {
    padding: 0.35rem 0 0.95rem;
  }

  .signal-marquee {
    gap: 0.7rem;
    padding-inline: 0.65rem;
    animation-duration: 24s;
  }

  .signal-track {
    gap: 0.65rem;
  }

  .signal-track span {
    min-height: 2.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .news-list.swipe-deck,
  .page-home .swipe-deck {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(84%, 1fr);
    overflow-x: auto;
    padding: 0 0.1rem 0.45rem;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .page-home .swipe-deck.swipe-deck-tight {
    grid-auto-columns: minmax(88%, 1fr);
  }

  .page-home .swipe-deck.swipe-deck-wide {
    grid-auto-columns: minmax(78%, 1fr);
  }

  .page-home .swipe-deck > *,
  .news-list.swipe-deck > * {
    scroll-snap-align: start;
  }

  .news-list.swipe-deck {
    border-top: 0;
  }

  .news-list.swipe-deck .news-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    align-content: start;
    min-height: 100%;
    padding: 1rem 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
  }

  .news-list.swipe-deck .news-item::after {
    content: "View ↗";
    justify-self: start;
  }

  .page-home .service-card,
  .page-home .reason-card,
  .page-home .work-card,
  .page-home .process-card {
    min-height: 100%;
  }

  .page-home .process-grid {
    padding-bottom: 0.3rem;
  }

  .page-hero {
    padding: 1.5rem 0 2.2rem;
  }

  .page-hero-grid {
    gap: 1rem;
  }

  .page-hero-media {
    aspect-ratio: 1.2 / 0.8;
  }

  .cta-panel {
    padding: 1.3rem;
  }

  body.has-mobile-dock {
    padding-bottom: 5.9rem;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (min-width: 721px) {
  .mobile-dock {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .hero-points {
    grid-template-columns: 1fr;
  }

  .page-home .swipe-deck {
    grid-auto-columns: minmax(90%, 1fr);
  }

  .page-home .swipe-deck.swipe-deck-wide {
    grid-auto-columns: minmax(84%, 1fr);
  }

  .mobile-dock {
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .mobile-dock-actions {
    width: 100%;
  }

  .mobile-dock .btn {
    width: 100%;
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Mobile refinement update */
.page-works .works-grid {
  align-items: start;
}

@media (min-width: 961px) {
  .page-works .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .page-works .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item {
  overflow: clip;
  transition: background 220ms ease, border-color 220ms ease;
}

.faq-item summary {
  padding-right: 3.35rem;
  transition: color 220ms ease;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.35rem;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transform: translateY(-50%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::before,
.faq-item.is-collapsing summary::before {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.35) rotate(90deg);
}

.faq-item summary::after {
  transform: translateY(-50%) scaleX(1);
}

.faq-item[open] summary,
.faq-item.is-collapsing summary {
  color: var(--navy);
}

.faq-answer {
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-collapsing .faq-answer {
  opacity: 0;
  transform: translateY(-0.25rem);
}

.faq-item.is-animating {
  will-change: height;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 124;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  background: rgba(23, 36, 32, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open::before {
  display: none;
}

body.nav-open .mobile-dock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
}

.nav-toggle {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 118, 110, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.94));
  box-shadow: 0 12px 26px rgba(23, 36, 32, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), rgba(15, 118, 110, 0) 58%);
  opacity: 0.9;
  pointer-events: none;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 16px 34px rgba(23, 36, 32, 0.12);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 1.24rem;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--navy);
  transform-origin: center;
  transform: translateX(-50%);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, width 220ms ease, background 220ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 1.02rem;
}

.nav-toggle span:nth-child(2) {
  top: 1.5rem;
}

.nav-toggle span:nth-child(3) {
  top: 1.98rem;
  width: 0.9rem;
  transform: translateX(-50%) translateX(0.16rem);
}

body.nav-open .nav-toggle {
  transform: translateY(0);
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(23, 36, 32, 0.16);
}

body.nav-open .nav-toggle span {
  background: var(--navy);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateX(-50%) translateY(0.48rem) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.2);
}

body.nav-open .nav-toggle span:nth-child(3) {
  width: 1.24rem;
  transform: translateX(-50%) translateY(-0.48rem) rotate(-45deg);
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(253, 255, 255, 0.96);
  }

  .site-nav {
    top: 0;
    width: min(24rem, calc(100vw - 0.8rem));
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    gap: 1rem;
    padding: calc(max(env(safe-area-inset-top), 0px) + var(--header-h) + 0.4rem) 1rem calc(max(env(safe-area-inset-bottom), 0px) + 1rem);
    border-left: 1px solid rgba(177, 196, 187, 0.52);
    border-radius: 1.6rem 0 0 1.6rem;
    background:
      radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 12rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.98));
    box-shadow: -28px 0 60px rgba(23, 36, 32, 0.16);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav ul {
    gap: 0.42rem;
    counter-reset: nav-item;
  }

  .site-nav ul > li {
    counter-increment: nav-item;
  }

  .site-nav ul > li,
  .site-nav .header-actions > * {
    opacity: 0;
    transform: translateX(1rem);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  }

  .site-nav.is-open ul > li,
  .site-nav.is-open .header-actions > * {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav ul > li:nth-child(1) { transition-delay: 40ms; }
  .site-nav ul > li:nth-child(2) { transition-delay: 80ms; }
  .site-nav ul > li:nth-child(3) { transition-delay: 120ms; }
  .site-nav ul > li:nth-child(4) { transition-delay: 160ms; }
  .site-nav .header-actions > *:nth-child(1) { transition-delay: 210ms; }
  .site-nav .header-actions > *:nth-child(2) { transition-delay: 250ms; }

  .site-nav > ul > li > a,
  .header-actions .btn,
  .lang-link {
    position: relative;
    width: 100%;
    min-height: 3.4rem;
    padding-inline: 1rem 1.1rem;
    border-radius: 1.05rem;
  }

  .site-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    background: rgba(239, 244, 239, 0.76);
    box-shadow: inset 0 0 0 1px rgba(177, 196, 187, 0.46);
  }

  .site-nav > ul > li > a::before {
    content: counter(nav-item, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    min-height: 2.1rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--navy);
  }

  .site-nav > ul > li > a::after {
    left: 1rem;
    right: 1rem;
    bottom: 0.55rem;
  }

  .site-nav > ul > li > a[aria-current="page"] {
    background: rgba(15, 118, 110, 0.08);
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.12);
  }

  .header-actions {
    gap: 0.7rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(177, 196, 187, 0.58);
  }

  .lang-link,
  .header-actions .btn {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .nav-toggle {
    width: 3.05rem;
    height: 3.05rem;
  }

  .site-nav {
    width: min(24rem, calc(100vw - 0.45rem));
    padding-inline: 0.85rem;
  }
}


/* Mobile polish refinement v2 */
.site-header {
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(253, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(23, 36, 32, 0.08);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 0.75rem));
}

.nav-panel-head {
  display: none;
}

.nav-close {
  appearance: none;
}

.nav-close:focus-visible,
.mobile-dock-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(253, 255, 255, 0.94);
  }

  .nav-toggle {
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(23, 36, 32, 0.1);
  }

  .nav-toggle::before {
    opacity: 0.7;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 130;
    width: min(24rem, calc(100vw - 0.6rem));
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    gap: 0.95rem;
    padding: calc(max(env(safe-area-inset-top), 0px) + 0.9rem) 1rem calc(max(env(safe-area-inset-bottom), 0px) + 1rem);
    border: 0;
    border-radius: 1.65rem 0 0 1.65rem;
    background:
      radial-gradient(circle at top right, rgba(15, 118, 110, 0.1), transparent 12rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 250, 255, 0.985));
    box-shadow: -28px 0 60px rgba(23, 36, 32, 0.16);
    transform: translateX(104%);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.3rem;
  }

  .nav-panel-title {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy);
  }

  .nav-panel-title::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0.35rem rgba(15, 118, 110, 0.08);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0 0.95rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(23, 36, 32, 0.08);
    color: var(--navy);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  }

  .nav-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(23, 36, 32, 0.11);
  }

  .nav-close-icon {
    position: relative;
    width: 0.95rem;
    height: 0.95rem;
    display: inline-block;
  }

  .nav-close-icon::before,
  .nav-close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
  }

  .nav-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-close-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav ul {
    gap: 0.58rem;
  }

  .site-nav > ul > li > a {
    width: 100%;
    min-height: 3.55rem;
    padding: 0.95rem 0 0.95rem 0.2rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    justify-content: flex-start;
    gap: 0.9rem;
  }

  .site-nav > ul > li > a::before {
    min-width: 2.05rem;
    min-height: 2.05rem;
    background: rgba(15, 118, 110, 0.08);
  }

  .site-nav > ul > li > a::after {
    left: 3rem;
    right: 0;
    bottom: 0.2rem;
    opacity: 0.16;
  }

  .site-nav > ul > li > a[aria-current="page"] {
    background: transparent;
    box-shadow: none;
  }

  .header-actions {
    gap: 0.7rem;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    border-top: 0;
  }

  .lang-link,
  .header-actions .btn {
    border: 0;
    box-shadow: none;
  }

  .lang-link {
    background: rgba(239, 244, 239, 0.9);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1200px, calc(100vw - 1.75rem));
  }

  .section {
    padding: clamp(3.6rem, 12vw, 4.8rem) 0;
  }

  .section-head {
    margin-bottom: 1.6rem;
  }

  .eyebrow {
    margin-bottom: 0.72rem;
    font-size: 0.69rem;
    letter-spacing: 0.22em;
  }

  .hero {
    padding: 2.25rem 0 2.95rem;
  }

  .page-hero {
    padding: 1.85rem 0 2.45rem;
  }

  .hero-grid,
  .page-hero-grid,
  .approach-grid,
  .contact-layout,
  .legal-layout,
  .news-strip-grid,
  .cta-panel {
    gap: 1.65rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.6rem, 11.8vw, 4.05rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
  }

  .section-head h2,
  .approach-copy h2,
  .contact-note h2,
  .cta-panel h2,
  .legal-intro p:first-child {
    font-size: clamp(2rem, 8.8vw, 2.95rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .hero-copy .lead,
  .page-hero .lead {
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .section-head p,
  .approach-copy p,
  .contact-note p,
  .contact-card p,
  .archive-callout p,
  .service-card p,
  .reason-card p,
  .process-card p,
  .post-card p,
  .work-copy p,
  .confirmation-panel p,
  .error-panel p,
  .faq-answer p,
  .footer-brand p,
  .legal-section p,
  .legal-section li {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .service-card h3,
  .reason-card h3,
  .process-card h3,
  .post-card h3,
  .work-copy h3,
  .contact-card h3,
  .archive-callout h2,
  .legal-section h2,
  .error-panel h1,
  .confirmation-panel h1,
  .confirmation-panel h2 {
    font-size: 1.28rem;
    line-height: 1.24;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .form-actions .btn {
    min-height: 3.2rem;
  }

  .hero-points {
    gap: 0.65rem;
    margin-top: 1.3rem;
  }

  .hero-points li,
  .chip {
    min-height: 2.55rem;
    font-size: 0.78rem;
  }

  .work-copy,
  .contact-note,
  .contact-form-wrap,
  .service-card,
  .reason-card,
  .process-card,
  .post-card,
  .archive-callout,
  .confirmation-panel,
  .error-panel,
  .legal-section,
  .contact-card,
  .work-static {
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: 1.35rem;
  }

  .work-media,
  .page-hero-media,
  .approach-media {
    border-radius: 1.25rem;
  }

  .page-home .swipe-deck,
  .news-list.swipe-deck {
    gap: 0.85rem;
    grid-auto-columns: minmax(86%, 1fr);
    padding: 0 0.15rem 0.55rem;
    scroll-snap-type: x mandatory;
  }

  .page-home .swipe-deck.swipe-deck-tight {
    grid-auto-columns: minmax(89%, 1fr);
  }

  .page-home .swipe-deck.swipe-deck-wide {
    grid-auto-columns: minmax(82%, 1fr);
  }

  .news-list.swipe-deck .news-item,
  .page-home .service-card,
  .page-home .reason-card,
  .page-home .work-card,
  .page-home .process-card {
    border-radius: 1.35rem;
  }

  .faq-item {
    border-bottom-color: rgba(177, 196, 187, 0.58);
  }

  .faq-item summary {
    padding: 1.05rem 2.95rem 1.05rem 0;
    font-size: 1rem;
    line-height: 1.65;
  }

  .faq-answer {
    padding-bottom: 1.05rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  body.has-mobile-dock {
    padding-bottom: 5.75rem;
  }

  .mobile-dock {
    left: auto;
    right: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    width: min(calc(100vw - 1rem), 22rem);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(23, 36, 32, 0.14);
    transform: translateX(calc(100% + 1rem));
  }

  .mobile-dock.is-visible {
    transform: translateX(0);
  }

  .mobile-dock.is-visible.is-collapsed {
    transform: translateX(calc(100% - 3.35rem));
  }

  .mobile-dock-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 3.35rem;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: linear-gradient(180deg, var(--navy), var(--navy-strong));
    color: #fff;
  }

  .mobile-dock-toggle-label {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(50%);
    border: 0;
  }

  .mobile-dock-toggle-icon {
    position: relative;
    width: 1rem;
    height: 1rem;
    display: inline-block;
  }

  .mobile-dock-toggle-icon::before,
  .mobile-dock-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.64rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 220ms ease;
  }

  .mobile-dock-toggle-icon::before {
    transform: translate(-26%, -50%) rotate(45deg);
  }

  .mobile-dock-toggle-icon::after {
    transform: translate(-56%, -50%) rotate(-45deg);
  }

  .mobile-dock.is-visible.is-collapsed .mobile-dock-toggle-icon::before {
    transform: translate(-46%, -50%) rotate(-45deg);
  }

  .mobile-dock.is-visible.is-collapsed .mobile-dock-toggle-icon::after {
    transform: translate(-26%, -50%) rotate(45deg);
  }

  .mobile-dock-inner {
    display: grid;
    gap: 0.7rem;
    min-width: 0;
    padding: 0.82rem 0.85rem 0.85rem;
  }

  .mobile-dock-copy {
    min-width: 0;
  }

  .mobile-dock-title {
    font-size: 0.74rem;
  }

  .mobile-dock-copy span:last-child {
    margin-top: 0.16rem;
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .mobile-dock-actions {
    gap: 0.45rem;
  }

  .mobile-dock .btn {
    min-height: 2.6rem;
    padding-inline: 0.9rem;
    font-size: 0.78rem;
    width: auto;
    flex: 1 1 0;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(1200px, calc(100vw - 1.5rem));
  }

  .brand {
    gap: 0.72rem;
  }

  .brand-mark {
    width: 2.6rem;
    border-radius: 0.86rem;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.67rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.42rem, 12.6vw, 3.55rem);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .page-home .swipe-deck {
    grid-auto-columns: minmax(88%, 1fr);
  }

  .page-home .swipe-deck.swipe-deck-wide {
    grid-auto-columns: minmax(86%, 1fr);
  }

  .mobile-dock {
    width: min(calc(100vw - 0.75rem), 20.5rem);
    bottom: max(0.6rem, env(safe-area-inset-bottom));
  }
}



/* 2026 rebuild inspired by IT+ / GIG */
:root {
  --bg: #f4f7ff;
  --surface: #ffffff;
  --surface-2: #f8faff;
  --surface-3: #eef3ff;
  --line: #dbe4f6;
  --line-strong: #becdf0;
  --text: #0d1730;
  --text-soft: #46506a;
  --muted: #6a7691;
  --shadow: 0 30px 90px rgba(12, 24, 56, 0.09);
  --shadow-soft: 0 18px 48px rgba(12, 24, 56, 0.06);
  --radius: 2rem;
  --radius-sm: 1.25rem;
  --radius-xs: 0.85rem;
  --header-h: 5.25rem;
  --shell: min(1380px, calc(100vw - clamp(1.5rem, 4vw, 4.5rem)));
  --measure: 68ch;
}

body.page-rebuild {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 118, 110, 0.06), transparent 26rem),
    radial-gradient(circle at 100% 22%, rgba(15, 118, 110, 0.08), transparent 30rem),
    linear-gradient(180deg, #fbfcff 0%, #f4f7ff 100%);
}

.page-rebuild .site-header {
  background: rgba(251, 253, 255, 0.9);
  border-bottom: 1px solid rgba(195, 208, 240, 0.7);
  backdrop-filter: blur(20px);
}

.page-rebuild .section {
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.page-rebuild .section.section-no-border {
  padding-top: clamp(3.6rem, 6vw, 4.8rem);
  border-top: 0;
}

.page-rebuild .section-head {
  max-width: none;
  margin-bottom: clamp(1.75rem, 3vw, 2.6rem);
}

.page-rebuild .section-head h2,
.page-rebuild .approach-copy h2,
.page-rebuild .contact-note h2,
.page-rebuild .cta-panel h2,
.page-rebuild .legal-intro p:first-child {
  font-size: clamp(2.35rem, 3vw + 1rem, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.page-rebuild .section-head p,
.page-rebuild .lead,
.page-rebuild .work-note,
.page-rebuild .portfolio-note p,
.page-rebuild .service-list,
.page-rebuild .plain-points,
.page-rebuild .trust-item p {
  font-size: 1rem;
  line-height: 1.82;
}

.page-rebuild .hero {
  padding: clamp(3.8rem, 7vw, 6rem) 0 clamp(3.6rem, 6vw, 5.2rem);
  border-top: 0;
}

.page-rebuild .hero::before,
.page-rebuild .page-hero::before {
  background-size: 3.25rem 3.25rem;
  opacity: 0.94;
}

.page-rebuild .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}

.page-rebuild .hero-copy {
  padding-top: 0;
}

.page-rebuild .hero-copy h1,
.page-rebuild .page-hero h1 {
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.page-rebuild .hero-copy h1 {
  max-width: 9.2ch;
}

.page-rebuild .hero-copy .lead,
.page-rebuild .page-hero .lead {
  margin-top: 1.35rem;
  max-width: 36ch;
  font-size: clamp(1.04rem, 1vw + 0.86rem, 1.2rem);
  line-height: 1.9;
}

.page-rebuild .hero-actions {
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.page-rebuild .hero-points {
  margin-top: 1.45rem;
  gap: 0.75rem;
}

.page-rebuild .hero-points li,
.page-rebuild .chip {
  border-color: rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
}

.page-rebuild .hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-areas:
    "main notea"
    "main noteb"
    "metrics metrics";
  gap: 1rem;
  align-items: stretch;
}

.hero-stage-main {
  grid-area: main;
  aspect-ratio: 0.96 / 1.08;
  min-height: 100%;
  border-radius: 2rem;
}

.hero-stage-note,
.metric-card,
.trust-item,
.statement-card,
.cluster-card,
.portfolio-note {
  position: relative;
  border: 1px solid rgba(168, 193, 182, 0.6);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-stage-note::before,
.metric-card::before,
.trust-item::before,
.statement-card::before,
.cluster-card::before,
.portfolio-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 1), rgba(15, 118, 110, 0.18));
}

.hero-stage-note {
  padding: 1.3rem 1.2rem 1.3rem;
  border-radius: 1.55rem;
  backdrop-filter: blur(12px);
}

.hero-stage-note h2,
.portfolio-note h2,
.statement-card h2,
.journal-intro h2 {
  margin: 0;
  font-size: clamp(1.35rem, 1vw + 1rem, 2rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero-stage-note p,
.portfolio-note p,
.statement-card p,
.cluster-card p,
.metric-card p,
.trust-item p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
}

.hero-stage-note-a {
  grid-area: notea;
  transform: translateY(1rem);
}

.hero-stage-note-b {
  grid-area: noteb;
  transform: translateY(-0.45rem);
}

.hero-stage-metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1rem 1rem 1.08rem;
  border-radius: 1.35rem;
}

.metric-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.metric-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.05rem, 0.8vw + 0.95rem, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.metric-card p {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
}

.trust-strip-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.trust-item {
  padding: 1.05rem 1.1rem 1.1rem;
  border-radius: 1.4rem;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 245, 0.92));
}

.trust-item span {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.trust-item strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.06rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.trust-item p {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.62;
}

.broken-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.grid-span-7 { grid-column: span 7; }
.grid-span-5 { grid-column: span 5; }
.grid-span-4 { grid-column: span 4; }
.grid-span-12 { grid-column: 1 / -1; }

.statement-card,
.cluster-card,
.portfolio-note {
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border-radius: 1.7rem;
}

.statement-card {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.92);
}

.statement-card h2 {
  margin: 0;
}

.statement-card .plain-points,
.cta-side .plain-points,
.contact-card .plain-points,
.service-list {
  margin-top: 1rem;
}

.plain-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.plain-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-soft);
}

.plain-points li::before {
  content: "";
  position: absolute;
  top: 0.82rem;
  left: 0;
  width: 0.72rem;
  height: 1px;
  background: var(--navy);
}

.compact-points {
  gap: 0.55rem;
}

.tall-card {
  min-height: 100%;
}

.offset-down {
  transform: translateY(clamp(1rem, 2vw, 1.8rem));
}

.offset-up {
  transform: translateY(clamp(-1rem, -1.8vw, -1.5rem));
}

.cluster-card h3,
.service-panel h3,
.portfolio-note h2,
.contact-card h3,
.archive-callout h2,
.work-copy h3,
.post-card h3,
.process-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 0.85vw + 1rem, 1.58rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.cluster-card {
  min-height: 100%;
}

.service-mosaic {
  align-items: stretch;
}

.service-panel {
  min-height: 100%;
  padding: clamp(1.35rem, 2vw, 1.7rem);
  border-radius: 1.6rem;
}

.service-panel-list {
  background: rgba(255, 255, 255, 0.9);
}

.service-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.service-list li + li {
  margin-top: 0.55rem;
}

.compact-list {
  padding-left: 1.05rem;
}

.broken-featured {
  align-items: start;
}

.broken-featured .work-card:nth-child(2) {
  margin-top: 2.3rem;
}

.broken-featured .work-card:nth-child(3) {
  margin-top: 0.85rem;
}

.broken-featured .work-card:nth-child(1) .work-media {
  aspect-ratio: 1.05 / 1.04;
}

.broken-featured .work-card:nth-child(2) .work-media {
  aspect-ratio: 1 / 0.86;
}

.broken-featured .work-card:nth-child(3) .work-media {
  aspect-ratio: 1 / 1.12;
}

.page-rebuild .work-card,
.page-rebuild .post-card,
.page-rebuild .process-card,
.page-rebuild .contact-card,
.page-rebuild .archive-callout,
.page-rebuild .contact-note,
.page-rebuild .contact-form-wrap,
.page-rebuild .legal-section,
.page-rebuild .work-static,
.page-rebuild .confirmation-panel,
.page-rebuild .error-panel {
  border-radius: 1.6rem;
  border: 1px solid rgba(168, 193, 182, 0.56);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.92);
}

.page-rebuild .work-media,
.page-rebuild .page-hero-media,
.page-rebuild .approach-media {
  border-radius: 1.55rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
  border-color: rgba(168, 193, 182, 0.52);
}

.page-rebuild .work-copy {
  padding: 1.1rem 1.15rem 1.2rem;
}

.work-note {
  margin: 0.68rem 0 0;
  color: var(--text-soft);
}

.page-rebuild .work-link,
.page-rebuild .post-link,
.page-rebuild .text-link {
  color: var(--navy);
}

.process-grid-stagger .process-card:nth-child(2) {
  transform: translateY(1.6rem);
}

.process-grid-stagger .process-card:nth-child(4) {
  transform: translateY(0.8rem);
}

.journal-grid {
  align-items: stretch;
}

.journal-intro {
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.journal-posts {
  grid-column: span 7;
}

.post-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-rebuild .post-card,
.page-rebuild .work-card,
.page-rebuild .process-card,
.page-rebuild .service-card,
.page-rebuild .reason-card {
  overflow: hidden;
}

.page-rebuild .post-card a,
.page-rebuild .work-card a {
  min-height: 100%;
}

.page-rebuild .page-hero {
  padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(2.4rem, 5vw, 3.6rem);
  border-top: 0;
}

.page-rebuild .page-hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: end;
}

.portfolio-hero-aside {
  display: grid;
  gap: 1rem;
}

.portfolio-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-note h2 {
  font-size: clamp(1.12rem, 0.75vw + 0.95rem, 1.45rem);
}

.page-rebuild .hero-points-compact {
  margin-top: 1.3rem;
}

.page-rebuild .hero-points-compact li {
  min-height: 2rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.76rem;
}

.page-rebuild.page-works .works-grid,
.page-rebuild.page-blog .post-grid {
  align-items: start;
}

.works-grid-stagger {
  gap: 1.5rem;
}

.page-rebuild .filter-bar {
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.page-rebuild .filter-btn {
  min-height: 2.65rem;
  padding-inline: 1.05rem;
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
}

.page-rebuild .filter-btn.is-active,
.page-rebuild .filter-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.page-rebuild .faq-list {
  border-top: 1px solid rgba(168, 193, 182, 0.75);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 1.5rem;
  padding: 0 1.1rem;
}

.page-rebuild .faq-item {
  border-bottom-color: rgba(168, 193, 182, 0.65);
}

.page-rebuild .faq-item:last-child {
  border-bottom: 0;
}

.page-rebuild .faq-item summary {
  padding: 1.28rem 3.2rem 1.28rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

.page-rebuild .faq-answer {
  padding: 0 0 1.2rem;
}

.page-rebuild .cta-panel-strong {
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.72fr);
  align-items: stretch;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.55rem);
  background:
    radial-gradient(circle at right top, rgba(15, 118, 110, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.98));
}

.cta-side {
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.page-rebuild .cta-actions {
  justify-content: flex-start;
}

.page-rebuild .contact-layout {
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.page-rebuild .contact-aside {
  gap: 1rem;
}

.page-rebuild .contact-note,
.page-rebuild .contact-form-wrap {
  padding: clamp(1.35rem, 2vw, 1.8rem);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 12rem),
    rgba(255, 255, 255, 0.94);
}

.page-rebuild .contact-card {
  padding: 1.2rem 1.2rem 1.25rem;
}

.page-rebuild .chip-group {
  gap: 0.65rem;
}

.page-rebuild .chip {
  min-height: 2.25rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.page-rebuild .contact-form input:not([type="checkbox"]):not([type="radio"]),
.page-rebuild .contact-form textarea,
.page-rebuild .contact-form select {
  border-color: rgba(168, 193, 182, 0.72);
  background: rgba(255, 255, 255, 0.98);
}

.page-rebuild .footer-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.6fr));
  gap: 1.75rem;
}

.page-rebuild .site-footer {
  background: rgba(255, 255, 255, 0.82);
}

@media (min-width: 961px) {
  .page-rebuild.page-works .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-rebuild.page-works .works-grid .work-card:nth-child(3n + 2) {
    margin-top: 2.55rem;
  }

  .page-rebuild.page-works .works-grid .work-card:nth-child(6n + 3) {
    margin-top: 1rem;
  }

  .page-rebuild.page-works .works-grid .work-card:nth-child(4n + 1) .work-media {
    aspect-ratio: 1.15 / 1;
  }

  .page-rebuild.page-works .works-grid .work-card:nth-child(4n + 2) .work-media {
    aspect-ratio: 1 / 1.08;
  }

  .page-rebuild.page-works .works-grid .work-card:nth-child(4n + 3) .work-media {
    aspect-ratio: 1 / 0.9;
  }

  .page-rebuild.page-works .works-grid .work-card:nth-child(4n + 4) .work-media {
    aspect-ratio: 1.02 / 1.14;
  }
}

@media (max-width: 1080px) {
  .page-rebuild .trust-strip-track,
  .page-rebuild .post-grid-three,
  .page-rebuild .portfolio-note-grid,
  .page-rebuild .footer-grid,
  .page-rebuild .hero-stage-metrics,
  .page-rebuild .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-rebuild .cta-panel-strong {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .page-rebuild .hero-grid,
  .page-rebuild .page-hero-grid,
  .page-rebuild .contact-layout,
  .page-rebuild .cta-panel-strong {
    grid-template-columns: 1fr;
  }

  .page-rebuild .hero-copy h1 {
    max-width: none;
  }

  .hero-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "notea noteb"
      "metrics metrics";
  }

  .page-rebuild .journal-grid,
  .page-rebuild .broken-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-rebuild .grid-span-7,
  .page-rebuild .grid-span-5,
  .page-rebuild .grid-span-4,
  .page-rebuild .grid-span-12,
  .page-rebuild .journal-posts {
    grid-column: span 2;
  }

  .page-rebuild .broken-featured .work-card:nth-child(2),
  .page-rebuild .broken-featured .work-card:nth-child(3),
  .page-rebuild .process-grid-stagger .process-card:nth-child(2),
  .page-rebuild .process-grid-stagger .process-card:nth-child(4),
  .page-rebuild .offset-down,
  .page-rebuild .offset-up,
  .page-rebuild.page-works .works-grid .work-card {
    margin-top: 0 !important;
    transform: none;
  }

  .page-rebuild.page-works .works-grid,
  .page-rebuild .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-rebuild .works-grid-stagger,
  .page-rebuild .post-grid-three,
  .page-rebuild .footer-grid,
  .page-rebuild .trust-strip-track,
  .page-rebuild .portfolio-note-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1380px, calc(100vw - 1.25rem));
  }

  .page-rebuild .section {
    padding: clamp(4rem, 12vw, 5rem) 0;
  }

  .page-rebuild .hero {
    padding: 2.2rem 0 2.8rem;
  }

  .page-rebuild .hero-copy h1,
  .page-rebuild .page-hero h1 {
    font-size: clamp(2.9rem, 12vw, 4.9rem);
    line-height: 0.92;
  }

  .page-rebuild .section-head h2,
  .page-rebuild .approach-copy h2,
  .page-rebuild .contact-note h2,
  .page-rebuild .cta-panel h2,
  .page-rebuild .statement-card h2,
  .page-rebuild .legal-intro p:first-child {
    font-size: clamp(2.2rem, 9vw, 3.15rem);
    line-height: 1;
  }

  .page-rebuild .hero-copy .lead,
  .page-rebuild .page-hero .lead,
  .page-rebuild .section-head p,
  .page-rebuild .work-note,
  .page-rebuild .portfolio-note p,
  .page-rebuild .cluster-card p,
  .page-rebuild .post-card p,
  .page-rebuild .process-card p,
  .page-rebuild .service-card p,
  .page-rebuild .trust-item p,
  .page-rebuild .faq-answer p,
  .page-rebuild .contact-note p,
  .page-rebuild .contact-card p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .page-rebuild .hero-grid,
  .page-rebuild .page-hero-grid,
  .page-rebuild .contact-layout,
  .page-rebuild .news-strip-grid,
  .page-rebuild .cta-panel,
  .page-rebuild .approach-grid {
    gap: 1.4rem;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "notea"
      "noteb"
      "metrics";
  }

  .hero-stage-note-a,
  .hero-stage-note-b {
    transform: none;
  }

  .page-rebuild .hero-stage-main {
    aspect-ratio: 1.06 / 0.9;
    border-radius: 1.45rem;
  }

  .page-rebuild .hero-stage-note,
  .page-rebuild .metric-card,
  .page-rebuild .trust-item,
  .page-rebuild .statement-card,
  .page-rebuild .cluster-card,
  .page-rebuild .portfolio-note,
  .page-rebuild .service-panel,
  .page-rebuild .contact-note,
  .page-rebuild .contact-form-wrap,
  .page-rebuild .contact-card,
  .page-rebuild .post-card,
  .page-rebuild .archive-callout,
  .page-rebuild .process-card,
  .page-rebuild .work-card {
    border-radius: 1.35rem;
  }

  .page-rebuild .trust-strip-track,
  .page-rebuild .portfolio-note-grid,
  .page-rebuild .post-grid-three,
  .page-rebuild .hero-stage-metrics,
  .page-rebuild .footer-grid,
  .page-rebuild .process-grid,
  .page-rebuild.page-works .works-grid,
  .page-rebuild .featured-grid,
  .page-rebuild .broken-grid {
    grid-template-columns: 1fr;
  }

  .page-rebuild .grid-span-7,
  .page-rebuild .grid-span-5,
  .page-rebuild .grid-span-4,
  .page-rebuild .grid-span-12,
  .page-rebuild .journal-posts {
    grid-column: span 1;
  }

  .page-rebuild .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-rebuild .hero-points li,
  .page-rebuild .chip {
    justify-content: center;
    text-align: center;
  }

  .page-rebuild .work-media,
  .page-rebuild .page-hero-media,
  .page-rebuild .approach-media {
    border-radius: 1.3rem;
  }

  .page-rebuild .broken-featured .work-card:nth-child(2),
  .page-rebuild .broken-featured .work-card:nth-child(3),
  .page-rebuild .process-grid-stagger .process-card:nth-child(2),
  .page-rebuild .process-grid-stagger .process-card:nth-child(4) {
    margin-top: 0;
    transform: none;
  }

  .page-rebuild .broken-featured .work-card .work-media,
  .page-rebuild.page-works .works-grid .work-card .work-media {
    aspect-ratio: 1.18 / 0.86 !important;
  }

  .page-rebuild .cta-panel-strong {
    padding: 1.3rem;
  }

  .page-rebuild .faq-list {
    padding: 0 0.95rem;
  }

  .page-rebuild .faq-item summary {
    padding: 1.05rem 2.75rem 1.05rem 0;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(1380px, calc(100vw - 1rem));
  }

  .page-rebuild .hero-copy h1,
  .page-rebuild .page-hero h1 {
    font-size: clamp(2.45rem, 12.8vw, 3.95rem);
  }

  .page-rebuild .section-head h2,
  .page-rebuild .statement-card h2,
  .page-rebuild .contact-note h2,
  .page-rebuild .cta-panel h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .page-rebuild .hero-points {
    grid-template-columns: 1fr;
  }

  .page-rebuild .work-copy,
  .page-rebuild .contact-note,
  .page-rebuild .contact-form-wrap,
  .page-rebuild .service-card,
  .page-rebuild .cluster-card,
  .page-rebuild .process-card,
  .page-rebuild .post-card,
  .page-rebuild .archive-callout,
  .page-rebuild .statement-card,
  .page-rebuild .portfolio-note,
  .page-rebuild .contact-card {
    padding: 1.15rem 1rem 1.12rem;
  }
}

/* 2026 UI/UX team rebuild patch */
.page-rebuild {
  --shell: min(1460px, calc(100vw - clamp(1.35rem, 4vw, 4.8rem)));
  --section-gap: clamp(5.5rem, 8vw, 7.8rem);
}

.page-rebuild .section {
  padding: var(--section-gap) 0;
}

.page-rebuild .section-head {
  margin-bottom: clamp(2rem, 3.2vw, 3rem);
}

.page-rebuild .section-head h2,
.page-rebuild .approach-copy h2,
.page-rebuild .contact-note h2,
.page-rebuild .cta-panel h2,
.page-rebuild .legal-intro p:first-child {
  letter-spacing: -0.072em;
}

.page-rebuild .hero-copy h1,
.page-rebuild .page-hero h1 {
  text-wrap: balance;
}

.page-rebuild .hero-copy .lead,
.page-rebuild .page-hero .lead {
  max-width: 38ch;
}

.page-home.page-rebuild .hero-grid {
  gap: clamp(2rem, 4vw, 3.4rem);
}

.page-home.page-rebuild .hero-stage {
  gap: 1.08rem;
}

.page-home.page-rebuild .hero-stage-note,
.page-home.page-rebuild .metric-card,
.page-home.page-rebuild .statement-card,
.page-home.page-rebuild .cluster-card,
.page-home.page-rebuild .trust-item,
.page-home.page-rebuild .portfolio-note,
.page-home.page-rebuild .service-panel,
.page-home.page-rebuild .work-card,
.page-home.page-rebuild .post-card,
.page-home.page-rebuild .process-card,
.page-home.page-rebuild .contact-card,
.page-home.page-rebuild .contact-note,
.page-home.page-rebuild .contact-form-wrap,
.page-home.page-rebuild .archive-callout,
.page-home.page-rebuild .confirmation-panel,
.page-home.page-rebuild .error-panel {
  background: rgba(255, 255, 255, 0.94);
}

.page-home.page-rebuild .hero-stage-note p,
.page-home.page-rebuild .metric-card p,
.page-home.page-rebuild .work-note,
.page-home.page-rebuild .process-card p,
.page-home.page-rebuild .service-panel p,
.page-home.page-rebuild .editorial-card p {
  text-wrap: pretty;
}

.page-home.page-rebuild .section-editorial {
  padding-top: clamp(3.8rem, 6vw, 5rem);
}

.editorial-composition {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.editorial-rail {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
  display: grid;
  align-self: start;
  gap: clamp(1rem, 6vw, 12rem);
  padding-top: 0.3rem;
}

.editorial-rail-chip,
.editorial-rail-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  min-height: 11rem;
  width: 4.25rem;
  border-radius: 0 1.4rem 1.4rem 0;
  background: rgba(231, 239, 233, 0.88);
  border: 1px solid rgba(168, 193, 182, 0.46);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.editorial-rail-link {
  text-decoration: none;
  background: rgba(228, 238, 232, 0.94);
}

.editorial-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.6vw, 3rem);
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}

.editorial-stage::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(74%, 64rem);
  height: clamp(28rem, 40vw, 34rem);
  background: linear-gradient(180deg, rgba(235, 241, 236, 0.95), rgba(243, 247, 244, 0.92));
  border-radius: 0;
  z-index: 0;
}

.editorial-panel,
.editorial-copy,
.editorial-badge,
.editorial-card-grid {
  position: relative;
  z-index: 1;
}

.editorial-panel {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  min-height: clamp(18rem, 27vw, 22rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 2.6vw, 2rem) clamp(1.6rem, 4vw, 2.4rem) clamp(1.45rem, 2.8vw, 2.2rem);
}

.editorial-panel h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.1vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.08em;
}

.editorial-panel-sub {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.editorial-panel-rule {
  display: block;
  width: 3.2rem;
  height: 1px;
  margin-top: 1rem;
  background: rgba(23, 36, 32, 0.45);
}

.editorial-copy {
  display: grid;
  gap: 1.35rem;
  padding-top: 0.1rem;
}

.editorial-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.editorial-icon {
  display: grid;
  place-items: center;
  min-height: 8.85rem;
  padding: 0.8rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(168, 193, 182, 0.5);
}

.editorial-icon svg {
  width: min(100%, 7rem);
  height: auto;
}

.editorial-copy-body {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.04rem, 0.6vw + 0.95rem, 1.28rem);
  line-height: 1.92;
  letter-spacing: -0.015em;
}

.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--navy);
  text-decoration: none;
  font-size: clamp(1rem, 0.35vw + 0.96rem, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.editorial-cta-line {
  width: clamp(2.8rem, 5vw, 4rem);
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.editorial-cta-circle {
  display: grid;
  place-items: center;
  width: clamp(3.75rem, 5vw, 4.75rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 240ms ease;
}

.editorial-cta:hover .editorial-cta-circle,
.editorial-cta:focus-visible .editorial-cta-circle {
  transform: translateX(0.2rem);
}

.editorial-badge {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(-1.25rem, -2vw, -0.7rem);
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 190, 121, 0.38);
  box-shadow: var(--shadow-soft);
  color: #9c7c2f;
}

.editorial-badge-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-badge strong {
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.editorial-card-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 1rem;
  margin-top: 1.35rem;
  align-items: stretch;
}

.editorial-card {
  position: relative;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.35rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(168, 193, 182, 0.58);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.editorial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 1), rgba(15, 118, 110, 0.16));
}

.editorial-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 0.8vw + 1rem, 1.62rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.editorial-card p {
  margin: 0.68rem 0 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.editorial-card-feature {
  grid-column: span 2;
  min-height: 13.2rem;
  padding-right: min(28%, 12rem);
  background:
    radial-gradient(circle at -2rem 110%, rgba(15, 118, 110, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.96);
}

.editorial-card-feature::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  border: 0.85rem solid rgba(15, 118, 110, 0.18);
  box-shadow: inset 0 0 0 1.1rem rgba(15, 118, 110, 0.08), inset 0 0 0 2.1rem rgba(15, 118, 110, 0.04);
}

.editorial-card-grid .editorial-card:nth-child(2) {
  transform: translateY(-1.3rem);
}

.editorial-card-grid .editorial-card:nth-child(3) {
  transform: translateY(0.7rem);
}

.page-home.page-rebuild .service-mosaic,
.page-home.page-rebuild .broken-featured,
.page-home.page-rebuild .post-grid-three,
.page-home.page-rebuild .process-grid {
  gap: 1.15rem;
}

.page-home.page-rebuild .section.section-tint {
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.72), rgba(246, 249, 255, 0));
}

.page-home.page-rebuild .work-card a,
.page-home.page-rebuild .post-card a {
  min-height: 100%;
}

@media (max-width: 1200px) {
  .editorial-panel h2 {
    font-size: clamp(2.55rem, 4.6vw, 4.2rem);
  }

  .editorial-stage::before {
    width: min(78%, 58rem);
    height: clamp(25rem, 36vw, 30rem);
  }
}

@media (max-width: 1080px) {
  .editorial-stage {
    gap: 1.35rem;
  }

  .editorial-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-card-feature {
    grid-column: span 2;
    padding-right: min(24%, 9rem);
  }

  .editorial-card-grid .editorial-card:nth-child(2),
  .editorial-card-grid .editorial-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 920px) {
  .editorial-composition {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .editorial-rail {
    position: static;
    grid-auto-flow: column;
    justify-content: start;
    gap: 0.7rem;
    padding-top: 0;
  }

  .editorial-rail-chip,
  .editorial-rail-link {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    width: auto;
    min-height: auto;
    min-width: 8.8rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
  }

  .editorial-stage {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .editorial-stage::before {
    width: 100%;
    height: clamp(18rem, 52vw, 23rem);
  }

  .editorial-panel {
    min-height: 15rem;
    padding-bottom: 1rem;
  }

  .editorial-badge {
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .page-rebuild .section {
    padding: clamp(4rem, 11vw, 4.9rem) 0;
  }

  .page-home.page-rebuild .section-editorial {
    padding-top: clamp(3.25rem, 9vw, 4.1rem);
  }

  .editorial-stage::before {
    height: 13.4rem;
  }

  .editorial-panel {
    min-height: auto;
    padding: 1.5rem 1.15rem 0.75rem;
  }

  .editorial-panel h2 {
    font-size: clamp(2.05rem, 9.6vw, 3rem);
    line-height: 0.98;
  }

  .editorial-copy {
    gap: 1rem;
  }

  .editorial-icons {
    gap: 0.55rem;
  }

  .editorial-icon {
    min-height: 5.9rem;
    border-radius: 1.05rem;
    padding: 0.5rem;
  }

  .editorial-icon svg {
    width: min(100%, 3.75rem);
  }

  .editorial-copy-body {
    font-size: 1rem;
    line-height: 1.84;
  }

  .editorial-cta {
    gap: 0.8rem;
  }

  .editorial-cta-circle {
    width: 3.55rem;
  }

  .editorial-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
  }

  .editorial-card-grid {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .editorial-card,
  .editorial-card-feature {
    grid-column: span 1;
    padding-right: 1rem;
  }

  .editorial-card-feature::after {
    right: -4.5rem;
    bottom: -5rem;
    width: 10.5rem;
    height: 10.5rem;
    border-width: 0.7rem;
  }

  .page-home.page-rebuild .service-mosaic,
  .page-home.page-rebuild .broken-featured,
  .page-home.page-rebuild .post-grid-three,
  .page-home.page-rebuild .process-grid {
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .editorial-rail-chip,
  .editorial-rail-link {
    min-width: 7.4rem;
    padding: 0.72rem 0.95rem;
    font-size: 0.78rem;
  }

  .editorial-stage::before {
    height: 11.8rem;
  }

  .editorial-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .editorial-card h3 {
    font-size: 1.18rem;
  }
}

.editorial-rail-link:hover,
.editorial-rail-link:focus-visible {
  background: var(--navy);
  color: #fff;
  transform: translateX(0.12rem);
}

.editorial-rail-link,
.editorial-cta,
.editorial-card,
.editorial-icon {
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}


/* 2026 MV bug fix + palette refresh */
.page-home.page-rebuild .hero {
  padding: clamp(4.5rem, 8vw, 6.6rem) 0 clamp(4.4rem, 6vw, 5.8rem);
  background:
    radial-gradient(circle at 78% 6%, rgba(15, 118, 110, 0.12), transparent 23rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 244, 0.98));
}

.page-home.page-rebuild .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.8rem);
  align-items: start;
}

.page-home.page-rebuild .hero-copy {
  padding-top: clamp(0.35rem, 1vw, 1rem);
}

.page-home.page-rebuild .hero-copy h1 {
  max-width: 8.4ch;
  font-size: clamp(4rem, 7.3vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.09em;
}

.page-home.page-rebuild .hero-copy .lead {
  max-width: 34ch;
  font-size: clamp(1.05rem, 0.45vw + 0.98rem, 1.22rem);
  line-height: 1.9;
}

.page-home.page-rebuild .hero-actions {
  margin-top: 1.95rem;
}

.page-home.page-rebuild .hero-points {
  margin-top: 1.55rem;
}

.page-home.page-rebuild .hero-visual {
  padding-top: 0.25rem;
}

.page-home.page-rebuild .hero-visual::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 2.1rem;
  width: clamp(12rem, 18vw, 17rem);
  height: clamp(12rem, 18vw, 17rem);
  border-radius: 2.4rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(15, 118, 110, 0.02));
  z-index: 0;
}

.page-home.page-rebuild .hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(10.75rem, auto) minmax(10.75rem, auto) auto;
  gap: clamp(0.9rem, 1.3vw, 1.2rem);
  min-height: clamp(34rem, 46vw, 41rem);
  align-items: stretch;
}

.page-home.page-rebuild .hero-stage-main {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #eff4ef 100%);
}

.page-home.page-rebuild .hero-stage-main::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0), rgba(15, 118, 110, 0.16));
  pointer-events: none;
}

.page-home.page-rebuild .hero-stage-note {
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 1.55rem;
}

.page-home.page-rebuild .hero-stage-note-a {
  grid-column: 8 / -1;
  grid-row: 1;
  transform: none;
}

.page-home.page-rebuild .hero-stage-note-b {
  grid-column: 8 / -1;
  grid-row: 2;
  transform: none;
}

.page-home.page-rebuild .hero-stage-metrics {
  grid-column: 1 / -1;
  grid-row: 3;
  gap: clamp(0.9rem, 1.2vw, 1rem);
}

.page-home.page-rebuild .metric-card {
  padding: 1.08rem 1rem 1.16rem;
}

.page-home.page-rebuild .metric-card,
.page-home.page-rebuild .hero-stage-note {
  background: rgba(255, 255, 255, 0.95);
}

.site-header {
  background: rgba(252, 252, 248, 0.9);
  border-bottom-color: rgba(212, 223, 216, 0.96);
}

.section-tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(239, 244, 239, 0.94));
}

.section-dark {
  background: linear-gradient(180deg, rgba(239, 244, 239, 0.94), rgba(228, 236, 230, 1));
}

.page-home.page-rebuild .section.section-tint {
  background: linear-gradient(180deg, rgba(239, 244, 239, 0.9), rgba(247, 248, 244, 0));
}

.editorial-badge {
  background: rgba(255, 252, 244, 0.98);
  border-color: rgba(168, 136, 72, 0.26);
  color: #8a6a31;
}

.editorial-rail-chip,
.editorial-rail-link {
  background: rgba(235, 241, 236, 0.9);
}

.editorial-rail-link {
  background: rgba(228, 238, 232, 0.96);
}

.page-home.page-rebuild .editorial-stage::before {
  background: linear-gradient(180deg, rgba(235, 241, 236, 0.96), rgba(243, 247, 244, 0.94));
}

@media (max-width: 1080px) {
  .page-home.page-rebuild .hero-grid {
    gap: 1.8rem;
  }

  .page-home.page-rebuild .hero-stage {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .page-home.page-rebuild .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-home.page-rebuild .hero-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .page-home.page-rebuild .hero-stage-main {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: clamp(18rem, 48vw, 28rem);
  }

  .page-home.page-rebuild .hero-stage-note-a {
    grid-column: 1;
    grid-row: 2;
  }

  .page-home.page-rebuild .hero-stage-note-b {
    grid-column: 2;
    grid-row: 2;
  }

  .page-home.page-rebuild .hero-stage-metrics {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 720px) {
  .page-home.page-rebuild .hero {
    padding: 2.5rem 0 3.2rem;
  }

  .page-home.page-rebuild .hero-grid {
    gap: 1.8rem;
  }

  .page-home.page-rebuild .hero-copy h1 {
    font-size: clamp(2.9rem, 12vw, 4.7rem);
  }

  .page-home.page-rebuild .hero-copy .lead {
    max-width: none;
  }

  .page-home.page-rebuild .hero-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0.9rem;
  }

  .page-home.page-rebuild .hero-stage-main,
  .page-home.page-rebuild .hero-stage-note-a,
  .page-home.page-rebuild .hero-stage-note-b,
  .page-home.page-rebuild .hero-stage-metrics {
    grid-column: 1;
  }

  .page-home.page-rebuild .hero-stage-main {
    grid-row: 1;
    min-height: 15.5rem;
  }

  .page-home.page-rebuild .hero-stage-note-a {
    grid-row: 2;
  }

  .page-home.page-rebuild .hero-stage-note-b {
    grid-row: 3;
  }

  .page-home.page-rebuild .hero-stage-metrics {
    grid-row: 4;
    grid-template-columns: 1fr;
  }

  .page-home.page-rebuild .hero-visual::before {
    left: -0.3rem;
    top: 1.2rem;
    width: 8.6rem;
    height: 8.6rem;
    border-radius: 1.5rem;
  }
}
