/* ============================================================
   ARTC v2 — Premium editorial design system
   Fonts: Fraunces (display), Inter Tight (UI), JetBrains Mono (data)
   Palette: deep navy ink + ARTC red + warm paper
   ============================================================ */

:root {
  /* Brand */
  --red:        #C8102E;
  --red-deep:   #8B1A1A;
  --red-glow:   rgba(200, 16, 46, .35);

  /* Editorial palette */
  --ink:        #0b1320;   /* deep navy-black */
  --ink-2:      #131c2d;
  --ink-3:      #1d2638;
  --line-d:     rgba(255,255,255,.08);

  --paper:      #f4efe7;   /* warm off-white */
  --paper-2:    #ebe5da;
  --paper-3:    #e0d8ca;
  --paper-ink:  #1a1814;
  --line-p:     rgba(0,0,0,.1);

  --gray:       #6b7280;
  --gray-2:     #9ca3af;

  /* Type */
  --serif:      "Fraunces", "Times New Roman", serif;
  --sans:       "Inter Tight", system-ui, sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;

  /* System */
  --container:  1320px;
  --gutter:     32px;
  --radius:     2px;
  --t:          cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper-ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--red); color: #fff; }

/* Subtle grain texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ============================================================
   TYPOGRAPHIC PRIMITIVES
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow--dark { color: var(--gray); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .3s var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.2), 0 6px 22px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0,0,0,.2), 0 14px 32px var(--red-glow);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.6);
}
.btn svg { transition: transform .3s var(--t); }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(11, 19, 32, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .3s var(--t), backdrop-filter .3s var(--t), padding .3s var(--t);
}
.nav.is-scrolled {
  background: rgba(11, 19, 32, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-d);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.nav__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.nav__brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: #fff;
}
.nav__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--t);
}
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .3s var(--t);
}
.nav__links a:hover::after { width: 100%; }
.nav__num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: .1em;
}

.nav__cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav__cta { padding: 12px 18px; font-size: 12px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: #fff;
  transition: transform .3s var(--t);
}
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__links { gap: 24px; }
  .nav__links a { font-size: 12px; }
}

@media (max-width: 880px) {
  .nav__brandtext { display: none; }
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px var(--gutter);
    background: var(--ink);
    border-bottom: 1px solid var(--line-d);
    transform: translateY(-110%);
    transition: transform .4s var(--t);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-d);
    font-size: 15px;
  }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: contrast(1.05) saturate(1.1) brightness(.9);
  animation: ken-burns 24s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,19,32,.55) 0%, rgba(11,19,32,.2) 35%, rgba(11,19,32,.95) 100%),
    linear-gradient(95deg, rgba(11,19,32,.7) 0%, rgba(11,19,32,0) 60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px var(--gutter) 90px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.hero__loc svg { color: var(--red); }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: .92;
  letter-spacing: -.025em;
  display: flex;
  flex-wrap: wrap;
  gap: 0 .25em;
  max-width: 14ch;
}
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroWord 1s var(--t) forwards;
}
.hero__word em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}
.hero__word:nth-child(1) { animation-delay: .1s; }
.hero__word:nth-child(2) { animation-delay: .2s; }
.hero__word:nth-child(3) { animation-delay: .3s; }
.hero__word:nth-child(4) { animation-delay: .45s; }
.hero__word:nth-child(5) { animation-delay: .55s; }
.hero__word:nth-child(6) { animation-delay: .65s; }
@keyframes heroWord {
  to { opacity: 1; transform: translateY(0); }
}

.hero__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.5;
  font-weight: 300;
  max-width: 36ch;
  color: rgba(255,255,255,.85);
}
.hero__lede strong { color: #fff; font-weight: 500; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  z-index: 3;
}
.hero__scroll span {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: -36px; left: 0;
  width: 100%; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollDown 2.4s var(--t) infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(72px); }
}

@media (max-width: 720px) {
  .hero__inner { padding: 120px var(--gutter) 70px; gap: 36px; }
  .hero__foot { grid-template-columns: 1fr; gap: 24px; }
  .hero__scroll { display: none; }
}

/* ============================================================
   COUNTER BAND
   ============================================================ */
.counter {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--line-d);
}
.counter__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counter__cell {
  padding: 44px 24px;
  border-left: 1px solid var(--line-d);
  position: relative;
}
.counter__cell:first-child { border-left: 0; }
.counter__cell::before {
  content: "";
  position: absolute;
  top: 24px; left: 24px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.counter__num {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 8px;
}
.counter__num i {
  font-style: normal;
  font-size: .45em;
  color: var(--red);
  margin-left: 2px;
}
.counter__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-2);
}
@media (max-width: 720px) {
  .counter__inner { grid-template-columns: repeat(2, 1fr); }
  .counter__cell { padding: 28px 18px; }
  .counter__cell:nth-child(3) { border-left: 0; }
  .counter__cell:nth-child(1), .counter__cell:nth-child(2) { border-bottom: 1px solid var(--line-d); }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  background: var(--paper);
  padding: 120px 0;
}
.intro__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}
.intro__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--paper-ink);
  margin: 24px 0 32px;
}
.intro__title em {
  font-style: italic;
  color: var(--red);
}
.intro__title span {
  display: block;
  color: var(--gray);
  font-style: italic;
  margin-top: 8px;
}
.intro__body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: #3a3934;
  font-weight: 300;
  max-width: 64ch;
}
.intro__body strong {
  font-weight: 500;
  color: var(--paper-ink);
  font-style: italic;
}

@media (max-width: 720px) {
  .intro { padding: 80px 0; }
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
}
.section-head--light { color: var(--paper); }
.section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 20px 0 24px;
}
.section-head__title em { font-style: italic; color: var(--red); }
.section-head__lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray);
  max-width: 58ch;
}
.section-head--light .section-head__lede { color: rgba(255,255,255,.7); }

/* ============================================================
   SERVICES (two cards)
   ============================================================ */
.services {
  background: var(--paper);
  padding: 120px 0;
}
.services__split {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.svc {
  background: #fff;
  border: 1px solid var(--line-p);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--t), box-shadow .4s var(--t);
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11,19,32,.12);
}
.svc--accent { background: var(--ink); color: #fff; border-color: transparent; }

.svc__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform .8s var(--t);
}
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__chip {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 100px;
}

.svc__body { padding: 36px 32px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.svc__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 16px;
}
.svc__desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: #4a4944;
  font-weight: 300;
  margin-bottom: 24px;
}
.svc--accent .svc__desc { color: rgba(255,255,255,.78); }

.svc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line-p);
  margin-bottom: 28px;
  border-top: 1px solid var(--line-p);
  border-bottom: 1px solid var(--line-p);
}
.svc--accent .svc__list { background: var(--line-d); border-color: var(--line-d); }
.svc__list li {
  background: #fff;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  font-size: 13px;
}
.svc--accent .svc__list li { background: var(--ink); }
.svc__list strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}
.svc--accent .svc__list strong { color: var(--red); }
.svc__list span { color: var(--paper-ink); }
.svc--accent .svc__list span { color: rgba(255,255,255,.85); }

.svc__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line-p);
  margin-top: auto;
  transition: color .2s var(--t), gap .2s var(--t);
}
.svc__cta:hover { gap: 14px; color: var(--red); }
.svc__cta--accent { color: #fff; border-top-color: var(--line-d); }
.svc__cta--accent:hover { color: var(--red); }

.services__also {
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.services__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.services__chips li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-p);
  border-radius: 100px;
  background: #fff;
  color: var(--paper-ink);
}

@media (max-width: 880px) {
  .services { padding: 80px 0; }
  .services__split { grid-template-columns: 1fr; }
  .svc__list li { grid-template-columns: 110px 1fr; }
}

/* ============================================================
   FLEET (image left / text right rows)
   ============================================================ */
.fleet {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
}
.fleet__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
}

.fleet-row {
  display: grid;
  grid-template-columns: 140px 1fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line-d);
  position: relative;
}
.fleet-row:last-child { border-bottom: 1px solid var(--line-d); }

.fleet-row__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 8vw, 124px);
  line-height: .9;
  letter-spacing: -.03em;
  color: #fff;
  position: relative;
}
.fleet-row__num i {
  font-style: normal;
  font-size: .4em;
  color: var(--red);
  vertical-align: super;
}
.fleet-row--accent .fleet-row__num { color: var(--red); }
.fleet-row--accent::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 2px;
  background: var(--red);
}

.fleet-row__body { padding-right: 16px; }
.fleet-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.fleet-row__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -.01em;
}
.fleet-row__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.fleet-row__body p {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
}
.fleet-row__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet-row__specs li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-d);
}
.fleet-row__specs li:last-child { border-bottom: 0; }
.fleet-row__specs span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.fleet-row__specs strong { color: #fff; font-weight: 500; }

.fleet-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.fleet-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(.92);
  transition: transform 1s var(--t), filter .4s var(--t);
}
.fleet-row:hover .fleet-row__media img {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(1.1) brightness(1);
}

@media (max-width: 980px) {
  .fleet-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
  .fleet-row__num {
    font-size: 88px;
  }
  .fleet-row__media {
    order: -1;
    aspect-ratio: 16 / 10;
  }
  .fleet-row__head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 720px) {
  .fleet { padding: 80px 0; }
}

/* ============================================================
   WORK GALLERY
   ============================================================ */
.work {
  background: var(--paper);
  padding: 120px 0;
}
.work__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.work__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}
.work__tile--tall { grid-row: span 2; }
.work__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(.95);
  transition: transform 1s var(--t), filter .5s var(--t);
}
.work__tile:hover img {
  transform: scale(1.08);
  filter: contrast(1.1) saturate(1.15) brightness(.6);
}
.work__tile figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(11,19,32,.95) 0%, rgba(11,19,32,.4) 50%, transparent 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s var(--t), transform .4s var(--t);
}
.work__tile:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.work__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.work__tile h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.work__tile small {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* Always show captions on touch devices */
@media (hover: none) {
  .work__tile figcaption { opacity: 1; transform: translateY(0); }
  .work__tile img { filter: contrast(1.05) saturate(1.05) brightness(.7); }
}

@media (max-width: 980px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .work__tile--tall { grid-row: span 2; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .work__tile--tall { grid-row: span 1; }
  .work { padding: 80px 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--paper-2);
  padding: 120px 0;
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 20px 0 32px;
}
.about__body {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: #3a3934;
  margin-bottom: 20px;
  max-width: 56ch;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-p);
}
.about__pillars div { display: flex; flex-direction: column; gap: 4px; }
.about__pillars strong {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}
.about__pillars span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}

.about__card {
  background: var(--ink);
  color: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}
.about__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-d);
}
.about__logo {
  width: 56px; height: 56px;
  background: #fff;
  padding: 6px;
  object-fit: contain;
}
.about__card-top strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  display: block;
}
.about__card-top em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.about__card p {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.about__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: #fff;
}
.about__phone svg { color: var(--red); }
.about__phone:hover { color: var(--red); }
.about__email {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
  word-break: break-word;
}
.about__email:hover { color: #fff; }

@media (max-width: 880px) {
  .about { padding: 80px 0; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__card { position: static; }
  .about__pillars { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about__pillars strong { font-size: 26px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 18px 0 24px;
}
.contact__lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 42ch;
}

.contact__blocks { display: flex; flex-direction: column; gap: 24px; }
.contact__block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}
.contact__big {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: #fff;
}
.contact__big--sm { font-size: 18px; word-break: break-word; }
.contact__big:hover { color: var(--red); }
.contact__sub { font-size: 14px; color: rgba(255,255,255,.6); }
.contact__map {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--red);
  margin-top: 8px;
}
.contact__map:hover { text-decoration: underline; }

/* Form */
.form {
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  padding: 40px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -.01em;
}
.form__head span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field > span,
.form__field > label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.form input,
.form textarea,
.form select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-d);
  color: #fff;
  padding: 10px 0;
  font-size: 15px;
  font-family: var(--serif);
  outline: none;
  transition: border-color .2s var(--t);
}
.form input:focus,
.form textarea:focus,
.form select:focus { border-color: var(--red); }
.form textarea { resize: vertical; min-height: 80px; }

.form__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--line-d);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: all .2s var(--t);
}
.pill:hover span { border-color: rgba(255,255,255,.4); color: #fff; }
.pill input:checked + span {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.form__submit { margin-top: 8px; align-self: flex-start; }
.form__note { font-size: 13px; color: rgba(255,255,255,.55); }
.form__note a { color: var(--red); font-weight: 600; }
.form__note a:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .contact { padding: 80px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 28px 24px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050a14;
  color: rgba(255,255,255,.7);
  padding-top: 64px;
  border-top: 4px solid var(--red);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { width: 56px; height: 56px; object-fit: contain; }
.footer__brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.footer__brand span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--red); }
.footer__contact a { color: #fff; }

.footer__base {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  border-top: 1px solid var(--line-d);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   FLOATING CALL
   ============================================================ */
.float-call {
  display: none;
  position: fixed;
  right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(200,16,46,.5);
  z-index: 90;
  animation: pulse 2.5s var(--t) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(200,16,46,.5); }
  50%      { box-shadow: 0 8px 36px rgba(200,16,46,.8); }
}
@media (max-width: 720px) {
  .float-call { display: inline-flex; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--t), transform .9s var(--t);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
