:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --ink: #171717;
  --muted: #5f6773;
  --line: rgba(23, 23, 23, 0.08);
  --accent: #ff8a5b;
  --accent-deep: #d85b2b;
  --accent-soft: #ffe1d6;
  --sun: #ffd85b;
  --pink: #ff9dc9;
  --mint: #bfeedd;
  --violet: #d8c3ff;
  --olive: #2e3440;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 91, 0.09), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 216, 91, 0.16), transparent 20%),
    radial-gradient(circle at 15% 78%, rgba(255, 157, 201, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 42%, #f3f6fa 100%);
}

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

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 18px auto;
}

.shared-header-mount {
  min-height: 96px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: var(--header-left, 16px);
  z-index: 30;
  width: var(--header-width, min(calc(100% - 32px), var(--container)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 249, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-shell {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 10px 22px rgba(216, 91, 43, 0.16);
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
}

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

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

.brand-copy small {
  color: var(--muted);
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px;
  font-size: 0.94rem;
  background: linear-gradient(135deg, rgba(248, 246, 241, 0.92), rgba(255, 241, 233, 0.76));
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(23, 23, 23, 0.03);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 240, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 91, 43, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 24px rgba(15, 23, 42, 0.08);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav > a,
.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 16px;
  color: #3c434d;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-nav > a.is-active,
.nav-link.is-active,
.nav-dropdown-toggle.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #d86a44, #b65435);
  box-shadow: 0 12px 24px rgba(184, 84, 53, 0.26);
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 91, 43, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 240, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(15, 23, 42, 0.05);
}

.nav-lang-toggle__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 14px;
  color: #7a4b37;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-lang-toggle__item:hover,
.nav-lang-toggle__item:focus-visible {
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-lang-toggle__item.is-active {
  background: linear-gradient(135deg, #d86a44, #b65435);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(184, 84, 53, 0.2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding-right: 32px;
  background: rgba(255, 237, 228, 0.78);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: translateY(-30%) rotate(-135deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 18px;
  transform: translateX(-50%);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 15;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 241, 0.98));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-label {
  padding: 6px 12px 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-menu a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.1);
  transform: translateX(2px);
}

.nav-dropdown-menu a.is-active {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.14);
}

.section {
  padding: 50px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 20px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-card h2,
.panel-main h2 {
  margin: 0;
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 2.8rem, 5.7rem);
}

.hero h1 span {
  color: #202020;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 91, 0.55);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.12em;
}

.hero-text {
  max-width: 54ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cred-row span {
  padding: 10px 14px;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.cred-row span:nth-child(1) {
  border-color: rgba(255, 138, 91, 0.22);
  background: rgba(255, 225, 214, 0.82);
}

.cred-row span:nth-child(2) {
  border-color: rgba(255, 216, 91, 0.3);
  background: rgba(255, 246, 204, 0.92);
  color: #806100;
}

.cred-row span:nth-child(3) {
  border-color: rgba(255, 157, 201, 0.24);
  background: rgba(255, 238, 246, 0.96);
  color: #ba427d;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff9f4;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 30px rgba(216, 91, 43, 0.2);
  font-size: 15px;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(216, 91, 43, 0.18);
  background: rgba(255, 248, 243, 0.96);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.panel-card,
.about-card,
.service-card,
.project-card,
.timeline-item,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 20px -12px -18px 18%;
  border-radius: var(--radius-xl);
  background: #cc7856;
  z-index: -1;
}

.hero-asset-card {
  position: relative;
  overflow: visible;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.1);
}

.hero-asset-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.hero-asset-badge {
  position: absolute;
  right: 15px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 330px;
  padding: 14px 16px;
  border: 1px solid rgba(204, 120, 86, 0.28);
  border-radius: 18px;
  background: rgba(255, 252, 249, 0.96);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.16),
    0 0 0 rgba(255, 138, 91, 0);
  animation: heroBadgeSticker 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform: rotate(-4deg);
  transform-origin: center center;
  isolation: isolate;
  z-index: 3;
}

.hero-asset-badge::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  background: radial-gradient(
    circle,
    rgba(255, 138, 91, 0.24) 0%,
    rgba(255, 138, 91, 0.11) 36%,
    rgba(255, 138, 91, 0) 72%
  );
  filter: blur(10px);
  opacity: 0.78;
  z-index: -2;
  animation: heroBadgeGlow 4.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-asset-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-asset-badge span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.preview-topbar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
  background: rgba(248, 250, 252, 0.92);
}

.preview-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 71, 176, 0.22);
}

.project-tag {
  color: var(--accent-deep);
  font-weight: 700;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 2.1rem, 3.3rem);
}

.section-heading p:last-child {
  margin-top: 14px;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.intro-main {
  display: grid;
  grid-template-columns: minmax(228px, 0.8fr) 1fr;
  gap: 18px;
  align-items: stretch;
}

.intro-portrait-slider {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.intro-portrait-stage {
  position: relative;
}

.intro-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  min-height: 258px;
}

.intro-portrait-track {
  display: flex;
  width: 100%;
  transition: transform 420ms ease;
  will-change: transform;
}

.intro-portrait-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.96), rgba(246, 237, 227, 0.92));
}

.intro-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 258px;
  object-fit: cover;
  object-position: center top;
}

.intro-portrait-slide-primary img {
  object-position: center 12%;
}

.intro-portrait-slide-secondary img {
  object-position: center 28%;
}

.intro-portrait-slide-card {
  padding: 26px;
}

.intro-portrait-slide-card img {
  object-fit: contain;
  object-position: center;
  min-height: 258px;
  transform: none;
  border-radius: 10px;
}

.intro-slider-footer {
  display: flex;
  justify-content: center;
  margin-top: -2px;
}

.intro-slider-button {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 14px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(60, 67, 77, 0.84);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: none;
  box-shadow:
    0 10px 20px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  appearance: none;
  -webkit-appearance: none;
  opacity: 0.92;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.intro-slider-button:not(:disabled):hover,
.intro-slider-button:not(:disabled):focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-deep);
  box-shadow:
    0 14px 24px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  opacity: 1;
}

.intro-slider-button-prev {
  left: 14px;
}

.intro-slider-button-next {
  right: 14px;
}

.intro-slider-button span {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
}

.intro-slider-footer .slider-dot {
  width: 7px;
  height: 7px;
  background: rgba(60, 67, 77, 0.22);
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.intro-slider-footer .slider-dot.is-active {
  width: 18px;
  background: rgba(216, 91, 43, 0.82);
  transform: scale(1.02);
}

.intro-portrait-slider.is-single-slide .intro-slider-button,
.intro-portrait-slider.is-single-slide .intro-slider-footer {
  display: none;
}

.intro-label {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-copy h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.15;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.intro-copy p {
  margin: 0 0 14px;
  max-width: 50ch;
}

.intro-summary-card {
  position: relative;
  margin-top: 4px;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 251, 248, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.intro-summary-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), #ffc06b);
}

.intro-summary-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 225, 214, 0.9);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-summary {
  margin: 0;
  color: #3f4652;
  font-size: 0.98rem;
  line-height: 1.75;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.intro-point {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.82);
}

.intro-point:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 225, 214, 0.76), rgba(255, 255, 255, 0.94));
}

.intro-point:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 247, 214, 0.84), rgba(255, 255, 255, 0.94));
}

.intro-point:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 241, 247, 0.72), rgba(255, 255, 255, 0.94));
}

.intro-point:nth-child(4) {
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.78), rgba(255, 255, 255, 0.94));
}

.intro-point-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.intro-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 1rem;
}

.intro-point span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.why-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-work-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.65fr);
  align-items: start;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.why-work-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -28px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 91, 0.12), rgba(255, 138, 91, 0));
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.why-work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 91, 43, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.why-work-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.why-work-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
}

.why-work-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.why-work-card:hover .why-work-index {
  transform: translateY(-2px);
  background: rgba(255, 244, 238, 0.95);
  border-color: rgba(216, 91, 43, 0.14);
  box-shadow: 0 10px 20px rgba(216, 91, 43, 0.12);
}

.why-work-media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  align-self: center;
}

.why-work-art {
  display: block;
  width: min(100%, 148px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.why-work-card:hover .why-work-art {
  transform: translateY(-4px) rotate(-1.5deg) scale(1.03);
  filter: saturate(1.05);
}

.why-work-card:nth-child(1) {
  background: #ffffff;
}

.why-work-card:nth-child(2) {
  background: #ffffff;
}

.why-work-card:nth-child(3) {
  background: #ffffff;
}

.why-work-card:nth-child(4) {
  background: #ffffff;
}

.why-work-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.35;
}

.why-work-card p {
  margin: 0;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.why-work-grid .why-work-card:nth-child(1) {
  transition-delay: 0ms;
}

.why-work-grid .why-work-card:nth-child(2) {
  transition-delay: 30ms;
}

.why-work-grid .why-work-card:nth-child(3) {
  transition-delay: 60ms;
}

.why-work-grid .why-work-card:nth-child(4) {
  transition-delay: 90ms;
}

.about-grid,
.service-grid,
.journal-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.service-grid-five .service-card {
  grid-column: span 2;
}

.service-grid-five .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-grid-five .service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.services-overview-page .section:first-child {
  padding-top: 62px;
}

.services-overview-hero-section {
  padding-top: 48px;
}

.services-overview-hero {
  display: block;
}

.services-overview-copy {
  position: relative;
  padding: 40px 42px 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 216, 91, 0.2), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(255, 157, 201, 0.14), transparent 24%),
    radial-gradient(circle at 10% 14%, rgba(255, 138, 91, 0.1), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.98));
}

.services-overview-copy::before,
.services-overview-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-overview-copy::before {
  inset: auto 0 0 auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 91, 43, 0.08), rgba(216, 91, 43, 0));
  transform: translate(28%, 34%);
}

.services-overview-copy::after {
  left: 42px;
  right: 42px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 91, 43, 0.22), rgba(255, 157, 201, 0.16), rgba(216, 91, 43, 0));
}

.services-overview-copy > * {
  position: relative;
  z-index: 1;
}

.services-overview-copy p:last-of-type {
  max-width: 58ch;
}

.services-overview-copy h1 {
  margin: 0;
  font-family: "Sora", "Be Vietnam Pro", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 2.4rem, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-overview-copy p {
  margin-top: 16px;
}

.services-overview-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.services-overview-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.services-overview-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 6px rgba(255, 138, 91, 0.12);
  flex-shrink: 0;
}

.services-overview-visual {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
}

.services-overview-visual::before,
.services-overview-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.services-overview-visual::before {
  right: -44px;
  top: -52px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 216, 91, 0.2), rgba(255, 216, 91, 0));
}

.services-overview-visual::after {
  left: -46px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 157, 201, 0.14), rgba(255, 157, 201, 0));
}

.services-overview-visual > * {
  position: relative;
  z-index: 1;
}

.services-overview-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-overview-stack .service-card {
  min-height: 0;
  padding: 18px 18px 20px;
}

.services-overview-stack .service-card span {
  margin-bottom: 16px;
}

.services-overview-stack .service-card h3 {
  font-size: 1rem;
}

.services-overview-stack .service-card p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.services-overview-stack .service-card:nth-child(5) {
  grid-column: 1 / -1;
}

.services-overview-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-overview-process .timeline-item {
  padding: 22px 22px 20px;
}

.services-overview-process strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.services-overview-process p {
  margin: 0;
}

.services-overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

.about-card,
.service-card,
.journal-card,
.project-card {
  padding: 22px;
}

.about-card h3,
.service-card h3,
.journal-card h3,
.project-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.journal-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.journal-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 225, 214, 0.92);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journal-card p {
  margin-bottom: 18px;
}

.journal-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.faq-section {
  padding-top: 82px;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.faq-intro,
.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.faq-intro {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.faq-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
}

.faq-visual img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}

.faq-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 138, 91, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.94), rgba(255, 255, 255, 0.96));
}

.faq-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.faq-note p {
  margin: 0;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-deep);
  font-size: 1.35rem;
  font-weight: 500;
}

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

.faq-item p {
  margin: 0;
  padding: 15px 22px 22px;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--olive);
  font-weight: 800;
}

.service-art {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  object-fit: contain;
}

.service-card:nth-child(1) {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(216, 91, 43, 0.18);
}

.service-card:nth-child(2) {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 216, 91, 0.3);
}

.service-card:nth-child(3) {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(23, 23, 23, 0.08);
}

.service-card:nth-child(4) {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 157, 201, 0.26);
}

.service-card:nth-child(5) {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(216, 91, 43, 0.18);
}

.service-card:nth-child(6) {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 216, 91, 0.3);
}

.project-card ul {
  margin-top: 16px;
}

.project-slider-shell {
  display: grid;
  gap: 18px;
}

.project-slider-stage {
  position: relative;
  padding: 0 64px;
}

.project-slider {
  overflow: hidden;
}

.project-grid {
  display: flex;
  gap: 18px;
  transition: transform 420ms ease;
  will-change: transform;
}

.project-grid .project-card {
  flex: 0 0 calc((100% - 18px) / 2);
  min-width: 0;
  box-shadow: none;
}

.projects-page {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.contact-page {
  display: grid;
  gap: 0;
}

.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.contact-page-intro h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.contact-page-lead {
  max-width: 58ch;
}

.contact-form-card {
  padding: 30px;
}

.contact-form-heading {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

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

.contact-form-field {
  display: grid;
  gap: 10px;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-field label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form-required {
  color: var(--accent-deep);
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-field input:focus-visible,
.contact-form-field select:focus-visible,
.contact-form-field textarea:focus-visible {
  outline: none;
  border-color: rgba(216, 91, 43, 0.3);
  box-shadow: 0 0 0 4px rgba(255, 138, 91, 0.1);
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-feedback {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.recaptcha-disclosure {
  margin: 12px 0 0;
  color: rgba(23, 23, 23, 0.5);
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-page-aside h2,
.contact-page-note h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  line-height: 1.08;
}

.contact-page-points {
  margin-top: 18px;
}

.contact-page-points li + li {
  margin-top: 10px;
}

.legal-page,
.error-page {
  padding-bottom: 56px;
}

.legal-hero-card,
.legal-sidebar-card,
.legal-card,
.error-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.legal-hero-card,
.legal-sidebar-card,
.legal-card,
.error-card {
  padding: 28px;
}

.legal-hero-card {
  max-width: 860px;
}

.legal-lead {
  max-width: 64ch;
  margin-top: 16px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
}

.legal-toc {
  display: grid;
  gap: 10px;
}

.legal-toc a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 23, 23, 0.06);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  transform: translateY(-1px);
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.16);
}

.legal-content {
  display: grid;
  gap: 20px;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.15;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 14px;
}

.legal-list {
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 10px;
}

.error-page {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.error-card {
  max-width: 760px;
}

.error-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.error-lead {
  max-width: 54ch;
  margin-top: 18px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.projects-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.projects-hero::before,
.projects-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.projects-hero::before {
  top: 135px;
  right: 44px;
  width: 280px;
  height: 280px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 240, 0.42)),
    radial-gradient(circle at 28% 28%, rgba(216, 91, 43, 0.16), transparent 56%);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transform: rotate(9deg);
}

.projects-hero::after {
  right: 114px;
  bottom: 3px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(216, 91, 43, 0.18), rgba(216, 91, 43, 0.05) 42%, transparent 72%);
  filter: blur(2px);
}

.projects-hero-copy,
.projects-hero-panel,
.projects-note-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.projects-hero-copy,
.projects-hero-panel,
.projects-note-card {
  padding: 28px;
}

.projects-hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(100%, 760px);
}

.projects-hero-copy::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -181px;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  border: 1px solid rgba(216, 91, 43, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 248, 243, 0.16)),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 24px,
      rgba(216, 91, 43, 0.08) 24px,
      rgba(216, 91, 43, 0.08) 25px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 24px,
      rgba(216, 91, 43, 0.08) 24px,
      rgba(216, 91, 43, 0.08) 25px
    );
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
  transform: rotate(-8deg);
}

.projects-hero-text {
  max-width: 60ch;
}

.projects-hero-panel {
  position: relative;
  overflow: hidden;
}

.projects-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 91, 43, 0.14), transparent 70%);
}

.projects-hero-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.projects-stat-card {
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.projects-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.projects-stat-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

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

.project-archive-grid .project-card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-archive-grid .project-card:hover,
.project-archive-grid .project-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(216, 91, 43, 0.16);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.1);
}

.projects-note-section {
  padding-bottom: 32px;
}

.projects-note-card {
  max-width: 820px;
}

.project-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.14);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--accent-deep);
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.slider-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.slider-button:not(:disabled):hover,
.slider-button:not(:disabled):focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 91, 43, 0.14);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.slider-button-floating {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  border: 0;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: #fff9f4;
  box-shadow: 0 18px 34px rgba(216, 91, 43, 0.26);
  transform: translateY(-50%);
}

.slider-button-floating:not(:disabled):hover,
.slider-button-floating:not(:disabled):focus-visible {
  transform: translateY(calc(-50% - 2px)) scale(1.03);
  box-shadow: 0 22px 38px rgba(216, 91, 43, 0.32);
}

.slider-button-floating span {
  font-size: 2rem;
  line-height: 1;
}

.slider-button-prev {
  left: 0;
}

.slider-button-next {
  right: 0;
}

.slider-hint {
  color: var(--muted);
  font-size: 0.92rem;
}

.project-actions {
  margin-top: 18px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-2px);
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.16);
  background: rgba(255, 248, 243, 0.98);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.project-preview {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.project-media-link {
  display: block;
}

.project-media-link:hover .project-preview,
.project-media-link:focus-visible .project-preview {
  border-color: rgba(216, 91, 43, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 28px rgba(15, 23, 42, 0.08);
}

.project-thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.project-title-link {
  transition: color 180ms ease;
}

.project-title-link:hover,
.project-title-link:focus-visible {
  color: var(--accent-deep);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.timeline-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.timeline-item {
  padding: 20px 18px;
}

.timeline-item:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 225, 214, 0.76), rgba(255, 255, 255, 0.94));
}

.timeline-item:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 247, 214, 0.82), rgba(255, 255, 255, 0.94));
}

.timeline-item:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
}

.timeline-item:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 241, 247, 0.76), rgba(255, 255, 255, 0.94));
}

.timeline-item:nth-child(5) {
  background: linear-gradient(180deg, rgba(255, 248, 224, 0.78), rgba(255, 255, 255, 0.94));
}

.timeline-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.process-page {
  display: grid;
  gap: 0;
}

.process-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.process-hero-copy,
.process-hero-visual {
  position: relative;
}

.process-hero-copy {
  padding: 32px;
  max-width: 860px;
}

.process-hero-copy h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.process-hero-text {
  max-width: 60ch;
  margin-top: 18px;
}

.process-hero-visual {
  display: grid;
  gap: 18px;
}

.process-hero-card,
.process-mini-card,
.process-principle-card,
.process-step-card,
.process-assurance-card,
.process-risk-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.process-hero-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.98), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.94);
}

.process-hero-card-diagram {
  position: relative;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 138, 91, 0.16), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(255, 216, 91, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border: 1px solid rgba(23, 23, 23, 0.05);
}

.process-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 1;
}

.process-node-start {
  top: 28px;
  left: 26px;
}

.process-node-scope {
  top: 28px;
  right: 26px;
}

.process-node-build {
  left: 26px;
  bottom: 28px;
}

.process-node-launch {
  right: 26px;
  bottom: 28px;
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.16);
  background: rgba(255, 247, 242, 0.96);
}

.process-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(216, 91, 43, 0.38), rgba(216, 91, 43, 0.08));
  border-radius: 999px;
}

.process-line-horizontal {
  top: 48px;
  left: 112px;
  right: 112px;
  height: 2px;
}

.process-line-vertical {
  top: 66px;
  bottom: 66px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(216, 91, 43, 0.08), rgba(216, 91, 43, 0.38), rgba(216, 91, 43, 0.1));
}

.process-line-diagonal {
  left: 74px;
  right: 74px;
  bottom: 48px;
  height: 2px;
}

.process-hero-card-media,
.process-principle-media,
.process-step-media {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(250, 251, 252, 0.92);
}

.process-hero-card-media img,
.process-principle-media img,
.process-step-media img,
.process-mini-card img,
.process-assurance-card img {
  display: block;
  width: 100%;
  height: auto;
}

.process-hero-card-body span {
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-hero-card-body strong {
  display: block;
  margin-top: 10px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.process-hero-card-body p {
  margin-bottom: 0;
}

.process-hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  align-items: center;
}

.process-mini-card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.9)),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.process-mini-card-icon span,
.process-mini-card-icon::before,
.process-mini-card-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.process-mini-card-icon-scope span {
  inset: 16px;
  border: 2px solid rgba(216, 91, 43, 0.7);
  border-radius: 12px;
}

.process-mini-card-icon-scope::before {
  top: 28px;
  left: 11px;
  right: 11px;
  height: 2px;
  background: rgba(216, 91, 43, 0.26);
}

.process-mini-card-icon-direct span {
  top: 17px;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(216, 91, 43, 0.8);
  box-shadow:
    18px 0 0 rgba(23, 23, 23, 0.14),
    9px 13px 0 rgba(255, 216, 91, 0.96);
}

.process-mini-card-icon-direct::before {
  top: 22px;
  left: 22px;
  width: 16px;
  height: 2px;
  background: rgba(216, 91, 43, 0.42);
  transform: rotate(-8deg);
}

.process-mini-card-icon-direct::after {
  top: 28px;
  left: 24px;
  width: 12px;
  height: 2px;
  background: rgba(216, 91, 43, 0.42);
  transform: rotate(42deg);
}

.process-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.process-mini-card-copy {
  min-width: 0;
}

.process-mini-card p,
.process-assurance-card p,
.process-risk-card p {
  margin: 0;
}

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

.process-principle-card {
  padding: 18px;
}

.process-principle-card h3,
.process-assurance-card h3,
.process-risk-card h3 {
  margin: 16px 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.process-roadmap {
  position: relative;
  display: grid;
  gap: 16px;
  isolation: isolate;
}

.process-roadmap::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(216, 91, 43, 0.2), rgba(216, 91, 43, 0.42), rgba(216, 91, 43, 0.12));
  border-radius: 999px;
  transform-origin: top center;
  z-index: 0;
}

.process-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 24px 24px 24px 0;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 1;
}

.process-step-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 28px;
  width: 14px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 247, 242, 0.92), rgba(255, 255, 255, 0.02));
  transform: translateX(-50%);
  z-index: 0;
}

.process-step-card:last-child::before {
  display: none;
}

.process-step-index {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 138, 91, 0.18), rgba(216, 91, 43, 0.12));
  color: var(--accent-deep);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow:
    0 0 0 10px rgba(255, 250, 246, 0.92),
    0 16px 30px rgba(216, 91, 43, 0.12);
}

.process-step-index::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.96);
  z-index: -1;
}

.process-step-body {
  position: relative;
  z-index: 2;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.94));
  box-shadow: var(--shadow);
}

.process-step-kicker {
  margin: 2px 0 10px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step-body h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.process-step-body p {
  margin-top: 0;
}

.process-step-body ul {
  margin-top: 14px;
}

.process-step-body li + li {
  margin-top: 8px;
}

.process-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.process-step-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.process-step-tags span:nth-child(1) {
  border-color: rgba(216, 91, 43, 0.16);
  background: rgba(255, 247, 242, 0.96);
}

.process-step-tags span:nth-child(2) {
  border-color: rgba(255, 216, 91, 0.26);
  background: rgba(255, 251, 231, 0.96);
}

.process-step-tags span:nth-child(3) {
  border-color: rgba(23, 23, 23, 0.08);
  background: rgba(248, 250, 252, 0.98);
}

.process-step-card .process-step-index,
.process-step-card .process-step-body,
.process-step-card .process-step-tags span {
  transition:
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
}

.process-step-card:hover .process-step-index,
.process-step-card:focus-within .process-step-index {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 10px rgba(255, 250, 246, 0.92),
    0 22px 34px rgba(216, 91, 43, 0.16);
}

.process-step-card:hover .process-step-body,
.process-step-card:focus-within .process-step-body {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.process-step-card:hover .process-step-tags span,
.process-step-card:focus-within .process-step-tags span {
  transform: translateY(-2px);
}

.process-roadmap .process-step-card.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.process-roadmap .process-step-card.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.process-roadmap .process-step-card.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.process-roadmap .process-step-card.reveal:nth-child(4) {
  transition-delay: 210ms;
}

.process-roadmap .process-step-card.reveal:nth-child(5) {
  transition-delay: 280ms;
}

.process-roadmap .process-step-card.reveal:nth-child(6) {
  transition-delay: 350ms;
}

.process-roadmap .process-step-card.reveal .process-step-index {
  opacity: 0;
  transform: scale(0.82);
}

.process-roadmap .process-step-card.reveal .process-step-body {
  opacity: 0;
  transform: translateY(20px);
}

.process-roadmap .process-step-card.reveal .process-step-tags span {
  opacity: 0;
  transform: translateY(12px);
}

.process-roadmap .process-step-card.reveal.is-visible .process-step-index {
  opacity: 1;
  transform: scale(1);
  animation: processStepPulse 720ms ease;
}

.process-roadmap .process-step-card.reveal.is-visible .process-step-body {
  opacity: 1;
  transform: translateY(0);
}

.process-roadmap .process-step-card.reveal.is-visible .process-step-tags span {
  opacity: 1;
  transform: translateY(0);
}

.process-roadmap .process-step-card.reveal.is-visible .process-step-tags span:nth-child(1) {
  transition-delay: 120ms;
}

.process-roadmap .process-step-card.reveal.is-visible .process-step-tags span:nth-child(2) {
  transition-delay: 180ms;
}

.process-roadmap .process-step-card.reveal.is-visible .process-step-tags span:nth-child(3) {
  transition-delay: 240ms;
}

@keyframes processStepPulse {
  0% {
    transform: scale(0.82);
    box-shadow:
      0 0 0 0 rgba(255, 250, 246, 0.92),
      0 0 0 rgba(216, 91, 43, 0.02);
  }

  58% {
    transform: scale(1.05);
    box-shadow:
      0 0 0 12px rgba(255, 250, 246, 0.92),
      0 20px 36px rgba(216, 91, 43, 0.14);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 10px rgba(255, 250, 246, 0.92),
      0 16px 30px rgba(216, 91, 43, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-roadmap .process-step-card.reveal .process-step-index,
  .process-roadmap .process-step-card.reveal .process-step-body,
  .process-roadmap .process-step-card.reveal .process-step-tags span {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

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

.process-assurance-card,
.process-risk-card {
  padding: 20px;
}

.process-assurance-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.process-risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-risk-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.94);
}

.process-faq-shell {
  grid-template-columns: minmax(0, 1fr);
}

.process-contact-card {
  grid-template-columns: 0.72fr 1fr 0.88fr;
}

.process-contact-illustration {
  align-items: center;
}

.process-contact-illustration img {
  max-width: 240px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.85fr;
  gap: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
}

.contact-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.contact-illustration img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(216, 91, 43, 0.24);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list strong {
  font-size: 1.05rem;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.site-footer-links a {
  color: inherit;
  text-decoration-color: rgba(23, 23, 23, 0.2);
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--accent-deep);
}

.site-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin: 18px auto 0;
}

.site-footer-links + .site-footer-socials {
  margin-top: 22px;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 91, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #5b5148;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer-social:hover,
.site-footer-social:focus-visible {
  transform: translateY(-2px);
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.28);
  background: rgba(255, 250, 246, 0.98);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(216, 91, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.back-to-top span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 246, 241, 0.96);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.22);
  background: rgba(255, 250, 246, 0.98);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBadgeSticker {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
    box-shadow:
      0 20px 44px rgba(15, 23, 42, 0.16),
      0 0 0 rgba(255, 138, 91, 0);
  }

  16% {
    transform: translate3d(0, -5px, 0) rotate(-5.5deg) scale(1.025);
    box-shadow:
      0 25px 47px rgba(15, 23, 42, 0.18),
      0 0 0 8px rgba(255, 138, 91, 0.07);
  }

  28% {
    transform: translate3d(0, -10px, 0) rotate(1.2deg) scale(1.06);
    box-shadow:
      0 31px 58px rgba(15, 23, 42, 0.21),
      0 0 0 14px rgba(255, 138, 91, 0.11);
  }

  40% {
    transform: translate3d(0, -3px, 0) rotate(-0.8deg) scale(0.985);
  }

  56% {
    transform: translate3d(0, -8px, 0) rotate(0.8deg) scale(1.03);
    box-shadow:
      0 23px 44px rgba(15, 23, 42, 0.17),
      0 0 0 7px rgba(255, 138, 91, 0.07);
  }
}

@keyframes heroBadgeGlow {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.42;
  }

  30% {
    transform: scale(1);
    opacity: 0.76;
  }

  58% {
    transform: scale(0.98);
    opacity: 0.58;
  }
}

@media (max-width: 1000px) {
  #top .hero-copy{
    margin: auto;
  }

  .site-header {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-header-bar {
    gap: 12px;
    width: 100%;
  }

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

  .site-nav {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    border-radius: 26px;
    padding: 10px;
    margin-top: 10px;
  }

  .site-header.is-nav-open .site-nav {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .site-nav > a,
  .nav-link,
  .nav-dropdown-toggle {
    min-height: 42px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-lang-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .nav-lang-toggle__item {
    flex: 1;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  
  .hero,
  .projects-hero,
  .process-hero,
  .contact-page-hero,
  .contact-card,
  .intro-strip,
  .about-grid,
  .timeline,
  .legal-layout {
    grid-template-columns: 1fr;
  }

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

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

  .service-grid-five .service-card,
  .service-grid-five .service-card:nth-child(4),
  .service-grid-five .service-card:nth-child(5) {
    grid-column: auto;
  }

  .services-overview-hero {
    display: block;
  }

  .services-overview-copy {
    padding: 30px 24px 26px;
  }

  .services-overview-stack {
    grid-template-columns: 1fr;
  }

  .services-overview-stack .service-card:nth-child(5) {
    grid-column: auto;
  }

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

  .legal-sidebar {
    position: static;
  }

  .project-grid {
    display: flex;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .process-principles-grid,
  .process-assurance-grid,
  .process-risk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-hero::before {
    display: none;
  }

  .projects-hero::after,
  .projects-hero-copy::after {
    display: none;
  }

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

  .project-slider-stage {
    padding: 0 16px;
  }

  .project-slider-shell {
    overflow: hidden;
  }

  .project-grid {
    gap: 14px;
  }

  .project-grid .project-card {
    flex: 0 0 calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
  }

  .project-card {
    padding: 18px;
  }

  .project-card h3 {
    font-size: 1.04rem;
  }

  .project-preview {
    margin-bottom: 14px;
  }

  .project-thumbnail {
    aspect-ratio: 16 / 10.8;
  }

  .slider-button-prev {
    left: 0;
  }

  .slider-button-next {
    right: 0;
  }

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

  .faq-shell {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-asset-badge {
    position: static;
    max-width: 350px;
    margin-top: 14px;
    transform: none;
    animation-duration: 4.6s;
    justify-content: center;
    margin-top: 0px;
  }

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

  .intro-main {
    grid-template-columns: 0.92fr 1fr;
  }

  .intro-slider-button {
    bottom: 14px;
  }

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

  .why-work-card {
    padding: 26px;
  }
}

@media (max-width: 1080px) {
  .project-slider-stage {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .project-slider {
    min-width: 0;
  }

  .slider-button-floating {
    position: static;
    top: auto;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    transform: none;
  }

  .slider-button-floating:not(:disabled):hover,
  .slider-button-floating:not(:disabled):focus-visible {
    transform: translateY(-2px) scale(1.03);
  }

  .slider-button-prev,
  .slider-button-next {
    left: auto;
    right: auto;
  }

  .project-slider-stage {
    padding: 0;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .button-link {
    width: 100%;
    justify-content: center;
  }

  .section-heading h2,
  .contact-card h2,
  .panel-main h2 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

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

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .project-grid {
    display: flex;
  }

  .project-archive-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-grid .project-card {
    flex-basis: 100%;
  }

  .project-slider-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    overflow: hidden;
  }

  .project-slider-shell {
    gap: 12px;
    overflow: hidden;
  }

  .project-grid {
    gap: 12px;
    align-items: stretch;
  }

  .project-card {
    padding: 16px;
    border-radius: 22px;
  }

  .project-card h3 {
    font-size: 1rem;
    line-height: 1.18;
  }

  .project-card p {
    margin-bottom: 14px;
  }

  .project-card ul {
    margin-top: 12px;
    padding-left: 1rem;
  }

  .project-actions {
    margin-top: 14px;
  }

  .project-preview {
    margin-bottom: 12px;
    border-radius: 16px;
  }

  .project-thumbnail {
    aspect-ratio: 16 / 11;
  }

  .project-slider {
    grid-column: 1 / -1;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 8px;
  }

  .project-grid .project-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .project-card ul li,
  .project-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

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

  .faq-intro {
    padding: 22px;
  }

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

  .service-grid-five {
    grid-template-columns: 1fr;
  }

  .services-overview-hero-section {
    padding-top: 36px;
  }

  .services-overview-copy::after {
    left: 24px;
    right: 24px;
  }

  .services-overview-process {
    grid-template-columns: 1fr;
  }

  .preview-main,
  .preview-side {
    min-height: 110px;
  }

  .intro-main,
  .intro-points {
    grid-template-columns: 1fr;
  }

  .intro-slider-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    max-height: 42px;
  }

  .intro-slider-button-prev {
    left: 12px;
  }

  .intro-slider-button-next {
    right: 12px;
  }

  .why-work-grid {
    grid-template-columns: 1fr;
  }

  .why-work-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
    padding: 22px;
  }

  .why-work-media {
    justify-content: flex-start;
  }

  .why-work-copy {
    align-items: flex-start;
    text-align: left;
  }

  .why-work-art {
    width: min(100%, 132px);
  }

  .intro-point {
    min-height: 0;
  }

  .intro-point-wide {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .process-hero-copy,
  .process-step-card,
  .process-assurance-card,
  .process-risk-card {
    padding: 18px;
  }

  .process-page {
    gap: 8px;
  }

  .process-page .section {
    padding-top: 46px;
  }

  .process-page .section-heading {
    gap: 12px;
  }

  .process-page .section-heading p:not(.eyebrow) {
    max-width: none;
  }

  .legal-hero-card,
  .legal-sidebar-card,
  .legal-card,
  .error-card {
    padding: 22px;
  }

  .process-hero-copy {
    padding: 24px 22px;
  }

  .process-hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    letter-spacing: -0.045em;
  }

  .process-hero-text {
    margin-top: 14px;
  }

  .process-hero-stack,
  .process-principles-grid,
  .process-assurance-grid,
  .process-risk-grid {
    grid-template-columns: 1fr;
  }

  .process-principles-grid,
  .process-assurance-grid,
  .process-risk-grid {
    gap: 14px;
  }

  .process-principle-card {
    padding: 18px;
  }

  .process-principle-card h3,
  .process-assurance-card h3,
  .process-risk-card h3 {
    margin: 14px 0 8px;
    font-size: 1.08rem;
  }

  .process-step-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 0;
    align-items: start;
  }

  .process-step-index {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 0.92rem;
    box-shadow:
      0 0 0 6px rgba(255, 250, 246, 0.92),
      0 12px 22px rgba(216, 91, 43, 0.1);
  }

  .process-step-index::before {
    inset: -8px;
  }

  .process-roadmap {
    gap: 14px;
    padding-left: 0;
  }

  .process-roadmap::before {
    display: block;
    top: 18px;
    bottom: 18px;
    left: 22px;
    width: 2px;
  }

  .process-step-card::before {
    display: none;
  }

  .process-step-body {
    padding: 16px 16px 14px;
    border-radius: 22px;
  }

  .process-step-body h3 {
    font-size: 1.1rem;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .process-step-body ul {
    margin-top: 12px;
    padding-left: 1rem;
  }

  .process-step-body li + li {
    margin-top: 6px;
  }

  .process-assurance-card,
  .process-risk-card {
    padding: 18px;
    border-radius: 22px;
  }

  .process-assurance-card img {
    width: 72px;
    height: 72px;
  }

  .process-faq-shell {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .process-contact-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-contact-illustration {
    justify-content: flex-start;
  }

  .process-contact-illustration img {
    max-width: 180px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .back-to-top span:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.92rem;
  }

  .project-slider-footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .slider-button-floating {
    position: static;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    top: auto;
    transform: none;
  }

  .slider-button-prev {
    left: auto;
    justify-self: start;
  }

  .slider-button-next {
    right: auto;
    justify-self: end;
  }

  .contact-card {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .faq-intro,
  .contact-card,
  .process-hero-copy,
  .process-contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .project-slider-shell {
    gap: 10px;
  }

  .project-slider-stage {
    padding: 0;
    overflow: hidden;
  }

  .project-card {
    padding: 14px;
  }

  .project-card h3 {
    font-size: 0.96rem;
  }

  .project-preview {
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .project-thumbnail {
    aspect-ratio: 16 / 11.5;
  }

  .project-slider {
    overflow: hidden;
    padding-bottom: 6px;
  }

  .project-card ul li,
  .project-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .slider-button-floating {
    position: static;
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    top: auto;
    transform: none;
  }

  .slider-button-floating:not(:disabled):hover,
  .slider-button-floating:not(:disabled):focus-visible {
    transform: translateY(-2px);
  }

  .project-slider-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .slider-button-prev,
  .slider-button-next {
    left: auto;
    right: auto;
  }

  .project-slider {
    min-width: 0;
  }

  .error-page {
    min-height: auto;
  }

  .process-page .section {
    padding-top: 40px;
  }

  .process-hero-copy,
  .process-step-body,
  .process-principle-card,
  .process-assurance-card,
  .process-risk-card,
  .process-contact-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .process-hero-copy h1 {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }

  .process-step-index {
    width: 40px;
    height: 40px;
    font-size: 0.86rem;
    border-radius: 12px;
  }

  .process-roadmap::before {
    left: 20px;
  }

  .process-step-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .process-step-kicker {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .process-step-body h3 {
    font-size: 1.02rem;
  }

  .process-step-body p,
  .process-step-body li {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .process-assurance-card img {
    width: 64px;
    height: 64px;
  }
}

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

  .button,
  .contact-list a,
  .site-nav a::after,
  .reveal,
  .hero-asset-badge {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
