/* O&Y Studio — built on WIRED-Inspired DS tokens,
   structural language of a portfolio studio site (Ubernatural-style).
   Inverted ink is the default canvas (printerly paper-white stays available for inner zones). */

@import url("./colors_and_type.css");

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.work-card-empty {
  visibility: hidden;
  pointer-events: none;
}

/* =========== GRAYSCALE → COLOR ON HOVER =========== */
.float-thumb img {
  filter: grayscale(100%) contrast(1.05);
  transition: filter 500ms cubic-bezier(.22,.61,.36,1), transform 400ms ease;
}
.float-thumb:hover img {
  filter: grayscale(0%) contrast(1);
}
@media (hover: none) {
  .float-thumb img { filter: none; }
}

/* =========== TOP BAR =========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* Hero entry: floating thumbs drift in, headline fades up */
.hero-stage .float-thumb {
  opacity: 0;
  transform: translateY(40px) rotate(var(--init-rot, 0deg));
  transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1);
}
.hero-stage.loaded .float-thumb {
  opacity: 1;
}
.hero-stage.loaded .ft-a { transform: rotate(-5deg); transition-delay: 100ms; }
.hero-stage.loaded .ft-b { transform: rotate(3deg);  transition-delay: 220ms; }
.hero-stage.loaded .ft-c { transform: rotate(5deg);  transition-delay: 340ms; }
.hero-stage.loaded .ft-d { transform: rotate(4deg);  transition-delay: 460ms; }
.hero-stage.loaded .ft-f { transform: rotate(-4deg); transition-delay: 580ms; }

.hero-center > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1);
}
.hero-stage.loaded .hero-center > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 200ms; }
.hero-stage.loaded .hero-center > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 340ms; }
.hero-stage.loaded .hero-center > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 460ms; }
.hero-stage.loaded .hero-center > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 580ms; }

/* Parallax wrapper — floating thumbs respond to scroll */
.hero-stage { perspective: 1000px; }

/* Scroll dot pulse */
.scroll-dot {
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.3; transform: translateX(-50%) translateY(6px); }
}

/* Work-card: graceful image scale on hover (already set) + media subtle lift */
.work-card { transition: transform 300ms cubic-bezier(.22,.61,.36,1); }
.work-card:hover { transform: translateY(-4px); }

/* Service-row inline arrow float */
.service-row .arrow { transition: color 120ms linear, transform 300ms cubic-bezier(.22,.61,.36,1); }

/* Price card subtle pop */
.price-card { transition: background 150ms linear, transform 300ms cubic-bezier(.22,.61,.36,1); }
.price-card:hover { transform: translateY(-4px); }

/* Pill CTA interactive bump */
.btn-pill { transition: background 150ms linear, color 150ms linear, transform 200ms cubic-bezier(.22,.61,.36,1); }
.btn-pill:active { transform: scale(0.97); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-stage .float-thumb, .hero-center > *,
  .work-card, .price-card, .scroll-dot, .btn-pill {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}


/* =========== TOP BAR =========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid #1a1a1a;
  transition: padding 300ms cubic-bezier(.22,.61,.36,1), background 200ms linear;
}
.topbar.scrolled {
  padding: 12px 40px;
  background: rgba(0,0,0,0.92);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.2px;
  color: #fff;
}
.brand-bug {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #000;
  line-height: 1;
  padding-bottom: 2px;
}
.brand-bug::before {
  content: "\0026";
}
.brand-bug::after { display: none; }
.hero-bug-row .brand-bug {
  width: 24px !important;
  height: 24px !important;
  font-size: 16px;
}
.brand small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #999;
  margin-left: 6px;
  font-weight: 400;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 1920px;
}
.nav-center a {
  padding: 7px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #cfcfcf;
  border-radius: 1920px;
  transition: background 150ms linear, color 150ms linear;
  letter-spacing: 0.2px;
}
.nav-center a:hover { color: #fff; background: #1a1a1a; }
.nav-center a.current { background: #fff; color: #000; }

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid #222;
  background: #0d0d0d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms linear, color 150ms linear, border-color 150ms linear;
}
.icon-btn:hover { background: #fff; color: #000; border-color: #fff; }
.icon-btn svg { width: 16px; height: 16px; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 1920px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  transition: background 150ms linear, color 150ms linear;
  cursor: pointer;
}
.btn-pill:hover { background: #000; color: #fff; }
.btn-pill.ghost {
  background: transparent;
  color: #fff;
  border-color: #333;
}
.btn-pill.ghost:hover { background: #fff; color: #000; border-color: #fff; }

/* =========== PAGE FRAME =========== */
.page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========== HERO (home) =========== */
.hero-stage {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 100px;
  overflow: hidden;
}
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-bug-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 108px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 18px 0;
}
.hero-deck {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: #9a9a9a;
  margin: 0 auto 32px;
  max-width: 44ch;
}
.hero-cta-row {
  display: inline-flex;
  gap: 12px;
}
.hero-kicker-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666;
  margin-bottom: 14px;
}

/* Floating project thumbs scattered around the hero */
.float-thumbs { position: absolute; inset: 0; pointer-events: none; }
.float-thumb {
  position: absolute;
  pointer-events: auto;
  border: 1px solid #2a2a2a;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.float-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ft-a img { object-position: center center; }
.ft-b img { object-position: center 30%; }
.ft-c img { object-position: 65% 40%; } /* KOVA — show the robot */
.ft-d img { object-position: 60% 50%; } /* Olivia — show the necklace */
.ft-f img { object-position: center 45%; } /* Irit Brosh — show headline */
.ft-a { top: 8%;  left: 2%;  width: 280px; aspect-ratio: 16/10; transform: rotate(-5deg); }
.ft-b { top: 5%;  left: 22%; width: 280px; aspect-ratio: 16/10; transform: rotate(3deg); }
.ft-c { top: 8%;  right: 2%; width: 280px; aspect-ratio: 16/10; transform: rotate(5deg); }
.ft-d { bottom: 8%; left: 3%;  width: 320px; aspect-ratio: 16/10; transform: rotate(4deg); }
.ft-f { bottom: 6%; right: 2%; width: 340px; aspect-ratio: 16/10; transform: rotate(-4deg); }

/* Scroll indicator */
.scroll-dot {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

/* =========== SECTION RIBBON =========== */
.ribbon-dark {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid #1a1a1a;
}
.ribbon-dark .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666;
}
.ribbon-dark .title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: #fff;
  font-weight: 400;
  margin: 0;
}

/* =========== SHOWROOM GRID =========== */
.showroom {
  padding: 40px 0 80px;
}
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 36px;
  max-width: 1080px;
  margin: 0 auto;
}
.work-card { display: block; cursor: pointer; }
.work-card .media {
  aspect-ratio: 16/10;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  position: relative;
  transition: border-color 150ms linear;
}
.work-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}
.work-card:hover .media img { transform: scale(1.03); }
.work-card:hover .media { border-color: #444; }
.work-card .media .ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #444;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #151515, #242424);
}
.work-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
}
.work-card .meta h3 {
  margin: 0 0 4px 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #fff;
  transition: color 120ms linear;
}
.work-card:hover .meta h3 { color: var(--link-blue); }
.work-card .meta .tags {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #666;
}
.work-card .meta .year {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #666;
}

/* Gradient placeholder variants — distinguishable but monochrome-leaning */
.ph.v1 { background: linear-gradient(135deg,#0f172a,#1e3a5f 60%,#334e68); }
.ph.v2 { background: linear-gradient(135deg,#1a1a1a,#2a2a2a); }
.ph.v3 { background: linear-gradient(135deg,#2d3748,#4a5568); }
.ph.v4 { background: linear-gradient(135deg,#1a2e4a,#3d5a7c); }
.ph.v5 { background: linear-gradient(135deg,#0a0a0a,#1a1a1a); }
.ph.v6 { background: linear-gradient(135deg,#252525,#3a3a3a,#1a1a1a); }
.ph.v7 { background: linear-gradient(135deg,#1a1a1a,#333); }
.ph.v8 { background: linear-gradient(135deg,#0d1a2a,#1a2e4a); }

/* =========== PRICING =========== */
.pricing {
  padding: 20px 0 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.price-card {
  padding: 40px 32px 36px;
  border-right: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  transition: background 150ms linear;
  position: relative;
}
.price-card:last-child { border-right: none; }
.price-card:hover { background: #0a0a0a; }
.price-card .tier-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.price-card .tier-num .flag {
  padding: 2px 10px;
  border-radius: 1920px;
  background: #fff;
  color: #000;
  font-weight: 700;
}
.price-card .tier-name {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 8px 0;
}
.price-card .tier-deck {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.5;
  color: #9a9a9a;
  margin: 0 0 28px 0;
}
.price-card .tier-price {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 6px;
}
.price-card .tier-price .sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #666;
  margin-left: 6px;
  vertical-align: middle;
}
.price-card .tier-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #666;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}
.price-card ul li {
  font-family: var(--font-serif);
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid #141414;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: baseline;
}
.price-card ul li::before {
  content: "+";
  font-family: var(--font-mono);
  font-size: 13px;
  color: #666;
}
.price-card .tier-cta {
  align-self: stretch;
  justify-content: center;
}
.price-footnote {
  padding-top: 24px;
  font-family: var(--font-serif);
  font-size: 14px;
  color: #666;
  text-align: center;
  font-style: italic;
}

/* =========== MARQUEE / CTA STRIP =========== */
.cta-strip {
  margin: 40px 0 0;
  padding: 80px 40px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 12px 0;
}
.cta-strip p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #9a9a9a;
  margin: 0 auto 28px;
  max-width: 50ch;
}

/* =========== FOOTER =========== */
footer.site {
  padding: 64px 40px 32px;
  background: #000;
  border-top: 1px solid #1a1a1a;
  color: #fff;
}
.foot-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
}
.foot-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #999;
  margin: 0 0 14px 0;
  font-weight: 400;
}
.foot-grid a {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 5px 0;
  transition: color 120ms linear;
}
.foot-grid a:hover { color: var(--link-blue); }
.foot-grid .lede {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.4px;
  margin: 0 0 14px 0;
}
.foot-grid .lede-sub {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}
.foot-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #666;
}

/* =========== PAPER ZONE (inverted inner) =========== */
.paper {
  background: #fff;
  color: var(--page-ink);
}
.paper .page { max-width: 1600px; margin: 0 auto; padding: 0 40px; }

/* =========== CONTACT PAGE =========== */
.contact-wrap {
  background: #fff;
  color: var(--page-ink);
  padding: 96px 40px 120px;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.9px;
  color: var(--page-ink);
  font-weight: 400;
  margin: 0 0 24px 0;
  text-wrap: pretty;
}
.contact-inner .side-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #000;
}
.contact-inner .side-meta .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-tint);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--page-ink);
}
.contact-inner .side-meta .row span:last-child { color: var(--caption-gray); }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--page-ink);
  margin-bottom: 8px;
  letter-spacing: 0.1px;
}
.field input, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 10px 2px;
  font: 400 15px var(--font-sans);
  color: var(--page-ink);
  outline: none;
  border-radius: 0;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--link-blue); }
.field input::placeholder, .field textarea::placeholder { color: #b7b7b7; }
.field textarea { resize: vertical; min-height: 92px; }

.submit-pill {
  width: 100%;
  padding: 16px 22px;
  border-radius: 1920px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 150ms linear, color 150ms linear;
  margin-top: 10px;
}
.submit-pill:hover { background: #fff; color: #000; }

/* =========== SERVICES PAGE =========== */
.services-head {
  padding: 80px 0 40px;
}
.services-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}
.services-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1.02;
  letter-spacing: -1.2px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 18px 0;
  max-width: 14ch;
}
.services-head p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: #9a9a9a;
  max-width: 52ch;
  margin: 0;
}
.services-list {
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1.1fr 2fr 80px;
  gap: 32px;
  align-items: baseline;
  padding: 40px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: background 150ms linear;
  cursor: pointer;
}
.service-row:hover { background: #0a0a0a; }
.service-row .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #666;
}
.service-row .name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0;
}
.service-row .desc {
  font-family: var(--font-serif);
  font-size: 17px;
  color: #9a9a9a;
  line-height: 1.5;
  margin: 0;
}
.service-row .arrow {
  justify-self: end;
  color: #666;
  font-family: var(--font-mono);
  font-size: 18px;
  transition: color 120ms linear, transform 150ms linear;
}
.service-row:hover .arrow { color: #fff; transform: translateX(4px); }

/* =========== ABOUT PAGE =========== */
.about-hero {
  padding: 96px 0 64px;
}
.about-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  max-width: 18ch;
}
.about-manifesto {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.about-manifesto .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
}
.about-manifesto .copy {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;
  color: #ddd;
}
.about-manifesto .copy p + p { margin-top: 18px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 0;
  border-bottom: 1px solid #1a1a1a;
}
.stats .stat:first-child { text-align: left; }
.stats .stat:nth-child(2) { text-align: center; }
.stats .stat:last-child { text-align: right; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 6px;
}
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666;
}

.team {
  padding: 60px 0 80px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.team-member { max-width: 360px; }
.team-member:first-child { justify-self: end; }
.team-member:last-child { justify-self: start; }
.team-member .portrait {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid #1a1a1a;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #444;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.team-member h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
  letter-spacing: -0.1px;
}
.team-member .role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666;
}
/* WhatsApp button in top bar — slightly greener tint on hover */
.icon-btn.wa-btn svg { width: 18px; height: 18px; }
.icon-btn.wa-btn:hover { color: #25D366; border-color: #25D366; }

/* =========== QUEUE / AVAILABILITY STRIP =========== */
.queue-strip {
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px 40px;
}
.queue-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.queue-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.queue-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  position: relative;
  flex-shrink: 0;
}
.queue-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: queue-pulse 1.8s ease-in-out infinite;
}
@keyframes queue-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.8); opacity: 0; }
}
.queue-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}
.queue-count {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  padding-right: 4px;
}
.queue-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.queue-right p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #ccc;
  margin: 0;
}
.queue-cta {
  background: #25D366 !important;
  color: #000 !important;
  border-color: #25D366 !important;
  font-weight: 500;
}
.queue-cta:hover {
  background: #1ebe5a !important;
  border-color: #1ebe5a !important;
}
@media (max-width: 720px) {
  .queue-strip { padding: 16px 20px; }
  .queue-inner { gap: 16px; justify-content: center; text-align: center; }
  .queue-right { flex-direction: column; gap: 10px; }
}

/* =========== MAINTENANCE / RETAINERS =========== */
.maintenance {
  padding: 40px 48px 80px;
}
.maint-lede {
  text-align: center;
  color: #9a9a9a;
  font-size: 15px;
  padding: 0 0 40px;
  direction: rtl;
  font-family: var(--font-sans);
}
.maint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.maint-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  padding: 36px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  direction: rtl;
  text-align: right;
}
.maint-card.featured {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.maint-card.featured .maint-name,
.maint-card.featured .maint-price { color: #000; }
.maint-card.featured ul li { color: #333; border-color: #e5e5e5; }
.maint-card.featured .maint-num { color: #666; }
.maint-num {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 20px;
}
.maint-num .flag {
  background: #25D366;
  color: #000;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 6px;
  font-size: 10px;
}
.maint-name {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
}
.maint-price {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.maint-price .sub {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-right: 6px;
}
.maint-card.featured .maint-price .sub { color: #666; }
.maint-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.maint-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}
.maint-card ul li:last-child { border-bottom: none; }
.maint-cta {
  align-self: flex-start;
  margin-top: auto;
}
@media (max-width: 720px) {
  .maintenance { padding: 20px 16px 60px; }
  .maint-grid { grid-template-columns: 1fr; }
  .maint-card { padding: 28px 24px; }
}
.team-member .bio {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: #bbb;
  letter-spacing: 0.1px;
}
.team-member[dir="rtl"] h4,
.team-member[dir="rtl"] .role,
.team-member[dir="rtl"] .bio {
  text-align: right;
}
.about-manifesto .copy[dir="rtl"] p {
  text-align: right;
}
.cta-strip p[dir="rtl"] {
  direction: rtl;
  text-align: center;
}
/* Footer RTL blocks */
.foot-grid [dir="rtl"] {
  text-align: right;
}

/* =========== WORK DETAIL PAGE HEADER (showroom) =========== */
.work-head {
  padding: 80px 0 40px;
}
.work-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}
.work-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 20px 0;
  max-width: 16ch;
}
.work-head p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: #9a9a9a;
  max-width: 60ch;
}

/* Filter row */
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0 32px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 56px;
}
.chip {
  padding: 8px 16px;
  border-radius: 1920px;
  border: 1px solid #222;
  background: transparent;
  color: #cfcfcf;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 150ms linear, color 150ms linear, border-color 150ms linear;
}
.chip:hover { border-color: #fff; color: #fff; }
.chip.active { background: #fff; color: #000; border-color: #fff; }

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

/* ---------- PROCESS ---------- */
.process { padding: 0 0 40px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.process-step {
  padding: 40px 32px 36px;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  transition: background 150ms linear;
}
.process-step:nth-child(3n) { border-right: none; }
.process-step:nth-last-child(-n+3) { border-bottom: none; }
.process-step:hover { background: #0a0a0a; }
.process-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.process-num span:first-child {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  letter-spacing: -1px;
  text-transform: none;
}
.process-name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 12px 0;
}
.process-body {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: #b8b8b8;
  margin: 0;
}

@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3n) { border-right: 1px solid #1a1a1a; }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-last-child(-n+3) { border-bottom: 1px solid #1a1a1a; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid #1a1a1a !important; }
  .process-step:last-child { border-bottom: none !important; }
}
