:root {
  --ink: #121210;
  --paper: #f4f0e6;
  --white: #fffdf7;
  --accent: #ff5c35;
  --acid: #dafa4b;
  --blue: #625df5;
  --muted: #6d6b64;
  --line: rgba(18, 18, 16, 0.18);
  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --shell: min(1440px, calc(100% - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .032;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
img { max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 110;
  inset: 0 0 auto;
  height: 4px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.section-shell { width: var(--shell); margin-inline: auto; }
.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  width: min(1400px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(18, 18, 16, .12);
  border-radius: 22px;
  background: rgba(244, 240, 230, .86);
  box-shadow: 0 8px 35px rgba(18, 18, 16, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
}
.brand-name {
  font-size: 13px;
  line-height: .98;
  font-weight: 850;
  letter-spacing: -.025em;
}
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav > a {
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease;
}
.site-nav > a:hover, .site-nav > a:focus-visible { background: rgba(18, 18, 16, .07); }
.site-nav .nav-cta {
  padding: 13px 18px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { background: var(--accent); color: var(--ink); }
.menu-button { display: none; }

.hero {
  padding-top: 156px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}
.eyebrow span {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 92, 53, .14);
}
.hero h1, .section-heading h2, .projects-heading h2, .enquiry h2, .about-statement h2 {
  margin: 0;
  font-size: clamp(64px, 7.4vw, 126px);
  line-height: .84;
  letter-spacing: -.073em;
  font-weight: 900;
}
.hero h1 em, .section-heading h2 em, .projects-heading h2 em, .enquiry h2 em {
  position: relative;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.085em;
}
.hero h1 em::after {
  position: absolute;
  content: "";
  left: 2%;
  right: -3%;
  bottom: -.08em;
  height: 9px;
  border-top: 3px solid currentColor;
  border-radius: 50%;
  transform: rotate(-1deg);
}
.hero-intro {
  max-width: 640px;
  margin: 40px 0 0;
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.42;
  letter-spacing: -.025em;
  color: #393832;
}
.hero-actions { margin-top: 38px; display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button {
  min-height: 54px;
  padding: 14px 22px;
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 0 8px 0 rgba(18, 18, 16, .16); }
.button-dark:hover { box-shadow: 0 11px 0 rgba(18, 18, 16, .12); }
.button-accent { background: var(--acid); color: var(--ink); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

.hero-playground {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(18, 18, 16, .85);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: 18px 18px 0 var(--acid);
  transition: transform .4s var(--ease);
}
.playground-top {
  padding: 0 4px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.availability { display: inline-flex; align-items: center; gap: 8px; color: #d7d6ce; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(218, 250, 75, .12); }
.preview-stage {
  min-height: 510px;
  padding: clamp(18px, 3vw, 42px);
  border-radius: 27px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--accent);
  transition: background .35s var(--ease);
}
.preview-stage[data-mode="app"] { background: var(--blue); }
.preview-stage[data-mode="brand"] { background: var(--acid); }
.preview-window {
  width: 100%;
  max-width: 560px;
  min-height: 380px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 13px 13px 0 rgba(18, 18, 16, .88);
  transition: transform .4s var(--ease), border-radius .4s var(--ease);
}
[data-mode="app"] .preview-window { max-width: 260px; min-height: 410px; border-radius: 34px; transform: rotate(2deg); }
[data-mode="brand"] .preview-window { max-width: 420px; min-height: 390px; border-radius: 2px; transform: rotate(-3deg); }
.window-bar {
  height: 32px;
  padding: 0 12px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
}
.window-bar span { width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; }
.window-bar small { margin-left: auto; font-size: 8px; letter-spacing: .04em; }
[data-mode="app"] .window-bar small, [data-mode="brand"] .window-bar small { display: none; }
.window-content {
  position: relative;
  min-height: 346px;
  padding: clamp(28px, 4vw, 55px) clamp(22px, 3vw, 42px);
  overflow: hidden;
}
.preview-label { margin: 0 0 20px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.window-content h2 { position: relative; z-index: 2; margin: 0; max-width: 360px; font-size: clamp(34px, 4.4vw, 62px); line-height: .88; letter-spacing: -.065em; }
.window-content > p:not(.preview-label) { position: relative; z-index: 2; max-width: 240px; font-size: 11px; }
.preview-button { position: relative; z-index: 2; display: inline-block; margin-top: 15px; padding: 9px 13px; border-radius: 7px; background: var(--ink); color: var(--white); font-size: 9px; font-weight: 850; }
.preview-orb {
  position: absolute;
  right: -30px;
  bottom: -38px;
  width: 190px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  display: grid;
  place-items: center;
  transform: rotate(8deg);
}
.preview-orb span { font-size: 37px; line-height: .78; letter-spacing: -.08em; font-weight: 950; text-align: center; }
[data-mode="app"] .preview-orb { width: 130px; right: -35px; bottom: -15px; background: var(--accent); }
[data-mode="app"] .preview-orb span { font-size: 25px; }
[data-mode="brand"] .preview-orb { width: 220px; right: -45px; bottom: -55px; background: var(--blue); color: var(--white); }
.mode-switcher { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 12px; }
.mode-switcher button {
  padding: 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #a9a8a1;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.mode-switcher button:hover, .mode-switcher button.is-active { background: #2a2a27; color: var(--white); }

.service-ticker {
  grid-column: 1 / -1;
  width: calc(100vw + 4px);
  margin-top: 70px;
  margin-left: calc((100vw - var(--shell)) / -2);
  padding: 16px 0;
  border-block: 1px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1deg);
  background: var(--acid);
}
.service-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 25s linear infinite;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}
.service-ticker-set { min-width: 100vw; width: max-content; padding-inline: 28px; display: flex; flex: 0 0 auto; align-items: center; justify-content: space-around; gap: 28px; }
.service-ticker i { font-style: normal; font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.about-grid {
  grid-column: 1 / -1;
  padding: 150px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .72fr) 220px;
  gap: clamp(30px, 5vw, 86px);
  align-items: start;
}
.about-statement h2 { font-size: clamp(50px, 5.5vw, 86px); }
.about-statement h2 span { color: var(--accent); }
.about-copy p { margin: 0 0 20px; font-size: clamp(17px, 1.35vw, 21px); letter-spacing: -.02em; }
.about-copy .text-link { margin-top: 15px; }
.about-note {
  position: relative;
  margin-top: 75px;
  padding: 26px 18px;
  border: 2px solid var(--ink);
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(3deg);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
}
.about-note p { margin: 0; }
.scribble { position: absolute; top: -45px; left: -15px; font-size: 44px; transform: rotate(15deg); }

.services {
  width: 100%;
  padding: 130px max(24px, calc((100vw - 1440px) / 2));
  background: var(--ink);
  color: var(--white);
}
.section-heading, .projects-heading {
  display: grid;
  grid-template-columns: 1fr minmax(270px, .36fr);
  gap: 70px;
  align-items: end;
}
.section-heading h2, .projects-heading h2 { font-size: clamp(56px, 7vw, 105px); }
.section-heading h2 em { color: var(--acid); }
.section-heading > p { margin: 0 0 8px; color: #bab9b3; font-size: 19px; }
.section-kicker.light { color: #c4c3bc; }
.service-list { margin-top: 85px; border-top: 1px solid rgba(255,255,255,.28); }
.service-row { border-bottom: 1px solid rgba(255,255,255,.28); }
.service-row summary {
  min-height: 112px;
  padding: 26px 2px;
  display: grid;
  grid-template-columns: 70px 1fr minmax(250px, .55fr) 46px;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.service-row summary::-webkit-details-marker { display: none; }
.service-number { color: #85857e; font-size: 12px; font-weight: 850; }
.service-title { font-size: clamp(32px, 4vw, 62px); line-height: .9; font-weight: 850; letter-spacing: -.05em; transition: color .2s; }
.service-tags { color: #a09f98; font-size: 13px; }
.service-toggle { position: relative; width: 42px; height: 42px; border: 1px solid #555550; border-radius: 50%; transition: background .2s, transform .3s var(--ease); }
.service-toggle::before, .service-toggle::after { position: absolute; inset: 50% auto auto 50%; width: 13px; height: 2px; content: ""; background: var(--white); transform: translate(-50%, -50%); }
.service-toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.service-row[open] .service-title, .service-row:hover .service-title { color: var(--acid); }
.service-row[open] .service-toggle { background: var(--accent); border-color: var(--accent); transform: rotate(180deg); }
.service-row[open] .service-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.service-detail {
  padding: 0 64px 40px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  color: #d6d5ce;
}
.service-detail p { margin: 0; max-width: 570px; font-size: 18px; }
.service-detail ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; font-size: 13px; }
.service-detail li::before { content: "↳ "; color: var(--acid); }
.process-strip {
  margin-top: 90px;
  padding: 32px 34px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  background: var(--acid);
  color: var(--ink);
}
.process-strip > p { margin: 0; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.process-strip ol { margin: 0; padding: 0; list-style: none; display: flex; flex: 1; justify-content: flex-end; gap: clamp(15px, 3.5vw, 55px); }
.process-strip li { display: flex; align-items: center; gap: 9px; font-weight: 750; }
.process-strip li span { width: 25px; height: 25px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 10px; }

.projects { padding-top: 140px; }
.projects-heading h2 em { color: var(--blue); }
.project-filters { align-self: end; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 7px; }
.project-filters button {
  padding: 10px 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.project-filters button:hover, .project-filters button.is-active { background: var(--ink); color: var(--white); }
.project-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project-card-wide { grid-column: 1 / -1; }
.project-card { min-width: 0; transition: opacity .3s, transform .4s var(--ease); }
.project-card.is-hidden { display: none; }
.project-open { width: 100%; padding: 0; border: 0; display: block; background: transparent; color: inherit; text-align: left; text-decoration: none; cursor: pointer; }
.project-visual {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .55s var(--ease), border-radius .55s var(--ease);
}
.project-card-wide .project-visual { min-height: 660px; }
.project-open:hover .project-visual { transform: scale(.986); border-radius: 28px; }
.project-meta { padding: 22px 4px 38px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.project-meta p { margin: 0 0 6px; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.project-meta h3 { margin: 0; font-size: clamp(23px, 2.2vw, 34px); line-height: 1.05; letter-spacing: -.04em; }
.round-arrow { flex: 0 0 auto; width: 48px; height: 48px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 20px; transition: background .2s, transform .25s var(--ease); }
.project-open:hover .round-arrow { background: var(--accent); transform: rotate(45deg); }

.visual-ukg { background: #dbe9e5; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(24px, 4vw, 70px); padding: clamp(42px, 6vw, 88px) clamp(32px, 5vw, 76px) 0; }
.visual-ukg::before { position: absolute; inset: 0; content: ""; opacity: .24; background-image: radial-gradient(circle at 1px 1px, #328d74 1px, transparent 0); background-size: 22px 22px; }
.ukg-card-copy { position: relative; z-index: 3; align-self: center; }
.ukg-card-copy span { display: block; margin-bottom: 18px; color: #276e5d; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ukg-card-copy strong { display: block; max-width: 520px; font-size: clamp(48px, 6vw, 94px); line-height: .82; letter-spacing: -.075em; }
.ukg-card-phones { position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-end; justify-content: center; gap: clamp(10px, 1.5vw, 22px); }
.ukg-card-phones img { width: min(31%, 245px); height: auto; border: clamp(5px, .55vw, 9px) solid #171a1c; border-radius: clamp(20px, 2.4vw, 34px); background: #f8f9fa; box-shadow: 0 24px 50px rgba(30, 60, 52, .24); }
.ukg-card-phones img:nth-child(1) { transform: translateY(72px) rotate(-3deg); }
.ukg-card-phones img:nth-child(2) { transform: translateY(15px); }
.ukg-card-phones img:nth-child(3) { transform: translateY(88px) rotate(3deg); }
.visual-stamp { position: absolute; z-index: 4; right: 5%; top: 7%; width: 95px; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font: italic 17px Georgia; transform: rotate(12deg); }

.visual-hardlife { background: #19191b; color: white; display: grid; place-items: center; }
.visual-hardlife::before { position: absolute; inset: -35%; content: ""; opacity: .65; background: repeating-radial-gradient(circle at 15% 30%, transparent 0 45px, #2c2b31 46px 47px); transform: rotate(-8deg); }
.hl-word { position: absolute; z-index: 1; top: 5%; left: 5%; font-size: clamp(64px, 8vw, 118px); line-height: .7; font-weight: 950; letter-spacing: -.09em; color: #fd5738; transform: skewY(-4deg); }
.hardlife-site-preview { position: absolute; z-index: 2; right: -10%; bottom: -11%; width: 75%; height: 86%; padding: 10px; border-radius: 23px; background: #f7f7f5; overflow: hidden; box-shadow: -16px 24px 50px rgba(0,0,0,.48); transform: rotate(3deg); }
.hardlife-browser-bar { height: 22px; padding-left: 4px; display: flex; align-items: center; gap: 5px; }
.hardlife-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #bbb9b4; }
.hardlife-browser-bar i:first-child { background: #fd5738; }
.hardlife-site-preview img { width: 100%; height: auto; border-radius: 12px; display: block; }
.visual-hardlife p { position: absolute; z-index: 3; left: 6%; bottom: 6%; margin: 0; color: var(--acid); font: italic 25px/1 Georgia; transform: rotate(-5deg); }

.visual-common-ground { background: #b78965; color: #3d2619; }
.visual-common-ground::before { position: absolute; inset: 0; content: ""; opacity: .18; background-image: linear-gradient(#f4e8dc 1px, transparent 1px), linear-gradient(90deg, #f4e8dc 1px, transparent 1px); background-size: 42px 42px; }
.common-card-type { position: absolute; z-index: 4; top: 7%; left: 6%; display: grid; color: #f5eadf; font-family: Georgia, serif; line-height: .72; letter-spacing: -.06em; }
.common-card-type span { font-size: clamp(30px, 3vw, 48px); }
.common-card-type strong { font-size: clamp(42px, 4.5vw, 72px); }
.common-web-preview { position: absolute; z-index: 2; right: -8%; bottom: -12%; width: 70%; height: 88%; padding: 9px; border-radius: 20px; background: #efe4d8; overflow: hidden; box-shadow: -18px 24px 45px rgba(59,34,20,.28); transform: rotate(3deg); }
.common-web-preview img { width: 100%; height: auto; border-radius: 12px; display: block; }
.common-menu-preview { position: absolute; z-index: 3; left: 7%; bottom: 4%; width: 37%; aspect-ratio: .707; padding: 7px; background: #3f281a; box-shadow: 12px 17px 28px rgba(55,31,18,.28); transform: rotate(-5deg); }
.common-menu-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.common-badge { position: absolute; z-index: 5; top: 7%; right: 5%; padding: 8px 10px; border: 1px solid #3d2619; border-radius: 999px; background: #eadace; font-size: 9px; font-weight: 900; letter-spacing: .08em; }

.enquiry {
  margin-top: 100px;
  padding: clamp(38px, 7vw, 100px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(45px, 8vw, 130px);
  background: var(--blue);
  color: var(--white);
}
.enquiry h2 { font-size: clamp(54px, 6vw, 94px); }
.enquiry h2 em { color: var(--acid); }
.enquiry-copy > p:not(.section-kicker) { max-width: 500px; margin: 30px 0 20px; font-size: 18px; color: #dedcff; }
.enquiry-copy > a { font-weight: 850; text-underline-offset: 5px; }
.enquiry-form { align-self: center; padding: clamp(24px, 4vw, 45px); border-radius: 30px; background: var(--white); color: var(--ink); box-shadow: 13px 13px 0 var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.enquiry-form label { display: grid; gap: 8px; margin-bottom: 18px; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid #aaa79d; outline: 0; background: transparent; color: var(--ink); font-size: 16px; text-transform: none; letter-spacing: 0; transition: border-color .2s, box-shadow .2s; }
.enquiry-form textarea { resize: vertical; min-height: 105px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-bottom-color: var(--blue); box-shadow: 0 2px 0 var(--blue); }
.enquiry-form .is-invalid { border-bottom-color: #c92b10; }
.form-footer { margin-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.form-footer p { max-width: 250px; margin: 0; color: var(--muted); font-size: 11px; }
.form-privacy-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #6a675f; font-size: 12px; line-height: 1.55; text-transform: none; letter-spacing: 0; }
.form-privacy-note button, .site-footer button { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.form-privacy-note button:hover, .site-footer button:hover { color: var(--blue); }
.form-privacy-note button:focus-visible, .site-footer button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.site-footer {
  width: 100%;
  margin-left: 0;
  padding: 38px max(24px, calc((100vw - 1400px) / 2));
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}
.footer-brand .brand-mark { background: var(--acid); color: var(--ink); }
.site-footer > p { margin: 0; max-width: 330px; color: #b1b0a9; font-size: 13px; }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; color: #b1b0a9; font-size: 11px; text-align: right; }
.site-footer button:hover { color: var(--acid); }

.project-dialog {
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
  box-shadow: 0 30px 100px rgba(0,0,0,.4);
}
.project-dialog::backdrop { background: rgba(18,18,16,.76); backdrop-filter: blur(7px); }
.project-dialog[open] { animation: dialog-in .4s var(--ease); }
@keyframes dialog-in { from { opacity: 0; transform: translateY(25px) scale(.97); } }
.dialog-close { position: fixed; z-index: 2; top: 26px; right: 26px; width: 50px; height: 50px; border: 0; border-radius: 50%; background: var(--white); color: var(--ink); box-shadow: 0 4px 20px rgba(0,0,0,.16); font-size: 30px; line-height: 1; cursor: pointer; }
.dialog-hero { min-height: 360px; display: grid; place-items: center; overflow: hidden; background: var(--blue); }
.dialog-hero::before { content: attr(data-word); font-size: clamp(80px, 15vw, 190px); line-height: .72; font-weight: 950; letter-spacing: -.09em; color: rgba(255,255,255,.15); }
.dialog-hero[data-theme="hardlife"] { background: #19191b; }
.dialog-hero[data-theme="cafe"] { background: #e26741; }
.dialog-hero[data-theme="common"] { background: #8a5a39; }
.dialog-content { padding: clamp(34px, 7vw, 80px); }
.dialog-content h2 { max-width: 780px; margin: 0; font-size: clamp(48px, 7vw, 90px); line-height: .88; letter-spacing: -.07em; }
.dialog-lead { max-width: 720px; margin: 30px 0 60px; font-size: clamp(18px, 2.3vw, 27px); letter-spacing: -.025em; }
.dialog-details { padding-block: 35px; border-block: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.dialog-details h3 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.dialog-details p { margin: 0; color: #4d4b45; font-size: 14px; }
.case-study:empty { display: none; }
.case-study { margin-top: 72px; }
.case-section { padding: 54px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(30px, 6vw, 82px); }
.case-section:first-child { padding-top: 0; border-top: 0; }
.case-heading p { margin: 0 0 15px; color: #2e846d; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.case-heading h3 { max-width: 520px; margin: 0; font-size: clamp(34px, 4.5vw, 58px); line-height: .94; letter-spacing: -.055em; }
.case-copy { display: grid; align-content: start; gap: 20px; }
.case-copy p { margin: 0; color: #46443f; font-size: 17px; line-height: 1.55; }
.case-copy strong { color: var(--ink); }
.evidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.evidence-card { padding: 28px; border-radius: 22px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.evidence-card span { display: inline-grid; width: 36px; aspect-ratio: 1; margin-bottom: 42px; border-radius: 50%; place-items: center; background: #dbe9e5; color: #276e5d; font-size: 12px; font-weight: 900; }
.evidence-card h4 { margin: 0 0 12px; font-size: 22px; line-height: 1.05; letter-spacing: -.035em; }
.evidence-card p { margin: 0; color: #57544e; font-size: 14px; line-height: 1.48; }
.evidence-card.is-next { background: #dbe9e5; box-shadow: none; }
.case-gallery { padding: 64px 0 14px; border-top: 1px solid var(--line); }
.case-gallery-heading { margin-bottom: 32px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.case-gallery-heading p { max-width: 420px; margin: 0; color: #57544e; font-size: 14px; }
.case-gallery-heading h3 { margin: 0; font-size: clamp(36px, 5vw, 62px); line-height: .9; letter-spacing: -.06em; }
.screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.screen-card { min-width: 0; padding: 14px 14px 16px; border: 0; border-radius: 22px; background: #dbe9e5; color: var(--ink); text-align: left; cursor: zoom-in; overflow: hidden; transition: transform .3s var(--ease), background .2s; }
.screen-card:nth-child(even) { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.screen-card img { width: 100%; height: auto; border-radius: 13px; display: block; box-shadow: 0 12px 28px rgba(29, 55, 48, .13); transition: transform .45s var(--ease); }
.screen-card span { display: block; padding: 14px 3px 0; font-size: 14px; font-weight: 850; }
.screen-card:hover { transform: translateY(-5px); }
.screen-card:hover img { transform: scale(1.015); }
.hardlife-case .case-heading p { color: #da482f; }
.hardlife-case .evidence-card span { background: #19191b; color: #fd5738; }
.hardlife-case .evidence-card.is-next { background: #19191b; color: var(--white); }
.hardlife-case .evidence-card.is-next h4, .hardlife-case .evidence-card.is-next p { color: var(--white); }
.hardlife-case .screen-card { background: #19191b; color: var(--white); box-shadow: none; }
.hardlife-case .screen-card:nth-child(2) { background: #fd5738; color: #19191b; }
.hardlife-screen-grid { grid-template-columns: repeat(2, 1fr); }
.hardlife-screen-grid .screen-card img { aspect-ratio: 1.3; object-fit: cover; object-position: top; }
.common-case .case-heading p { color: #8a5a39; }
.common-case .evidence-card span { background: #eadace; color: #6f452c; }
.common-case .evidence-card.is-next { background: #765036; color: var(--white); }
.common-case .evidence-card.is-next h4, .common-case .evidence-card.is-next p { color: var(--white); }
.case-tabs { margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.case-tabs button { min-height: 44px; padding: 10px 16px; border: 1px solid #765036; border-radius: 999px; background: transparent; color: #5d3c27; font-size: 13px; font-weight: 850; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.case-tabs button:hover { transform: translateY(-2px); }
.case-tabs button.is-active { background: #765036; color: var(--white); }
.case-panel[hidden] { display: none; }
.common-case .screen-card { background: #eadace; color: #3d2619; box-shadow: none; }
.common-case .screen-card:nth-child(even) { background: #765036; color: var(--white); box-shadow: none; }
.common-web-grid { grid-template-columns: repeat(2, 1fr); }
.common-web-grid .screen-card img { aspect-ratio: 1.25; object-fit: cover; object-position: top; }
.common-mobile-grid { grid-template-columns: repeat(4, 1fr); }
.common-mobile-grid .screen-card img { aspect-ratio: .58; object-fit: cover; object-position: top; }
.common-print-grid { grid-template-columns: repeat(3, 1fr); }
.case-disclaimer { margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: #66635c; font-size: 13px; }
.dialog-tags { margin: 28px 0 42px; display: flex; flex-wrap: wrap; gap: 8px; }
.dialog-tags span { padding: 8px 12px; border: 1px solid var(--ink); border-radius: 999px; font-size: 11px; font-weight: 750; }

.screen-dialog { width: min(500px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 52px 18px 18px; border: 0; border-radius: 26px; background: #171817; color: var(--white); overflow: auto; box-shadow: 0 28px 90px rgba(0,0,0,.48); }
.screen-dialog::backdrop { background: rgba(10,10,9,.83); backdrop-filter: blur(8px); }
.screen-dialog h2 { margin: 0 0 16px; font-size: 18px; letter-spacing: -.02em; }
.screen-dialog img { width: auto; max-width: 100%; height: auto; margin-inline: auto; border-radius: 16px; display: block; }
.screen-dialog.is-wide { width: min(1050px, calc(100% - 28px)); }
.screen-dialog-close { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border: 0; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--ink); font-size: 25px; line-height: 1; cursor: pointer; }

.privacy-dialog { width: min(760px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 0; border: 0; border-radius: 28px; background: var(--paper); color: var(--ink); overflow: auto; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.privacy-dialog::backdrop { background: rgba(18,18,16,.76); backdrop-filter: blur(7px); }
.privacy-dialog[open] { animation: dialog-in .35s var(--ease); }
.privacy-dialog-content { padding: clamp(34px, 7vw, 68px); }
.privacy-dialog-content h2 { max-width: 620px; margin: 0; font-size: clamp(42px, 7vw, 72px); line-height: .9; letter-spacing: -.06em; }
.privacy-updated { margin: 18px 0 40px; color: var(--muted); font-size: 13px; }
.privacy-dialog-content section { padding: 24px 0; border-top: 1px solid var(--line); }
.privacy-dialog-content section:last-child { padding-bottom: 0; }
.privacy-dialog-content h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -.025em; }
.privacy-dialog-content section p { margin: 0; color: #4d4b45; font-size: 16px; line-height: 1.6; }
.privacy-dialog-content section p + p { margin-top: 14px; }
.privacy-dialog-content a { color: var(--blue); font-weight: 750; text-underline-offset: 3px; overflow-wrap: anywhere; }
.privacy-dialog-close { position: sticky; z-index: 2; top: 12px; float: right; width: 42px; height: 42px; margin: 12px 12px -54px 0; border: 0; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--ink); box-shadow: 0 4px 20px rgba(0,0,0,.16); font-size: 27px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --shell: calc(100% - 40px); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 900px; }
  .hero-playground { width: min(760px, 100%); justify-self: end; margin-top: 20px; }
  .preview-stage { min-height: 470px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-statement { grid-column: 1 / -1; }
  .about-note { margin-top: 35px; }
  .process-strip { align-items: flex-start; flex-direction: column; }
  .process-strip ol { width: 100%; justify-content: space-between; }
  .project-card-wide .project-visual { min-height: 580px; }
  .enquiry { grid-template-columns: 1fr; }
  .enquiry-copy { max-width: 750px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 28px; }
  html { scroll-padding-top: 90px; }
  .site-header { top: 9px; width: calc(100% - 18px); min-height: 64px; padding: 9px 10px 9px 14px; border-radius: 18px; }
  .brand-mark { width: 36px; border-radius: 9px; font-size: 21px; }
  .brand-name { font-size: 11px; }
  .menu-button { width: 43px; height: 43px; padding: 0; border: 0; border-radius: 12px; background: var(--ink); display: grid; place-content: center; gap: 6px; }
  .menu-button span:not(.sr-only) { width: 19px; height: 2px; background: var(--white); transition: transform .25s var(--ease); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 15px 35px rgba(18,18,16,.12);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 12px; }
  .site-nav .nav-cta { margin-top: 4px; text-align: center; }
  .hero { padding-top: 120px; gap: 40px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: clamp(57px, 18vw, 84px); }
  .hero-intro { margin-top: 30px; font-size: 18px; }
  .hero-actions { margin-top: 28px; gap: 21px; align-items: flex-start; flex-direction: column; }
  .hero-playground { width: calc(100% - 7px); margin-right: 7px; padding: 11px; border-radius: 28px; box-shadow: 8px 8px 0 var(--acid); }
  .playground-top { padding: 4px 3px 12px; }
  .playground-top > span:first-child { display: none; }
  .playground-top { justify-content: flex-end; }
  .preview-stage { min-height: 410px; padding: 22px 16px; border-radius: 20px; }
  .preview-window { min-height: 330px; }
  .window-content { min-height: 298px; }
  .window-content h2 { font-size: 39px; }
  [data-mode="app"] .preview-window { max-width: 220px; min-height: 350px; }
  [data-mode="brand"] .preview-window { min-height: 340px; }
  .preview-orb { width: 145px; }
  .preview-orb span { font-size: 28px; }
  .service-ticker { margin-top: 55px; }
  .about-grid { padding: 100px 0; grid-template-columns: 1fr; gap: 38px; }
  .about-statement { grid-column: auto; }
  .about-statement h2 { font-size: 50px; }
  .about-copy p { font-size: 17px; }
  .about-note { width: min(260px, 86%); justify-self: end; margin-top: 10px; }
  .services { padding: 90px 14px; }
  .section-heading, .projects-heading { grid-template-columns: 1fr; gap: 35px; }
  .section-heading h2, .projects-heading h2 { font-size: 56px; }
  .section-heading > p { font-size: 17px; }
  .service-list { margin-top: 55px; }
  .service-row summary { min-height: 90px; grid-template-columns: 35px 1fr 42px; gap: 10px; }
  .service-title { font-size: 31px; }
  .service-tags { display: none; }
  .service-detail { padding: 0 8px 30px 45px; grid-template-columns: 1fr; gap: 22px; }
  .service-detail p { font-size: 16px; }
  .service-detail ul { grid-template-columns: 1fr; }
  .process-strip { margin-top: 60px; padding: 24px; }
  .process-strip ol { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .projects { padding-top: 90px; }
  .project-filters { justify-content: flex-start; }
  .project-grid { margin-top: 45px; grid-template-columns: 1fr; gap: 12px; }
  .project-card-wide { grid-column: auto; }
  .project-visual, .project-card-wide .project-visual { min-height: 430px; }
  .visual-ukg { grid-template-columns: 1fr; align-content: space-between; gap: 18px; padding: 32px 18px 0; }
  .ukg-card-copy { align-self: start; }
  .ukg-card-copy span { margin-bottom: 10px; font-size: 9px; }
  .ukg-card-copy strong { max-width: 330px; font-size: 42px; line-height: .84; }
  .ukg-card-phones { width: 94%; height: 270px; justify-self: center; }
  .ukg-card-phones img { width: 31%; border-width: 5px; border-radius: 18px; }
  .ukg-card-phones img:nth-child(1) { transform: translateY(36px) rotate(-3deg); }
  .ukg-card-phones img:nth-child(2) { transform: none; }
  .ukg-card-phones img:nth-child(3) { transform: translateY(43px) rotate(3deg); }
  .visual-stamp { width: 70px; font-size: 13px; }
  .hl-word { font-size: 70px; }
  .hardlife-site-preview { right: -13%; bottom: -7%; width: 80%; height: 82%; padding: 7px; border-radius: 18px; }
  .hardlife-browser-bar { height: 17px; }
  .common-card-type span { font-size: 25px; }
  .common-card-type strong { font-size: 42px; }
  .common-web-preview { right: -12%; bottom: -8%; width: 76%; height: 84%; padding: 6px; border-radius: 16px; }
  .common-menu-preview { left: 6%; bottom: 5%; width: 42%; padding: 5px; }
  .common-badge { display: none; }
  .enquiry { width: calc(100% + 28px); margin-left: -14px; margin-top: 70px; padding: 55px 22px; border-radius: 28px 28px 0 0; gap: 45px; }
  .enquiry h2 { font-size: 57px; }
  .enquiry-form { padding: 26px 20px; border-radius: 23px; box-shadow: 7px 7px 0 var(--ink); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .site-footer { width: calc(100% + 28px); margin-left: -14px; padding: 32px 20px; grid-template-columns: 1fr; align-items: start; }
  .site-footer > div { align-items: flex-start; text-align: left; }
  .privacy-dialog-content { padding: 38px 22px 34px; }
  .privacy-dialog-content h2 { padding-right: 38px; }
  .dialog-hero { min-height: 230px; }
  .dialog-content { padding: 36px 22px 45px; }
  .dialog-details { grid-template-columns: 1fr; gap: 27px; }
  .case-study { margin-top: 52px; }
  .case-section { padding: 42px 0; grid-template-columns: 1fr; gap: 28px; }
  .case-heading h3 { font-size: 38px; }
  .case-copy p { font-size: 16px; }
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-card span { margin-bottom: 28px; }
  .case-gallery { padding-top: 46px; }
  .case-gallery-heading { align-items: start; flex-direction: column; }
  .screen-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .screen-card { padding: 9px 9px 12px; border-radius: 16px; }
  .screen-card img { border-radius: 10px; }
  .screen-card span { padding-top: 11px; font-size: 13px; }
  .dialog-close { top: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
