:root {
  --color-ink: 15 23 42;
  --color-muted: 84 98 122;
  --color-line: 215 223 235;
  --color-sky: 41 98 255;
  --color-accent: 243 128 37;
  --color-glow: 238 244 255;
  --shadow-soft: 0 14px 45px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 18px 40px rgba(27, 53, 90, 0.08);
  --container-width: 1320px;
  --content-width: 1280px;
  --wide-content-width: 1560px;
  --header-height: 85px;
  --compact-header-height: 47px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: rgb(var(--color-ink));
  background:
    radial-gradient(circle at top left, rgba(41, 98, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(243, 128, 37, 0.07), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 1px, transparent 1px),
    linear-gradient(180deg, #fefefe 0%, #f8fafc 100%);
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  text-rendering: optimizeLegibility;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a,
input,
textarea,
select {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

img,
video {
  max-width: 100%;
  display: block;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

:focus-visible {
  outline: 2px solid rgba(41, 98, 255, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: #fff;
  color: #111827;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
}

.skip-link:focus {
  transform: translateY(0);
}

.container-shell {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: var(--header-height);
}

.site-main--home {
  padding-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}

.admin-bar .site-header {
  top: 32px;
}

.admin-bar .mobile-nav {
  top: calc(32px + var(--compact-header-height));
}

.site-header--full {
  height: var(--header-height);
  overflow: hidden;
  border-top: 2px solid rgb(var(--color-accent));
  border-bottom: 2px solid rgb(var(--color-accent));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  will-change: transform, opacity;
}

.site-header--compact {
  border-bottom: 1px solid rgb(var(--color-accent));
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(var(--compact-header-height) * -1));
  will-change: transform, opacity;
}

.site-header__inner {
  position: relative;
  height: calc(var(--header-height) - 4px);
}

.site-header__inner > .logo-mark,
.site-header__actions {
  position: absolute;
  top: 50%;
  transform: translateY(-57%);
}

.site-header__inner > .logo-mark {
  left: -0.5rem;
}

.site-header__actions {
  right: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__compact-inner {
  height: var(--compact-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.logo-mark--large {
  gap: 0.875rem;
  padding: 0.25rem 0.5rem;
}

.logo-mark--compact {
  gap: 0.5rem;
  padding: 0.125rem 0.375rem;
}

.logo-mark__icon {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.logo-mark--large .logo-mark__icon {
  width: 56px;
  height: 56px;
}

.logo-mark--compact .logo-mark__icon {
  width: 32px;
  height: 32px;
}

.logo-mark__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.logo-mark__text {
  display: flex;
  flex-direction: column;
}

.logo-mark__title {
  color: rgb(var(--color-ink));
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.logo-mark__subtitle {
  color: rgb(var(--color-muted));
  font-size: 0.75rem;
  line-height: 1.35;
}

.logo-mark--light .logo-mark__title {
  color: #fff;
}

.logo-mark--light .logo-mark__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.primary-nav--full {
  position: absolute;
  inset: auto 0 0;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-nav a {
  white-space: nowrap;
  font-weight: 600;
}

.primary-nav--full a {
  height: 26px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  padding: 0 0.625rem;
  color: rgb(var(--color-muted));
  font-size: 15px;
  line-height: 1;
}

.primary-nav--full a:hover {
  border-color: #333;
  color: rgb(var(--color-ink));
}

.primary-nav--compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-nav--compact a {
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  color: rgb(var(--color-muted));
  font-size: 0.875rem;
}

.primary-nav--compact a:hover {
  background: #fff;
  color: rgb(var(--color-ink));
}

.language-switch {
  border: 1px solid rgba(var(--color-line), 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  min-height: 34px;
  padding: 0.5rem 0.75rem;
  color: rgb(var(--color-muted));
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.language-switch:hover {
  border-color: rgba(41, 98, 255, 0.3);
  color: rgb(var(--color-ink));
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgb(var(--color-ink));
  min-height: 40px;
  padding: 0.625rem 1rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.contact-cta:hover {
  transform: translateY(-2px);
  background: rgb(var(--color-sky));
}

.contact-cta svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-cta--compact {
  transform: scale(0.9);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(var(--color-line), 0.8);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: rgb(var(--color-ink));
}

.mobile-nav {
  position: fixed;
  inset: var(--compact-header-height) 0 auto;
  z-index: 45;
  padding: 1rem;
}

.mobile-nav__panel {
  display: grid;
  gap: 0.5rem;
  border: 1px solid rgba(var(--color-line), 0.8);
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.mobile-nav__panel > a:not(.contact-cta) {
  padding: 0.75rem;
  color: rgb(var(--color-muted));
  font-weight: 700;
}

.hero-video {
  position: relative;
  overflow: hidden;
}

.hero-video__stage {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #091120;
}

.hero-video__media,
.hero-video__overlay,
.hero-video__glow,
.hero-video__particles {
  position: absolute;
  inset: 0;
}

.hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-video__overlay {
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 10, 21, 0.42), rgba(5, 10, 21, 0.62));
}

.hero-video__glow {
  z-index: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 32%);
}

.hero-video__particles {
  z-index: 1;
  pointer-events: none;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
}

.hero-video__copy {
  max-width: 64rem;
  padding: 0 1.5rem;
  color: #fff;
  text-align: center;
}

.hero-video__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-video h1 {
  max-width: 56rem;
  margin: 1.5rem auto 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-video p:not(.hero-video__eyebrow) {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2;
  text-wrap: pretty;
}

.section,
.page-intro {
  border-bottom: 1px solid #ffedd5;
}

.section {
  padding: 5rem 0;
}

.section .container-shell,
.page-intro .container-shell,
.services-section .container-shell,
.home-info .container-shell {
  max-width: var(--content-width);
}

.section--highlights .highlights-container {
  max-width: var(--wide-content-width);
}

.section--tinted {
  background: rgba(255, 247, 237, 0.6);
}

.section--white,
.page-intro {
  background: #fff;
}

.page-intro {
  padding: 4.5rem 0 5rem;
}

.page-intro h1 {
  max-width: 60rem;
  margin: 0.75rem 0 0;
  color: #000;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 1.12;
}

.page-intro p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: #52525b;
  font-size: 1.0625rem;
  line-height: 2;
}

.page-intro__editable {
  margin-top: 1.5rem;
  color: #52525b;
  font-size: 1.0625rem;
  line-height: 2;
}

.page-intro__editable > *:first-child {
  margin-top: 0;
}

.page-intro__editable > *:last-child {
  margin-bottom: 0;
}

.page-intro__grid,
.split-heading,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2.5rem;
  align-items: start;
}

.split-heading {
  grid-template-columns: 320px minmax(0, 1fr);
}

.eyebrow {
  margin: 0;
  color: rgb(var(--color-accent));
  font-size: 0.875rem;
  font-weight: 800;
}

.split-heading h2,
.section-heading h2 {
  margin: 0.25rem 0 0;
  color: #000;
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.25;
}

.section-heading {
  max-width: 48rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 48rem;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 2;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2.5rem;
  align-items: end;
}

.section-heading p:not(.eyebrow),
.rule-panel p,
.service-card p,
.process-card p,
.work-card p,
.news-card p,
.panel-surface p {
  color: #52525b;
  line-height: 1.85;
}

.section-heading p:not(.eyebrow) {
  line-height: 2;
}

.rule-panel {
  border-top: 1px solid #fed7aa;
  border-bottom: 1px solid #fed7aa;
  padding: 1.5rem 0;
}

.rule-panel .lead,
.rule-panel h2 {
  margin: 0.75rem 0 0;
  color: #000;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.45;
}

.split-heading .rule-panel .lead {
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.split-heading .rule-panel p:not(.lead) {
  margin: 1.25rem 0 0;
}

.section-heading--split .rule-panel {
  padding: 1.25rem 0;
}

.section-heading--split .rule-panel .lead {
  font-size: 1.5rem;
  line-height: 1.35;
}

.highlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.highlight-card {
  display: block;
}

.highlight-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #fff7ed;
}

.highlight-card__image::after {
  position: absolute;
  inset: 0;
  background: rgba(249, 115, 22, 0.22);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.highlight-card:hover .highlight-card__image::after {
  opacity: 1;
}

.highlight-card:hover img {
  transform: scale(1.04);
}

.highlight-card__meta {
  display: inline-flex;
  min-width: 4rem;
  justify-content: center;
  margin-top: 1.25rem;
  background: #fb923c;
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.highlight-card__date {
  display: block;
  margin-top: 0.5rem;
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 700;
}

.highlight-card__title {
  display: block;
  margin-top: 0.75rem;
  color: #000;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.75;
  transition: color 180ms ease;
}

.highlight-card:hover .highlight-card__title {
  color: #ea580c;
}

.quick-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d4d4d8;
  border-bottom: 1px solid #d4d4d8;
}

.quick-links a {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d4d4d8;
  padding: 1.25rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 800;
}

.quick-links a:last-child {
  border-bottom: 0;
}

.quick-links a:hover {
  color: rgb(var(--color-accent));
}

.service-grid,
.process-grid,
.work-grid,
.news-grid,
.about-cards {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.service-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.process-card,
.post-card {
  border: 1px solid #ffedd5;
  background: #fff;
  padding: 1.5rem;
}

.service-card:hover {
  border-color: #fdba74;
}

.service-card__no {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: #fb923c;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.service-card h3,
.process-card h3,
.post-card h2 {
  margin: 1.25rem 0 0;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.55;
}

.service-card p {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.service-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  border-left: 2px solid #fdba74;
  padding-left: 0.75rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.8;
}

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

.home-info .container-shell {
  display: grid;
  gap: 2rem;
}

.home-info {
  padding: 3.5rem 0;
}

.home-panel {
  background: #fff;
}

.home-panel .section-heading {
  max-width: none;
  padding: 1rem 0;
}

.home-panel--faq {
  border-top: 1px solid rgb(var(--color-accent));
  padding-top: 2rem;
}

.news-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 0;
}

.news-row span,
.news-card span {
  display: inline-flex;
  min-width: 4rem;
  justify-content: center;
  background: #fb923c;
  padding: 0.25rem 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.news-row time,
.news-card time {
  display: block;
  margin-top: 0.5rem;
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 700;
}

.news-row h3 {
  margin: 0;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.6;
}

.news-row h3 a:hover {
  color: #ea580c;
}

.news-more-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 200ms ease;
}

.news-more-panel.is-open {
  grid-template-rows: 1fr;
}

.news-more-panel > div {
  min-height: 0;
  overflow: hidden;
}

.news-more-toggle {
  width: 100%;
  min-height: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  color: #3f3f46;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
}

.news-more-toggle:hover {
  color: #ea580c;
}

.news-more-toggle svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: #71717a;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.news-more-toggle.is-open svg {
  transform: rotate(180deg);
}

.home-news-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 1.25rem 1rem;
}

.home-news-actions a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
}

.home-news-actions a:hover {
  color: #ea580c;
}

.home-news-actions svg {
  width: 2.25rem;
  height: 1rem;
  fill: none;
  stroke: #f97316;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
}

.faq-list {
  border: 0;
  background: #fff;
}

.faq-item {
  border-bottom: 0;
}

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

.faq-item__button {
  width: 100%;
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  padding: 0.5rem 1.25rem;
  color: #000;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  line-height: 1.5;
}

.faq-item__button:hover {
  background: rgba(255, 247, 237, 0.7);
  color: #ea580c;
}

.faq-item__button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #71717a;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-item__button svg {
  transform: rotate(180deg);
}

.faq-item__q {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: #fb923c;
  color: #fff;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 200ms ease;
}

.faq-item__panel > p,
.faq-item__panel-inner {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-left: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0 1.25rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__panel > p,
.faq-item.is-open .faq-item__panel-inner {
  padding-bottom: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
}

.contact-form,
.panel-surface {
  border: 1px solid rgba(var(--color-line), 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: rgb(var(--color-ink));
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgb(var(--color-line));
  background: #fff;
  padding: 0.875rem 1rem;
  color: rgb(var(--color-ink));
}

.contact-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: rgb(var(--color-ink));
  padding: 0.875rem 1.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.contact-sidebar {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.panel-surface {
  padding: 1.5rem;
}

.panel-surface h2 {
  margin: 0;
  color: rgb(var(--color-ink));
  font-size: 1.25rem;
}

.panel-surface ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: #52525b;
  line-height: 1.85;
}

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

.work-card,
.news-card {
  border: 1px solid #ffedd5;
  background: #fff;
}

.work-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #fff7ed;
}

.work-card__body,
.news-card > div {
  padding: 1.5rem;
}

.work-card__body > span {
  color: rgb(var(--color-accent));
  font-weight: 800;
}

.work-card h2,
.news-card h2 {
  margin: 0.75rem 0 0;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5;
}

.work-card dl {
  margin: 1.5rem 0 0;
}

.work-card dt {
  color: rgb(var(--color-accent));
  font-weight: 800;
}

.work-card dd {
  margin: 0.5rem 0 0;
  color: #52525b;
  line-height: 1.85;
}

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

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #f7f7f5;
  color: #020617;
}

.site-footer__top {
  max-width: 1880px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.5rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.footer-block h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-block h2 span,
.footer-block a span,
.footer-legal span {
  color: rgb(var(--color-accent));
}

.footer-block h2 span:not([aria-hidden]),
.footer-block a span:not([aria-hidden]),
.footer-legal a span:not([aria-hidden]) {
  color: inherit;
}

.footer-block a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  color: #020617;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
}

.footer-block a:hover {
  color: rgb(var(--color-accent));
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #232323;
  color: #fff;
}

.site-footer__bottom-inner {
  max-width: 1880px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-footer__brand {
  max-width: 28rem;
}

.site-footer__brand p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-legal a {
  display: inline-flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 700;
}

.footer-social {
  display: grid;
  justify-items: end;
  gap: 1rem;
}

.footer-social__icons {
  display: flex;
  gap: 0.75rem;
}

.footer-social__icons a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.footer-social p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
}

/* Port alignment with the Next.js implementation. */
@media (min-width: 640px) {
  .container-shell {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }

  .section,
  .section--highlights {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-intro {
    padding-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .container-shell {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .section,
  .section--highlights {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1280px) {
  .container-shell {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.site-header__inner > .logo-mark,
.site-header__actions {
  transform: translateY(-50%);
}

.primary-nav--full {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.primary-nav--full a {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.primary-nav--full a.is-current {
  border-color: #333;
  color: rgb(var(--color-ink));
  font-weight: 700;
}

.primary-nav--compact a.is-current {
  background: #fff7ed;
  color: rgb(var(--color-ink));
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.08);
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.page-intro {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.page-intro h1 {
  margin-top: 0.75rem;
  max-width: 64rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
}

.page-intro p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.section--highlights {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--highlights .highlights-container {
  max-width: var(--wide-content-width);
}

.highlight-layout {
  align-items: stretch;
  gap: 2.5rem;
}

.quick-links a {
  gap: 1.25rem;
  padding: 1rem;
}

.quick-links svg {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  fill: none;
  stroke: rgb(var(--color-accent));
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

.archive-layout,
.about-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.about-section--flow {
  display: block;
}

.about-card {
  border: 1px solid #ffedd5;
  background: #fff;
  padding: 1.5rem;
}

.about-card h3,
.process-card h3 {
  margin: 1.25rem 0 0;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.55;
}

.about-card p,
.process-card p {
  margin: 1rem 0 0;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

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

.about-cards--flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.page-intro--about,
.section--about {
  border-bottom: 1px solid #ffedd5;
}

.page-intro--about {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #fff;
}

.page-intro--about .container-shell,
.section--about .container-shell {
  max-width: var(--content-width);
}

.page-intro--about h1 {
  max-width: 56rem;
  margin-top: 0.75rem;
  color: #000;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.page-intro--about p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-mission {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.about-mission h2 {
  margin-top: 0.75rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.375;
}

.about-mission p:not(.eyebrow) {
  margin-top: 1rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.section--about {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--about .about-section {
  display: block;
}

.section--about .section-heading {
  max-width: 48rem;
}

.section--about .section-heading h2 {
  margin-top: 0.25rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.section--about .section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.section--about .about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.section--about .about-card,
.section--about .process-card {
  background: #fff;
  padding: 1.5rem;
}

.section--about .about-card--coverage {
  border: 1px solid #ffedd5;
}

.section--about .about-card--plain,
.section--about .process-card {
  border: 0;
  border-top: 1px solid #d4d4d8;
  border-bottom: 1px solid #d4d4d8;
}

.section--about .about-card h3,
.section--about .process-card h3 {
  margin-top: 1.25rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.section--about .about-card--coverage:hover h3 {
  color: #ea580c;
}

.section--about .about-card p,
.section--about .process-card p {
  margin-top: 1rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

@media (min-width: 640px) {
  .page-intro--about {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-intro--about h1 {
    font-size: 3rem;
  }

  .page-intro--about p:not(.eyebrow) {
    font-size: 1.125rem;
  }

  .section--about {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section--about .section-heading h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .section--about .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-intro--about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .page-intro--about h1 {
    font-size: 3.75rem;
  }

  .about-hero__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
  }

  .section--about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section--about .about-section {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 2.5rem;
  }

  .section--about .about-section--flow {
    display: block;
  }

  .section--about .about-section:not(.about-section--flow) .about-cards {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .section--about .about-cards--flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.featured-news {
  border: 1px solid #ffedd5;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.featured-news__image {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background: #ffedd5;
}

.featured-news__image img,
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-news:hover img,
.news-card:hover img {
  transform: scale(1.04);
}

.featured-news__body {
  padding: 2.5rem;
}

.featured-news h2 {
  margin: 1.25rem 0 0;
  color: #000;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.6;
}

.featured-news p {
  margin: 1.25rem 0 0;
  color: #52525b;
  line-height: 2;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.news-card .news-meta {
  display: flex;
  min-width: 0;
  justify-content: flex-start;
  background: transparent;
  padding: 0;
  color: inherit;
}

.news-meta > span {
  display: inline-flex;
  min-width: 4rem;
  justify-content: center;
  background: #fb923c;
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
}

.news-meta time {
  color: rgb(var(--color-accent));
  font-size: 0.875rem;
  font-weight: 800;
}

.news-card a,
.news-card .news-card__body,
.news-card .news-card__image {
  display: block;
}

.news-card .news-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #fff7ed;
  min-width: 0;
  justify-content: initial;
  padding: 0;
  color: inherit;
}

.news-card .news-card__body {
  min-width: 0;
  justify-content: initial;
  background: transparent;
  padding: 1.5rem;
  color: inherit;
}

.news-card .news-card__number {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: #fb923c;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.news-card h3 {
  margin: 1rem 0 0;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.75;
}

.news-card p {
  margin: 0.75rem 0 0;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  border-bottom: 1px solid #fb923c;
  padding-bottom: 0.25rem;
  color: #ea580c;
  font-size: 0.875rem;
  font-weight: 800;
}

.text-link:hover {
  border-color: #000;
  color: #000;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.work-filter button {
  border: 1px solid #ffedd5;
  background: #fff;
  padding: 0.5rem 1rem;
  color: #52525b;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 800;
}

.work-filter button:hover {
  border-color: #fdba74;
  background: #fff7ed;
  color: #c2410c;
}

.work-filter button.is-active {
  border-color: rgb(var(--color-accent));
  background: rgb(var(--color-accent));
  color: #fff;
  box-shadow: 0 1px 6px rgba(251, 146, 60, 0.3);
}

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

.work-card {
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.badge {
  display: inline-flex;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  padding: 0.25rem 0.75rem;
  color: #ea580c;
  font-size: 0.75rem;
  font-weight: 800;
}

.work-card h3 {
  margin: 1rem 0 0;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.6;
}

.work-card p {
  margin: 0.75rem 0 0;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.work-card__chips,
.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work-card__chips {
  margin-top: 1.25rem;
  border-top: 1px solid #ffedd5;
  border-bottom: 1px solid #ffedd5;
  padding: 1rem 0;
}

.work-card__chips span {
  background: #fff7ed;
  padding: 0.25rem 0.75rem;
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 800;
}

.work-card__tags {
  margin-top: 1rem;
}

.work-card__tags span {
  border: 1px solid #ffedd5;
  padding: 0.25rem 0.75rem;
  color: #52525b;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-block__links {
  padding-top: 1.25rem;
}

.footer-block__links--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
}

.site-footer__bottom-inner {
  align-items: center;
}

.site-footer__left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-cta:hover {
  border-color: rgb(var(--color-accent));
  color: rgb(var(--color-accent));
}

/* Header parity with the Next.js version. */
.site-header {
  left: 0;
  right: 0;
  top: 0;
}

.site-header--full {
  height: var(--header-height);
  border-top: 2px solid rgb(var(--color-accent));
  border-bottom: 2px solid rgb(var(--color-accent));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.site-header--compact {
  min-height: var(--compact-header-height);
  border-bottom: 1px solid rgb(var(--color-accent));
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  position: relative;
  height: calc(var(--header-height) - 4px);
}

.site-header__topbar {
  position: absolute;
  inset: 0 -0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__inner > .logo-mark,
.site-header__actions {
  position: static;
  top: auto;
  right: auto;
  transform: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
}

.logo-mark--large {
  gap: 0.875rem;
  padding: 0.25rem 0.5rem;
}

.logo-mark--compact {
  gap: 0.5rem;
  padding: 0.125rem 0.375rem;
}

.logo-mark__icon {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.logo-mark--large .logo-mark__icon {
  width: 56px;
  height: 56px;
}

.logo-mark--compact .logo-mark__icon {
  width: 32px;
  height: 32px;
}

.logo-mark__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 2px;
}

.logo-mark__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.logo-mark__title {
  color: rgb(var(--color-ink));
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.logo-mark__subtitle {
  color: rgb(var(--color-muted));
  font-size: 0.75rem;
  line-height: 1.35;
}

.primary-nav--full {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  height: 26px;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 0;
}

.primary-nav__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-nav--full a {
  display: flex;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 0.5rem;
  color: rgb(var(--color-muted));
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav--full .primary-nav__label {
  display: flex;
  height: 100%;
  align-items: center;
  border-bottom: 3px solid transparent;
  padding: 0 0.25rem;
}

.primary-nav--full a:hover,
.primary-nav--full a.is-current {
  color: rgb(var(--color-ink));
}

.primary-nav--full a:hover .primary-nav__label,
.primary-nav--full a.is-current .primary-nav__label {
  border-color: #333;
}

.site-header__compact-inner {
  display: flex;
  height: var(--compact-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.primary-nav--compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-nav--compact a {
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  color: rgb(var(--color-muted));
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav--compact a:hover {
  background: #fff;
  color: rgb(var(--color-ink));
}

.primary-nav--compact a.is-current {
  background: #fff7ed;
  color: rgb(var(--color-ink));
}

.language-switch {
  min-height: 34px;
  border: 1px solid rgba(var(--color-line), 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.75rem;
  color: rgb(var(--color-muted));
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.contact-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgb(var(--color-ink));
  padding: 0.625rem 1rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.contact-cta:hover {
  transform: translateY(-2px);
  background: rgb(var(--color-sky));
}

.contact-cta--compact {
  min-height: 36px;
  padding: 0.5625rem 0.9rem;
  transform: scale(0.9);
}

.menu-toggle {
  display: none;
  width: auto;
  height: auto;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border: 1px solid rgba(var(--color-line), 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0.75rem;
  color: rgb(var(--color-ink));
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.menu-toggle span {
  width: auto;
  height: auto;
  background: transparent;
}

.mobile-nav {
  position: fixed;
  inset: calc(var(--compact-header-height) - 6px) 0 auto;
  z-index: 49;
  padding: 0 1rem;
}

.mobile-nav__panel {
  max-width: calc(var(--container-width) - 2rem);
  margin: 0 auto;
  border: 1px solid rgba(var(--color-line), 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav__links a {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  color: rgb(var(--color-ink));
  font-size: 0.875rem;
  font-weight: 600;
}

.mobile-nav__links a:hover {
  background: rgb(var(--color-glow));
}

.mobile-nav__links a.is-current {
  background: #fff7ed;
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(var(--color-line), 0.7);
  padding-top: 1rem;
}

/* Header nav state: full header uses underline, compact/mobile use pill state. */
.primary-nav--full a {
  font-weight: 500;
}

.primary-nav--full .primary-nav__label {
  border-bottom: 3px solid transparent;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    font-weight 180ms ease;
}

.primary-nav--full a:hover {
  color: #101828;
  font-weight: 700;
}

.primary-nav--full a.is-current,
.primary-nav--full a.is-active,
.primary-nav--full a.current-menu-item,
.primary-nav--full a.current_page_item,
.primary-nav--full a.current-menu-ancestor,
.primary-nav--full a.current_page_ancestor,
.primary-nav--full a[aria-current="page"],
.primary-nav--full .current-menu-item > a,
.primary-nav--full .current_page_item > a,
.primary-nav--full .current-menu-ancestor > a,
.primary-nav--full .current_page_ancestor > a {
  color: #101828;
  font-weight: 700;
}

.primary-nav--full a:hover .primary-nav__label {
  border-bottom-color: #101828;
}

.primary-nav--full a.is-current .primary-nav__label,
.primary-nav--full a.is-active .primary-nav__label,
.primary-nav--full a.current-menu-item .primary-nav__label,
.primary-nav--full a.current_page_item .primary-nav__label,
.primary-nav--full a.current-menu-ancestor .primary-nav__label,
.primary-nav--full a.current_page_ancestor .primary-nav__label,
.primary-nav--full a[aria-current="page"] .primary-nav__label,
.primary-nav--full .current-menu-item > a .primary-nav__label,
.primary-nav--full .current_page_item > a .primary-nav__label,
.primary-nav--full .current-menu-ancestor > a .primary-nav__label,
.primary-nav--full .current_page_ancestor > a .primary-nav__label {
  border-bottom-color: #101828;
}

.primary-nav--compact a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.primary-nav--compact a:hover {
  color: #101828;
}

.primary-nav--compact a.is-current,
.primary-nav--compact a.is-active,
.primary-nav--compact a.current-menu-item,
.primary-nav--compact a.current_page_item,
.primary-nav--compact a.current-menu-ancestor,
.primary-nav--compact a.current_page_ancestor,
.primary-nav--compact a[aria-current="page"],
.primary-nav--compact .current-menu-item > a,
.primary-nav--compact .current_page_item > a,
.primary-nav--compact .current-menu-ancestor > a,
.primary-nav--compact .current_page_ancestor > a {
  min-height: 34px;
  border-radius: 999px;
  background: #ffe8d6;
  color: #101828;
  padding: 0 16px;
}

.primary-nav--compact a.is-current::after,
.primary-nav--compact a.is-active::after,
.primary-nav--compact a[aria-current="page"]::after {
  display: none;
}

.mobile-nav__links a {
  display: inline-flex;
  min-height: 42px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  border-radius: 999px;
  padding: 0 16px;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.mobile-nav__links a:hover {
  color: #101828;
}

.mobile-nav__links a.is-current,
.mobile-nav__links a.is-active,
.mobile-nav__links a.current-menu-item,
.mobile-nav__links a.current_page_item,
.mobile-nav__links a.current-menu-ancestor,
.mobile-nav__links a.current_page_ancestor,
.mobile-nav__links a[aria-current="page"],
.mobile-nav__links .current-menu-item > a,
.mobile-nav__links .current_page_item > a,
.mobile-nav__links .current-menu-ancestor > a,
.mobile-nav__links .current_page_ancestor > a {
  background:  #ffe8d6;
  color: #101828;
}

/* Full header: show current page with an underline, and make nav hover clearer. */
.site-header--full .primary-nav--full a:hover {
  color: #101828;
  font-weight: 700;
}

.site-header--full .primary-nav--full a.is-current,
.site-header--full .primary-nav--full a.is-active,
.site-header--full .primary-nav--full a[aria-current="page"] {
  color: #101828;
  font-weight: 700;
}

.site-header--full .primary-nav--full a.is-current .primary-nav__label,
.site-header--full .primary-nav--full a.is-active .primary-nav__label,
.site-header--full .primary-nav--full a[aria-current="page"] .primary-nav__label {
  border-bottom-color: #101828;
}

.site-header--full .primary-nav--full a:hover .primary-nav__label {
  border-bottom-color: #101828;
}

/* Compact header: only the current page gets a persistent active pill. */
.site-header--compact .primary-nav--compact a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #667085;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}

.site-header--compact .primary-nav--compact a:hover {
  background: transparent;
  color: #101828;
}

.site-header--compact .primary-nav--compact a.is-current,
.site-header--compact .primary-nav--compact a.is-active,
.site-header--compact .primary-nav--compact a[aria-current="page"] {
  background: #ffe8d6;
  color: #101828;
  box-shadow: inset 0 0 0 1px rgba(255, 120, 32, 0.12);
}

.site-header--compact .primary-nav--compact a.is-current::after,
.site-header--compact .primary-nav--compact a.is-active::after,
.site-header--compact .primary-nav--compact a[aria-current="page"]::after {
  display: none;
}

.site-header--compact.is-over-hero {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header--compact.is-over-hero .logo-mark__title,
.site-header--compact.is-over-hero .primary-nav--compact a,
.site-header--compact.is-over-hero .contact-cta--compact {
  color: rgba(255, 255, 255, 0.86);
}

.site-header--compact.is-over-hero .logo-mark__icon {
  box-shadow: none;
}

.site-header--compact.is-over-hero .primary-nav--compact a:hover {
  color: #fff;
}

.site-header--compact.is-over-hero .primary-nav--compact a.is-current,
.site-header--compact.is-over-hero .primary-nav--compact a.is-active,
.site-header--compact.is-over-hero .primary-nav--compact a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.site-header--compact.is-over-hero .contact-cta--compact {
  background: rgba(16, 24, 40, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
  .mobile-nav__links a {
    display: inline-flex;
    min-height: 42px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    border-radius: 999px;
    color: #667085;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-nav__links a:hover {
    background: transparent;
    color: #101828;
  }

  .mobile-nav__links a.is-current,
  .mobile-nav__links a.is-active,
  .mobile-nav__links a[aria-current="page"] {
    background: #ffe8d6;
    color: #101828;
    box-shadow: inset 0 0 0 1px rgba(255, 120, 32, 0.12);
  }
}

.post-list {
  display: grid;
  gap: 1.25rem;
}

.single-entry__content {
  max-width: 860px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.9;
}

.single-entry__image {
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .primary-nav--full,
  .primary-nav--compact,
  .site-header__actions .language-switch,
  .site-header__actions .contact-cta,
  .contact-cta--compact {
    display: none;
  }

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

  .site-header--compact {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header--full {
    display: none;
  }

  .site-main {
    padding-top: var(--compact-header-height);
  }

  .site-main--home {
    padding-top: 0;
  }
}

@media (max-width: 960px) {
  .page-intro__grid,
  .split-heading,
  .two-column,
  .section-heading--split,
  .highlight-layout,
  .contact-layout,
  .archive-layout,
  .about-section,
  .featured-news {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .service-grid,
  .service-grid--home,
  .process-grid,
  .work-grid,
  .work-grid--archive,
  .news-grid,
  .site-footer__top,
  .about-cards,
  .about-cards--flow {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    justify-items: start;
  }

  .site-footer__left {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-block__links--cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container-shell {
    padding: 0 1rem;
  }

  .site-main {
    padding-top: var(--compact-header-height);
  }

  .site-main--home {
    padding-top: 0;
  }

  .site-header--full {
    display: none;
  }

  .hero-video__stage,
  .hero-video__content {
    min-height: 100svh;
  }

  .hero-video__content {
    padding-top: calc(var(--compact-header-height) + 3.5rem);
  }

  .section,
  .page-intro {
    padding: 3.5rem 0;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .logo-mark__subtitle {
    display: none;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .mobile-nav {
    top: calc(46px + var(--compact-header-height));
  }
}

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

  .faq-item__button svg,
  .faq-item__panel {
    transition: none;
  }

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

/* Home parity pass: translated Tailwind values from the Next.js home. */
.section,
.section--highlights {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--tinted {
  background: rgba(255, 247, 237, 0.6);
}

.split-heading,
.section-heading--split {
  gap: 2.5rem;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
}

.split-heading h2,
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.eyebrow {
  color: #f38025;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.rule-panel {
  border-top-color: #fed7aa;
  border-bottom-color: #fed7aa;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.split-heading .rule-panel {
  max-width: 56rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.split-heading .rule-panel .lead,
.section-heading--split .rule-panel .lead {
  color: #000;
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0;
}

.split-heading .rule-panel p:not(.lead) {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 2rem;
}

.service-grid {
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: #ffedd5;
  background: #fff;
  padding: 1.5rem;
  box-shadow: none;
}

.service-card:hover {
  border-color: #fdba74;
}

.service-card__no {
  width: 2.25rem;
  height: 2.25rem;
  background: #fb923c;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.service-card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
}

.service-card:hover h3 {
  color: #ea580c;
}

.service-card p,
.service-card li {
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.service-card ul {
  margin-top: 1.5rem;
}

.highlight-card__meta {
  font-weight: 700;
  letter-spacing: 0;
}

.highlight-card__title {
  font-weight: 700;
  letter-spacing: 0;
}

.quick-links a {
  font-weight: 700;
  letter-spacing: 0;
}

.services-section .section-heading--split > div:first-child h2,
.services-section .section-heading--split > div:first-child p:not(.eyebrow) {
  max-width: 48rem;
}

.home-info {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-info .container-shell {
  gap: 2rem;
}

.home-panel .section-heading {
  display: block;
  padding: 1rem 1.25rem;
}

.home-panel .eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.home-panel .section-heading h2 {
  margin-top: 0.25rem;
  color: #000;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.news-row {
  gap: 1.25rem;
  padding: 0.75rem 1.25rem;
}

.news-row span {
  min-width: 4rem;
  padding: 0.15rem 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.news-row time {
  color: #71717a;
  font-weight: 500;
}

.news-row h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
}

.home-panel--faq {
  padding-top: 2rem;
}

.faq-item__button {
  min-height: 3rem;
  padding: 0.5rem 1.25rem;
}

.faq-item__button > span:not(.faq-item__q) {
  min-width: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
}

.faq-item__panel > p {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.home-more-link {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.25rem 0;
}

.home-more-link a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
}

.home-more-link a:hover {
  color: #ea580c;
}

.home-more-link svg {
  width: 2.25rem;
  height: 1rem;
  fill: none;
  stroke: #f38025;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
}

.highlight-layout {
  margin-top: 3rem;
}

.highlight-carousel {
  position: relative;
  min-width: 0;
}

.highlight-viewport {
  overflow: hidden;
}

.highlight-grid {
  --highlight-gap: 3.5rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--highlight-gap) * 2)) / 3);
  grid-template-columns: none;
  gap: var(--highlight-gap);
  transition: transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.highlight-card {
  min-width: 0;
}

.highlight-nav {
  position: absolute;
  top: 105px;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #f97316;
  cursor: pointer;
}

.highlight-nav:hover {
  color: #ea580c;
}

.highlight-nav[hidden] {
  display: none;
}

.highlight-nav svg {
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.highlight-nav--prev {
  left: -0.75rem;
}

.highlight-nav--next {
  right: -0.75rem;
}

.highlight-indicators {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2.5rem;
}

.highlight-indicators button {
  width: 2.25rem;
  height: 0.125rem;
  border: 0;
  background: #d4d4d8;
  padding: 0;
  cursor: pointer;
}

.highlight-indicators button.is-active {
  background: #f97316;
}

.site-footer__top,
.site-footer__bottom-inner {
  max-width: 1880px;
}

.site-footer__top {
  gap: 3.5rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.footer-block h2 {
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-block__links {
  padding-top: 1.25rem;
}

.footer-block__links--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 0.25rem;
}

.footer-block a {
  margin-top: 0.25rem;
  font-weight: 500;
}

.site-footer__bottom-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-footer__left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-cta:hover {
  border-color: #f28d35;
  color: #f28d35;
}

@media (min-width: 640px) {
  .section,
  .section--highlights {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .section,
  .section--highlights {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .home-info {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 960px) {
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .footer-block__links--cols {
    grid-template-columns: 1fr;
  }

  .site-footer__left {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-footer__top {
    display: none;
  }

  .site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.25rem 3rem 2.75rem;
  }

  .site-footer__left {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .site-footer__brand {
    max-width: none;
  }

  .site-footer__brand .logo-mark--large {
    gap: 0.875rem;
    padding: 0;
  }

  .site-footer__brand .logo-mark--large .logo-mark__icon {
    width: 56px;
    height: 56px;
  }

  .site-footer__brand .logo-mark__title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .site-footer__brand .logo-mark__subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .site-footer__brand p {
    margin-top: 1.5rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.8;
  }

  .footer-legal {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }

  .footer-legal a {
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
  }

  .footer-cta {
    width: 100%;
    min-height: 38px;
    padding: 0 1rem;
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
  }

  .footer-social {
    justify-items: start;
    gap: 1.25rem;
  }

  .footer-social__icons {
    gap: 0.75rem;
  }

  .footer-social__icons a {
    width: 2.5rem;
    height: 2.5rem;
  }

  .footer-social p {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.6;
  }

  .hero-video__copy {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-video h1 {
    font-size: 2.25rem;
  }

  .hero-video p:not(.hero-video__eyebrow) {
    font-size: 1rem;
    line-height: 2rem;
  }

  .highlight-grid {
    --highlight-gap: 2rem;
    grid-auto-columns: 100%;
  }

  .highlight-nav {
    position: static;
    display: inline-flex;
    border: 1px solid #fed7aa;
    margin-top: 1.5rem;
  }

  .highlight-nav--next {
    margin-left: 0.75rem;
  }

  .home-panel .section-heading,
  .news-row,
  .faq-item__button,
  .faq-item__panel > p,
  .home-news-actions,
  .home-more-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .news-row {
    gap: 0.5rem;
  }

  .news-row > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .news-row time {
    margin-top: 0;
  }
}

/* Standalone services page typography aligned with the home services section. */
.page-intro--services,
.services-section--page,
.services-process-section {
  border-bottom: 1px solid #ffedd5;
}

.page-intro--services {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #fff;
}

.page-intro--services .container-shell,
.services-section--page .container-shell,
.services-process-section .container-shell {
  max-width: var(--content-width);
}

.page-intro--services h1 {
  max-width: 56rem;
  margin-top: 0.75rem;
  color: #000;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.page-intro--services p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.services-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.services-support-panel {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.services-support-panel h2 {
  margin-top: 0.75rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.375;
}

.services-support-panel p:not(.eyebrow) {
  margin-top: 1rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.services-section--page,
.services-process-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.services-section--page .section-heading,
.services-process-section .section-heading {
  max-width: 48rem;
}

.services-section--page .section-heading h2,
.services-process-section .section-heading h2 {
  margin-top: 0.25rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.services-section--page .section-heading p:not(.eyebrow),
.services-process-section .section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.service-grid--page,
.services-process-section .process-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-grid--page .service-card {
  padding: 1.5rem;
}

.service-grid--page .service-card h3 {
  margin-top: 1.25rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75rem;
}

.service-grid--page .service-card p,
.service-grid--page .service-card li,
.services-process-section .process-card p {
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.services-process-section .process-card {
  border-color: #ffedd5;
  background: #fff;
  padding: 1.5rem;
}

.services-process-section .process-card h3 {
  margin-top: 0;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75rem;
}

@media (min-width: 640px) {
  .page-intro--services {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-intro--services h1 {
    font-size: 3rem;
  }

  .page-intro--services p:not(.eyebrow) {
    font-size: 1.125rem;
  }

  .services-section--page,
  .services-process-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .services-section--page .section-heading h2,
  .services-process-section .section-heading h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .service-grid--page,
  .services-process-section .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-intro--services {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .page-intro--services h1 {
    font-size: 3.75rem;
  }

  .services-hero__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
  }

  .services-section--page,
  .services-process-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1280px) {
  .services-process-section .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Standalone Works, FAQ, and News pages aligned with the home typography. */
.page-intro--works,
.page-intro--faq,
.page-intro--news,
.works-section--page,
.faq-section--page,
.news-featured-section,
.news-archive-section {
  border-bottom: 1px solid #ffedd5;
}

.page-intro--works,
.page-intro--faq,
.page-intro--news {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #fff;
}

.page-intro--works .container-shell,
.page-intro--faq .container-shell,
.page-intro--news .container-shell,
.works-section--page .container-shell,
.faq-section--page .container-shell,
.news-featured-section .container-shell,
.news-archive-section .container-shell {
  max-width: var(--content-width);
}

.works-section--page .container-shell {
  max-width: var(--wide-content-width);
}

.page-intro--works h1,
.page-intro--faq h1,
.page-intro--news h1 {
  max-width: 56rem;
  margin-top: 0.75rem;
  color: #000;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.page-intro--works p:not(.eyebrow),
.page-intro--faq p:not(.eyebrow),
.page-intro--news p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.works-hero__grid {
  display: grid;
  gap: 0;
  align-items: center;
}

.works-hero__copy {
  min-width: 0;
}

.works-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  margin: 0;
  border: 1px solid rgba(251, 146, 60, 0.22);
  background: #fff7ed;
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 90% 100%, 0 100%, 0 16%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.works-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.46) 40%, rgba(2, 6, 23, 0.06) 72%);
  pointer-events: none;
}

.works-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.works-hero__content {
  position: absolute;
  left: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 2;
  max-width: min(64rem, 84%);
  margin: 0;
}

.works-hero__catch {
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.4rem, 4.8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.18;
  text-shadow: 0 8px 28px rgba(2, 6, 23, 0.4);
}

figcaption.works-hero__catch {
  display: none;
}

.faq-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-support-panel {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.faq-support-panel h2 {
  margin-top: 0.75rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.375;
}

.faq-support-panel p:not(.eyebrow) {
  margin-top: 1rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.works-section--page,
.faq-section--page,
.news-featured-section,
.news-archive-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.faq-content-grid,
.news-archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-content-grid {
  gap: 3rem;
}

.faq-section--page .section-heading,
.news-archive-section .section-heading {
  max-width: 48rem;
}

.faq-section--page .section-heading h2,
.news-archive-section .section-heading h2 {
  margin-top: 0.25rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.faq-section--page .section-heading p:not(.eyebrow),
.news-archive-section .section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.works-section--page .work-filter {
  margin-bottom: 2rem;
  gap: 0.75rem;
}

.works-section--page .work-filter button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

.works-section--page .work-grid--archive {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.works-section--page .work-card {
  padding: 1.5rem;
}

.works-section--page .work-card--archive {
  overflow: hidden;
  padding: 0;
}

.works-section--page .work-card--archive .work-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: #fff7ed;
}

.works-section--page .work-card--archive .work-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.works-section--page .work-card--archive:hover .work-card__image img {
  transform: scale(1.04);
}

.works-section--page .work-card--archive .work-card__body {
  padding: 1.25rem;
}

.works-section--page .badge {
  font-size: 0.75rem;
  font-weight: 700;
}

.work-card__date {
  display: block;
  margin-top: 0.5rem;
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 700;
}

.works-section--page .work-card h3 {
  margin-top: 0.75rem;
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2rem;
}

.works-section--page .work-card:hover h3 {
  color: #ea580c;
}

.works-section--page .work-card h3 a:hover {
  color: #ea580c;
}

.works-section--page .work-card p,
.works-section--page .work-card__chips span,
.works-section--page .work-card__tags span {
  font-weight: 700;
}

.works-section--page .work-card p {
  color: #52525b;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65rem;
}

.faq-section--page .faq-list {
  border: 1px solid #ffedd5;
  background: #fff;
}

.faq-section--page .faq-item {
  border-bottom: 1px solid #ffedd5;
}

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

.faq-section--page .faq-item__button {
  min-height: 0;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  font-weight: 400;
}

.faq-section--page .faq-item__q {
  width: 2rem;
  height: 2rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.faq-section--page .faq-item__button > span:not(.faq-item__q):not([aria-hidden]) {
  min-width: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2rem;
}

.faq-section--page .faq-item__button:hover > span:not(.faq-item__q):not([aria-hidden]) {
  color: #ea580c;
}

.faq-section--page .faq-item__button > span[aria-hidden] {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #fed7aa;
  color: #f38025;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.faq-section--page .faq-item__panel > p,
.faq-section--page .faq-item__panel-inner {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  border-left: 2px solid #fdba74;
  padding: 0 0 0 1rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.faq-section--page .faq-item.is-open .faq-item__panel > p,
.faq-section--page .faq-item.is-open .faq-item__panel-inner {
  padding-bottom: 1.5rem;
}

.news-featured-section .featured-news {
  border-color: #ffedd5;
}

.news-featured-section .featured-news__body {
  padding: 1.5rem;
}

.news-featured-section .featured-news h2 {
  margin-top: 1.25rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.news-featured-section .featured-news h2:hover {
  color: #ea580c;
}

.news-featured-section .featured-news p {
  margin-top: 1.25rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 2rem;
}

.news-featured-section .news-meta > span,
.news-archive-section .news-meta > span {
  font-weight: 700;
}

.news-featured-section .news-meta time,
.news-archive-section .news-meta time {
  font-weight: 700;
}

.news-featured-section .text-link {
  font-weight: 700;
}

.news-archive-section .news-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.news-archive-section .news-card {
  border-color: #ffedd5;
}

.news-archive-section .news-card__body {
  padding: 1.5rem;
}

.news-archive-section .news-card .text-link {
  min-width: 0;
  justify-content: flex-start;
  background: transparent;
  padding: 0 0 0.25rem;
  color: #ea580c;
}

.news-archive-section .news-card h3 {
  margin-top: 1rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75;
}

.news-archive-section .news-card:hover h3 {
  color: #ea580c;
}

.news-archive-section .news-card p {
  margin-top: 0.75rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.news-archive-section .news-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  align-items: start;
}

.news-archive-main {
  min-width: 0;
}

.news-year-block + .news-year-block {
  margin-top: 3.5rem;
}

.news-year-heading {
  margin: 0 0 1.75rem;
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.news-month-block + .news-month-block {
  margin-top: 2.75rem;
}

.news-month-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.news-month-heading::before {
  width: 3px;
  height: 2.5rem;
  background: #9ca3af;
  content: "";
}

.news-archive-list {
  display: grid;
  border-top: 1px solid #e5e7eb;
}

.news-archive-row {
  display: grid;
  grid-template-columns: 150px 112px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem 0;
}

.news-archive-row__date {
  color: #334155;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
}

.news-archive-row__label {
  display: inline-flex;
  min-width: 5rem;
  align-items: center;
  justify-content: center;
  justify-self: start;
  background: #fb923c;
  padding: 0.25rem 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
}

.news-archive-row__title {
  min-width: 0;
  margin: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7;
}

.news-archive-row__title a {
  color: #0f172a;
  text-decoration: none;
}

.news-archive-row__title a:hover {
  color: #ea580c;
}

.news-archive-sidebar {
  border-top: 1px solid #cbd5e1;
}

.news-archive-sidebar__eyebrow {
  margin: 1rem 0 0;
  color: rgb(var(--color-accent));
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
}

.news-archive-sidebar__title {
  margin: 0.375rem 0 1rem;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.news-archive-year-form {
  display: grid;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 1rem;
}

.news-archive-year-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d7dce3;
  background: #fff;
  padding: 0 2.5rem 0 1rem;
  color: #0f172a;
  cursor: pointer;
  font-weight: 700;
}

.news-archive-year-form select:hover,
.news-archive-year-form select:focus {
  border-color: rgba(243, 128, 37, 0.65);
}

.news-archive-year-form button {
  min-height: 44px;
  border: 0;
  background: rgb(var(--color-sky));
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.news-archive-year-form button:hover {
  background: #ea580c;
}

.news-archive-sidebar__empty {
  margin: 0;
  background: #f8fafc;
  padding: 1rem 1.25rem;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.7;
}

.archive-empty {
  border: 1px solid #ffedd5;
  background: #fff;
  padding: 1.25rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 1.8;
}

.single-entry__meta {
  margin-top: 1.25rem;
}

.single-entry__date {
  margin-top: 1rem;
}

.single-entry__date time {
  color: rgb(var(--color-accent));
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5;
}

.single-entry__content h2,
.single-entry__content h3 {
  margin-top: 2rem;
  color: #000;
  line-height: 1.45;
}

.single-entry__content p {
  margin-top: 1rem;
}

.single-entry__image img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.nav-links a,
.nav-links span {
  border: 1px solid #ffedd5;
  background: #fff;
  padding: 0.5rem 0.75rem;
  color: #52525b;
  font-weight: 700;
}

.nav-links .current,
.nav-links a:hover {
  border-color: #fb923c;
  color: #ea580c;
}

@media (min-width: 640px) {
  .page-intro--works,
  .page-intro--faq,
  .page-intro--news {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-intro--works h1,
  .page-intro--faq h1,
  .page-intro--news h1 {
    font-size: 3rem;
  }

  .page-intro--works p:not(.eyebrow),
  .page-intro--faq p:not(.eyebrow),
  .page-intro--news p:not(.eyebrow) {
    font-size: 1.125rem;
  }

  .works-section--page,
  .faq-section--page,
  .news-featured-section,
  .news-archive-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .faq-section--page .section-heading h2,
  .news-archive-section .section-heading h2 {
    font-size: 1.875rem;
  }

  .news-featured-section .featured-news__body {
    padding: 2rem;
  }

  .news-featured-section .featured-news h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .works-section--page .work-grid--archive,
  .news-archive-section .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-intro--works,
  .page-intro--faq,
  .page-intro--news {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .page-intro--works h1,
  .page-intro--faq h1,
  .page-intro--news h1 {
    font-size: 3.75rem;
  }

  .works-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .works-hero__visual {
    min-height: 34rem;
  }

  .works-hero__visual img {
    min-height: 34rem;
  }

  .faq-hero__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
  }

  .faq-content-grid,
  .news-archive-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .faq-content-grid {
    column-gap: 4rem;
  }

  .works-section--page,
  .faq-section--page,
  .news-featured-section,
  .news-archive-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .works-section--page .work-grid--archive {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .news-featured-section .featured-news__body {
    padding: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .works-section--page .work-grid--archive {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .news-archive-section .news-archive-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .news-archive-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: start;
  }

  .news-archive-row__label {
    width: fit-content;
  }

  .news-archive-sidebar {
    margin-top: 0.5rem;
  }
}

@media (max-width: 560px) {
  .news-archive-row {
    padding: 1rem 0;
  }
}

.single-highlight {
  background: #fff;
}

.single-highlight__article {
  width: min(100% - 2.5rem, 960px);
  margin: 0 auto;
  padding: 6rem 0;
}

.single-highlight__content {
  color: #0f172a;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.single-highlight__content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.single-highlight__content > * + * {
  margin-top: 1.5rem;
}

.single-highlight__content h1,
.single-highlight__content h2,
.single-highlight__content h3 {
  color: #000;
  font-weight: 700;
  line-height: 1.35;
}

.single-highlight__content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.single-highlight__content h2 {
  margin-top: 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.single-highlight__content h3 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.single-highlight__content p {
  color: #334155;
  font-weight: 400;
}

.single-highlight__content img {
  max-width: 100%;
  height: auto;
}

.single-highlight__content figure {
  margin-right: 0;
  margin-left: 0;
}

.single-highlight__content .wp-block-image img {
  width: 100%;
  height: auto;
}

.single-highlight__content a {
  color: #ea580c;
  text-decoration: underline;
}

.single-highlight__content .wp-block-button__link {
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
}


/* ================================================================
   KkTk Award-Level Animation CSS v2
   ================================================================ */

/* --- scroll progress bar --- */
.kktk-progress-bar{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,rgb(var(--color-accent)) 0%,#ffb347 100%);z-index:10001;box-shadow:0 0 10px rgba(var(--color-accent),.6);pointer-events:none;transition:width .1s linear;}

/* --- hero char drop animation --- */
.hero-char{display:inline-block;opacity:0;transform:translateY(110%) rotate(4deg);animation:charDrop .7s cubic-bezier(.16,1,.3,1) both;}
@keyframes charDrop{to{opacity:1;transform:translateY(0) rotate(0deg);}}

/* --- scroll reveal --- */
.kktk-reveal{opacity:0;transform:translateY(48px);transition:opacity .85s cubic-bezier(.16,1,.3,1),transform .85s cubic-bezier(.16,1,.3,1);}
.kktk-reveal.kktk-reveal--left{transform:translateX(-48px);}
.kktk-reveal.kktk-reveal--right{transform:translateX(48px);}
.kktk-reveal.is-visible{opacity:1;transform:none;}

/* --- scroll hint --- */
.kktk-scroll-hint{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:.5rem;pointer-events:none;z-index:10;transition:opacity .4s ease;animation:scrollHintIn 1.2s 1.5s both;}
@keyframes scrollHintIn{from{opacity:0;transform:translateX(-50%) translateY(10px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}
.kktk-scroll-hint__line{display:block;width:1px;height:48px;background:linear-gradient(to bottom,transparent,rgb(var(--color-accent)));animation:scrollLine 1.4s 2s infinite;}
@keyframes scrollLine{0%,100%{opacity:.3;transform:scaleY(.5);transform-origin:top}50%{opacity:1;transform:scaleY(1);transform-origin:top}}
.kktk-scroll-hint__text{font-size:.6rem;letter-spacing:.25em;color:rgba(255,255,255,.6);font-weight:600;}

/* --- header scroll states --- */
.site-header{transition:background .35s ease,transform .35s ease,box-shadow .35s ease;}
.site-header.is-scrolled{background:rgba(10,15,28,.95)!important;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);box-shadow:0 2px 40px rgba(0,0,0,.4);}
.site-header.is-hidden{transform:translateY(-110%);}

/* --- language switcher --- */
.kktk-lang-switcher{display:inline-flex;align-items:center;gap:2px;}
[data-language-toggle]{background:none;border:1px solid transparent;border-radius:3px;padding:3px 7px;font-size:.65rem;font-weight:700;letter-spacing:.1em;color:rgba(255,255,255,.6);cursor:pointer;transition:all .2s ease;text-transform:uppercase;}
[data-language-toggle]:hover,[data-language-toggle].is-active{color:rgb(var(--color-accent));border-color:rgba(var(--color-accent),.4);background:rgba(var(--color-accent),.1);}

/* --- hero video section --- */
[data-hero-section]{position:relative;overflow:hidden;}
.hero-video__stage{position:relative;overflow:hidden;}
.hero-video__media{width:100%;height:100%;object-fit:cover;position:absolute;top:0;left:0;}
.hero-video__content{position:relative;z-index:3;will-change:opacity,transform;}

/* --- tech grid overlay on hero --- */
.hero-video__stage::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(var(--color-accent),.04) 60px),repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(var(--color-accent),.04) 60px);z-index:1;pointer-events:none;}

/* --- service cards --- */
.service-card,.card,.wp-block-group{transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;}
.service-card:hover,.card:hover{transform:translateY(-6px);box-shadow:0 20px 60px rgba(var(--color-accent),.15);}

/* --- section accent lines --- */
.section .section__label,.section [class*="label"]{letter-spacing:.15em;font-weight:700;text-transform:uppercase;font-size:.75rem;color:rgb(var(--color-accent));}

/* --- news/article cards --- */
article.kktk-reveal,article[class*="post"]{transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;}
article.kktk-reveal:hover,article[class*="post"]:hover{transform:translateY(-4px);}

/* --- accent divider --- */
.section__divider,.section hr{border:none;border-top:1px solid rgba(var(--color-accent),.2);margin:2rem 0;}

/* --- FAQ items --- */
details,summary,[class*="faq"]{transition:all .3s ease;}
details[open]{border-left:3px solid rgb(var(--color-accent));padding-left:1rem;}

/* --- about section text reveal --- */
.about-text p,.about__text p{opacity:0;transform:translateY(20px);transition:opacity .7s ease,transform .7s ease;}
.about-text.is-visible p,.about__text.is-visible p{opacity:1;transform:none;}
.about-text.is-visible p:nth-child(2){transition-delay:.15s;}
.about-text.is-visible p:nth-child(3){transition-delay:.3s;}

/* --- glowing CTA buttons --- */
a[class*="btn-primary"],button[class*="btn-primary"],.wp-block-button__link{position:relative;overflow:hidden;}
a[class*="btn-primary"]::after,button[class*="btn-primary"]::after,.wp-block-button__link::after{content:'';position:absolute;inset:0;background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.2) 50%,transparent 100%);transform:translateX(-100%);transition:transform .5s ease;}
a[class*="btn-primary"]:hover::after,button[class*="btn-primary"]:hover::after,.wp-block-button__link:hover::after{transform:translateX(100%);}

/* --- achievement numbers pulse --- */
[class*="number"],[class*="count"],[class*="stat"]{display:inline-block;}
.is-visible [class*="number"],.is-visible [class*="count"],.is-visible [class*="stat"]{animation:numPulse .6s .3s both;}
@keyframes numPulse{0%{transform:scale(.8);opacity:0}70%{transform:scale(1.08)}100%{transform:scale(1);opacity:1}}


/* ================================================================
   KkTk – Enhanced Section & Card Styles v2
   ================================================================ */

/* --- service cards enhanced --- */
.service-card{
  position:relative;
  background:linear-gradient(145deg,#fff 0%,rgba(255,247,237,.5) 100%)!important;
  border:1px solid rgba(var(--color-accent),.15)!important;
  box-shadow:0 4px 24px rgba(0,0,0,.06),0 1px 4px rgba(0,0,0,.04)!important;
  transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s ease,border-color .35s ease!important;
  overflow:hidden;
}
.service-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,rgb(var(--color-accent)),#ffb347);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.service-card:hover::before{transform:scaleX(1);}
.service-card:hover{
  transform:translateY(-8px)!important;
  box-shadow:0 24px 64px rgba(var(--color-accent),.18),0 4px 16px rgba(0,0,0,.08)!important;
  border-color:rgba(var(--color-accent),.3)!important;
}

/* --- section headings --- */
.section-heading,.section-heading--split{position:relative;}
.section-heading .eyebrow,.section-heading--split .eyebrow{
  font-size:.7rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:700;
  color:rgb(var(--color-accent));
  display:inline-flex;
  align-items:center;
  gap:.5em;
}
.section-heading .eyebrow::before,.section-heading--split .eyebrow::before{
  content:'';
  display:inline-block;
  width:24px;height:2px;
  background:rgb(var(--color-accent));
}

/* --- news cards --- */
.news-row article,.news-card{
  transition:transform .3s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
}
.news-row article:hover,.news-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.1);
}

/* --- FAQ panel --- */
.home-panel--faq details{
  border-bottom:1px solid rgba(var(--color-accent),.12);
  padding:.8rem 0;
  transition:all .3s ease;
}
.home-panel--faq details[open]{
  border-left:3px solid rgb(var(--color-accent));
  padding-left:.8rem;
  border-bottom:none;
  margin-bottom:.5rem;
  background:rgba(var(--color-accent),.03);
  border-radius:0 4px 4px 0;
}
.home-panel--faq summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.home-panel--faq summary::after{
  content:'+';
  color:rgb(var(--color-accent));
  font-size:1.2rem;
  font-weight:300;
  transition:transform .3s ease;
}
.home-panel--faq details[open] summary::after{transform:rotate(45deg);}

/* --- rule-panel (service list items) --- */
.rule-panel li,.rule-panel > *{
  position:relative;
  padding-left:1em;
}
.rule-panel li::before,.rule-panel > *::before{
  content:'';
  position:absolute;
  left:0;top:50%;
  width:4px;height:4px;
  background:rgb(var(--color-accent));
  border-radius:50%;
  transform:translateY(-50%);
}

/* --- IntersectionObserver reveal - pre-trigger (faster) --- */
.kktk-reveal{
  transition:opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1)!important;
}

/* --- about section --- */
.home-panel p,.lead{
  line-height:1.9;
  font-size:1.05rem;
}

/* --- footer accent --- */
.footer-block{border-top:3px solid rgb(var(--color-accent));}
