:root {
  --bg: #f4f1ea;
  --surface: #fbf9f4;
  --surface-strong: #f0ebe2;
  --panel: rgba(255, 255, 255, 0.7);
  --ink: #131313;
  --muted: #5d584f;
  --muted-strong: #7d766c;
  --line: rgba(19, 19, 19, 0.12);
  --line-strong: rgba(19, 19, 19, 0.22);
  --dark: #111111;
  --dark-soft: #1a1a1a;
  --dark-line: rgba(255, 255, 255, 0.14);
  --light-ink: #f9f6ef;
  --accent: #c8b59a;
  --accent-strong: #aa8e69;
  --success: #d8cfbf;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-soft: 0 18px 50px rgba(12, 12, 12, 0.08);
  --shadow-strong: 0 30px 90px rgba(12, 12, 12, 0.18);
  --max-width: 1280px;
  --nav-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #111111, #aa8e69, #f9f6ef);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(170, 142, 105, 0.18), rgba(170, 142, 105, 0.06) 38%, transparent 68%);
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.85;
  transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 181, 154, 0.18), transparent 30%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms cubic-bezier(0.2, 0.82, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.82, 0.2, 1);
  padding-top: var(--nav-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #111111;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 620ms cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

body.page-ready {
  opacity: 1;
  transform: none;
}

body.page-leaving {
  opacity: 0;
  transform: translateY(12px) scale(0.995);
}

body.page-leaving::before {
  clip-path: inset(0 0 0 0);
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--dark);
  color: var(--light-ink);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.shell-wide {
  width: min(calc(100% - 2rem), 1360px);
}

.section {
  position: relative;
  padding: 6rem 0;
}

main > .section:last-child {
  padding-bottom: 4rem;
}

main > .section-dark:last-child {
  padding-bottom: 3.25rem;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200, 181, 154, 0.12), transparent 25%),
    linear-gradient(180deg, #131313 0%, #0c0c0c 100%);
  color: var(--light-ink);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.055) 42%, transparent 58%);
  opacity: 0.7;
  transform: translateX(-35%);
  animation: darkSectionGlide 9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-accent {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05)),
    var(--surface);
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.72) 44%, transparent 58%);
  opacity: 0.46;
  transform: translateX(-52%);
  animation: softSectionSweep 12s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.section-accent > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.section-dark .eyebrow {
  color: rgba(249, 246, 239, 0.72);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  max-width: 24ch;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-dark p,
.section-dark li,
.section-dark .muted-copy {
  color: rgba(249, 246, 239, 0.72);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.narrow-copy {
  max-width: 44rem;
}

.button {
  --button-x: 0px;
  --button-y: 0px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 260ms cubic-bezier(0.2, 0.82, 0.2, 1), border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 260ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -30%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-220%) rotate(18deg);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate3d(var(--button-x), var(--button-y), 0) translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(520%) rotate(18deg);
}

.button-primary {
  background: var(--dark);
  color: var(--light-ink);
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #222;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.section-dark .button-secondary {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--light-ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(250, 247, 241, 0.78);
  border-bottom: 1px solid rgba(19, 19, 19, 0.06);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-open {
  background: rgba(250, 247, 241, 0.96);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.92);
  border-bottom-color: rgba(19, 19, 19, 0.1);
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.08);
}

.site-nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-identity {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  padding: 0.35rem;
  box-shadow: var(--shadow-soft);
}

.brand-identity img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  position: relative;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(19, 19, 19, 0.06);
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.site-header.is-open .menu-toggle span {
  background: transparent;
}

.site-header.is-open .menu-toggle span::before {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span::after {
  transform: rotate(-45deg);
}

.hero {
  padding-top: 4rem;
}

.landing-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), rgba(246, 243, 237, 0.96) 44%, rgba(226, 221, 212, 1) 100%);
  isolation: isolate;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 32%, rgba(12, 12, 12, 0.06) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(12, 12, 12, 0.13), transparent 45%);
  pointer-events: none;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(19, 19, 19, 0.022) 0 1px, transparent 1px 7rem),
    repeating-linear-gradient(0deg, rgba(19, 19, 19, 0.016) 0 1px, transparent 1px 7rem);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroGridBreathe 14s ease-in-out infinite;
}

.landing-sheen {
  position: absolute;
  inset: -35%;
  background:
    linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0.82) 43%, transparent 53%),
    radial-gradient(ellipse at 42% 46%, rgba(255, 255, 255, 0.58), transparent 34%);
  opacity: 0.62;
  transform: rotate(-8deg);
  animation: studioLightSweep 13s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.cinematic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cinematic-bg::before,
.cinematic-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.cinematic-bg::before {
  background:
    radial-gradient(ellipse at 22% 45%, rgba(12, 12, 12, 0.1), transparent 24%),
    radial-gradient(ellipse at 76% 44%, rgba(170, 142, 105, 0.2), transparent 28%),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.52) 36%, transparent 52%, rgba(12, 12, 12, 0.055) 72%, transparent 88%);
  filter: blur(34px);
  opacity: 0.82;
  animation: premiumLightDrift 18s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.cinematic-bg::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.22)),
    repeating-radial-gradient(circle at center, rgba(19, 19, 19, 0.035) 0 0.7px, transparent 0.7px 4px);
  mix-blend-mode: multiply;
  opacity: 0.2;
  animation: grainFloat 10s steps(8) infinite;
}

.landing-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 2rem;
  text-align: center;
}

.landing-brand {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  animation: landingBrandIn 1000ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.landing-logo {
  width: min(30rem, 52vw);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(12, 12, 12, 0.08));
  animation: logoPresence 6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.landing-services {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.capability-rail {
  width: min(58rem, calc(100vw - 2rem));
  overflow: hidden;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(19, 19, 19, 0.1);
  border-bottom: 1px solid rgba(19, 19, 19, 0.1);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.capability-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: capabilityMarquee 24s linear infinite;
}

.capability-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(19, 19, 19, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.capability-track span::after {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(170, 142, 105, 0.9);
}

.landing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.landing-service {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: none;
  animation-duration: 1100ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.9, 0.2, 1);
}

.landing-service-dark {
  color: #0f0f10;
  font-weight: 700;
}

.landing-service-light {
  color: rgba(19, 19, 19, 0.36);
  font-weight: 500;
}

.landing-chip {
  position: relative;
  overflow: hidden;
  width: clamp(4.8rem, 8vw, 6.5rem);
  height: clamp(4.8rem, 8vw, 6.5rem);
  border-radius: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #181818, #050505);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  animation: landingChipFloat 4.8s ease-in-out infinite, landingChipIn 1000ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.landing-chip::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.22), transparent 62%);
  transform: translateX(-45%) rotate(18deg);
  animation: chipSheen 4.2s ease-in-out infinite;
}

.landing-chip-muted {
  background: linear-gradient(180deg, #3b3b3b, #262626);
  color: rgba(255, 255, 255, 0.4);
}

.landing-chip-graphic {
  position: relative;
  z-index: 1;
  display: block;
  width: 56%;
  height: 56%;
  transition: opacity 180ms ease, transform 180ms ease;
}

.landing-chip-graphic.is-swapping {
  opacity: 0;
  transform: scale(0.78);
}

.landing-graphic-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 0 / 36% 36% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 100% 0 / 36% 36% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 100% / 36% 36% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 100% 100% / 36% 36% no-repeat;
}

.landing-graphic-bars {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 18% / 100% 16% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.7) 0 0) 0 50% / 78% 16% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.52) 0 0) 0 82% / 58% 16% no-repeat;
}

.landing-graphic-wave::before,
.landing-graphic-wave::after,
.landing-graphic-diagonal::before,
.landing-graphic-ring::before,
.landing-graphic-ring::after {
  content: "";
  position: absolute;
  inset: 0;
}

.landing-graphic-wave::before {
  inset: 26% 0;
  border-top: 0.35rem solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transform: skewY(-12deg);
}

.landing-graphic-wave::after {
  inset: 52% 0 0;
  border-top: 0.35rem solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  transform: skewY(12deg);
}

.landing-graphic-diagonal::before {
  inset: 0;
  background:
    linear-gradient(135deg, transparent 34%, rgba(255, 255, 255, 0.95) 34%, rgba(255, 255, 255, 0.95) 44%, transparent 44%, transparent 56%, rgba(255, 255, 255, 0.62) 56%, rgba(255, 255, 255, 0.62) 66%, transparent 66%);
}

.landing-graphic-ring::before {
  inset: 6%;
  border: 0.35rem solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.landing-graphic-ring::after {
  inset: 31%;
  border: 0.28rem solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
}

.landing-graphic-corners {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 0 / 44% 14% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 0 / 14% 44% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 100% 0 / 44% 14% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 100% 0 / 14% 44% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 100% / 44% 14% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 0 100% / 14% 44% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 100% 100% / 44% 14% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92) 0 0) 100% 100% / 14% 44% no-repeat;
}

.landing-graphic-arc::before,
.landing-graphic-dots::before,
.landing-graphic-dots::after {
  content: "";
  position: absolute;
}

.landing-graphic-arc::before {
  inset: 12%;
  border: 0.34rem solid transparent;
  border-top-color: rgba(255, 255, 255, 0.92);
  border-right-color: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  transform: rotate(30deg);
}

.landing-graphic-dots::before {
  inset: 18% auto auto 18%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 1.2rem 0 rgba(255, 255, 255, 0.76), 2.4rem 0 rgba(255, 255, 255, 0.56);
}

.landing-graphic-dots::after {
  inset: auto auto 18% 18%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 1.2rem 0 rgba(255, 255, 255, 0.76), 2.4rem 0 rgba(255, 255, 255, 0.92);
}

.landing-service-motion {
  animation-name: landingLeftIn;
}

.landing-service-print {
  animation-name: landingRightIn;
  animation-delay: 180ms;
}

.landing-service-design {
  animation-name: landingUpIn;
  animation-delay: 260ms;
}

.landing-chip-top {
  animation-delay: 120ms;
}

.landing-chip-bottom {
  animation-delay: 220ms;
}

.hero-grid,
.split-grid,
.contact-layout,
.founder-note {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.hero-copy h1 {
  max-width: none;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics div,
.info-card,
.feature-card,
.showcase-card,
.process-step,
.service-item,
.portfolio-card,
.contact-panel,
.quote-form,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hero-metrics div {
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.intro-band {
  position: relative;
}

.intro-band h2 {
  max-width: 100%;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.split-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-kicker {
  max-width: 42rem;
  margin-top: -0.1rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.section-heading h1,
.section-heading h2 {
  max-width: min(100%, 980px);
}

.section-heading-wide h1,
.section-heading-wide h2 {
  max-width: 100%;
}

.services-page .section-heading h1,
.services-page .section-heading h2 {
  max-width: 1080px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.services-overview .section-heading h1,
.services-overview .section-heading h2,
.print-product-menu .section-heading h2 {
  max-width: 16ch;
}

.services-overview .section-heading h1,
.services-overview .section-heading h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 4.65vw, 4.8rem);
}

.services-overview .section-heading {
  max-width: none;
  margin-bottom: 2.1rem;
}

.section-heading::after {
  content: "";
  width: min(9rem, 30vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 142, 105, 0.95), rgba(170, 142, 105, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 0.92, 0.18, 1) 240ms;
}

.section-heading.is-visible::after,
.reveal.is-visible .section-heading::after {
  transform: scaleX(1);
}

.card-grid,
.feature-grid,
.showcase-grid,
.process-grid,
.portfolio-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.info-card,
.feature-card,
.process-step,
.service-item,
.portfolio-card {
  padding: 1.5rem;
}

.feature-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.feature-card p {
  line-height: 1.55;
}

.showcase-card {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.service-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 10px);
  border: 1px solid rgba(19, 19, 19, 0.08);
  margin-bottom: 1rem;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
}

.info-card,
.feature-card,
.showcase-card,
.service-item,
.process-step,
.portfolio-card,
.contact-panel,
.quote-form,
.cta-panel {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1), box-shadow 420ms ease, border-color 420ms ease, background-color 420ms ease;
}

.info-card::before,
.feature-card::before,
.service-item::before,
.process-step::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.38) 46%, transparent 60%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 260ms ease, transform 820ms cubic-bezier(0.2, 0.82, 0.2, 1);
  pointer-events: none;
}

.feature-card::after,
.service-item::after,
.process-step::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-right: 1px solid rgba(170, 142, 105, 0.42);
  border-bottom: 1px solid rgba(170, 142, 105, 0.42);
  opacity: 0;
  transform: translate(0.35rem, 0.35rem);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.2, 0.82, 0.2, 1);
  pointer-events: none;
}

.section-dark .service-item::before,
.section-dark .process-step::before {
  background: linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 60%);
}

.info-card:hover,
.feature-card:hover,
.showcase-card:hover,
.service-item:hover,
.portfolio-card:hover,
.contact-panel:hover,
.quote-form:hover,
.cta-panel:hover {
  transform: translateY(-7px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 24px 55px rgba(12, 12, 12, 0.12);
  border-color: rgba(19, 19, 19, 0.18);
}

.feature-card:hover,
.service-item:hover,
.process-step:hover,
.quote-form:hover,
.contact-panel:hover {
  transform: translateY(-7px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.feature-card h3,
.service-item h3,
.process-step h3 {
  transition: transform 420ms cubic-bezier(0.2, 0.82, 0.2, 1), color 260ms ease;
}

.feature-card:hover h3,
.service-item:hover h3,
.process-step:hover h3 {
  transform: translateY(-2px);
}

.info-card:hover::before,
.feature-card:hover::before,
.service-item:hover::before,
.process-step:hover::before,
.cta-panel:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.feature-card:hover::after,
.service-item:hover::after,
.process-step:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.showcase-surface,
.portfolio-visual {
  min-height: 15rem;
  border-radius: calc(var(--radius-md) - 10px);
  border: 1px solid rgba(19, 19, 19, 0.08);
  background-size: cover;
  background-position: center;
}

.surface-card {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(48, 48, 48, 0.7)),
    linear-gradient(45deg, rgba(200, 181, 154, 0.32), transparent 60%);
}

.surface-banner {
  background:
    linear-gradient(135deg, rgba(200, 181, 154, 0.7), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, #181818 0%, #353535 100%);
}

.surface-motion {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(135deg, #111 0%, #2c2c2c 44%, #7f6b52 100%);
}

.surface-flyer {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(200, 181, 154, 0.3)),
    linear-gradient(135deg, #151515 0%, #666 100%);
}

.surface-brochure {
  background:
    linear-gradient(135deg, rgba(200, 181, 154, 0.45), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, #1c1c1c 0%, #3f3a34 100%);
}

.surface-brand {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 25%),
    linear-gradient(135deg, #120f0c 0%, #8b7357 100%);
}

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

.process-step,
.section-dark .service-item,
.section-dark .contact-panel,
.section-dark .quote-form {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--dark-line);
  box-shadow: none;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(249, 246, 239, 0.58);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.cta-panel h2 {
  max-width: min(100%, 980px);
}

.page-hero {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.page-hero-simple {
  padding-top: 4.25rem;
}

.page-hero-copy {
  display: grid;
  gap: 1.25rem;
  max-width: none;
}

.page-hero-copy h1 {
  max-width: none;
  width: 100%;
}

.page-hero-copy .lead {
  max-width: 78ch;
}

.thank-you-redirect {
  margin-top: -0.6rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.page-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero-points span,
.page-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.page-hero-note {
  width: auto;
  border-radius: 1.25rem;
  align-items: flex-start;
}

.page-hero-note strong {
  color: var(--ink);
}

.about-hero,
.founder-note {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-premium-hero {
  min-height: 50svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0.035) 1px, transparent 1px) 0 0 / 5rem 5rem,
    linear-gradient(0deg, rgba(19, 19, 19, 0.025) 1px, transparent 1px) 0 0 / 5rem 5rem;
  mask-image: radial-gradient(circle at 55% 42%, rgba(0, 0, 0, 0.54), transparent 66%);
  pointer-events: none;
}

.about-premium-grid,
.about-standard-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.7fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.about-premium-grid h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 6.2vw, 6.6rem);
  line-height: 0.96;
}

.about-premium-copy {
  display: grid;
  gap: 1.4rem;
  max-width: 34rem;
  padding: 1.4rem;
  border-left: 1px solid var(--line);
}

.about-premium-copy p {
  font-size: 1.08rem;
  max-width: 46rem;
}

.about-standard {
  padding: clamp(4.5rem, 6vw, 6.5rem) 0;
}

.about-standard-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: center;
}

.about-standard h2 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 4.1vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.standard-points {
  display: grid;
  gap: 0.75rem;
}

.standard-point {
  position: relative;
  display: grid;
  grid-template-columns: 5.8rem minmax(0, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1rem, 1.6vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.standard-point::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 0%, rgba(200, 181, 154, 0.16) 46%, transparent 62%);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 320ms ease, transform 900ms cubic-bezier(0.16, 0.92, 0.18, 1);
  pointer-events: none;
}

.standard-point:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

.standard-pill {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 4.5rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(200, 181, 154, 0.24);
  border-radius: 999px;
  background: rgba(200, 181, 154, 0.1);
  color: rgba(249, 246, 239, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.standard-point h3 {
  margin-bottom: 0.25rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  letter-spacing: -0.035em;
}

.standard-point p {
  max-width: 48ch;
  font-size: 0.92rem;
  line-height: 1.5;
}

.founder-copy {
  max-width: 42rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.services-overview {
  padding-top: 5.25rem;
  padding-bottom: 1.5rem;
}

.service-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-lane {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 15.2rem;
  align-content: end;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 520ms cubic-bezier(0.2, 0.82, 0.2, 1), box-shadow 420ms ease, border-color 420ms ease;
}

.service-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(19, 19, 19, 0.045) 0 1px, transparent 1px 4.5rem),
    repeating-linear-gradient(0deg, rgba(19, 19, 19, 0.03) 0 1px, transparent 1px 4.5rem);
  mask-image: radial-gradient(circle at 72% 22%, rgba(0, 0, 0, 0.6), transparent 58%);
  opacity: 0.76;
  transition: opacity 420ms ease, transform 720ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.service-lane::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 5.8rem;
  height: 5.8rem;
  border-top: 1px solid rgba(170, 142, 105, 0.5);
  border-right: 1px solid rgba(170, 142, 105, 0.5);
  opacity: 0.72;
  transition: transform 620ms cubic-bezier(0.2, 0.82, 0.2, 1), opacity 320ms ease;
}

.service-lane > * {
  position: relative;
  z-index: 1;
}

.service-lane:hover {
  transform: translateY(-8px);
  border-color: rgba(19, 19, 19, 0.2);
  box-shadow: var(--shadow-strong);
}

.service-lane:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.service-lane:hover::after {
  opacity: 1;
  transform: translate(-0.35rem, 0.35rem);
}

.service-lane-dark {
  background:
    linear-gradient(135deg, rgba(37, 37, 37, 0.94), rgba(12, 12, 12, 0.98)),
    var(--dark);
  border-color: var(--dark-line);
  color: var(--light-ink);
}

.service-lane-dark::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4.5rem),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 4.5rem);
}

.service-lane-dark p {
  color: rgba(249, 246, 239, 0.72);
}

.service-lane h3 {
  max-width: none;
  font-size: clamp(2.25rem, 3.15vw, 3.45rem);
  line-height: 1;
}

.service-lane p {
  max-width: 46rem;
  font-size: 1rem;
}

.service-lane strong {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  min-height: 2.6rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(170, 142, 105, 0.1);
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-lane strong::after {
  content: "->";
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  transition: transform 260ms ease;
}

.service-lane:hover strong::after {
  transform: translateX(0.25rem);
}

.service-lane-dark strong {
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
}

.print-product-menu {
  overflow: hidden;
}

.product-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.9rem;
}

.product-category {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition: transform 520ms cubic-bezier(0.2, 0.82, 0.2, 1), border-color 360ms ease, box-shadow 360ms ease;
}

.product-category[open] {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(19, 19, 19, 0.18);
}

.product-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.52) 45%, transparent 62%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 260ms ease, transform 820ms cubic-bezier(0.2, 0.82, 0.2, 1);
  pointer-events: none;
}

.product-category:hover {
  transform: translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(19, 19, 19, 0.18);
  box-shadow: 0 24px 55px rgba(12, 12, 12, 0.12);
}

.product-category:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.product-category-large {
  grid-column: span 1;
}

.product-category h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  line-height: 1.02;
}

.product-category summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.product-category summary::-webkit-details-marker {
  display: none;
}

.product-category summary span {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.product-category summary h3 {
  margin: 0;
}

.product-category summary small {
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.product-category summary strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.07);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-category summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--dark);
  color: var(--light-ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform 260ms ease, background-color 260ms ease;
}

.product-category[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--accent-strong);
}

.product-category ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  opacity: 0;
  transition: max-height 520ms cubic-bezier(0.2, 0.82, 0.2, 1), opacity 320ms ease, margin-top 320ms ease;
}

.product-category[open] ul {
  max-height: 44rem;
  margin-top: 1rem;
  opacity: 1;
}

.product-category li {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.36rem 0.6rem;
  border: 1px solid rgba(19, 19, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.2;
}

.services-faq {
  padding-top: 5rem;
}

.faq-grid {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--light-ink);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  transition: transform 260ms ease, background-color 260ms ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--accent-strong);
}

.faq-item p {
  max-width: 82ch;
  padding: 0 1.35rem 1.25rem;
}

.services-page .service-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.services-page .service-item {
  transition-duration: 640ms;
}

.js .services-page .service-item.reveal {
  --reveal-x: 0px;
  --reveal-y: 48px;
  --reveal-scale: 0.975;
  transition-duration: 1320ms;
  transition-timing-function: cubic-bezier(0.12, 0.82, 0.18, 1);
}

.js .services-page .section-heading.reveal {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 0.99;
  transition-duration: 1180ms;
}

.services-page .service-item:hover {
  transform: translateY(-5px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.services-section-first {
  padding-top: 3.5rem;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(12, 12, 12, 0.12);
  border-color: rgba(19, 19, 19, 0.18);
}

.service-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
}

.service-visual-copy {
  padding: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.service-gallery-dark .service-visual-card {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.service-gallery-dark .service-visual-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.service-item {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.service-item-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 10px);
  border: 1px solid rgba(19, 19, 19, 0.08);
  transition: transform 850ms cubic-bezier(0.16, 0.92, 0.18, 1), filter 420ms ease;
}

.service-item p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.section-dark .service-item-art {
  border-color: rgba(255, 255, 255, 0.12);
}

.info-card:hover .service-thumb,
.service-visual-card:hover img,
.service-item:hover .service-item-art {
  transform: scale(1.045) translateY(-3px);
  filter: saturate(1.05) contrast(1.03);
}

.centered-action {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.services-page .centered-action {
  justify-content: center;
}

.stacked-copy {
  display: grid;
  gap: 1rem;
}

.contact-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1.2rem;
}

.quote-form,
.contact-panel {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem 1rem;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.section-dark input,
.section-dark select,
.section-dark textarea {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--light-ink);
}

.section-dark select option {
  background: #191919;
  color: var(--light-ink);
}

.section-dark select:invalid {
  color: rgba(249, 246, 239, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(170, 142, 105, 0.14);
}

textarea {
  resize: vertical;
}

.contact-points,
.site-footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.contact-points li {
  position: relative;
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--dark-line);
}

.contact-points li:last-child {
  border-bottom: 0;
}

.contact-points strong {
  color: var(--light-ink);
  font-size: 0.92rem;
}

.contact-points span {
  color: rgba(249, 246, 239, 0.68);
  font-size: 0.95rem;
}

.contact-panel h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 2.75vw, 3.05rem);
  line-height: 1;
}

.contact-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.35rem;
  padding: 1rem;
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-note strong {
  color: var(--light-ink);
  font-size: 0.95rem;
}

.contact-note span {
  color: rgba(249, 246, 239, 0.66);
  font-size: 0.92rem;
}

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

.portfolio-card {
  display: grid;
  gap: 1rem;
}

.portfolio-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.06);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 1rem 0 1.5rem;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(12rem, 0.55fr) minmax(14rem, 0.55fr);
  gap: 1.35rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
}

.footer-panel h3 {
  margin-bottom: 0.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.footer-brand img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.45rem;
}

.site-footer-list {
  display: grid;
  gap: 0.45rem;
}

.footer-meta {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.insta-widget {
  position: fixed;
  left: 1.35rem;
  top: 50%;
  bottom: auto;
  z-index: 10000;
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  max-height: calc(100svh - 2rem);
  pointer-events: none;
  transform: translateY(-50%);
}

body:not([data-page="contact"]) .insta-card {
  display: none;
}

.insta-card {
  width: min(21rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  border: 1px solid rgba(19, 19, 19, 0.12);
  border-radius: 24px;
  background: rgba(251, 249, 244, 0.86);
  box-shadow: 0 28px 70px rgba(12, 12, 12, 0.16);
  backdrop-filter: blur(18px);
  opacity: 1;
  transform: translateY(0) scale(1);
  transform-origin: bottom left;
  pointer-events: auto;
  transition: opacity 360ms cubic-bezier(0.2, 0.82, 0.2, 1), transform 360ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.insta-widget:not(.is-open) .insta-card {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
}

.insta-card .eyebrow {
  margin-bottom: 0;
}

.insta-card h3 {
  font-size: 1.45rem;
}

.insta-card p {
  font-size: 0.95rem;
}

.insta-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #111111;
  color: var(--light-ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease;
  pointer-events: auto;
}

.insta-toggle::before {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border-radius: inherit;
  border: 1px solid rgba(170, 142, 105, 0.38);
  opacity: 0;
  transform: scale(0.9);
  animation: instaPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

.insta-toggle:hover,
.insta-toggle:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.insta-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.72rem;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.insta-mark::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 0.55rem -0.55rem 0 -0.22rem currentColor;
}

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

.js .reveal {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition: opacity 980ms cubic-bezier(0.16, 0.92, 0.18, 1), transform 980ms cubic-bezier(0.16, 0.92, 0.18, 1), filter 980ms cubic-bezier(0.16, 0.92, 0.18, 1);
  will-change: opacity, transform, filter;
}

.js .reveal.reveal-left {
  --reveal-x: -38px;
  --reveal-y: 18px;
}

.js .reveal.reveal-right {
  --reveal-x: 38px;
  --reveal-y: 18px;
}

.js .reveal.reveal-pop {
  --reveal-y: 22px;
  --reveal-scale: 0.94;
}

.js .reveal.reveal-soft {
  --reveal-y: 18px;
  --reveal-scale: 1;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

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

  .cursor-glow,
  .scroll-progress {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}

.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes softSectionSweep {
  0%,
  20% {
    transform: translateX(-54%);
  }

  58%,
  100% {
    transform: translateX(54%);
  }
}

@keyframes heroGridBreathe {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 0.98;
    transform: scale(1.025);
  }
}

@keyframes capabilityMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes darkSectionGlide {
  0%,
  18% {
    transform: translateX(-45%);
  }

  58%,
  100% {
    transform: translateX(45%);
  }
}

@keyframes sheenDrift {
  0% {
    transform: translate3d(-2%, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(2%, 0, 0) rotate(-2deg);
  }

  100% {
    transform: translate3d(-2%, 0, 0) rotate(-2deg);
  }
}

@keyframes premiumLightDrift {
  0% {
    transform: translate3d(-4%, -1%, 0) rotate(-2deg) scale(1);
  }

  50% {
    transform: translate3d(2%, 1%, 0) rotate(1deg) scale(1.05);
  }

  100% {
    transform: translate3d(4%, 0, 0) rotate(-1deg) scale(1.02);
  }
}

@keyframes studioLightSweep {
  0% {
    transform: translate3d(-9%, -2%, 0) rotate(-8deg);
    opacity: 0.42;
  }

  100% {
    transform: translate3d(8%, 2%, 0) rotate(-8deg);
    opacity: 0.7;
  }
}

@keyframes grainFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-1.2%, 0.8%, 0);
  }

  100% {
    transform: translate3d(1%, -0.7%, 0);
  }
}

@keyframes landingBrandIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes landingLeftIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes landingRightIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes landingUpIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landingChipIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes landingChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes logoPresence {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.012);
  }
}

@keyframes chipSheen {
  0%,
  42% {
    transform: translateX(-65%) rotate(18deg);
  }

  75%,
  100% {
    transform: translateX(65%) rotate(18deg);
  }
}

@keyframes instaPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }

  45% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .contact-layout,
  .about-hero,
  .about-premium-grid,
  .about-standard-grid,
  .founder-note,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .services-preview,
  .feature-grid,
  .showcase-grid,
  .portfolio-grid,
  .service-gallery,
  .service-list,
  .process-grid,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-directory {
    grid-template-columns: 1fr;
  }

  .mockup-stage {
    min-height: 32rem;
  }

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

@media (max-width: 760px) {
  :root {
    --nav-height: 76px;
  }

  .section {
    padding: 4rem 0;
  }

  .site-nav {
    position: relative;
    flex-wrap: wrap;
    padding: 0.9rem 0;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-links,
  .nav-actions .button {
    display: none;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .nav-actions .button {
    display: flex;
  }

  .site-header.is-open .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .site-header.is-open .nav-links a {
    border-radius: 18px;
  }

  .site-header.is-open .nav-actions {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.35rem;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .services-preview,
  .feature-grid,
  .showcase-grid,
  .portfolio-grid,
  .service-gallery,
  .service-list,
  .process-grid,
  .hero-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .product-directory {
    grid-template-columns: 1fr;
  }

  .services-page .section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .services-overview .section-heading h1,
  .services-overview .section-heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.6rem);
  }

  .about-standard h2 {
    max-width: 15ch;
  }

  .standard-point {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .landing-hero {
    min-height: calc(100svh - 1rem);
  }

  .landing-sheen {
    opacity: 0.45;
  }

  .cinematic-bg::before {
    opacity: 0.58;
    filter: blur(26px);
  }

  .landing-logo {
    width: min(18rem, 52vw);
  }

  .page-hero-simple {
    padding-top: 3.25rem;
  }

  .page-hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-logo {
    width: min(15rem, 48vw);
  }

  .landing-row {
    gap: 0.8rem;
  }

  .landing-service {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .landing-chip {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.2rem;
  }

  .cursor-glow {
    display: none;
  }

  .capability-rail {
    width: min(100%, calc(100vw - 2rem));
  }

  .footer-meta {
    flex-direction: column;
  }

  .contact-points li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .insta-widget {
    left: 1rem;
    right: auto;
    top: auto;
    bottom: 1.15rem;
    transform: none;
  }

  .insta-toggle {
    min-height: 3.1rem;
  }
}
