:root {
  color-scheme: dark;
  --bg: #111214;
  --surface: #191a1d;
  --surface-raised: #212226;
  --text: #f3f0eb;
  --muted: #a6a5a4;
  --accent: #d9aa8b;
  --line: rgba(255, 255, 255, 0.1);
  --green: #a2b69c;
  --font-body: "Manrope", Arial, sans-serif;
  --font-mono: "DM Mono", monospace;
  --font-display: "Manrope", Arial, sans-serif;
}
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f1ec;
  --surface: #ece8e2;
  --surface-raised: #fffdf9;
  --text: #242528;
  --muted: #62615f;
  --accent: #8b5639;
  --line: rgba(25, 25, 28, 0.14);
  --green: #536b4b;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: default;
  caret-color: transparent;
  scrollbar-color: color-mix(in srgb, var(--accent) 42%, var(--surface))
    var(--bg);
}
html {
  scrollbar-color: color-mix(in srgb, var(--accent) 42%, var(--surface))
    var(--bg);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 36%, var(--surface));
  border: 2px solid var(--bg);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
a,
button,
[role="button"],
[role="option"],
select,
summary {
  cursor: pointer;
}
a *,
button * {
  cursor: inherit;
}
input,
textarea,
[contenteditable="true"] {
  cursor: text;
  caret-color: var(--accent);
}
input[type="checkbox"],
input[type="radio"],
input[type="range"] {
  cursor: pointer;
}
input[readonly],
textarea[readonly],
[contenteditable="false"] {
  cursor: default;
  caret-color: transparent;
}
button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}
:focus:not(:focus-visible) {
  outline: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
button {
  border: 0;
}
::selection {
  color: #111214;
  background: #d9aa8b;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
a,
button {
  touch-action: manipulation;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(100%, 1344px);
  margin-inline: auto;
  padding-inline: 48px;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.accent {
  color: var(--accent);
}
.muted {
  color: var(--muted);
}
.eyebrow,
.section-label {
  font: 400 10px/1.7 var(--font-mono);
  letter-spacing: 0.13em;
  color: var(--accent);
  text-transform: uppercase;
}
.section-number {
  color: var(--muted);
  margin-right: 14px;
}
.section-title {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}
.section-title em,
.contact-banner em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.14em;
}
.section-copy {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 610px;
}
.section-space {
  padding-block: 96px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.section-heading > .text-link {
  margin-bottom: 8px;
}
.section-rule {
  border-top: 1px solid var(--line);
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.text-link span {
  font-size: 19px;
  transition: transform 0.2s;
}
.text-link:hover {
  color: var(--accent);
}
.text-link:hover span {
  transform: translate(2px, -2px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 16px 22px;
  min-height: 52px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.button span {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  background: #d9aa8b;
  color: #1e1b19;
}
.button-primary:hover {
  background: #ebc3a7;
}
.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.button-secondary:hover {
  background: var(--surface);
  border-color: var(--accent);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  font: 400 9px/1.5 var(--font-mono);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  z-index: 120;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 94px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 93%, transparent);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  background: #101113;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 5%, transparent);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.brand-mark img {
  width: 138%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateX(-1%);
}
.brand:hover .brand-mark {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 9%, transparent);
  transform: rotate(-5deg);
}
.brand > .brand-name {
  font-size: 10px;
  letter-spacing: 0.07em;
  font-weight: 700;
  white-space: nowrap;
}
.brand small {
  display: block;
  font: 400 6.5px/1.6 var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 3px;
}
.header-inner nav {
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding-block: 36px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
}
.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent);
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.theme-toggle:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 7%, transparent);
}
.theme-toggle .icon {
  grid-area: 1 / 1;
  transition:
    opacity 0.35s,
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.theme-toggle .moon-icon {
  display: block;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}
[data-theme="light"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
[data-theme="light"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.theme-toggle::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  transform: translate(-50%, -4px);
  padding: 8px 11px;
  color: var(--text);
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 24px #0002;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
}
@media (hover: hover) {
  .theme-toggle:is(:hover, :focus-visible)::after {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
.theme-changing .theme-toggle::after {
  opacity: 0;
  visibility: hidden;
}
/* One viewport reveal keeps the circle continuous through the sticky header. */
::view-transition {
  pointer-events: none;
}
::view-transition-group(root),
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-old(root) {
  z-index: 1;
  opacity: 1;
}
::view-transition-new(root) {
  z-index: 2;
}
.theme-changing:not(.theme-fade) *,
.theme-changing:not(.theme-fade) *::before,
.theme-changing:not(.theme-fade) *::after {
  transition: none !important;
  /* Keep every descendant inside the root snapshot, with one clip origin. */
  view-transition-name: none !important;
}
.theme-fade,
.theme-fade *,
.theme-fade *::before,
.theme-fade *::after {
  transition:
    color 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    fill 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    stroke 0.48s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
:root[data-motion="paused"].theme-fade,
:root[data-motion="paused"].theme-fade *,
:root[data-motion="paused"].theme-fade *::before,
:root[data-motion="paused"].theme-fade *::after {
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .theme-fade,
  .theme-fade *,
  .theme-fade *::before,
  .theme-fade *::after {
    transition: none !important;
  }
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}
.nav-contact:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav-contact .icon {
  width: 14px;
  height: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span {
  height: 1px;
  width: 24px;
  background: var(--text);
  display: block;
  margin-block: 6px;
  transition: transform 0.2s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-top: 76px;
  padding-bottom: 92px;
  min-height: 748px;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 400 8px/1.5 var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--green);
  border: 1px solid color-mix(in srgb, var(--green) 22%, transparent);
  background: color-mix(in srgb, var(--green) 4%, transparent);
  padding: 7px 10px;
  border-radius: 4px;
}
.availability > span,
.status-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px color-mix(in srgb, var(--green) 25%, transparent);
}
.hero-intro {
  font: 400 9px/1.6 var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 33px;
  margin-bottom: 19px;
}
.hero-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-avatar {
  display: block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, var(--line));
  padding: 3px;
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 5%, transparent);
}
.hero-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-identity p {
  min-width: 0;
}
.hero-identity strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font: 500 15px/1.5 var(--font-body);
  letter-spacing: -0.01em;
}
.hero h1 {
  font-size: clamp(52px, 5.3vw, 76px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.1;
}
.hero h1 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.26em;
  line-height: 0.9;
  letter-spacing: -0.025em;
}
.hero-description {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 28px;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 34px;
}
.hero-location .icon {
  width: 12px;
  height: 12px;
}
.location-rule {
  width: 20px;
  height: 1px;
  background: var(--line);
  margin: 0 3px;
}
.hero-time {
  font: 400 8px var(--font-mono);
}
.hero-art {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.07;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  background: radial-gradient(
    ellipse at 55% 55%,
    rgba(181, 133, 101, 0.055),
    transparent 65%
  );
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 45px 0;
  background-image: radial-gradient(var(--line) 0.7px, transparent 0.7px);
  background-size: 17px 17px;
  opacity: 0.45;
  z-index: -2;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 30%,
    black 80%,
    transparent
  );
}
.art-topline,
.art-caption {
  position: absolute;
  left: 20px;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 400 7px var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--muted);
}
.art-topline {
  top: 7px;
}
.art-caption {
  bottom: 28px;
  left: 25px;
}
.art-cross {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.6;
}
.art-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 91%;
  aspect-ratio: 1;
  opacity: 0.35;
  z-index: -1;
}
.art-orbit::before {
  content: "";
  position: absolute;
  inset: 27px;
  border: 1px dashed var(--line);
  border-radius: 50%;
}
.hero-logo {
  width: 120%;
  max-width: none;
  mix-blend-mode: lighten;
  filter: brightness(0.91);
  position: relative;
  transform: translate(0, -9px);
  mask-image: radial-gradient(ellipse, black 40%, transparent 74%);
}
[data-theme="light"] .hero-logo {
  mix-blend-mode: normal;
  filter: none;
  mask-image: radial-gradient(ellipse, black 31%, transparent 70%);
}
.art-coordinate {
  position: absolute;
  right: 0;
  bottom: 98px;
  font: 400 7px/1.7 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.65;
}
.specialist-card {
  position: absolute;
  bottom: 67px;
  left: 13%;
  right: 6%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border-radius: 6px;
  box-shadow: 0 12px 30px #00000015;
  backdrop-filter: blur(10px);
}
.specialist-icon {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--accent);
  width: 36px;
  height: 36px;
}
.specialist-icon svg {
  width: 21px;
  height: 21px;
}
.specialist-card strong {
  font-size: 11px;
  font-weight: 550;
  display: block;
}
.specialist-card div > span {
  font: 400 6px var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-top: 6px;
}
.specialist-card > .status-dot {
  margin-left: auto;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 48px;
  display: flex;
  gap: 12px;
  align-items: center;
  font: 400 7px var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--muted);
}
.scroll-cue > span:last-child {
  margin-left: 10px;
  font-size: 15px;
}
.scroll-line {
  width: 1px;
  height: 24px;
  background: var(--accent);
  opacity: 0.6;
}
.expertise-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 35%, transparent);
}
.expertise-strip > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.expertise-strip span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.015em;
  white-space: nowrap;
}
.expertise-strip i {
  font-style: normal;
  color: var(--accent);
  font-size: 22px;
}
.about-section {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}
.about-section > .about-copy {
  max-width: 555px;
}
.about-profile {
  min-width: 0;
}
.about-portrait {
  width: min(100%, 400px);
  padding: 10px;
  margin: 30px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 20px 45px -35px #0009;
  transition:
    border-color 0.4s,
    box-shadow 0.4s;
}
.portrait-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #1b232a;
  isolation: isolate;
}
.portrait-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.portrait-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, #ffffff09, transparent 45%, #00000012);
  border: 1px solid #ffffff12;
  border-radius: inherit;
}
.portrait-corner {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-color: #d9aa8b80;
  border-style: solid;
  pointer-events: none;
}
.portrait-corner-top {
  top: 16px;
  left: 16px;
  border-width: 1px 0 0 1px;
}
.portrait-corner-bottom {
  bottom: 16px;
  right: 16px;
  border-width: 0 1px 1px 0;
}
.portrait-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 13px 10px 6px;
}
.portrait-caption .about-signature {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 44px;
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: -0.035em;
}
.portrait-caption > span:last-child {
  color: var(--muted);
  font: 400 7px/1.8 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .about-portrait:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
    box-shadow: 0 24px 50px -34px #000a;
  }
  .about-portrait:hover .portrait-photo > img {
    transform: scale(1.025);
  }
}
:root[data-motion="paused"] .portrait-photo > img {
  transform: none;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .about-portrait .portrait-photo > img {
    transform: none;
  }
}
.about-copy .section-copy {
  margin-top: 22px;
  font-size: 14px;
}
.about-copy .section-copy + .section-copy {
  margin-top: 14px;
}
.about-copy > .text-link {
  margin-top: 25px;
}
.work-section {
  padding-bottom: 32px;
}
.featured-work {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.25s;
}
.featured-work:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}
.work-visual {
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at 50% 60%, #294146, #1c292d 80%);
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 68px 30px 55px;
}
.visual-label,
.visual-disclaimer {
  position: absolute;
  color: #a7babc;
  font: 400 7px var(--font-mono);
  letter-spacing: 0.15em;
  left: 30px;
}
.visual-label {
  top: 25px;
}
.visual-disclaimer {
  bottom: 20px;
  font-size: 6px;
  opacity: 0.8;
}
.mini-app {
  width: 100%;
  aspect-ratio: 1.95;
  display: flex;
  color: #c1cbc9;
  background: #151b1d;
  border: 1px solid #ffffff20;
  border-radius: 6px;
  box-shadow: 0 25px 50px #0006;
  transform: perspective(1000px) rotateY(7deg) rotateX(6deg) rotateZ(-3deg);
  transition: transform 0.6s;
  overflow: hidden;
}
.featured-work:hover .mini-app {
  transform: perspective(1000px) rotateY(0) rotateX(0) rotateZ(-1deg);
}
.mini-sidebar {
  width: 25%;
  padding: 18px 12px 12px;
  border-right: 1px solid #ffffff0d;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mini-sidebar b {
  font-size: 14px;
  font-weight: 650;
  color: #e3e9e6;
  margin-bottom: 12px;
  line-height: 1;
}
.mini-sidebar b > span {
  color: #82b2a5;
}
.mini-sidebar small {
  display: block;
  font-size: 4px;
  letter-spacing: 0.2em;
  margin-top: 6px;
  color: #929b98;
}
.mini-sidebar i {
  font-size: 5px;
  font-style: normal;
  color: #829490;
}
.mini-sidebar i.mini-active {
  color: #abcabe;
  background: #a2c6b30d;
  padding: 5px;
  margin: -5px;
}
.mini-bottom {
  font-size: 4px;
  color: #8e9b96;
  position: absolute;
  bottom: 15px;
  left: 12px;
}
.mini-content {
  flex: 1;
  padding: 12px 17px 17px;
}
.mini-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 4.5px;
  color: #8f9c98;
  border-bottom: 1px solid #ffffff0d;
  padding-bottom: 10px;
}
.mini-top > span {
  background: #31433b;
  color: #bed1c8;
  border-radius: 50%;
  font-size: 4px;
  padding: 4px;
}
.mini-content h3 {
  font-size: 14px;
  margin-top: 14px;
  letter-spacing: -0.03em;
  color: #e4eae5;
}
.mini-content > p {
  font-size: 4.5px;
  color: #8c9c95;
  margin-top: 5px;
}
.mini-tiles {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}
.mini-tiles > div {
  background: #1b2424;
  border: 1px solid #ffffff08;
  border-radius: 4px;
  padding: 10px;
  flex: 1;
}
.mini-tiles small {
  font: 400 3.5px var(--font-mono);
  letter-spacing: 0.1em;
  color: #829c93;
}
.mini-tiles strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin: 5px 0;
  color: #d9e4dd;
}
.mini-tiles span {
  font-size: 3.5px;
  color: #9aada4;
  display: block;
}
.mini-table {
  margin-top: 14px;
}
.mini-table b {
  font: 400 4px var(--font-mono);
  display: flex;
  justify-content: space-between;
  padding-bottom: 4px;
  color: #8ea79d;
}
.mini-table b > span {
  font-size: 3px;
}
.mini-table > div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 4px;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff08;
}
.mini-table i {
  width: 6px;
  height: 7px;
  border: 1px solid #78968a66;
  border-radius: 1px;
}
.mini-table em {
  font-size: 3px;
  font-style: normal;
  margin-left: auto;
  color: #95b7a6;
  background: #24362d;
  padding: 2px 4px;
  border-radius: 2px;
}
.work-info {
  padding: 35px 38px;
  display: flex;
  flex-direction: column;
}
.work-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.work-heading .eyebrow {
  font-size: 8px;
}
.circle-arrow {
  border: 1px solid var(--line);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--accent);
}
.work-info > h3 {
  font-size: 34px;
  margin-top: 26px;
}
.work-info > p {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: var(--muted);
  margin-top: 12px;
}
.work-description {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 280px;
  display: block;
  margin-top: 18px;
}
.work-info .tag-list {
  margin-top: 23px;
}
.work-info > .text-link {
  margin-top: auto;
  padding-top: 25px;
  font-size: 10px;
}
.capabilities-section {
  padding-top: 68px;
}
.services-section {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.services-intro {
  padding-top: 12px;
}
.services-intro .section-title {
  margin-top: 20px;
}
.services-intro .section-copy {
  max-width: 360px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.9;
}
.services-intro > .text-link {
  margin-top: 26px;
}
.services-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 44px;
  font: 400 9px/1.8 var(--font-mono);
  color: var(--muted);
}
.services-note > span {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--bg), var(--surface));
  transition:
    border-color 220ms,
    box-shadow 220ms,
    transform 300ms;
  scroll-margin-top: 16px;
}
.service-card:focus-within {
  border-color: color-mix(in srgb, var(--accent) 60%, var(--line));
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.service-number {
  font: 400 8px var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--muted);
}
.service-icon-frame {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 16%, var(--line));
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent) 6%, var(--bg));
}
.service-icon {
  width: 31px;
  height: 31px;
  color: var(--accent);
  transition: transform 350ms;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.service-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  margin: 12px 0 24px;
}
.service-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 10px;
}
@media (hover: hover) {
  .service-card:hover {
    border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
    box-shadow: 0 15px 30px -22px
      color-mix(in srgb, var(--accent) 35%, transparent);
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  :root:not([data-motion="paused"]) .service-card:hover {
    transform: translateY(-3px);
  }
  :root:not([data-motion="paused"]) .service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.06);
  }
}
:root[data-motion="paused"] .service-card,
:root[data-motion="paused"] .service-icon {
  transition: none;
}
.journey-section {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.journey-section .section-title {
  margin-top: 18px;
  font-size: 38px;
}
.journey-section .section-copy {
  margin-top: 24px;
  font-size: 13px;
}
.journey-links > a {
  display: flex;
  gap: 21px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  transition: padding 0.25s;
}
.journey-links > a:first-child {
  padding-top: 10px;
}
.journey-links > a:hover {
  padding-left: 8px;
}
.journey-icon {
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 23px;
}
.journey-links small {
  font: 400 7px var(--font-mono);
  letter-spacing: 0.15em;
  color: var(--muted);
}
.journey-links h3 {
  font-size: 20px;
  margin: 10px 0;
}
.journey-links p {
  font-size: 10px;
  color: var(--muted);
}
.journey-links > a > span:last-child {
  margin-left: auto;
  color: var(--accent);
  font-size: 23px;
}
.contact-banner {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  width: calc(min(100%, 1344px) - 96px);
  padding: 58px 60px;
  margin-bottom: 96px;
}
.contact-banner .eyebrow {
  font-size: 9px;
  margin-bottom: 24px;
}
.contact-banner h2 {
  font-size: clamp(44px, 4.6vw, 64px);
  font-weight: 500;
}
.contact-banner > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}
.contact-banner > div > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.banner-asterisk {
  position: absolute;
  right: 74px;
  top: 38px;
  font-size: 200px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  align-items: center;
  padding-block: 37px;
  gap: 30px;
}
.footer-top > p {
  color: var(--muted);
  font-size: 11px;
  margin-left: auto;
}
.footer-top .text-link {
  font-size: 10px;
  margin-left: 0;
}
.footer-tools {
  display: flex;
  align-items: center;
  gap: 24px;
}
.motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  min-height: 40px;
  background: none;
  color: var(--muted);
  font-size: 9px;
}
.motion-toggle:hover {
  color: var(--accent);
}
.motion-toggle .icon {
  width: 13px;
  height: 13px;
}
.motion-toggle .play-symbol,
.motion-toggle[aria-pressed="true"] .pause-symbol {
  display: none;
}
.motion-toggle[aria-pressed="true"] .play-symbol {
  display: block;
}
html[data-motion="paused"] *,
html[data-motion="paused"] *::before,
html[data-motion="paused"] *::after {
  animation-play-state: paused !important;
}
html[data-motion="paused"] .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-block: 23px;
  color: var(--muted);
  font-size: 8px;
  gap: 24px;
}
.footer-bottom > div {
  display: flex;
  gap: 22px;
}
.footer-bottom a:hover {
  color: var(--accent);
}
.footer-location {
  font-size: 8px;
}
.page-main {
  padding-bottom: 80px;
}
.page-header {
  padding: 77px 0 54px;
}
.page-header .eyebrow {
  margin-bottom: 24px;
}
.page-title {
  font-size: clamp(44px, 5.8vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 500;
  max-width: 1060px;
}
.page-title em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 1.14em;
}
.page-header .section-copy {
  margin-top: 28px;
  font-size: 15px;
}
.closing-note {
  border-top: 1px solid var(--line);
  padding-top: 45px;
  margin-top: 70px;
}
.closing-note p {
  color: var(--muted);
}
.closing-note .text-link {
  margin-top: 18px;
}
.contact-header {
  padding-bottom: 66px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 85px;
}
.contact-details {
  padding-top: 12px;
}
.contact-details h2 {
  font-size: 41px;
  line-height: 1.2;
  margin-top: 29px;
}
.contact-details > p:not(.availability) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.9;
}
.contact-email {
  margin-top: 38px;
}
.contact-email > .eyebrow {
  font-size: 8px;
}
.contact-email > a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(12px, 1.3vw, 17px);
  margin-top: 11px;
  letter-spacing: -0.02em;
}
.contact-email > a:hover {
  color: var(--accent);
}
.contact-email > a > span {
  color: var(--accent);
}
.copy-button {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  padding: 10px 0;
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
  min-height: 40px;
}
.copy-button .icon {
  width: 13px;
  height: 13px;
}
.copy-button:hover {
  color: var(--accent);
}
.contact-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 25px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 25px;
  font-size: 11px;
}
.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  transition: color 200ms;
}
.contact-socials a:hover {
  color: var(--accent);
}
.contact-socials span {
  color: var(--accent);
}
.contact-local-time {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 400 8px var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 35px;
}
.contact-local-time > [data-manila-time] {
  margin-left: auto;
}
.contact-form-panel {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.form-heading h2 {
  font-size: 24px;
}
.form-heading > span {
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.field label {
  font-size: 10px;
  color: var(--text);
}
.field label > span {
  color: var(--accent);
}
.field input,
.field textarea,
.field select {
  color: var(--text);
  width: 100%;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 13px;
  font-size: 11px;
  line-height: 1.7;
  outline-offset: 3px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.75;
}
.field select {
  min-height: 49px;
}
.field textarea {
  resize: vertical;
  min-height: 135px;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
  margin-top: 15px;
}
.email-draft {
  margin-top: 16px;
  white-space: normal;
}
.form-status {
  font-size: 10px;
  color: var(--accent);
  display: block;
  overflow-wrap: anywhere;
}
.contact-bottom-note {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
  margin-top: 65px;
}
.contact-bottom-note > .eyebrow {
  font-size: 9px;
}
.contact-bottom-note > p {
  font-size: 12px;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.hero {
  overflow: clip;
}
.hero-art {
  min-width: 0;
  border: 1px solid transparent;
}
.hero-logo {
  height: auto;
}
.art-coordinate {
  top: 60px;
  bottom: auto;
  right: 8px;
}
.footer-bottom > div > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom .icon {
  width: 11px;
  height: 11px;
}
[data-theme="light"] .hero-art {
  background: #111214;
  overflow: hidden;
  border: 1px solid #ffffff12;
  border-radius: 8px;
}
[data-theme="light"] .hero-art .art-topline,
[data-theme="light"] .hero-art .art-caption,
[data-theme="light"] .hero-art .art-coordinate {
  color: #a6a5a4;
}
.hero-art .art-topline {
  top: 18px;
  right: 20px;
}
.hero-art .art-caption {
  bottom: 20px;
  right: 20px;
}
.hero-art .art-coordinate {
  right: 20px;
}
[data-theme="light"] .hero-art .art-cross {
  color: #d9aa8b;
}
[data-theme="light"] .hero-art .hero-logo {
  mix-blend-mode: lighten;
  filter: brightness(0.91);
  mask-image: radial-gradient(ellipse, black 40%, transparent 74%);
}
[data-theme="light"] .hero-art .specialist-card {
  background: #1b1c1e;
  color: #f3f0eb;
  border-color: #ffffff20;
}
[data-theme="light"] .hero-art .specialist-card div > span {
  color: #a6a5a4;
}
[data-theme="light"] .hero-art .specialist-icon {
  color: #d9aa8b;
  border-color: #ffffff20;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 800px;
  }
  .hero h1 {
    font-size: 82px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding-inline: 32px;
  }
  .header-inner {
    gap: 24px;
  }
  .nav-links {
    gap: 20px;
  }
  .brand > .brand-name {
    font-size: 9px;
  }
  .brand small {
    font-size: 5.5px;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-contact {
    padding-inline: 10px;
    gap: 10px;
  }
  .hero {
    min-height: 690px;
    padding-top: 60px;
    padding-bottom: 86px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-location {
    font-size: 8px;
  }
  .hero-location .location-rule {
    width: 10px;
  }
  .hero-art {
    margin-left: 0;
  }
  .specialist-card {
    left: 5%;
    right: 0;
    bottom: 35px;
  }
  .art-caption {
    bottom: 0;
  }
  .art-coordinate {
    bottom: 132px;
  }
  .scroll-cue {
    left: 32px;
  }
  .contact-banner {
    width: calc(100% - 64px);
    padding: 50px;
  }
  .journey-section {
    gap: 60px;
  }
  .contact-layout {
    gap: 55px;
  }
  .work-info {
    padding: 30px;
  }
  .mini-app {
    aspect-ratio: 1.8;
  }
  .mini-sidebar {
    padding-left: 8px;
    padding-right: 8px;
  }
  .mini-content {
    padding-inline: 12px;
  }
  .about-section {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .site-header {
    height: 80px;
  }
  .header-inner nav {
    margin-left: auto;
  }
  .nav-actions {
    gap: 15px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-contact {
    padding: 9px 14px;
  }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 79px;
    display: none;
    background: var(--bg);
    padding: 16px 32px 25px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 25px #0003;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .nav-links.open {
    display: grid;
  }
  .nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
  }
  .nav-links a.active::after {
    left: auto;
    right: 24px;
    top: 50%;
    bottom: auto;
  }
  .brand > .brand-name {
    font-size: 10px;
  }
  .brand small {
    font-size: 6.5px;
  }
  .hero {
    grid-template-columns: 1.1fr 1fr;
    min-height: 660px;
    padding-top: 56px;
    gap: 0;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-description {
    max-width: 330px;
  }
  .desktop-break {
    display: none;
  }
  .hero-buttons {
    gap: 9px;
  }
  .hero-buttons .button {
    padding: 13px 16px;
    gap: 20px;
    font-size: 10px;
    min-height: 48px;
  }
  .hero-location {
    flex-wrap: wrap;
    max-width: 320px;
    font-size: 8px;
  }
  .hero-art {
    aspect-ratio: 0.85;
  }
  .art-topline {
    font-size: 6px;
    left: 10px;
  }
  .hero-logo {
    width: 130%;
  }
  .specialist-card {
    padding: 13px;
    gap: 9px;
    bottom: 22px;
    left: 0;
    right: 0;
  }
  .specialist-card strong {
    font-size: 9px;
  }
  .specialist-card div > span {
    font-size: 5px;
  }
  .specialist-icon {
    width: 30px;
    height: 30px;
  }
  .art-caption {
    bottom: -9px;
    font-size: 6px;
    left: 10px;
  }
  .expertise-strip span {
    font-size: 10px;
  }
  .expertise-strip > .container {
    gap: 12px;
  }
  .expertise-strip i {
    font-size: 18px;
  }
  .about-section {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .about-section .eyebrow {
    font-size: 8px;
  }
  .section-space {
    padding-block: 72px;
  }
  .work-section {
    padding-bottom: 24px;
  }
  .featured-work {
    grid-template-columns: 1.2fr 1fr;
    min-height: 360px;
  }
  .work-visual {
    padding-inline: 20px;
  }
  .mini-app {
    aspect-ratio: 1.5;
  }
  .mini-sidebar {
    width: 26%;
    gap: 13px;
  }
  .mini-sidebar b {
    font-size: 11px;
  }
  .mini-sidebar i {
    font-size: 4px;
  }
  .mini-content h3 {
    font-size: 10px;
  }
  .mini-table > div {
    font-size: 3.5px;
    padding-block: 10px;
  }
  .work-info {
    padding: 25px;
  }
  .work-info > h3 {
    font-size: 29px;
    margin-top: 20px;
  }
  .work-info > p {
    font-size: 21px;
  }
  .work-description {
    font-size: 10px;
  }
  .work-info .tag {
    font-size: 7px;
  }
  .work-info .eyebrow {
    font-size: 6.5px;
  }
  .services-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-intro .section-copy {
    max-width: 480px;
  }
  .services-note {
    margin-top: 22px;
  }
  .journey-section {
    gap: 32px;
    padding-top: 10px;
  }
  .journey-section .section-title {
    font-size: 31px;
  }
  .journey-links > a {
    gap: 14px;
  }
  .journey-links h3 {
    font-size: 18px;
  }
  .journey-links p {
    font-size: 9px;
  }
  .journey-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }
  .contact-layout {
    gap: 30px;
  }
  .contact-form-panel {
    padding: 25px;
  }
  .form-row {
    gap: 15px;
  }
  .contact-details h2 {
    font-size: 34px;
  }
  .contact-details > p:not(.availability) {
    font-size: 11px;
  }
  .contact-email > a {
    font-size: 12px;
  }
  .contact-bottom-note {
    padding-top: 30px;
  }
  .footer-location {
    display: none;
  }
}
@media (max-width: 700px) {
  .container {
    padding-inline: 24px;
  }
  .site-header {
    height: 73px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .brand > .brand-name {
    font-size: 8px;
  }
  .brand small {
    font-size: 5px;
  }
  .brand {
    gap: 8px;
  }
  .nav-actions {
    gap: 5px;
    margin-left: auto;
  }
  .header-inner nav {
    margin: 0;
  }
  .nav-contact {
    display: none;
  }
  .nav-toggle {
    width: 38px;
  }
  .nav-links {
    top: 72px;
    padding-inline: 24px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 67px;
    gap: 26px;
  }
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .hero-intro {
    margin-top: 27px;
    font-size: 8px;
    margin-bottom: 17px;
  }
  .hero-avatar {
    width: 44px;
    height: 44px;
  }
  .hero-identity strong {
    font-size: 14px;
  }
  .hero h1 {
    font-size: clamp(51px, 10.5vw, 70px);
    line-height: 1.08;
  }
  .hero-description {
    font-size: 12px;
    max-width: 390px;
    margin-top: 23px;
  }
  .hero-buttons {
    margin-top: 25px;
    gap: 12px;
  }
  .hero-buttons .button {
    padding: 15px 18px;
    font-size: 11px;
    gap: 25px;
  }
  .hero-location {
    margin-top: 26px;
    font-size: 8px;
    max-width: none;
  }
  .hero-art {
    aspect-ratio: 1.25;
    width: 100%;
    max-width: 440px;
    margin: 9px auto 0;
  }
  .hero-logo {
    width: 110%;
    transform: translateY(-12px);
  }
  .art-orbit {
    width: 75%;
  }
  .art-topline {
    top: 0;
    font-size: 6px;
  }
  .art-coordinate {
    bottom: 93px;
    font-size: 6px;
  }
  .specialist-card {
    left: 12%;
    right: 3%;
    bottom: 17px;
    padding: 12px 15px;
  }
  .specialist-card strong {
    font-size: 10px;
  }
  .specialist-card div > span {
    font-size: 5.5px;
  }
  .art-caption {
    bottom: -13px;
    font-size: 6px;
  }
  .scroll-cue {
    left: 24px;
    bottom: 19px;
    font-size: 6px;
  }
  .scroll-line {
    height: 17px;
  }
  .expertise-strip > .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px 15px;
    padding-block: 23px;
    min-height: 95px;
  }
  .expertise-strip span {
    font-size: 9px;
    text-align: center;
  }
  .expertise-strip i {
    font-size: 15px;
    text-align: center;
  }
  .expertise-strip i:nth-of-type(2) {
    display: none;
  }
  .section-space {
    padding-block: 57px;
  }
  .section-heading {
    align-items: start;
    margin-bottom: 28px;
    gap: 20px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 15px;
  }
  .section-heading > .text-link {
    font-size: 9px;
    gap: 10px;
    white-space: nowrap;
    margin-top: 31px;
  }
  .section-heading > .text-link span {
    font-size: 16px;
  }
  .section-title {
    font-size: 34px;
  }
  .section-copy {
    font-size: 13px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-portrait {
    width: min(100%, 320px);
    margin: 25px auto 0;
  }
  .portrait-caption .about-signature {
    font-size: 39px;
  }
  .about-section .eyebrow {
    font-size: 8px;
  }
  .about-copy .section-copy {
    font-size: 12px;
    margin-top: 17px;
  }
  .about-copy > .text-link {
    margin-top: 22px;
    font-size: 11px;
  }
  .work-section {
    padding-bottom: 15px;
  }
  .featured-work {
    grid-template-columns: 1fr;
  }
  .work-visual {
    padding: 63px 30px 53px;
    min-height: 290px;
  }
  .mini-app {
    aspect-ratio: 1.85;
  }
  .mini-content h3 {
    font-size: 13px;
  }
  .mini-sidebar i {
    font-size: 4.5px;
  }
  .mini-table > div {
    padding: 7px 0;
  }
  .work-info {
    padding: 27px;
  }
  .work-info > h3 {
    font-size: 34px;
    margin-top: 19px;
  }
  .work-info > p {
    font-size: 24px;
  }
  .work-description {
    font-size: 12px;
    max-width: 100%;
  }
  .work-info .eyebrow {
    font-size: 8px;
  }
  .work-info .tag {
    font-size: 8px;
  }
  .work-info .tag-list {
    margin-top: 19px;
  }
  .work-info > .text-link {
    font-size: 11px;
    padding-top: 25px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .service-card-top {
    margin-bottom: 22px;
  }
  .journey-section {
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .journey-section .section-title {
    font-size: 34px;
  }
  .journey-section .section-copy {
    font-size: 12px;
    margin-top: 18px;
  }
  .journey-links p {
    font-size: 10px;
  }
  .journey-links h3 {
    font-size: 20px;
  }
  .journey-icon {
    width: 40px;
    height: 40px;
  }
  .contact-banner {
    width: calc(100% - 48px);
    padding: 32px 26px;
    margin-bottom: 54px;
  }
  .contact-banner .eyebrow {
    font-size: 6.5px;
    max-width: 190px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .contact-banner h2 {
    font-size: 40px;
    position: relative;
    z-index: 1;
  }
  .contact-banner > div {
    align-items: start;
    flex-direction: column;
    gap: 22px;
    margin-top: 23px;
  }
  .contact-banner > div > p {
    font-size: 11px;
  }
  .banner-asterisk {
    right: 17px;
    top: 11px;
    font-size: 95px;
    opacity: 0.13;
  }
  .footer-top {
    flex-wrap: wrap;
    padding-block: 28px;
    gap: 20px;
  }
  .footer-top > p {
    font-size: 9px;
    margin: 0;
    order: 3;
    width: 100%;
  }
  .footer-top .text-link {
    margin-left: auto;
    font-size: 9px;
    gap: 10px;
  }
  .footer-tools {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    order: 4;
  }
  .footer-top .footer-tools .text-link {
    margin-left: 0;
  }
  .footer-bottom {
    align-items: start;
    padding-block: 20px;
    gap: 15px;
    font-size: 7px;
  }
  .footer-bottom > div {
    gap: 13px;
  }
  .page-main {
    padding-bottom: 48px;
  }
  .page-header {
    padding: 46px 0 38px;
  }
  .page-header .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  .page-title {
    font-size: clamp(42px, 9.5vw, 64px);
  }
  .page-header .section-copy {
    font-size: 12px;
    margin-top: 21px;
  }
  .closing-note {
    margin-top: 45px;
    padding-top: 30px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .contact-details {
    padding-top: 0;
  }
  .contact-details h2 {
    font-size: 36px;
    margin-top: 22px;
  }
  .contact-details > p:not(.availability) {
    font-size: 12px;
  }
  .contact-email {
    margin-top: 27px;
  }
  .contact-email > a {
    font-size: 15px;
  }
  .contact-socials {
    margin-top: 16px;
    gap: 6px 24px;
  }
  .contact-local-time {
    margin-top: 25px;
  }
  .contact-form-panel {
    padding: 25px 22px;
  }
  .form-heading h2 {
    font-size: 23px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field label {
    font-size: 11px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 13px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 12px;
  }
  .field select {
    font-size: 12px;
  }
  .form-note {
    font-size: 10px;
  }
  .contact-bottom-note {
    flex-direction: column;
    gap: 18px;
    margin-top: 38px;
  }
  .contact-bottom-note > .eyebrow {
    font-size: 8px;
  }
  .contact-bottom-note > p {
    font-size: 11px;
  }
}
@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(38px, 10.8vw, 70px);
  }
  .hero-art .art-coordinate {
    top: 39px;
    bottom: auto;
    font-size: 6px;
  }
  .hero-art {
    margin-bottom: 20px;
  }
  .hero-art .art-topline {
    top: 12px;
    font-size: 5px;
  }
  .hero-art .specialist-card {
    bottom: 24px;
    left: 6%;
    right: 6%;
  }
  .hero-art .art-caption {
    bottom: 4px;
    font-size: 5px;
  }
  .field select {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
