:root {
  color-scheme: dark;
  --page: #080a0d;
  --page-soft: #0c0f13;
  --panel: #101318;
  --panel-2: #151920;
  --surface: #191e26;
  --surface-hover: #202631;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f6f7;
  --muted: #9da5b1;
  --subtle: #747d89;
  --red: #e0262d;
  --red-dark: #b7131b;
  --red-text: #ff6b70;
  --red-soft: rgba(224, 38, 45, 0.12);
  --cream: #f3eecf;
  --green: #56c98f;
  --danger: #ff7479;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: 180ms ease;
  --header-height: 78px;
  --container: 1380px;
}

html[data-theme="light"] {
  color-scheme: light;
  --page: #f6f6f4;
  --page-soft: #efefec;
  --panel: #ffffff;
  --panel-2: #fafaf8;
  --surface: #f1f1ee;
  --surface-hover: #ebebe7;
  --line: rgba(15, 17, 21, 0.1);
  --line-strong: rgba(15, 17, 21, 0.2);
  --text: #111318;
  --muted: #5f6670;
  --subtle: #818792;
  --red-soft: rgba(224, 38, 45, 0.08);
  --red-text: #b7131b;
  --cream: #9d7d21;
  --shadow: 0 30px 80px rgba(24, 27, 32, 0.1);
  --shadow-soft: 0 18px 45px rgba(24, 27, 32, 0.08);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(224, 38, 45, 0.11), transparent 27rem),
    radial-gradient(circle at 92% 86%, rgba(243, 238, 207, 0.05), transparent 26rem),
    var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--ease), color var(--ease);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% 12%, rgba(224, 38, 45, 0.075), transparent 28rem),
    radial-gradient(circle at 92% 86%, rgba(158, 126, 35, 0.06), transparent 28rem),
    var(--page);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

img {
  height: auto;
}

.tracking-pixel {
  display: none;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(224, 38, 45, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: transform var(--ease);
}

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.narrow-container {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
}

.section-compact {
  padding: clamp(60px, 7vw, 92px) 0;
}

.section-divider {
  border-top: 1px solid var(--line);
}

.section-soft {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 34%),
    var(--page-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading-copy {
  min-width: 0;
}

.section-heading .section-text {
  margin-bottom: 3px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  content: "";
  border-radius: 99px;
  background: var(--red);
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-title {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 72px);
}

.section-title em,
.page-title em,
.hero-title em {
  color: var(--cream);
  font-style: normal;
}

.section-text,
.page-lead,
.card-text {
  color: var(--muted);
}

.section-text {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.75;
}

.kicker-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--subtle);
  font-size: 12px;
}

.kicker-note::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px var(--red-soft);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.035), transparent 38%),
    var(--panel-2);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease),
    box-shadow var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background-color: var(--surface-hover);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    color var(--ease),
    opacity var(--ease);
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  background: linear-gradient(145deg, #e62a32, #c7131b);
  color: #fff;
  box-shadow: 0 13px 28px rgba(224, 38, 45, 0.18);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(145deg, #f03139, #d71720);
  box-shadow: 0 16px 34px rgba(224, 38, 45, 0.26);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

html[data-theme="light"] .btn-secondary {
  background: rgba(15, 17, 21, 0.02);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.btn-link svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  transition: transform var(--ease);
}

.btn-link:hover svg {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 3000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background var(--ease), box-shadow var(--ease);
}

html[data-theme="light"] .site-header {
  background: rgba(246, 246, 244, 0.86);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.14);
}

.header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  width: 172px;
  min-width: 132px;
  height: 48px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand-link img {
  width: 152px;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-light-mode {
  display: none;
}

html[data-theme="light"] .brand-logo-dark-mode {
  display: none;
}

html[data-theme="light"] .brand-logo-light-mode {
  display: block;
}

.brand-logo-dark-mode.logo-jpg-fallback {
  mix-blend-mode: screen;
}

.brand-logo-light-mode.logo-jpg-fallback {
  filter: invert(1);
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.theme-switch,
.lang-switch {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.theme-btn,
.lang-link {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.theme-btn svg {
  width: 16px;
  height: 16px;
}

.theme-btn.active,
.lang-link.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}

.lang-link.active {
  background: var(--red);
  color: #fff;
}

.header-cta {
  min-height: 42px;
  padding: 9px 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  background: var(--panel);
  color: var(--text);
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  border-top: 1px solid transparent;
  background: rgba(8, 10, 13, 0.98);
  transition: max-height 260ms ease, border-color var(--ease);
}

html[data-theme="light"] .mobile-menu {
  background: rgba(246, 246, 244, 0.98);
}

.mobile-menu.open {
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
  border-color: var(--line);
}

.mobile-menu-inner {
  width: min(100% - 32px, 680px);
  margin: 0 auto;
  padding: 18px 0 30px;
}

.mobile-menu-links {
  display: grid;
  gap: 7px;
}

.mobile-menu-link {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.mobile-menu-link.active {
  border-color: rgba(224, 38, 45, 0.36);
  background: var(--red-soft);
  color: var(--text);
}

.mobile-menu-link svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.mobile-utilities {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
}

.mobile-utilities .btn {
  flex: 1;
}

.mobile-bottom-nav {
  display: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 68px) 0 28px;
}

.home-hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  min-height: clamp(470px, 58vh, 560px);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

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

.hero-title {
  max-width: 690px;
  font-size: clamp(46px, 4.9vw, 74px);
}

.hero-title .line-accent {
  position: relative;
  display: inline-block;
}

.hero-title .line-accent::after {
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  height: 7px;
  z-index: -1;
  content: "";
  transform: skewX(-14deg);
  background: var(--red);
  opacity: 0.88;
}

.hero-lead {
  max-width: 610px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.creative-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --move-x: 0px;
  --move-y: 0px;
  position: relative;
  min-height: 510px;
  isolation: isolate;
  perspective: 1300px;
}

.creative-stage::before {
  position: absolute;
  z-index: -1;
  inset: 11% 8% 12%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 38, 45, 0.25), rgba(224, 38, 45, 0.03) 54%, transparent 72%);
  filter: blur(42px);
}

.stage-grid {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xl);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.24;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 75%, transparent);
}

.floating-chip,
.design-console,
.website-preview,
.brand-card {
  position: absolute;
  transition: transform 180ms ease-out;
}

.design-console {
  z-index: 3;
  top: 14%;
  right: 8%;
  bottom: 12%;
  left: 7%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: rgba(13, 16, 22, 0.94);
  box-shadow: -30px 44px 90px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.07);
  transform: perspective(1200px) rotateX(calc(7deg + var(--tilt-x))) rotateY(var(--tilt-y)) rotateZ(-7deg) translate3d(var(--move-x), var(--move-y), 0);
  transform-style: preserve-3d;
  backdrop-filter: blur(18px);
}

.design-console::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.06) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: console-shine 6.5s ease-in-out infinite;
  pointer-events: none;
}

.console-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.console-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48505b;
}

.console-bar span:first-child {
  background: var(--red);
}

.console-bar i {
  width: 44%;
  height: 17px;
  margin-left: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.045);
}

.console-layout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 112px;
  min-height: calc(100% - 42px);
}

.console-tools {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding-top: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.console-tools i {
  width: 15px;
  height: 15px;
  border: 1px solid #727b88;
  border-radius: 4px;
}

.console-canvas {
  position: relative;
  margin: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #11151c;
  background-size: 28px 28px;
}

.canvas-line,
.canvas-type {
  position: absolute;
}

.canvas-line {
  z-index: 2;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.line-one {
  top: 28%;
  right: 8%;
  width: 42%;
  transform: rotate(-32deg);
}

.line-two {
  bottom: 23%;
  left: 8%;
  width: 52%;
  transform: rotate(18deg);
}

.canvas-type {
  z-index: 3;
  top: 12%;
  right: 10%;
  display: grid;
  justify-items: end;
  color: #fff;
}

.canvas-type b {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.canvas-type small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.console-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 17px 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.console-panel > i {
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.console-panel .panel-title {
  width: 62%;
  height: 9px;
  background: rgba(243, 238, 207, 0.42);
}

.swatches {
  display: flex;
  gap: 7px;
  margin: 7px 0;
}

.swatches span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--red);
}

.swatches span:nth-child(2) {
  background: var(--cream);
}

.swatches span:nth-child(3) {
  background: #242b35;
}

.website-preview {
  top: 18%;
  left: 11%;
  z-index: 4;
  width: 57%;
  height: 58%;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-5deg) translate3d(var(--move-x), var(--move-y), 0);
  backdrop-filter: blur(14px);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-logo {
  display: flex;
  width: 74px;
  height: 24px;
  align-items: center;
}

.preview-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.preview-logo img.logo-jpg-fallback,
.preview-visual img.logo-jpg-fallback,
.brand-monogram img.logo-jpg-fallback {
  mix-blend-mode: screen;
}

.preview-nav {
  display: flex;
  gap: 7px;
}

.preview-nav span {
  width: 24px;
  height: 3px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
}

.preview-content {
  position: absolute;
  top: 32%;
  left: 8%;
  width: 47%;
}

.preview-label {
  width: 48px;
  height: 5px;
  margin-bottom: 13px;
  border-radius: 20px;
  background: var(--red);
}

.preview-title {
  height: 11px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: #f3eecf;
}

.preview-title-lg {
  width: 100%;
}

.preview-title-sm {
  width: 73%;
}

.preview-text {
  width: 88%;
  height: 4px;
  margin-top: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-text.short {
  width: 62%;
  margin-top: 7px;
}

.preview-button {
  width: 62px;
  height: 22px;
  margin-top: 18px;
  border-radius: 7px;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(224, 38, 45, 0.25);
}

.preview-visual {
  position: absolute;
  right: 7%;
  bottom: 10%;
  display: flex;
  width: 34%;
  height: 54%;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(224, 38, 45, 0.95), rgba(92, 7, 13, 0.95));
}

.preview-visual::before {
  position: absolute;
  top: 16%;
  left: 17%;
  width: 52%;
  height: 52%;
  border: 1px solid rgba(243, 238, 207, 0.65);
  content: "";
  transform: rotate(45deg);
}

.preview-visual img {
  position: absolute;
  top: 16%;
  right: 12%;
  z-index: 2;
  width: 72%;
  height: 30%;
  object-fit: contain;
  object-position: right center;
}

.preview-visual span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.brand-card {
  right: 9%;
  bottom: 9%;
  z-index: 5;
  display: flex;
  width: 37%;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(13, 16, 22, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  transform: rotate(4deg) translate3d(var(--move-x), var(--move-y), 0);
}

.brand-monogram {
  display: flex;
  height: 46px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--red);
}

.brand-monogram img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-info {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.brand-info strong {
  color: #fff;
  font-size: 12px;
}

.brand-info span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-colors {
  display: flex;
  gap: 4px;
}

.brand-colors i {
  width: 8px;
  height: 22px;
  border-radius: 3px;
}

.brand-colors i:nth-child(1) {
  background: var(--red);
}

.brand-colors i:nth-child(2) {
  background: #f3eecf;
}

.brand-colors i:nth-child(3) {
  background: #252a34;
}

.floating-chip {
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(13, 16, 22, 0.88);
  color: #f5f6f7;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.34);
  transform: translate3d(var(--move-x), var(--move-y), 0);
}

.floating-chip span {
  color: #aeb5c0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-type {
  top: 8%;
  left: 0;
  transform: rotate(-7deg) translate3d(var(--move-x), var(--move-y), 0);
}

.chip-type strong {
  color: var(--cream);
  font-size: 20px;
}

.chip-colour {
  right: 0;
  bottom: 18%;
  transform: rotate(5deg) translate3d(var(--move-x), var(--move-y), 0);
}

.chip-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 38, 45, 0.14);
}

.chip-grid {
  bottom: 2%;
  left: 24%;
  display: grid;
  grid-template-columns: repeat(2, 9px);
  gap: 5px;
  transform: rotate(-4deg) translate3d(var(--move-x), var(--move-y), 0);
}

.chip-grid i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--cream);
}

.chip-grid i:nth-child(2),
.chip-grid i:nth-child(3) {
  background: var(--red);
}

.hero-stats-wrap {
  width: min(var(--container), calc(100% - 48px));
  margin: 22px auto 0;
}

.stats-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.016);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.stats-track {
  display: flex;
  width: max-content;
  animation: stats-scroll 34s linear infinite;
}

.stats-marquee:hover .stats-track {
  animation-play-state: paused;
}

.stats-group {
  display: flex;
  gap: 9px;
  padding-right: 9px;
}

.stat-card {
  display: grid;
  width: clamp(210px, 17vw, 268px);
  min-height: 112px;
  place-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel-2);
  text-align: center;
}

.stat-card strong {
  color: var(--text);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.stat-card span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

@keyframes stats-scroll {
  to { transform: translateX(-50%); }
}

@keyframes console-shine {
  0%, 58% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

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

.service-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 300ms ease, border-color var(--ease);
}

.service-card:hover::after {
  transform: scale(1.12);
  border-color: rgba(224, 38, 45, 0.34);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(224, 38, 45, 0.24);
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
}

.card-icon svg {
  width: 21px;
  height: 21px;
}

.service-card h3 {
  max-width: 260px;
  margin: 48px 0 0;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card .card-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-2);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  border-bottom: 1px solid var(--line);
  background: #0d1015;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 460ms ease, filter var(--ease);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.025);
}

.portfolio-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.portfolio-category {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(8, 10, 13, 0.76);
  color: #f3eecf;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.portfolio-content {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 17px 18px;
}

.portfolio-meta {
  color: var(--red-text);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.portfolio-placeholder,
.modal-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  justify-items: center;
  gap: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(224, 38, 45, 0.16), transparent 38%),
    linear-gradient(145deg, #151920, #0c0f13);
  color: var(--text);
}

.portfolio-placeholder span,
.modal-placeholder span {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.portfolio-placeholder small,
.modal-placeholder small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: stretch;
  gap: 18px;
}

.value-intro {
  position: relative;
  min-height: 100%;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
}

.value-intro .section-title {
  font-size: clamp(38px, 4.5vw, 66px);
}

.value-intro::after {
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(224, 38, 45, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(224, 38, 45, 0.035), 0 0 0 68px rgba(224, 38, 45, 0.02);
}

.value-list {
  display: grid;
  gap: 10px;
}

.value-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-2);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.value-item:hover {
  transform: translateX(3px);
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.value-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(224, 38, 45, 0.26);
  border-radius: 11px;
  background: var(--red-soft);
  color: var(--red-text);
  font-size: 10px;
  font-weight: 900;
}

.value-item h3 {
  margin: 1px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.value-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.62;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 30%, rgba(224, 38, 45, 0.22), transparent 23rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 42%),
    #0e1116;
  box-shadow: var(--shadow);
  color: #f5f6f7;
}

.cta-panel::after {
  position: absolute;
  top: -160px;
  right: 4%;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(243, 238, 207, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(243, 238, 207, 0.025), 0 0 0 84px rgba(243, 238, 207, 0.015);
}

.cta-panel .section-title {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: #f5f6f7;
  font-size: clamp(38px, 5.2vw, 74px);
}

.cta-panel .section-text {
  position: relative;
  z-index: 1;
  color: #a8afb9;
}

.cta-panel .btn {
  position: relative;
  z-index: 1;
  min-width: 180px;
}

.contact-preview-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.contact-copy .section-title {
  font-size: clamp(38px, 4.7vw, 68px);
}

.contact-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-mini-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  color: var(--muted);
  font-size: 13px;
}

.contact-mini-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.form-card {
  position: relative;
  padding: clamp(24px, 4vw, 40px);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.consent-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
  color: var(--muted);
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
  cursor: pointer;
}

.consent-label input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.consent-label a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(224, 38, 45, 0.55);
  text-underline-offset: 3px;
}

.required-mark {
  color: var(--red);
}

.control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  background: #0e1116;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

html[data-theme="light"] .control {
  background: #fff;
}

.control::placeholder {
  color: #59616d;
}

html[data-theme="light"] .control::placeholder {
  color: #969ba3;
}

.control:hover {
  border-color: var(--line-strong);
}

.control:focus {
  border-color: rgba(224, 38, 45, 0.78);
  background: #11151b;
  box-shadow: 0 0 0 3px rgba(224, 38, 45, 0.1);
}

html[data-theme="light"] .control:focus {
  background: #fff;
}

textarea.control {
  min-height: 132px;
  resize: vertical;
}

select.control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(243, 238, 207, 0.18);
  border-radius: 9px;
  background: rgba(243, 238, 207, 0.05);
  color: var(--muted);
}

.form-status.show {
  display: block;
}

.form-status.is-success {
  border-color: rgba(86, 201, 143, 0.3);
  background: rgba(86, 201, 143, 0.08);
  color: var(--green);
}

.form-status.is-error {
  border-color: rgba(255, 116, 121, 0.32);
  background: rgba(255, 116, 121, 0.08);
  color: var(--danger);
}

.contact-form.is-submitting {
  pointer-events: none;
}

.contact-form.is-submitting [data-submit-button] {
  opacity: 0.68;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 9vw, 132px) 0 clamp(62px, 7vw, 98px);
  border-bottom: 1px solid var(--line);
}

.inner-hero::before {
  position: absolute;
  top: -46%;
  right: -6%;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(224, 38, 45, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(224, 38, 45, 0.028), 0 0 0 108px rgba(224, 38, 45, 0.016);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 60px;
  align-items: end;
}

.page-title {
  max-width: 980px;
  font-size: clamp(52px, 7.6vw, 112px);
}

.page-lead {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.75;
}

.page-code {
  margin-top: 28px;
  color: var(--subtle);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: 18px;
}

.philosophy-visual {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  padding: 34px;
}

.philosophy-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.philosophy-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.08), rgba(8, 10, 13, 0.94));
}

.philosophy-visual-content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.philosophy-visual-content strong {
  display: block;
  max-width: 520px;
  color: #f5f6f7;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.philosophy-copy {
  display: grid;
  gap: 13px;
}

.philosophy-block {
  padding: 26px;
}

.philosophy-block h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.philosophy-block p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.experience-item {
  padding: clamp(26px, 4vw, 44px);
}

.experience-item + .experience-item {
  border-left: 1px solid var(--line);
}

.experience-item strong {
  display: block;
  color: var(--cream);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.experience-item span {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.discipline-card {
  min-height: 175px;
  padding: 20px;
}

.discipline-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.discipline-card h3 {
  margin: 56px 0 0;
  font-size: 15px;
  line-height: 1.3;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.32fr 0.76fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
}

.service-detail-index {
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-detail h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.service-detail-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 11px 12px 11px 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted);
  font-size: 12px;
}

.feature-list li::before {
  position: absolute;
  top: 17px;
  left: 12px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: rgba(224, 38, 45, 0.4);
  background: var(--red-soft);
  color: var(--text);
}

.portfolio-page-grid .portfolio-card {
  min-height: 0;
}

.portfolio-disclaimer {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-2);
}

.contact-method-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 11px;
  background: var(--red-soft);
  color: var(--red);
}

.contact-method-icon svg {
  width: 19px;
  height: 19px;
}

.contact-method small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  word-break: break-word;
}

.policy-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.policy-summary {
  padding: clamp(24px, 4vw, 38px);
  border-left: 3px solid var(--red);
}

.policy-summary .section-eyebrow {
  margin-bottom: 10px;
}

.policy-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.policy-summary p:first-of-type {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
}

.policy-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.policy-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

.policy-index {
  color: var(--red-text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.policy-card h2 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.policy-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.placeholder-badge {
  display: inline-flex;
  margin-left: 5px;
  padding: 3px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-2);
  color: var(--muted);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--text);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(224, 38, 45, 0.08), transparent 26rem),
    #080a0d;
  color: #f5f6f7;
}

.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 68px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-brand .brand-link {
  width: 182px;
}

.footer-description {
  max-width: 390px;
  margin: 20px 0 0;
  color: #9098a4;
  font-size: 13px;
  line-height: 1.75;
}

.footer-note {
  display: inline-flex;
  margin-top: 24px;
  align-items: center;
  gap: 9px;
  color: #b6bdc6;
  font-size: 11px;
  font-weight: 750;
}

.footer-note::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(224, 38, 45, 0.12);
}

.footer-column h2 {
  margin: 1px 0 20px;
  color: #f3eecf;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links span {
  color: #959da8;
  font-size: 12.5px;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.site-footer .placeholder-badge {
  color: #9da5b1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #747d89;
  font-size: 11px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.modal {
  position: fixed;
  z-index: 6000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.modal.open {
  display: grid;
}

.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.modal-media {
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0c0f13;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.modal-placeholder[hidden],
.modal-media img[hidden] {
  display: none;
}

.modal-content {
  padding: 28px;
}

.modal-content h2 {
  margin: 9px 0 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.modal-content p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  cursor: pointer;
  background: rgba(8, 10, 13, 0.78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 70px 0;
}

.not-found-panel {
  position: relative;
  padding: clamp(42px, 8vw, 88px);
  overflow: hidden;
  text-align: center;
}

.not-found-code {
  color: var(--red);
  font-size: clamp(76px, 16vw, 190px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  opacity: 0.16;
}

.not-found-panel h1 {
  margin: -18px auto 0;
  max-width: 720px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.not-found-panel p {
  max-width: 560px;
  margin: 20px auto 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

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

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .header-actions .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: 46px;
  }

  .creative-stage {
    min-height: 560px;
  }

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

@media (max-width: 1100px) {
  .website-preview {
    left: 8%;
    width: 62%;
  }

  .brand-card {
    right: 6%;
    width: 42%;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav,
  .header-actions > .theme-switch,
  .header-actions > .lang-switch,
  .header-actions > .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: grid;
  }

  .header-inner {
    width: min(100% - 32px, var(--container));
  }

  .brand-link {
    width: 154px;
    height: 44px;
  }

  .brand-link img {
    width: 130px;
  }

  .home-hero {
    min-height: auto;
  }

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

  .hero-grid,
  .inner-hero-grid,
  .philosophy-grid,
  .value-grid,
  .contact-preview-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 820px;
  }

  .creative-stage {
    width: min(720px, 100%);
    min-height: 590px;
    margin: 10px auto 0;
  }

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

  .portfolio-card,
  .portfolio-page-grid .portfolio-card,
  .portfolio-page-grid .portfolio-card:nth-child(1),
  .portfolio-page-grid .portfolio-card:nth-child(7) {
    grid-column: auto;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-panel .btn {
    justify-self: start;
  }

  .contact-copy {
    position: static;
  }

  .service-detail {
    grid-template-columns: 0.22fr 0.78fr;
  }

  .service-detail-copy {
    grid-column: 2;
  }

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

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 768px) {
  .website-preview {
    top: 14%;
    left: 8%;
    width: 68%;
    height: 60%;
    padding: 14px;
    border-radius: 17px;
  }

  .preview-logo {
    width: 56px;
    height: 20px;
  }

  .preview-content {
    left: 7%;
    width: 48%;
  }

  .preview-title {
    height: 8px;
  }

  .preview-text {
    height: 3px;
  }

  .preview-visual {
    right: 6%;
    width: 35%;
  }

  .brand-card {
    right: 5%;
    bottom: 7%;
    width: 47%;
    padding: 10px;
  }

  .brand-monogram {
    height: 38px;
    flex-basis: 46px;
  }

  .brand-info strong {
    font-size: 10px;
  }

  .brand-info span {
    font-size: 7px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  .container,
  .narrow-container,
  .footer-inner {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > .btn,
  .section-heading > .btn-link {
    margin-top: 22px;
  }

  .section-title {
    font-size: clamp(34px, 11.7vw, 52px);
  }

  .section-text {
    font-size: 14px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 2800;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(68px + env(safe-area-inset-bottom, 0px));
    padding: 7px 8px env(safe-area-inset-bottom, 0px);
    border-top: 1px solid var(--line);
    background: rgba(8, 10, 13, 0.94);
    backdrop-filter: blur(18px);
  }

  html[data-theme="light"] .mobile-bottom-nav {
    background: rgba(246, 246, 244, 0.94);
  }

  .mobile-bottom-link {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--subtle);
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    text-align: center;
  }

  .mobile-bottom-link svg {
    width: 18px;
    height: 18px;
  }

  .mobile-bottom-link.active {
    color: var(--text);
  }

  .mobile-bottom-link.active::before {
    position: absolute;
    top: -7px;
    width: 26px;
    height: 2px;
    content: "";
    border-radius: 99px;
    background: var(--red);
  }

  .home-hero {
    padding: 68px 0 74px;
  }

  .hero-title {
    font-size: clamp(46px, 15.5vw, 70px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions .btn {
    flex: 1;
  }

  .creative-stage {
    min-height: 470px;
  }

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

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

  .service-card h3 {
    margin-top: 40px;
  }

  .portfolio-card,
  .portfolio-card.featured,
  .portfolio-page-grid .portfolio-card,
  .portfolio-page-grid .portfolio-card:nth-child(1),
  .portfolio-page-grid .portfolio-card:nth-child(7) {
    grid-column: 1 / -1;
  }

  .value-intro {
    min-height: 420px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .btn {
    width: 100%;
  }

  .inner-hero {
    padding: 70px 0 62px;
  }

  .page-title {
    font-size: clamp(48px, 16.5vw, 78px);
  }

  .inner-hero::before {
    right: -65%;
  }

  .philosophy-visual {
    min-height: 440px;
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .experience-item + .experience-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .service-detail-copy {
    grid-column: auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 460px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-link {
    width: 140px;
  }

  .brand-link img {
    width: 118px;
  }

  .mobile-utilities {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-utilities > div {
    display: flex;
    justify-content: space-between;
  }

  .mobile-utilities .theme-switch,
  .mobile-utilities .lang-switch {
    flex: 1;
  }

  .mobile-utilities .theme-btn,
  .mobile-utilities .lang-link {
    flex: 1;
  }

  .hero-actions {
    flex-direction: column;
  }

  .creative-stage {
    min-height: 390px;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .cta-panel {
    padding: 30px 24px;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .philosophy-visual-content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

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

  .filter-btn:first-child {
    grid-column: 1 / -1;
  }
}

/* Compact app-style mobile interface */
@media (max-width: 720px) {
  :root {
    --header-height: 60px;
    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .container,
  .narrow-container,
  .footer-inner {
    width: min(100% - 24px, var(--container));
  }

  .site-footer {
    display: none;
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: var(--header-height);
    gap: 8px;
  }

  .brand-link {
    width: 110px;
    min-width: 100px;
    height: 36px;
    border-radius: 9px;
  }

  .brand-link img {
    width: 100px;
    max-height: 29px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions > .theme-switch,
  .header-actions > .lang-switch {
    display: inline-flex;
  }

  .header-actions > .header-cta,
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .theme-switch,
  .lang-switch {
    height: 34px;
    gap: 1px;
    padding: 2px;
    border-radius: 9px;
  }

  .theme-btn,
  .lang-link {
    min-width: 26px;
    height: 28px;
    border-radius: 7px;
    font-size: 9px;
  }

  .theme-btn svg {
    width: 14px;
    height: 14px;
  }

  .section {
    padding: 48px 0;
  }

  .section-compact {
    padding: 40px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 23px;
  }

  .section-heading > .btn,
  .section-heading > .btn-link {
    margin-top: 16px;
  }

  .section-eyebrow {
    gap: 7px;
    margin-bottom: 11px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .section-eyebrow::before {
    width: 20px;
  }

  .section-title,
  .value-intro .section-title,
  .contact-copy .section-title,
  .cta-panel .section-title {
    font-size: clamp(29px, 8.7vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .section-text,
  .page-lead {
    margin-top: 13px;
    font-size: 12.5px;
    line-height: 1.62;
  }

  .btn {
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 11px;
  }

  .mobile-bottom-nav {
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 68px;
    padding: 8px 7px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 23px;
    background: rgba(10, 12, 16, 0.96);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  }

  html[data-theme="light"] .mobile-bottom-nav {
    border-color: rgba(15, 17, 21, 0.1);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 44px rgba(24, 27, 32, 0.14);
  }

  .mobile-bottom-link {
    align-self: stretch;
    gap: 5px;
    border-radius: 12px;
    font-size: 8.5px;
    line-height: 1.05;
  }

  .mobile-bottom-link svg {
    width: 17px;
    height: 17px;
  }

  .mobile-bottom-link.active:not(.home-action) {
    color: var(--red-text);
  }

  .mobile-bottom-link.active::before {
    display: none;
  }

  .mobile-bottom-link.home-action {
    width: 56px;
    height: 56px;
    align-self: start;
    justify-self: center;
    transform: translateY(-19px);
    border: 5px solid #0a0c10;
    border-radius: 50%;
    background: linear-gradient(145deg, #ef3038, #bd1119);
    color: #fff;
    box-shadow: 0 13px 30px rgba(224, 38, 45, 0.35);
  }

  html[data-theme="light"] .mobile-bottom-link.home-action {
    border-color: #fff;
  }

  .mobile-bottom-link.home-action svg {
    width: 23px;
    height: 23px;
  }

  .home-hero {
    min-height: auto;
    padding: 30px 0 22px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
  }

  .hero-title {
    max-width: 560px;
    font-size: clamp(36px, 11.3vw, 48px);
    line-height: 1.01;
  }

  .hero-lead {
    max-width: 560px;
    margin-top: 15px;
    font-size: 12.5px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 19px;
  }

  .hero-actions .btn {
    min-width: 0;
    flex: 1;
    padding-inline: 9px;
  }

  .creative-stage {
    width: 100%;
    min-height: 274px;
    margin: 0;
  }

  .design-console {
    top: 12%;
    right: 5%;
    bottom: 10%;
    left: 4%;
    border-radius: 17px;
  }

  .console-bar {
    height: 29px;
    padding-inline: 10px;
  }

  .console-layout {
    grid-template-columns: 32px minmax(0, 1fr) 70px;
    min-height: calc(100% - 29px);
  }

  .console-tools {
    gap: 10px;
    padding-top: 12px;
  }

  .console-tools i {
    width: 10px;
    height: 10px;
  }

  .console-canvas {
    margin: 9px;
    border-radius: 10px;
    background-size: 20px 20px;
  }

  .console-panel {
    gap: 8px;
    padding: 11px 8px;
  }

  .swatches {
    gap: 4px;
  }

  .swatches span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
  }

  .floating-chip {
    gap: 6px;
    padding: 7px 9px;
    border-radius: 9px;
  }

  .floating-chip span {
    font-size: 7px;
  }

  .chip-type strong {
    font-size: 15px;
  }

  .chip-type {
    top: 3%;
  }

  .chip-colour {
    bottom: 10%;
  }

  .chip-grid {
    bottom: 0;
  }

  .hero-stats-wrap {
    width: calc(100% - 24px);
    margin-top: 15px;
  }

  .stats-marquee {
    margin-inline: -12px;
    padding: 6px;
    border-radius: 15px;
    mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  }

  .stats-group {
    gap: 7px;
    padding-right: 7px;
  }

  .stat-card {
    width: clamp(140px, 43vw, 182px);
    min-height: 82px;
    padding: 12px;
    border-radius: 12px;
  }

  .stat-card strong {
    font-size: 20px;
  }

  .stat-card span {
    margin-top: 7px;
    font-size: 9.5px;
  }

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

  .service-card {
    min-height: 192px;
    padding: 14px;
    border-radius: 14px;
  }

  .service-card::after {
    width: 90px;
    height: 90px;
  }

  .card-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .card-icon svg {
    width: 16px;
    height: 16px;
  }

  .service-card .card-number {
    top: 14px;
    right: 14px;
    font-size: 8px;
  }

  .service-card h3 {
    margin-top: 27px;
    font-size: 14px;
    line-height: 1.15;
  }

  .service-card p {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .portfolio-grid,
  .portfolio-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .portfolio-card,
  .portfolio-page-grid .portfolio-card,
  .portfolio-page-grid .portfolio-card:nth-child(1),
  .portfolio-page-grid .portfolio-card:nth-child(7) {
    grid-column: auto;
    border-radius: 13px;
  }

  .home-portfolio-grid .portfolio-card:nth-child(9) {
    display: none;
  }

  .portfolio-image {
    aspect-ratio: 1.28 / 1;
  }

  .portfolio-category {
    top: 7px;
    left: 7px;
    max-width: calc(100% - 14px);
    padding: 5px 6px;
    overflow: hidden;
    border-radius: 6px;
    font-size: 6.8px;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .portfolio-content {
    min-height: 54px;
    padding: 11px;
  }

  .portfolio-content h3 {
    overflow-wrap: anywhere;
    font-size: 12.5px;
    line-height: 1.2;
  }

  .portfolio-placeholder small {
    max-width: 90px;
    font-size: 6.5px;
    text-align: center;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-intro {
    min-height: 0;
    padding: 22px;
  }

  .value-intro::after {
    width: 190px;
    height: 190px;
    right: -100px;
    bottom: -110px;
  }

  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .value-item {
    display: block;
    padding: 13px;
    border-radius: 12px;
  }

  .value-index {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 8px;
  }

  .value-item h3 {
    margin-top: 12px;
    font-size: 12px;
  }

  .value-item p {
    margin-top: 6px;
    font-size: 9.5px;
    line-height: 1.45;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .cta-panel .btn {
    width: auto;
    min-width: 145px;
    justify-self: start;
  }

  .contact-preview-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-copy {
    position: static;
  }

  .contact-mini-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .contact-mini-item {
    min-width: 0;
    min-height: 42px;
    gap: 7px;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-mini-item svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  .form-card {
    padding: 16px;
  }

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

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

  .field label {
    margin-bottom: 5px;
    font-size: 8.5px;
  }

  .control {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 11px;
  }

  select.control {
    background-position: calc(100% - 15px) 18px, calc(100% - 10px) 18px;
  }

  textarea.control {
    min-height: 100px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
  }

  .form-footer .btn {
    width: 100%;
  }

  .inner-hero {
    padding: 38px 0 34px;
  }

  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-title {
    font-size: clamp(36px, 11.5vw, 50px);
    line-height: 1.02;
  }

  .page-code {
    margin-top: 16px;
    font-size: 7.5px;
    letter-spacing: 0.1em;
  }

  .inner-hero::before {
    top: -80%;
    right: -90%;
    width: 390px;
    height: 390px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .philosophy-visual {
    min-height: 270px;
    padding: 20px;
  }

  .philosophy-visual-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .philosophy-visual-content strong {
    font-size: 27px;
  }

  .philosophy-copy {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .philosophy-copy::-webkit-scrollbar {
    display: none;
  }

  .philosophy-block {
    min-width: 74%;
    flex: 0 0 74%;
    padding: 16px;
    scroll-snap-align: start;
  }

  .philosophy-block h3 {
    font-size: 14px;
  }

  .philosophy-block p {
    margin-top: 9px;
    font-size: 10.5px;
    line-height: 1.55;
  }

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

  .discipline-card {
    min-height: 112px;
    padding: 14px;
  }

  .discipline-card h3 {
    margin-top: 28px;
    font-size: 12px;
  }

  .service-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-detail {
    display: block;
    min-width: 0;
    padding: 14px;
    border-radius: 14px;
  }

  .service-detail-index {
    font-size: 8px;
  }

  .service-detail h2 {
    margin-top: 18px;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.12;
  }

  .service-detail-copy {
    grid-column: auto;
  }

  .service-detail-copy p {
    margin: 10px 0 12px;
    font-size: 9.8px;
    line-height: 1.48;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .feature-list li {
    padding: 7px 7px 7px 18px;
    border-radius: 7px;
    font-size: 8.5px;
    line-height: 1.3;
  }

  .feature-list li::before {
    top: 11px;
    left: 8px;
    width: 4px;
    height: 4px;
  }

  .filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin: 0 -12px 20px;
    padding: 0 12px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn,
  .filter-btn:first-child {
    min-height: 36px;
    flex: 0 0 auto;
    grid-column: auto;
    padding: 7px 10px;
    font-size: 9px;
  }

  .portfolio-disclaimer {
    margin-top: 18px;
    padding: 13px;
    font-size: 9.5px;
    line-height: 1.55;
  }

  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .contact-method {
    display: block;
    min-width: 0;
    padding: 12px;
  }

  .contact-method-icon {
    width: 34px;
    height: 34px;
  }

  .contact-method-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-method small {
    margin-top: 10px;
    font-size: 8px;
  }

  .contact-method strong {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
  }

  .social-links {
    margin-top: 16px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .brand-card {
    gap: 7px;
  }

  .brand-monogram {
    height: 36px;
    flex-basis: 42px;
    padding: 6px;
  }

  .brand-info strong {
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-info span {
    overflow: hidden;
    font-size: 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-colors {
    gap: 2px;
  }

  .brand-colors i {
    width: 5px;
    height: 17px;
  }

  .preview-nav {
    gap: 4px;
  }

  .preview-nav span {
    width: 15px;
  }

  .consent-label {
    gap: 8px;
    font-size: 9.5px !important;
  }

  .policy-summary {
    padding: 18px;
  }

  .policy-card {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    padding: 16px;
  }

  .policy-card h2 {
    font-size: 16px;
  }

  .policy-card p {
    margin-top: 9px;
    font-size: 10.5px;
    line-height: 1.62;
  }

  .modal {
    padding: 12px;
  }

  .modal-dialog {
    max-height: calc(100svh - 24px);
    border-radius: 16px;
  }

  .modal-content {
    padding: 18px;
  }

  .modal-content h2 {
    font-size: 27px;
  }

  .modal-content p {
    font-size: 11px;
    line-height: 1.6;
  }

  .modal-placeholder[hidden],
  .modal-media img[hidden] {
    display: none;
  }

  .not-found {
    min-height: calc(100svh - var(--header-height) - 86px);
    padding: 34px 0;
  }

  .not-found-panel {
    padding: 34px 20px;
  }
}

@media (max-width: 350px) {
  .brand-link {
    width: 96px;
    min-width: 92px;
  }

  .brand-link img {
    width: 88px;
  }

  .theme-btn,
  .lang-link {
    min-width: 24px;
  }

  .mobile-bottom-link {
    font-size: 7.5px;
  }

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

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

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

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

  .stats-track {
    animation: none;
  }
}
