:root {
  --cream: #fbf7ef;
  --cream-deep: #f1eadf;
  --sage: #536b45;
  --sage-dark: #263828;
  --sage-soft: #dfe7d8;
  --soil: #8a7155;
  --charcoal: #1d241f;
  --muted: #686b62;
  --line: rgba(83, 107, 69, 0.18);
  --blue: #1f9ed8;
  --gold: #d99d2b;
  --white: rgba(255, 255, 255, 0.82);
  --shadow: 0 18px 50px rgba(38, 56, 40, 0.13);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--charcoal);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 158, 216, 0.08), transparent 24%),
    radial-gradient(circle at 7% 55%, rgba(217, 157, 43, 0.08), transparent 20%),
    var(--cream);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 70%);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 239, 0.82);
  border-bottom: 1px solid rgba(83, 107, 69, 0.15);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 70px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--sage);
  border-radius: 999px;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.brand-mark span {
  background: var(--sage);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(83, 107, 69, 0.08);
  display: block;
  height: 4px;
  width: 4px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(22px, 5vw, 74px);
  font-size: 14px;
}

.nav-links a {
  padding: 26px 0 22px;
  position: relative;
}

.nav-links a::after {
  background: var(--sage);
  bottom: 14px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
  width: 100%;
}

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

.section-band {
  margin: 0 auto;
  max-width: 1500px;
  padding-inline: clamp(20px, 4vw, 70px);
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(360px, 0.8fr) minmax(620px, 1.2fr);
  min-height: calc(100vh - 76px);
  padding-bottom: 34px;
  padding-top: clamp(42px, 7vh, 92px);
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #243128;
  font-size: clamp(58px, 9vw, 118px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
}

.role {
  color: var(--sage);
  font-size: clamp(29px, 3.1vw, 44px);
  line-height: 1.16;
  margin-bottom: 24px;
}

.role::after {
  background: linear-gradient(90deg, var(--sage), var(--sage), transparent);
  content: "";
  display: block;
  height: 2px;
  margin-top: 20px;
  width: 72px;
}

.hero-statement {
  color: #343b35;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(42px, 8vh, 74px);
}

.button {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 18px;
  height: 48px;
  justify-content: center;
  min-width: 138px;
  padding: 0 24px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.button svg {
  height: 20px;
  width: 20px;
}

.button.primary {
  background: var(--sage);
  box-shadow: 0 10px 22px rgba(83, 107, 69, 0.22);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
}

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

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

.hero-notes article {
  align-items: flex-start;
  border-right: 1px solid rgba(83, 107, 69, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  min-height: 62px;
  padding-right: 14px;
}

.hero-notes article:last-child {
  border-right: 0;
}

.hero-notes svg {
  color: var(--sage);
  height: 32px;
  width: 32px;
}

.hero-notes strong,
.hero-notes span {
  display: block;
}

.hero-notes strong {
  font-size: 12px;
  margin-bottom: 5px;
}

.hero-notes span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  min-height: min(820px, calc(100vh - 92px));
  position: relative;
}

.map-ghost {
  background:
    radial-gradient(circle at 74% 30%, rgba(83, 107, 69, 0.13) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 64%, rgba(31, 158, 216, 0.14) 0 1px, transparent 2px);
  background-size: 34px 34px, 50px 50px;
  inset: 0;
  opacity: 0.85;
  position: absolute;
}

.map-ghost::before,
.map-ghost::after {
  border: 1px solid rgba(83, 107, 69, 0.12);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.map-ghost::before {
  height: 360px;
  right: 2%;
  top: 1%;
  width: 360px;
}

.map-ghost::after {
  bottom: 9%;
  height: 420px;
  left: 12%;
  transform: rotate(-18deg);
  width: 620px;
}

.character-wrap {
  bottom: auto;
  height: clamp(650px, 80vh, 805px);
  left: 50.5%;
  pointer-events: none;
  position: absolute;
  top: 18px;
  transform: translateX(-50%) scaleX(1.035);
  width: auto;
  z-index: 9;
}

.character {
  animation: characterEnter 900ms var(--ease) both, floatCharacter 7s ease-in-out 900ms infinite;
  display: block;
  filter: drop-shadow(0 34px 45px rgba(38, 56, 40, 0.18));
  height: 100%;
  object-fit: contain;
  object-position: top center;
  width: auto;
}

.capability-field {
  inset: 0;
  position: absolute;
  perspective: 1200px;
  z-index: 6;
}

.capability-field::before,
.capability-field::after {
  border: 1px solid rgba(83, 107, 69, 0.13);
  border-radius: 50%;
  content: "";
  height: 52%;
  left: 52%;
  pointer-events: none;
  position: absolute;
  top: 34%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 84%;
}

.capability-field::after {
  border-color: rgba(31, 158, 216, 0.11);
  height: 42%;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 68%;
}

.capability-card {
  align-items: center;
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.62), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  box-shadow:
    0 14px 38px rgba(38, 56, 40, 0.12),
    inset 0 0 22px rgba(31, 158, 216, 0.05);
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 58px;
  padding: 8px 15px 8px 8px;
  position: absolute;
  transform-origin: center;
  transition:
    width 420ms var(--ease),
    min-height 420ms var(--ease),
    padding 420ms var(--ease),
    box-shadow 240ms var(--ease),
    border-color 240ms var(--ease),
    opacity 220ms var(--ease),
    filter 220ms var(--ease);
  will-change: left, top, transform, opacity, filter;
  width: min(265px, 30vw);
}

.capability-card,
.capability-preview {
  filter: none !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.capability-card::before {
  background: linear-gradient(90deg, transparent, rgba(31, 158, 216, 0.6), transparent);
  content: "";
  height: 1px;
  left: 12%;
  opacity: 0;
  position: absolute;
  top: -1px;
  transition: opacity 240ms var(--ease);
  width: 76%;
}

.capability-card::after {
  background: var(--dot, var(--sage));
  border: 2px solid var(--cream);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(83, 107, 69, 0.12);
  content: "";
  height: 8px;
  position: absolute;
  right: -4px;
  top: calc(50% - 4px);
  width: 8px;
}

.capability-card:hover,
.capability-card.is-linked {
  border-color: rgba(31, 158, 216, 0.48);
  box-shadow: 0 18px 42px rgba(31, 158, 216, 0.16);
  opacity: 1 !important;
  z-index: 14;
}

.capability-card.is-linked::before {
  opacity: 1;
}

.capability-card.is-selected {
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.86), rgba(238, 248, 245, 0.72));
  border-color: rgba(31, 158, 216, 0.45);
  box-shadow:
    0 24px 72px rgba(31, 158, 216, 0.2),
    0 0 30px rgba(83, 107, 69, 0.12),
    inset 0 0 30px rgba(31, 158, 216, 0.08);
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 230px;
  padding: 16px;
  width: min(390px, 38vw);
  z-index: 22 !important;
}

.capability-card.is-selected::before {
  opacity: 1;
}

.capability-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 8px;
  color: #fff;
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.capability-icon svg {
  height: 25px;
  width: 25px;
}

.capability-title {
  color: #111813;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.capability-meta {
  color: var(--muted);
  display: block;
  font-size: 11px;
  line-height: 1.3;
  margin-top: 4px;
}

.capability-expanded {
  border-top: 1px solid rgba(83, 107, 69, 0.16);
  display: grid;
  gap: 10px;
  margin-top: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 420ms var(--ease), opacity 280ms var(--ease), padding-top 420ms var(--ease);
}

.capability-expanded span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  line-height: 1.35;
}

.capability-expanded strong {
  color: var(--sage-dark);
  display: block;
  font-size: 11px;
  margin-bottom: 3px;
}

.capability-card.is-selected .capability-expanded {
  max-height: 170px;
  opacity: 1;
  padding-top: 12px;
}

.capability-preview {
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(83, 107, 69, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 330px;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px) scale(0.98);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  z-index: 9;
}

.hero-visual::after {
  background: linear-gradient(90deg, transparent, rgba(31, 158, 216, 0.34), rgba(118, 209, 169, 0.28), transparent);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 43%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 43%;
  transform: translateX(-160px) rotate(-8deg);
  width: 360px;
  z-index: 16;
}

.hero-visual.is-gesturing::after {
  animation: gestureSweep 760ms var(--ease);
}

.virtual-layer-hotspots {
  display: none;
}

.layer-hotspot {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(238, 248, 245, 0.12)),
    linear-gradient(90deg, rgba(31, 158, 216, 0.07), rgba(83, 107, 69, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(31, 158, 216, 0.08),
    0 12px 22px rgba(38, 56, 40, 0.08),
    inset 0 0 22px rgba(31, 158, 216, 0.05);
  color: var(--sage-dark);
  cursor: pointer;
  display: flex;
  gap: 10px;
  height: 42px;
  left: 22px;
  pointer-events: auto;
  position: absolute;
  transform: translateZ(var(--layer-depth, 0)) skewX(-18deg);
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms var(--ease),
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
  width: 382px;
}

.layer-hotspot::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  position: absolute;
}

.layer-hotspot::after {
  background:
    radial-gradient(circle at 18% 50%, var(--layer-color), transparent 13%),
    radial-gradient(circle at 62% 54%, rgba(31, 158, 216, 0.78), transparent 10%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  height: 1px;
  inset: auto 8% 8px;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
}

.layer-icon {
  align-items: center;
  background: rgba(83, 107, 69, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: #fff;
  display: flex;
  height: 26px;
  justify-content: center;
  margin-left: 14px;
  position: relative;
  transform: skewX(18deg);
  width: 26px;
  z-index: 1;
}

.layer-icon svg {
  height: 15px;
  width: 15px;
}

.layer-title {
  color: rgba(29, 36, 31, 0.7);
  font-size: 10px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  text-align: left;
  text-overflow: ellipsis;
  transform: skewX(18deg);
  white-space: nowrap;
  z-index: 1;
}

.layer-hotspot:hover,
.layer-hotspot:focus-visible,
.layer-hotspot.is-linked {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(238, 248, 245, 0.24)),
    linear-gradient(90deg, rgba(31, 158, 216, 0.13), rgba(118, 209, 169, 0.12));
  border-color: rgba(118, 209, 169, 0.72);
  box-shadow:
    0 0 30px rgba(31, 158, 216, 0.28),
    0 0 18px rgba(118, 209, 169, 0.18),
    inset 0 0 20px rgba(118, 209, 169, 0.18);
  filter: saturate(1.12);
  outline: 0;
  opacity: 1;
  transform: translateZ(calc(var(--layer-depth, 0) + 22px)) skewX(-18deg) translateY(-2px);
}

.layer-glow {
  background: linear-gradient(90deg, transparent, rgba(31, 158, 216, 0.55), rgba(118, 209, 169, 0.42), transparent);
  border-radius: 999px;
  display: block;
  height: 2px;
  left: 8%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: opacity 180ms var(--ease);
  width: 84%;
}

.layer-hotspot:hover .layer-glow,
.layer-hotspot:focus-visible .layer-glow,
.layer-hotspot.is-linked .layer-glow {
  opacity: 1;
}

.layer-hotspot-1 { --layer-depth: 72px; top: 0; left: 72px; width: 312px; }
.layer-hotspot-2 { --layer-depth: 60px; top: 34px; left: 52px; width: 344px; }
.layer-hotspot-3 { --layer-depth: 48px; top: 68px; left: 32px; width: 376px; }
.layer-hotspot-4 { --layer-depth: 36px; top: 102px; left: 12px; width: 408px; }
.layer-hotspot-5 { --layer-depth: 24px; top: 136px; left: 24px; width: 394px; }
.layer-hotspot-6 { --layer-depth: 12px; top: 170px; left: 42px; width: 364px; }
.layer-hotspot-7 { --layer-depth: 0px; top: 204px; left: 62px; width: 332px; }

.capability-preview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.capability-preview h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.preview-stack {
  display: grid;
  gap: 10px;
}

.preview-row {
  border-top: 1px solid rgba(83, 107, 69, 0.14);
  display: grid;
  gap: 10px;
  grid-template-columns: 72px 1fr;
  padding-top: 12px;
}

.preview-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.preview-thumb {
  background:
    linear-gradient(135deg, rgba(83, 107, 69, 0.16), rgba(31, 158, 216, 0.14)),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(83, 107, 69, 0.12) 8px 9px);
  border-radius: 6px;
  height: 56px;
}

.preview-dot {
  align-self: start;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 158, 216, 0.7) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(31, 158, 216, 0.14), rgba(83, 107, 69, 0.12));
  border: 1px solid rgba(83, 107, 69, 0.14);
  border-radius: 6px;
  height: 42px;
}

.preview-dot.is-warm {
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 157, 43, 0.78) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(217, 157, 43, 0.14), rgba(83, 107, 69, 0.11));
}

.preview-row strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.preview-row span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  line-height: 1.35;
}

.cursor-trail {
  background: radial-gradient(circle, rgba(31, 158, 216, 0.32), transparent 58%);
  border-radius: 999px;
  filter: blur(1px);
  height: 140px;
  left: 24%;
  opacity: 0.55;
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  transition: left 160ms linear, top 160ms linear;
  width: 140px;
  z-index: 1;
}

.section-heading {
  max-width: 740px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 18px;
}

.selected-work {
  padding-bottom: 72px;
  padding-top: 54px;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 22px;
}

.filter-button {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(83, 107, 69, 0.2);
  border-radius: 999px;
  color: var(--sage-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  min-height: 36px;
  padding: 0 15px;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--sage);
  color: #fff;
  transform: translateY(-1px);
}

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

.project-card {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(83, 107, 69, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(38, 56, 40, 0.08);
  color: inherit;
  display: block;
  min-height: 260px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-5px);
}

.project-card:focus-visible {
  border-color: rgba(31, 158, 216, 0.55);
}

.project-visual {
  background: var(--cream-deep);
  aspect-ratio: 2.85 / 1;
  height: auto;
  margin: 14px;
  overflow: hidden;
  position: relative;
}

.project-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transition: transform 360ms var(--ease);
  width: 100%;
}

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

.project-body {
  padding: 0 18px 18px;
}

.project-body h3 {
  font-size: 18px;
  line-height: 1.24;
  margin-bottom: 8px;
}

.project-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  margin-bottom: 16px;
}

.project-link {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
}

.project-link svg {
  height: 20px;
  width: 20px;
}

.about {
  padding-bottom: 72px;
  padding-top: 64px;
}

.about .section-heading {
  max-width: 470px;
}

.about-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(310px, 0.78fr) minmax(560px, 1.22fr);
}

.lead {
  color: #303832;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.42;
  max-width: 455px;
}

.lead-block {
  display: grid;
  gap: 18px;
}

.about-kicker {
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0;
}

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

.about-points article {
  background: rgba(255, 253, 247, 0.52);
  border: 1px solid rgba(83, 107, 69, 0.16);
  border-radius: var(--radius);
  min-height: 252px;
  padding: 28px 22px 24px;
  position: relative;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.about-points article::after {
  background: var(--sage);
  bottom: 28px;
  content: "";
  height: 1px;
  left: 22px;
  position: absolute;
  width: 34px;
}

.about-points article:hover {
  border-color: rgba(83, 107, 69, 0.28);
  box-shadow: 0 16px 36px rgba(38, 56, 40, 0.09);
  transform: translateY(-4px);
}

.about-icon {
  align-items: center;
  background: rgba(83, 107, 69, 0.1);
  border-radius: 999px;
  color: var(--sage);
  display: inline-flex;
  height: 60px;
  justify-content: center;
  margin-bottom: 28px;
  width: 60px;
}

.about-icon svg {
  height: 31px;
  width: 31px;
}

.about-points h3 {
  font-size: 17px;
  margin-bottom: 13px;
}

.about-points p,
.contact-panel p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
  margin-bottom: 0;
}

.contact {
  padding-bottom: 86px;
  padding-top: 52px;
}

.contact-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.88), rgba(223, 231, 216, 0.42)),
    radial-gradient(circle at 90% 10%, rgba(31, 158, 216, 0.13), transparent 30%);
  border: 1px solid rgba(83, 107, 69, 0.17);
  border-radius: var(--radius);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 58px);
}

@keyframes characterEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatCharacter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes layerPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0);
  }
  50% {
    opacity: 0.95;
    transform: translateY(-12px);
  }
}

@keyframes gestureSweep {
  0% {
    opacity: 0;
    transform: translateX(-220px) rotate(-8deg) scaleX(0.2);
  }
  28% {
    opacity: 0.88;
  }
  100% {
    opacity: 0;
    transform: translateX(220px) rotate(-8deg) scaleX(1.15);
  }
}

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

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

  .hero-visual {
    min-height: 720px;
  }

  .character-wrap {
    height: clamp(690px, 82vh, 840px);
    left: 50%;
  }

  .capability-card {
    width: min(290px, 44vw);
  }

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

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 72px;
  }

  .nav-links {
    gap: 18px;
    overflow-x: auto;
    padding-left: 20px;
  }

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

  .hero-actions,
  .hero-notes {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    display: grid;
  }

  .hero-notes article {
    border-right: 0;
    border-bottom: 1px solid rgba(83, 107, 69, 0.14);
    padding-bottom: 16px;
  }

  .hero-visual {
    min-height: 1020px;
  }

  .character-wrap {
    bottom: 210px;
    height: 600px;
    top: auto;
  }

  .virtual-layer-hotspots {
    display: none;
  }

  .capability-card {
    left: 0 !important;
    max-width: none;
    position: relative;
    top: auto !important;
    width: 100%;
  }

  .capability-card::before,
  .capability-card::after {
    display: none;
  }

  .capability-field {
    display: grid;
    gap: 10px;
    inset: auto 0 0;
    position: absolute;
  }

  .capability-preview {
    display: none;
  }

  .project-grid,
  .about-layout,
  .about-points {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
