/* =========================================================
   ATLEE TECHNOLOGIES LLP
   Editorial monochrome × molten copper
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --bg:          #0A0A0B;
  --bg-soft:     #121214;
  --bg-card:     #131316;
  --ink:         #F4EEE0;          /* paper cream */
  --ink-2:       #A8A49A;
  --ink-3:       #6A6861;
  --ink-4:       #3A3935;
  --copper:      #E7692F;          /* molten */
  --copper-bri:  #F5813E;
  --copper-dim:  #B4491A;
  --line:        rgba(244, 238, 224, 0.10);
  --line-bri:    rgba(244, 238, 224, 0.22);

  /* Brand-card accents */
  --ip: #7AB0FF;   /* infoplanet  — sky */
  --tr: #C59DFF;   /* trackrise   — violet */
  --pq: #7CE3B0;   /* perqee      — mint */

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", ui-serif, serif;
  --font-body:    "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spacing rhythm */
  --gutter:    clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 14vw, 200px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 34px;

  /* Motion */
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html, body { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "cv11";
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--copper); color: var(--bg); }

/* ---------- Utility ---------- */
.italic {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.01em;
}
.serif-soft {
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ---------- Grain & vignette ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(140% 90% at 50% -10%, rgba(231, 105, 47, 0.08), transparent 60%),
    radial-gradient(120% 80% at 50% 110%, rgba(10, 10, 11, 0.8), transparent 60%);
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0);
}
.cursor__dot {
  position: absolute;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
}
.cursor__ring {
  position: absolute;
  top: -18px; left: -18px;
  width: 36px; height: 36px;
  border: 1px solid rgba(244, 238, 224, 0.6);
  border-radius: 50%;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}
body.hovering .cursor__ring {
  transform: scale(1.8);
  border-color: var(--copper);
}
@media (hover: none) {
  .cursor { display: none; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}
.loader__inner {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--font-display);
  color: var(--ink);
}
.loader__mark {
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  object-fit: contain;
  display: block;
}
.loader__count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
}
body.ready .loader {
  opacity: 0;
  visibility: hidden;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,10,11,0.85), rgba(10,10,11,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.82);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  transition: transform 400ms var(--ease);
}
.brand__mark {
  display: grid;
  place-items: center;
  transition: transform 400ms var(--ease);
}
.brand:hover .brand__mark { transform: translateY(-1px); }
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.brand__legal {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* =========================================================
   LOGO MARK — actual PNG asset (logo-mark-white.png)
   ========================================================= */
.brand__logo-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.footer__logo-img {
  display: block;
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav a {
  position: relative;
  padding: 6px 2px;
  transition: color 220ms var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transition: right 300ms var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

@media (max-width: 800px) {
  .nav { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--ink);
  --_fg: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 100px;
  background: var(--_bg);
  color: var(--_fg);
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { --_bg: var(--copper); --_fg: var(--bg); }
.btn--primary:hover { --_bg: var(--copper-bri); transform: translateY(-2px); }
.btn--ghost {
  --_bg: transparent;
  --_fg: var(--ink);
  border: 1px solid var(--line-bri);
}
.btn--ghost:hover {
  --_bg: var(--ink);
  --_fg: var(--bg);
  border-color: var(--ink);
}
.btn--small { padding: 11px 18px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; padding: 20px 24px; }

/* ---------- Rails (side markers) ---------- */
.rail {
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  pointer-events: none;
}
.rail--left  { left: 0; padding: 120px 0 60px; }
.rail--right { right: 0; padding: 120px 0 60px; }
.rail__item {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.rail--section {
  position: absolute;
  top: var(--section-y);
  left: 0;
  bottom: auto;
  width: var(--gutter);
  align-items: flex-start;
  padding-left: 16px;
}
.rail--section .rail__num {
  font-size: 11px;
  color: var(--copper);
  margin-bottom: 12px;
}
.rail--section .rail__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .rail--left, .rail--right, .rail--section { display: none; }
}

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(231, 105, 47, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(231, 105, 47, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(231, 105, 47, 0.05); }
}

.section-head {
  padding: 0 var(--gutter);
  max-width: 1320px;
  margin: 0 auto 80px;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 900px) {
  .section-head--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-head__title .italic {
  font-weight: 300;
  color: var(--ink-2);
}
.section-head__lede {
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 30%, rgba(231, 105, 47, 0.12), transparent 60%),
    radial-gradient(50% 50% at 15% 80%, rgba(122, 176, 255, 0.05), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 12fr;
  gap: 32px;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 11.5vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
  margin-right: 0.16em;
  transform: translateY(110%);
  will-change: transform;
}
body.ready .hero__title .word {
  animation: rise 900ms var(--ease) forwards;
}
body.ready .hero__title [data-line="1"] .word:nth-child(1) { animation-delay: 60ms; }
body.ready .hero__title [data-line="1"] .word:nth-child(2) { animation-delay: 120ms; }
body.ready .hero__title [data-line="1"] .word:nth-child(3) { animation-delay: 180ms; }
body.ready .hero__title [data-line="1"] .word:nth-child(4) { animation-delay: 240ms; }
body.ready .hero__title [data-line="2"] .word:nth-child(1) { animation-delay: 340ms; }
body.ready .hero__title [data-line="2"] .word:nth-child(2) { animation-delay: 400ms; }

@keyframes rise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero__title .italic {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}
.hero__title [data-line="2"] .italic {
  color: var(--ink);
  font-style: italic;
}

.hero__bottom {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms 600ms var(--ease), transform 900ms 600ms var(--ease);
}
body.ready .hero__bottom {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero__lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 44ch;
  margin: 0;
}
.drop-cap {
  font-family: var(--font-display);
  font-size: 2.4em;
  font-style: italic;
  font-weight: 300;
  float: left;
  line-height: 0.8;
  margin: 0.05em 0.08em -0.05em 0;
  color: var(--copper);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.fact dt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.fact dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fact dd span {
  font-size: 0.5em;
  color: var(--ink-2);
  font-style: italic;
  margin-left: 4px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-3);
  z-index: 3;
}
.scroll-cue svg {
  width: 14px; height: 14px;
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 700px) {
  .hero { padding-top: 120px; }
  .hero__title { font-size: clamp(3rem, 17vw, 5rem); }
  .hero__bottom { gap: 24px; }
  .scroll-cue { display: none; }
}

/* =========================================================
   STUDIO / SERVICES
   ========================================================= */
.studio {
  position: relative;
  padding: var(--section-y) 0;
}
.studio .section-head { margin-bottom: 80px; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
}

.service {
  position: relative;
  padding: 44px 36px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  transition: background 400ms var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(231, 105, 47, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
}
.service:hover::before { opacity: 1; }

.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.service__body {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-top: 12px;
}
.service__tags li {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.service--cta {
  background: var(--copper);
  color: var(--bg);
}
.service--cta::before { display: none; }
.service--cta .service__title { color: var(--bg); }
.service--cta .service__body { color: rgba(10, 10, 11, 0.72); }
.service--cta .btn--primary {
  --_bg: var(--bg);
  --_fg: var(--ink);
  margin-top: 8px;
  align-self: flex-start;
}

/* =========================================================
   VENTURES / BENTO
   ========================================================= */
.ventures {
  position: relative;
  padding: var(--section-y) 0;
  background: linear-gradient(to bottom, var(--bg), var(--bg-soft));
}

.bento {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(440px, 1fr));
  gap: 20px;
}
@media (max-width: 960px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(420px, 1fr));
  }
}
@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }
}

.bento__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 0;
  color: var(--ink);
  text-decoration: none;
  transition: transform 500ms var(--ease), border-color 400ms var(--ease);
  will-change: transform;
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-bri);
}
.bento__card--live {
  border-color: rgba(231, 105, 47, 0.25);
}
.bento__card--live:hover {
  border-color: var(--copper);
}
.bento__card--teaser {
  background: transparent;
  border-style: dashed;
  border-color: rgba(244, 238, 224, 0.08);
}
.bento__card--teaser .bento__title { color: var(--ink); }
.bento__card--teaser .bento__body  { color: var(--ink-2); }
.bento__badge--teaser {
  color: var(--ink-2);
  border-color: rgba(244, 238, 224, 0.14);
  background: rgba(244, 238, 224, 0.03);
}

.bento__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 5px 9px;
  border: 1px solid rgba(124, 227, 176, 0.3);
  color: #7CE3B0;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(124, 227, 176, 0.06);
  backdrop-filter: blur(6px);
  z-index: 3;
}
.bento__badge--dev {
  color: var(--copper-bri);
  border-color: rgba(245, 129, 62, 0.35);
  background: rgba(245, 129, 62, 0.08);
}
.bento__badge--soon {
  color: var(--tr);
  border-color: rgba(197, 157, 255, 0.3);
  background: rgba(197, 157, 255, 0.06);
}

.bento__art {
  flex-shrink: 0;
  height: 180px;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.bento__art::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
}

.bento__content {
  flex: 1;
  min-height: 0;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .bento__art { height: 160px; }
  .bento__content { padding: 20px 22px 22px; }
}

/* Infoplanet art — orbits + play */
.bento__art--infoplanet {
  background: radial-gradient(70% 70% at 50% 40%, rgba(122, 176, 255, 0.18), transparent 70%);
  color: var(--ip);
}
.bento__art--infoplanet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(122, 176, 255, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
}
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(122, 176, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit--1 { width: 180px; height: 180px; animation: spin 18s linear infinite; }
.orbit--2 { width: 260px; height: 260px; animation: spin 28s linear infinite reverse; }
.orbit--3 { width: 340px; height: 340px; animation: spin 40s linear infinite; }
.orbit--1::after,
.orbit--2::after,
.orbit--3::after {
  content: "";
  position: absolute;
  top: -3px; left: 50%;
  width: 6px; height: 6px;
  background: var(--ip);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ip);
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.bento__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  color: var(--ink);
}
.bento__chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(10, 10, 11, 0.72);
  color: var(--ink);
  border: 1px solid var(--line-bri);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bento__chip--1 { top: 18%; right: 10%; animation: float 4s ease-in-out infinite; }
.bento__chip--2 { bottom: 18%; left: 10%; animation: float 5s ease-in-out 0.6s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Trackrise art — bars */
.bento__art--trackrise {
  background: radial-gradient(80% 80% at 60% 70%, rgba(197, 157, 255, 0.22), transparent 70%);
  color: var(--tr);
}
.bars {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  width: 70%;
  max-width: 200px;
}
.bars span {
  flex: 1;
  height: var(--h, 40%);
  background: linear-gradient(to top, var(--tr), rgba(197, 157, 255, 0.3));
  border-radius: 4px 4px 0 0;
  animation: grow 2.8s var(--ease) infinite alternate;
}
.bars span:nth-child(1) { animation-delay: 0.0s; }
.bars span:nth-child(2) { animation-delay: 0.1s; }
.bars span:nth-child(3) { animation-delay: 0.2s; }
.bars span:nth-child(4) { animation-delay: 0.3s; }
.bars span:nth-child(5) { animation-delay: 0.4s; }
.bars span:nth-child(6) { animation-delay: 0.5s; }
.bars span:nth-child(7) { animation-delay: 0.6s; }
@keyframes grow {
  from { transform: scaleY(0.8); }
  to   { transform: scaleY(1); }
}

/* Perqee art — gift */
.bento__art--perqee {
  background: radial-gradient(80% 80% at 50% 60%, rgba(124, 227, 176, 0.18), transparent 70%);
  color: var(--pq);
}
.gift {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
}
.gift__box {
  position: absolute;
  inset: 30px 0 0 0;
  background: linear-gradient(145deg, rgba(124, 227, 176, 0.2), rgba(124, 227, 176, 0.05));
  border: 1.5px solid var(--pq);
  border-radius: 6px;
}
.gift__ribbon {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 0;
  width: 10px;
  background: var(--pq);
  transform: translateX(-50%);
}
.gift__bow {
  position: absolute;
  top: 0; left: 50%;
  width: 48px; height: 30px;
  border: 1.5px solid var(--pq);
  border-radius: 24px 24px 0 0;
  transform: translateX(-50%);
}
.gift__bow::before,
.gift__bow::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 18px; height: 22px;
  border: 1.5px solid var(--pq);
  border-radius: 50%;
}
.gift__bow::before { left: -6px; }
.gift__bow::after  { right: -6px; }

/* =========================================================
   Teaser: Splitwise+ — hub and spoke (group payments)
   ========================================================= */
.bento__art--split {
  background: radial-gradient(75% 70% at 50% 50%, rgba(231, 105, 47, 0.16), transparent 70%);
}
.bento__art--split::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244, 238, 224, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.4;
}
.splitwise {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 140px;
}
.splitwise__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(231, 105, 47, 0.55);
  z-index: 1;
}
.splitwise__node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(244, 238, 224, 0.06);
  border: 1.5px solid var(--ink-2);
  z-index: 2;
  animation: sw-pulse 3.4s ease-in-out infinite;
}
.splitwise__node::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(244, 238, 224, 0.18);
}
.splitwise__node--1 { top: 12px; left: 20px; }
.splitwise__node--2 { top: 12px; right: 20px; animation-delay: 0.4s; }
.splitwise__node--3 { bottom: 12px; left: 20px; animation-delay: 0.8s; }
.splitwise__node--4 { bottom: 12px; right: 20px; animation-delay: 1.2s; }
.splitwise__hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--copper), var(--copper-dim));
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow:
    0 0 0 6px rgba(231, 105, 47, 0.08),
    0 8px 22px rgba(231, 105, 47, 0.32);
}
.splitwise__hub span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--bg);
  line-height: 1;
}
@keyframes sw-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* =========================================================
   Teaser: WhatsApp — phone screen + automation bolt
   ========================================================= */
.bento__art--wa {
  background: radial-gradient(80% 80% at 50% 55%, rgba(124, 227, 176, 0.12), transparent 70%);
}
.bento__art--wa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(244, 238, 224, 0.04) 1px, transparent 1px);
  background-size: 100% 22px;
  opacity: 0.25;
}
.wabot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 120px;
}
.wabot__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(244, 238, 224, 0.03), rgba(244, 238, 224, 0.01));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}
.wabot__bubble {
  height: 16px;
  border-radius: 10px;
  position: relative;
}
.wabot__bubble--in {
  background: rgba(124, 227, 176, 0.22);
  border: 1px solid rgba(124, 227, 176, 0.38);
  width: 65%;
  border-radius: 10px 10px 10px 2px;
  animation: wabot-in 3s ease-in-out infinite;
}
.wabot__bubble--in.wabot__bubble--short { width: 42%; animation-delay: 0.8s; }
.wabot__bubble--out {
  background: rgba(244, 238, 224, 0.08);
  border: 1px solid rgba(244, 238, 224, 0.18);
  width: 78%;
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
  animation: wabot-out 3s ease-in-out 0.4s infinite;
}
.wabot__bolt {
  position: absolute;
  top: -8px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--copper), var(--copper-dim));
  display: grid;
  place-items: center;
  color: var(--bg);
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(231, 105, 47, 0.1),
    0 6px 16px rgba(231, 105, 47, 0.34);
  animation: wabot-bolt 2.4s ease-in-out infinite;
}
.wabot__bolt svg { width: 15px; height: 15px; }
@keyframes wabot-in {
  0%, 100% { opacity: 0.85; transform: translateX(0); }
  50%      { opacity: 1; transform: translateX(2px); }
}
@keyframes wabot-out {
  0%, 100% { opacity: 0.85; transform: translateX(0); }
  50%      { opacity: 1; transform: translateX(-2px); }
}
@keyframes wabot-bolt {
  0%, 100% { transform: scale(1) rotate(-6deg); }
  50%      { transform: scale(1.07) rotate(6deg); }
}

/* =========================================================
   Teaser: TrackDance — dance floor with dancers in formation
   ========================================================= */
.bento__art--dance {
  background: radial-gradient(70% 70% at 50% 50%, rgba(197, 157, 255, 0.14), transparent 70%);
}
.bento__art--dance::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0 20px, rgba(244, 238, 224, 0.035) 20px 21px);
  opacity: 0.6;
}
.floor {
  position: absolute;
  top: 50%; left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  animation: floor-spin 28s linear infinite;
}
.floor__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(197, 157, 255, 0.35);
}
.floor__inner-ring {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(197, 157, 255, 0.18);
}
.floor__dancer {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  background: var(--tr);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(197, 157, 255, 0.6);
}
.floor__dancer--1 { transform: rotate(0deg)   translateY(-66px); }
.floor__dancer--2 { transform: rotate(60deg)  translateY(-66px); }
.floor__dancer--3 { transform: rotate(120deg) translateY(-66px); }
.floor__dancer--4 { transform: rotate(180deg) translateY(-66px); }
.floor__dancer--5 { transform: rotate(240deg) translateY(-66px); }
.floor__dancer--6 { transform: rotate(300deg) translateY(-66px); }
.floor__spot {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tr), transparent 70%);
  animation: dance-beat 1.6s ease-in-out infinite;
}
@keyframes floor-spin {
  to { transform: rotate(360deg); }
}
@keyframes dance-beat {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.bento__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bento__dot { color: var(--ink-4); }
.bento__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  max-width: 24ch;
}
.bento__body {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  max-width: 44ch;
}
.bento__link {
  display: inline-flex;
  margin-top: 6px;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--copper);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(231, 105, 47, 0.3);
  transition: color 300ms var(--ease), border-color 300ms var(--ease), gap 300ms var(--ease);
}
.bento__card:hover .bento__link {
  color: var(--copper-bri);
  border-color: var(--copper-bri);
  gap: 10px;
}
.bento__link svg { width: 12px; height: 12px; }

/* =========================================================
   CRAFT / CASES
   ========================================================= */
.craft {
  position: relative;
  padding: var(--section-y) 0;
}

.cases {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
}
@media (max-width: 900px) {
  .cases { gap: 20px; }
}
@media (max-width: 700px) {
  .cases {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }
}

.case__inner {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 500ms var(--ease), border-color 400ms var(--ease);
  height: 100%;
}
.case__inner:hover {
  transform: translateY(-4px);
  border-color: var(--line-bri);
}

.case__visual {
  flex-shrink: 0;
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: #0c0c0e;
  isolation: isolate;
}

/* Browser chrome — faux mac window header, ties screenshot to Atlee theme */
.case__chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.94), rgba(10, 10, 11, 0.86));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  z-index: 5;
}
.case__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 238, 224, 0.2);
}
.case__chrome span:first-child { background: rgba(231, 105, 47, 0.92); }

/* Screenshot layer — filtered, no chrome affected */
.case__shot {
  position: absolute;
  inset: 28px 0 0 0;
  background-color: #0c0c0e;
  background-size: 108% auto;
  background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(0.5) contrast(1.05) brightness(0.82) saturate(0.78);
  transition: filter 700ms var(--ease), transform 800ms var(--ease);
  z-index: 1;
}
.case__inner:hover .case__shot {
  filter: grayscale(0.12) contrast(1.08) brightness(0.95) saturate(1);
  transform: scale(1.02);
}

/* Tinted atmosphere: bottom fade only + subtle copper wash */
.case__visual::before {
  content: "";
  position: absolute;
  inset: 28px 0 0 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.25) 0%, transparent 35%, rgba(19, 19, 22, 0.55) 82%, rgba(19, 19, 22, 0.96) 100%),
    linear-gradient(145deg, rgba(231, 105, 47, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* Subtle dot pattern — Atlee-theme consistency */
.case__visual::after {
  content: "";
  position: absolute;
  inset: 28px 0 0 0;
  background-image: radial-gradient(circle, rgba(244, 238, 224, 0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 3;
}

/* Per-client screenshot + framing hints */
.case__shot--bali    { background-image: url("assets/cases/bali.jpg"); background-size: 100% auto; background-position: center -20px; }
.case__shot--rgh     { background-image: url("assets/cases/rgh.jpg"); background-size: 100% auto; background-position: center -10px; }
.case__shot--chhajer { background-image: url("assets/cases/chhajer.jpg"); background-size: 100% auto; background-position: center -10px; }
.case__shot--ebills  {
  background-image: url("assets/cases/ebills.jpg");
  background-size: 108% auto;
  background-position: center -20px;
  /* ebills is light-themed — invert then dim to match our dark UI */
  filter: invert(0.92) hue-rotate(180deg) grayscale(0.55) contrast(1.08) brightness(0.78) saturate(0.65);
}
.case__inner:hover .case__shot--ebills {
  filter: invert(0.92) hue-rotate(180deg) grayscale(0.22) contrast(1.08) brightness(0.9) saturate(0.85);
}


.case__body {
  flex: 1;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.case__body-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
  max-width: 46ch;
}
.case__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.case__client {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.case__year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 300ms var(--ease);
}
.case__inner:hover .case__year { color: var(--copper); }
.case__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  max-width: 26ch;
}
.case__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.case__tags li {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding: 36px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--line-bri);
}
.step__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.step__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
}
.step__body {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.step__time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* =========================================================
   CONTACT / SAY HELLO
   ========================================================= */
.contact {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(231, 105, 47, 0.08), transparent 60%);
  pointer-events: none;
}

.contact__head {
  position: relative;
  max-width: 1320px;
  margin: 0 auto 72px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 900px) {
  .contact__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 14px 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.contact__title .italic { color: var(--copper); }
.contact__body {
  color: var(--ink-2);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
  justify-self: end;
}
@media (max-width: 900px) {
  .contact__body { justify-self: start; }
}

.contact__grid {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 32px 32px 34px;
  background: rgba(244, 238, 224, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.contact__meta::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--copper), transparent 80%);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}
@media (max-width: 480px) {
  .contact__meta { padding: 24px 22px 24px 24px; }
}
/* Founder mini-card — inside contact__meta */
.founder-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}
.founder-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-card__mark {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--copper), var(--copper-dim));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(231, 105, 47, 0.28);
}
.founder-card__mark span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.founder-card__id {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.founder-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.founder-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.founder-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 48ch;
}
.founder-card__links {
  display: flex;
  gap: 16px;
}
.founder-card__links a {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--line-bri);
  padding-bottom: 3px;
  transition: color 300ms var(--ease), border-color 300ms var(--ease);
}
.founder-card__links a:hover {
  color: var(--copper);
  border-color: var(--copper);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__channels li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact__channels a {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), color 300ms var(--ease);
}
.contact__channels a:hover {
  color: var(--copper);
  border-color: var(--copper);
}

/* Form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-self: stretch;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  align-content: start;
}
@media (max-width: 480px) {
  .contact__form { padding: 28px 22px; }
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.field__note {
  font-size: 9px;
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0.04em;
  font-style: italic;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-bri);
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 300ms var(--ease);
  font-family: var(--font-body);
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-3);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--copper);
}
.field--select select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23A8A49A' stroke-width='1.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}
.contact__form .btn--block { grid-column: 1 / -1; margin-top: 8px; }
.contact__reply {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
.contact__reply strong { color: var(--ink); }

/* =========================================================
   FOOTER — consistent with contact section
   ========================================================= */
.site-footer {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 105, 47, 0.05), transparent 60%);
  pointer-events: none;
}

.footer__head {
  position: relative;
  max-width: 1320px;
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.footer__logo-img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.footer__brand-text strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.footer__brand-text em {
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.footer__tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--ink-2);
  max-width: 38ch;
  line-height: 1.3;
  letter-spacing: -0.01em;
  justify-self: center;
  text-align: center;
}
.footer__tagline .italic { color: var(--copper); }
.footer__cta { justify-self: end; }
@media (max-width: 900px) {
  .footer__head {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: start;
  }
  .footer__tagline { text-align: left; justify-self: start; }
  .footer__cta { justify-self: start; }
}

.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 40px var(--gutter) 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
}
.footer__col p { margin: 0; }
.footer__col a {
  transition: color 300ms var(--ease);
}
.footer__col a:hover { color: var(--copper); }
.footer__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.footer__bar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   MOBILE OPTIMIZATIONS
   ========================================================= */

/* Services: remove min-height on small screens */
@media (max-width: 600px) {
  .service { min-height: auto; padding: 32px 24px; }
  .service__title { font-size: clamp(22px, 7vw, 30px); }
}

/* Process: tighter padding on mobile */
@media (max-width: 560px) {
  .step { padding: 28px 20px; }
  .step__num { font-size: 56px; }
}

/* Contact: stack form fields on mobile */
@media (max-width: 480px) {
  .contact__form { grid-template-columns: 1fr; padding: 24px 20px; }
  .contact__grid { gap: 36px; }
  .contact__title { font-size: clamp(2.4rem, 12vw, 3.6rem); }
}

/* Footer: tighter on mobile */
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Touch target: ensure buttons are at least 44px */
@media (hover: none) {
  .btn { min-height: 44px; }
  .nav a { padding: 10px 2px; }
}

/* =========================================================
   REVEAL ANIMATIONS (IntersectionObserver)
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  body.ready .hero__title .word { transform: none; }
  body.ready .hero__bottom { opacity: 1; transform: none; }
}
