:root {
  --bg: #f4efe6;
  --bg-soft: #eadfce;
  --surface: #fffaf1;
  --surface-soft: #eee4d6;
  --text: #11171d;
  --text-muted: #60707a;
  --border: #d5c9b7;
  --primary: #c85d62;
  --primary-soft: #ffe2df;
  --secondary: #536c62;
  --secondary-soft: #dde9e1;
  --accent: #c88d4f;
  --accent-soft: #f6dfbd;
  --rose: #c85d62;
  --rose-soft: #f6d9d8;
  --ink: #11161a;
  --cream: #fff8ed;
  --shadow-soft: 0 18px 54px rgba(50, 37, 24, 0.08);
  --shadow-card: 0 24px 80px rgba(38, 29, 19, 0.12);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-medium: 420ms;
  --duration-slow: 900ms;
  --container: 1240px;
}

[data-theme="dark"] {
  --bg: #11161a;
  --bg-soft: #161c20;
  --surface: #1b2024;
  --surface-soft: #20272b;
  --text: #fff8ed;
  --text-muted: #b9b1a5;
  --border: #343a3e;
  --primary: #f08b8f;
  --primary-soft: #3b2427;
  --secondary: #9ebcad;
  --secondary-soft: #21322c;
  --accent: #e2b477;
  --accent-soft: #3c2d1d;
  --rose: #f08b8f;
  --rose-soft: #3a2326;
  --ink: #101417;
  --cream: #fff8ed;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 22px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 6%, color-mix(in srgb, var(--primary), transparent 88%), transparent 34rem),
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--accent), transparent 90%), transparent 32rem),
    linear-gradient(180deg, var(--surface), var(--bg) 52%, var(--bg-soft));
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-soft), background-color var(--duration-medium), color var(--duration-medium);
}

body.page-ready {
  opacity: 1;
}

body.is-leaving {
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(color-mix(in srgb, var(--text), transparent 94%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text), transparent 95%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  z-index: -2;
}

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

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

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary), transparent 24%);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -120px;
  z-index: 100;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 18px;
}

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

.section {
  padding-block: 132px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.sticky-split {
  align-items: start;
}

.sticky-split > :last-child,
.sticky-split > :first-child.process-visual {
  position: sticky;
  top: 120px;
}

.copy-block,
.section-heading {
  max-width: 780px;
}

.section-heading {
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.4rem, 7.6vw, 7.4rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5.6rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h4 {
  font-size: 1.35rem;
}

p {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.hero-text,
.large-note,
.section-heading > p,
.copy-block > p {
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform var(--duration-fast), border-color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast), color var(--duration-fast);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.button-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 16px 44px color-mix(in srgb, var(--primary), transparent 76%);
}

[data-theme="dark"] .button-primary {
  color: #101114;
}

.button-secondary {
  border-color: var(--border);
  background: color-mix(in srgb, var(--surface), transparent 12%);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 18px 0;
  transition: padding var(--duration-medium) var(--ease-soft);
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.header-inner {
  width: min(calc(100% - 32px), var(--container));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--border), transparent 20%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface), transparent 10%);
  padding: 10px 14px 10px 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(50, 37, 24, 0.06);
  transition: background var(--duration-medium), border-color var(--duration-medium), box-shadow var(--duration-medium), min-height var(--duration-medium);
}

.site-header.is-scrolled .header-inner {
  min-height: 60px;
  border-color: var(--border);
  background: color-mix(in srgb, var(--surface), transparent 8%);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: grid;
  min-width: 160px;
}

.brand span,
.footer-brand {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.brand small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.desktop-nav > a:nth-of-type(1) { order: 1; }
.desktop-nav > a:nth-of-type(2) { order: 2; }
.desktop-nav .capability-menu { order: 3; }
.desktop-nav > a:nth-of-type(3) { order: 4; }
.desktop-nav > a:nth-of-type(4) { order: 5; }
.desktop-nav > a:nth-of-type(5) { order: 6; }

.nav-link {
  position: relative;
  border: 0;
  background: transparent;
  border-radius: 999px;
  color: var(--text-muted);
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform var(--duration-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.capability-menu {
  position: relative;
}

.capability-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(720px, 80vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity var(--duration-medium), transform var(--duration-medium);
}

.capability-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.capability-menu:hover .capability-dropdown,
.capability-menu.is-open .capability-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.capability-dropdown a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px;
  transition: background var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast);
}

.capability-dropdown a:hover {
  border-color: color-mix(in srgb, var(--primary), transparent 62%);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.capability-dropdown span {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.capability-dropdown small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.theme-toggle,
.mobile-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--duration-fast), color var(--duration-fast), transform var(--duration-fast);
}

.theme-toggle:hover,
.mobile-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.theme-icon,
.theme-icon::before,
.theme-icon::after {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.theme-icon {
  width: 17px;
  height: 17px;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor, transparent 78%);
}

[data-theme="dark"] .theme-icon {
  background: transparent;
  box-shadow: inset -5px -2px 0 currentColor;
}

.mobile-toggle {
  display: none;
}

.mobile-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform var(--duration-medium), top var(--duration-medium);
}

.mobile-toggle span:first-child {
  top: 17px;
}

.mobile-toggle span:last-child {
  top: 27px;
}

.mobile-toggle.is-open span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.mobile-toggle.is-open span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-panel {
  width: min(calc(100% - 32px), var(--container));
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  margin: 10px auto 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 4%);
  padding: 18px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 14px;
  font-weight: 800;
}

.mobile-panel .button {
  width: 100%;
  margin-top: 14px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
}

.hero-section,
.capability-hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 162px 0 104px;
}

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

.hero-bg,
.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--primary), transparent 84%), transparent 34rem),
    radial-gradient(circle at 88% 24%, color-mix(in srgb, var(--accent), transparent 86%), transparent 34rem),
    linear-gradient(140deg, color-mix(in srgb, var(--surface), transparent 4%), var(--bg));
  opacity: 1;
}

.hero-bg::before {
  content: "";
  background-image:
    linear-gradient(color-mix(in srgb, var(--text), transparent 95%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text), transparent 96%) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.hero-bg::after {
  content: "";
  opacity: 0.14;
  background-image: radial-gradient(circle at 1px 1px, var(--text) 1px, transparent 0);
  background-size: 18px 18px;
}

.cursor-glow {
  position: absolute;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 45%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--primary), transparent 80%), transparent 68%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(44px, 8vw, 106px);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(3.2rem, 5.8vw, 5.55rem);
}

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

.hero-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 2%), color-mix(in srgb, var(--surface-soft), transparent 18%));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.connection-lines {
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(32deg, transparent 48%, color-mix(in srgb, var(--primary), transparent 56%) 49%, transparent 51%),
    linear-gradient(145deg, transparent 48%, color-mix(in srgb, var(--secondary), transparent 56%) 49%, transparent 51%),
    radial-gradient(circle at center, color-mix(in srgb, var(--accent), transparent 80%), transparent 34%);
  opacity: 0.72;
}

.float-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: min(40%, 178px);
  min-height: 76px;
  border: 1px solid color-mix(in srgb, var(--border), transparent 8%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 2%);
  color: var(--text);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
}

.card-0 { left: 8%; top: 11%; }
.card-1 { right: 8%; top: 18%; }
.card-2 { left: 16%; top: 42%; }
.card-3 { right: 15%; top: 47%; }
.card-4 { left: 8%; bottom: 12%; }
.card-5 { right: 8%; bottom: 9%; }

.home-banner-section {
  min-height: auto;
  padding: 146px 0 98px;
}

.home-banner-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border), transparent 8%);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 2%), color-mix(in srgb, var(--surface-soft), transparent 20%));
  box-shadow: var(--shadow-card);
}

.home-banner-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.92fr);
  gap: clamp(28px, 4.4vw, 56px);
  align-items: center;
  padding: clamp(22px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.985);
  transition: opacity 520ms var(--ease-soft), transform 640ms var(--ease-soft);
}

.home-banner-slide.is-active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.home-banner-copy {
  max-width: 720px;
}

.home-banner-copy h1,
.home-banner-copy h2 {
  max-width: 600px;
  font-size: clamp(3rem, 4.35vw, 4.35rem);
}

.home-banner-copy .hero-text {
  max-width: 650px;
}

.home-banner-art {
  min-width: 0;
}

.banner-image-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 350px;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 25% 20%, color-mix(in srgb, var(--primary), transparent 78%), transparent 18rem),
    radial-gradient(circle at 76% 32%, color-mix(in srgb, var(--secondary), transparent 78%), transparent 20rem),
    linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 1%), color-mix(in srgb, var(--bg), transparent 18%));
  box-shadow: 0 24px 80px rgba(50, 37, 24, 0.08);
  transition: transform 520ms var(--ease-soft), border-color 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}

.banner-image-placeholder:hover {
  transform: scale(1.012);
  border-color: color-mix(in srgb, var(--primary), transparent 45%);
  box-shadow: 0 30px 90px rgba(50, 37, 24, 0.13);
}

.banner-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.banner-image-placeholder.image-banner {
  min-height: 0;
  aspect-ratio: 1672 / 941;
  padding: 0;
  background: var(--surface);
}

.banner-image-placeholder.image-banner img {
  border-radius: inherit;
}

.response-placeholder {
  padding: clamp(18px, 4vw, 34px);
}

.response-placeholder .layer-visual {
  width: min(100%, 500px);
  box-shadow: none;
}

.banner-controls {
  position: absolute;
  left: clamp(18px, 4vw, 46px);
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  pointer-events: none;
}

.banner-control,
.banner-zoom-button,
.banner-dot {
  pointer-events: auto;
}

.banner-control,
.banner-zoom-button {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface), transparent 6%);
  color: var(--text);
  padding: 0 14px;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast);
}

.banner-control:hover,
.banner-zoom-button:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
}

.banner-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface), transparent 4%);
  padding: 9px 10px;
  box-shadow: var(--shadow-soft);
}

.banner-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text-muted), transparent 45%);
  padding: 0;
  transition: width var(--duration-fast), background var(--duration-fast);
}

.banner-dot.is-active {
  width: 26px;
  background: var(--primary);
}

.banner-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.banner-zoom-modal[hidden] {
  display: none;
}

.banner-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 26, 0.72);
  backdrop-filter: blur(14px);
}

.banner-zoom-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid color-mix(in srgb, var(--cream), transparent 70%);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.38);
}

.banner-zoom-close {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-left: auto;
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 10px 14px;
  color: var(--text);
  font-weight: 900;
}

.banner-zoom-content .home-banner-slide {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  padding: 0;
}

.banner-two {
  background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--surface), var(--bg) 48%));
}

.layer-visual {
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 3%), color-mix(in srgb, var(--surface-soft), transparent 10%));
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-card);
}

.layer-visual strong {
  color: var(--text);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 900;
}

.layer-visual span {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 2%);
  padding: 13px 15px;
  color: var(--text-muted);
  font-weight: 900;
}

.layer-visual span:nth-of-type(2n) {
  transform: translateX(34px);
}

.ribbon {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface), transparent 16%);
  padding: 16px 0;
}

.ribbon-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 10px;
  padding-inline: 16px;
}

.ribbon-track span {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 10px 15px;
  color: var(--text-muted);
  font-weight: 800;
  white-space: nowrap;
}

.identity-card,
.diagnostic-panel,
.process-visual,
.diagnosis-form,
.cta-panel,
.service-visual {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 2%);
  box-shadow: var(--shadow-card);
}

.identity-card {
  padding: clamp(24px, 4vw, 38px);
  transform-style: preserve-3d;
}

.identity-card h3 {
  margin-bottom: 20px;
}

.identity-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.identity-card li {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 13px 14px;
  color: var(--text-muted);
  font-weight: 800;
}

.about-section {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface), var(--bg) 42%), var(--bg));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: start;
}

.about-portrait-card {
  position: sticky;
  top: 120px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 1%);
  padding: 12px;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
}

.about-portrait-slot {
  position: relative;
  display: grid;
  height: clamp(440px, 52vw, 560px);
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 22%, rgba(200, 93, 98, 0.22), transparent 12rem),
    radial-gradient(circle at 78% 64%, rgba(200, 141, 79, 0.22), transparent 14rem),
    linear-gradient(145deg, #f4dfbd, #edf0e4 48%, #d9b19a);
}

.about-portrait-slot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.04);
}

.about-portrait-slot::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 248, 237, 0.62);
  border-radius: 999px;
}

.about-portrait-slot span {
  position: relative;
  color: rgba(17, 22, 26, 0.82);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
}

.about-card-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 8px 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-card-caption span:first-child {
  color: var(--text);
}

.about-copy {
  max-width: 860px;
}

.about-copy h2 {
  max-width: 820px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.about-lead {
  color: var(--text);
  font-weight: 900;
}

.micro-statement,
.large-note {
  border: 1px solid color-mix(in srgb, var(--primary), transparent 64%);
  border-radius: 8px;
  background: var(--primary-soft);
  padding: 22px;
  color: var(--text);
  font-weight: 700;
}

.why-section,
.process-section,
.break-section,
.deliverables-section,
.service-visual-section.future,
.faq-section,
.site-footer {
  background: color-mix(in srgb, var(--surface), var(--bg) 55%);
}

.pain-stack {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.pain-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 2%), color-mix(in srgb, var(--surface-soft), transparent 28%));
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}

.pain-card p {
  max-width: 900px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.pain-card.human-line {
  border-color: color-mix(in srgb, var(--primary), transparent 55%);
  background: var(--primary-soft);
}

.pain-card.human-line p {
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  padding: 10px 16px;
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

[data-theme="dark"] .filter-button.active,
[data-theme="dark"] .filter-button:hover {
  color: #101114;
}

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

.capability-card a {
  position: relative;
  display: flex;
  min-height: 318px;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 1%), color-mix(in srgb, var(--surface-soft), transparent 12%));
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--duration-medium), border-color var(--duration-medium), box-shadow var(--duration-medium), background var(--duration-medium);
}

.capability-card a:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--primary), transparent 50%);
  box-shadow: var(--shadow-card);
}

.card-index {
  color: var(--primary);
  font-weight: 900;
}

.capability-mark {
  width: 48px;
  height: 48px;
  margin: 18px 0;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 52%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, var(--primary), transparent 16px),
    var(--primary-soft);
}

.capability-card h3 {
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.capability-card h4 {
  margin-top: 13px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.04rem;
  line-height: 1.45;
}

.capability-card p {
  flex: 1;
  margin-bottom: 22px;
}

.process-visual {
  padding: 26px;
}

.process-visual p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.document-lines {
  display: grid;
  gap: 13px;
  margin: 26px 0;
}

.document-lines span {
  height: 14px;
  width: var(--line-width, 100%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--rose), transparent 65%);
}

.document-lines span:nth-child(2) { --line-width: 72%; }
.document-lines span:nth-child(3) { --line-width: 88%; }
.document-lines span:nth-child(4) { --line-width: 54%; }
.document-lines span:nth-child(5) { --line-width: 94%; }

.timeline-progress {
  height: 8px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--border);
}

.timeline-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.timeline {
  display: grid;
  gap: 18px;
}

.process-step,
.process-mini,
.break-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 2%), color-mix(in srgb, var(--surface-soft), transparent 30%));
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--duration-medium), background var(--duration-medium), transform var(--duration-medium);
}

.process-mini {
  min-height: 310px;
  cursor: pointer;
}

.process-mini h3 {
  margin: 4px 0 20px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.process-mini p {
  margin: 0;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.7;
}

.process-mini:hover,
.process-mini:focus-visible,
.process-mini.is-active {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--primary), transparent 42%);
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--primary), transparent 82%), transparent 16rem),
    linear-gradient(145deg, color-mix(in srgb, var(--surface), transparent 1%), color-mix(in srgb, var(--surface-soft), transparent 10%));
  box-shadow: var(--shadow-card);
}

.process-step.is-active {
  border-color: color-mix(in srgb, var(--primary), transparent 50%);
  background: var(--primary-soft);
  transform: translateX(8px);
}

.process-step span,
.process-mini span,
.break-card span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.prevents {
  margin-top: 16px;
  border: 1px solid color-mix(in srgb, var(--secondary), transparent 64%);
  border-radius: 8px;
  background: var(--secondary-soft);
  padding: 16px;
}

.prevents strong {
  color: var(--secondary);
}

.prevents p {
  margin: 8px 0 0;
}

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

.diagnostic-panel {
  padding: clamp(22px, 3vw, 32px);
}

.mess-board,
.system-map {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
  margin: 22px 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 18px;
  overflow: hidden;
}

.mess-chip,
.system-node {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform var(--duration-fast), border-color var(--duration-fast), opacity var(--duration-medium);
}

.mess-chip {
  background: var(--rose-soft);
  border-color: color-mix(in srgb, var(--rose), transparent 64%);
}

.system-node {
  position: relative;
  background: var(--secondary-soft);
  border-color: color-mix(in srgb, var(--secondary), transparent 64%);
}

.system-node::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 22px;
  height: 1px;
  background: color-mix(in srgb, var(--secondary), transparent 42%);
}

.chip-detail {
  min-height: 76px;
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 16px;
}

.work-grid,
.deliverable-grid,
.outcome-grid,
.process-card-grid,
.break-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.work-pill,
.deliverable,
.outcome {
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 2%);
  padding: 18px;
  color: var(--text);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.book-showcase {
  position: relative;
  overflow: hidden;
}

.book-section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 93, 98, 0.14), transparent 32rem),
    linear-gradient(180deg, #11161a, #151a1e);
  color: var(--cream);
}

.book-section-light {
  background:
    radial-gradient(circle at 90% 8%, rgba(200, 141, 79, 0.16), transparent 32rem),
    linear-gradient(180deg, #f4efe6, #eadfce);
  color: #11171d;
}

.book-section-light .eyebrow {
  color: #c85d62;
}

.book-section-light h2,
.book-section-light h3 {
  color: #11171d;
}

.book-section-light p,
.book-section-light figcaption {
  color: #53636d;
}

.book-section-light .book-intro > p {
  border-color: #d5c9b7;
  background: rgba(255, 250, 241, 0.82);
  color: #53636d;
}

.book-section-light .client-book-card {
  border-color: rgba(17, 23, 29, 0.14);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 18px 54px rgba(50, 37, 24, 0.08);
}

.book-section-light .client-book-card h3 {
  color: #11171d;
}

.book-section-light .client-book-card p {
  color: #53636d;
}

.book-section-dark .eyebrow,
.book-section-dark .book-meta,
.book-section-dark .book-proof strong {
  color: #f08b8f;
}

.book-section-dark h2,
.book-section-dark h3,
.book-section-dark p,
.book-section-dark figcaption {
  color: var(--cream);
}

.book-section-dark p,
.book-section-dark figcaption {
  color: rgba(255, 248, 237, 0.74);
}

.book-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
  margin-bottom: clamp(38px, 6vw, 70px);
}

.book-intro h2 {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.book-intro > p {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 4%);
  padding: clamp(18px, 3vw, 28px);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  box-shadow: var(--shadow-soft);
}

.book-section-dark .book-intro > p {
  border-color: rgba(255, 248, 237, 0.16);
  background: rgba(255, 248, 237, 0.04);
}

.book-card-grid,
.client-book-grid {
  display: grid;
  gap: 18px;
}

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

.client-book-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 42px;
}

.book-card,
.client-book-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.035);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.client-book-card {
  border-color: var(--border);
  background: color-mix(in srgb, var(--surface), transparent 1%);
  box-shadow: var(--shadow-soft);
}

.book-meta {
  margin: 0 0 28px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.book-card h3,
.client-book-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.02;
}

.book-card p,
.client-book-card p {
  margin: 0 0 18px;
}

.book-proof {
  margin-top: auto;
  border-top: 1px solid color-mix(in srgb, currentColor, transparent 82%);
  padding-top: 18px;
}

.book-proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.book-proof p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.book-tags span {
  border-radius: 999px;
  background: var(--surface-soft);
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.book-banner {
  margin: clamp(42px, 7vw, 76px) 0 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor, transparent 78%);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.04);
  padding: 10px;
}

.book-banner img {
  width: 100%;
  max-height: 520px;
  border-radius: 6px;
  object-fit: cover;
}

.book-banner figcaption {
  margin: 12px 6px 4px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.work-type-strip {
  margin-top: 34px;
}

.deliverables-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 93, 98, 0.12), transparent 32rem),
    linear-gradient(180deg, #11161a, #151a1e);
  color: var(--cream);
}

.deliverables-section h2,
.deliverables-section h3,
.deliverables-section p,
.deliverables-section .deliverable,
.deliverables-section .outcome {
  color: var(--cream);
}

.deliverables-section .section-heading > p,
.deliverables-section p {
  color: rgba(255, 248, 237, 0.7);
}

.deliverables-section .deliverable,
.deliverables-section .outcome {
  border-color: rgba(255, 248, 237, 0.16);
  background: rgba(255, 248, 237, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.final-cta .split {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: stretch;
}

.final-cta .copy-block {
  align-self: center;
}

.final-cta .copy-block h2 {
  font-size: clamp(2.65rem, 4.55vw, 5rem);
}

.final-cta .copy-block p {
  max-width: 720px;
}

.final-cta .split > .reveal:last-child,
.final-cta .diagnosis-form {
  height: 100%;
}

.final-cta .diagnosis-form {
  align-content: start;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-wide,
.form-submit,
.form-success {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary), transparent 82%);
}

.error-message {
  min-height: 18px;
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 800;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--rose);
}

.form-submit.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--secondary), transparent 52%);
  border-radius: 8px;
  background: var(--secondary-soft);
  padding: 16px;
}

.form-success[hidden] {
  display: none;
}

.form-success span {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--surface);
  font-weight: 900;
}

.form-success span::before {
  content: "";
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--surface);
  border-bottom: 3px solid var(--surface);
  transform: translateY(-1px) rotate(-45deg);
}

.form-success p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.capability-hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary), transparent 86%), color-mix(in srgb, var(--secondary), transparent 88%), var(--bg));
  padding-bottom: 92px;
}

.capability-hero .split {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
}

.capability-hero .copy-block {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.capability-hero h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 5.2vw, 5.6rem);
}

.capability-hero .hero-match {
  justify-self: end;
  width: min(100%, 500px);
  min-height: 360px;
  opacity: 0.96;
}

.capability-hero .capability-hero-image.hero-match {
  width: min(100%, 560px);
  min-height: 0;
  aspect-ratio: 1672 / 941;
  opacity: 1;
}

.capability-hero-image {
  position: relative;
  display: grid;
  margin: 0;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.capability-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 24px;
}

.service-visual .visual-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 12px 15px;
  color: var(--text);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.existing .visual-item {
  background: var(--rose-soft);
  border-color: color-mix(in srgb, var(--rose), transparent 60%);
}

.future .visual-item {
  background: var(--secondary-soft);
  border-color: color-mix(in srgb, var(--secondary), transparent 58%);
}

.book-visual .visual-item {
  transform: rotate(calc((var(--i, 0) - 3) * 1deg));
}

.service-visual.browser-visual,
.service-visual.calendar-visual,
.service-visual.case-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.browser-visual .visual-item,
.calendar-visual .visual-item,
.case-visual .visual-item {
  margin: 0;
}

.service-visual.article-visual,
.service-visual.script-visual,
.service-visual.copy-visual {
  display: grid;
  align-content: center;
  gap: 12px;
}

.article-visual .visual-item,
.script-visual .visual-item,
.copy-visual .visual-item {
  margin: 0;
}

.service-visual.seo-visual,
.service-visual.architecture-visual,
.service-visual.ghost-visual,
.service-visual.message-visual,
.service-visual.orm-visual {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.copy-visual.future .visual-item {
  width: calc(100% - var(--drop, 0px));
}

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

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 28px 0;
  text-align: left;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.faq-panel {
  max-width: 860px;
  padding: 0 0 28px;
}

.faq-panel p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--duration-fast);
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 46px);
}

.cta-panel > div {
  max-width: 780px;
}

.site-footer {
  border-top: 1px solid rgba(255, 248, 237, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 139, 143, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(226, 180, 119, 0.1), transparent 30rem),
    linear-gradient(180deg, #11161a, #080a0c);
  color: #fff8ed;
  padding: 70px 0 26px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.075), rgba(255, 248, 237, 0.03));
  padding: clamp(24px, 5vw, 42px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.site-footer .eyebrow {
  color: #f08b8f;
}

.footer-cta h2 {
  color: #fff8ed;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}

.footer-copy {
  display: grid;
  max-width: 760px;
  gap: 10px;
  margin-top: 16px;
}

.footer-copy p {
  margin: 0;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff8ed;
  font-weight: 900;
}

.footer-contact-list a:hover {
  color: #f08b8f;
}

.contact-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 999px;
  background: rgba(255, 248, 237, 0.08);
  color: #fff8ed;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.contact-icon-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 0.9fr;
  gap: 36px;
  padding: 54px 0 36px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff8ed;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.96rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 248, 237, 0.72);
  line-height: 1.65;
}

.footer-grid a:hover {
  color: #f08b8f;
}

.footer-grid .footer-contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-grid .footer-contact-list a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #fff8ed;
}

.footer-grid .footer-contact-list a:hover {
  color: #f08b8f;
}

.footer-grid a[href^="mailto:"],
.footer-grid a[href^="tel:"],
.footer-grid a[href*="wa.me"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff8ed;
}

.footer-grid a[href^="mailto:"]:hover,
.footer-grid a[href^="tel:"]:hover,
.footer-grid a[href*="wa.me"]:hover {
  color: #f08b8f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 248, 237, 0.68);
  font-size: 0.92rem;
}

.site-footer .footer-brand {
  color: #fff8ed;
}

.site-footer .footer-brand:hover {
  color: #f08b8f;
}
