/* =========================================================
   Pick and Move — Material Handling Equipment Hire
   Stylesheet
   ========================================================= */

:root {
  /* Brand */
  --brand: #D72424;
  --brand-deep: #A8121A;
  --amber: #F5A623;
  --amber-soft: #FFD37A;

  /* Neutrals (warm) */
  --bg: oklch(0.985 0.005 70);
  --bg-2: oklch(0.965 0.006 70);
  --bg-3: oklch(0.94 0.008 70);
  --ink: oklch(0.16 0.008 60);
  --ink-2: oklch(0.32 0.01 60);
  --ink-3: oklch(0.52 0.012 60);
  --line: oklch(0.88 0.008 70);
  --line-2: oklch(0.82 0.01 70);

  /* Dark surface */
  --dark: oklch(0.16 0.008 60);
  --dark-2: oklch(0.22 0.01 60);
  --dark-line: oklch(0.32 0.012 60);

  /* Type */
  --font-sans: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(72px, 10vw, 140px);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: .6;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(44px, 7.2vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.h-section {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.h-card {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  font-weight: 500;
}

p { margin: 0; color: var(--ink-2); text-wrap: pretty; }
.lede { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.55; color: var(--ink-2); max-width: 60ch; }

.serif-italic {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease);
  /* border-bottom: 1px solid transparent; */
  border-bottom: 1px solid #dcd5d7;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-stuck {
  background: rgba(253, 251, 246, 0.78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark img {
  height: 55px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(0,0,0,0.04); }

.nav-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(43, 182, 115, 0.04); }
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
  left: 50%; margin-left: -9px;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 26px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 40;
  padding: 100px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav a {
  font-size: 32px;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav .meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  display: flex; flex-direction: column; gap: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--section-pad) + 60px) 0 var(--section-pad);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.hero h1 { max-width: 14ch; }
.hero h1 .accent {
  color: var(--brand);
  font-style: italic;
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__sub {
  max-width: 48ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-2);
  line-height: 1.5;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 24px;
}
.hero-stat .num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.hero-stat .num sup {
  font-size: 0.45em;
  font-weight: 400;
  vertical-align: top;
  margin-left: 4px;
  color: var(--brand);
}
.hero-stat .label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Hero visual */
.hero__stage {
  position: relative;
  height: clamp(320px, 50vw, 540px);
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* background: linear-gradient(180deg, oklch(0.94 0.01 70) 0%, oklch(0.88 0.012 70) 100%); */
  background-image:url("../images/drop-fleet.png");
  border: 1px solid var(--line);
  background-attachment: cover;
  background-position: center center;
}
.hero__stage::before {
  content: "";
  position: absolute; inset: 0;
  /* background-image:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 14px); */
    background-image:url("../images/drop-fleet.png");
  pointer-events: none;
  background-attachment: cover;
  background-position: center center;
}
.hero__stage::after {
  content: "";
  position: absolute;
  left: 24px; bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* Floating chips inside hero stage */
.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px -12px rgba(20, 20, 20, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink);
  animation: float 6s ease-in-out infinite;
}
.float-chip .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-chip .icon svg { width: 16px; height: 16px; }
.float-chip strong { display: block; font-weight: 500; letter-spacing: -0.005em; }
.float-chip span { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; letter-spacing: 0.04em; }

.float-chip--a { top: 8%; right: 6%; animation-delay: 0s; }
.float-chip--b { bottom: 18%; left: 4%; animation-delay: -2s; }
.float-chip--c { top: 42%; right: 16%; animation-delay: -4s; }
.float-chip--c .icon { background: var(--brand); }
.float-chip--b .icon { background: var(--amber); color: var(--ink); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Hero ticker */
.ticker {
  margin-top: 32px;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.ticker__item .star {
  color: var(--brand);
  font-size: 16px;
  display: inline-block;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- Section frame ---------- */
.section { padding: var(--section-pad) 0; position: relative; }
.section--dark { background: var(--dark); color: oklch(0.92 0.005 70); }
.section--dark p { color: oklch(0.78 0.008 70); }
.section--dark .eyebrow { color: oklch(0.7 0.01 70); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head__title { max-width: 16ch; }
.section-head__copy { max-width: 52ch; }

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: url("../images/operations-yard.png");
  border: 1px solid var(--line);
  background-position: right;
}
.about__media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 12px);
}
.about__media .caption {
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.about__media .badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px;
}

.about__copy h2 { margin-bottom: 28px; }
.about__paragraphs p + p { margin-top: 18px; }
.about__paragraphs p { font-size: 17px; line-height: 1.6; }

.about__stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.about__stats .cell {
  background: var(--bg);
  padding: 28px 24px;
  transition: background .3s var(--ease);
}
.about__stats .cell:hover { background: var(--bg-2); }
.about__stats .num {
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.about__stats .num sup { font-size: 0.5em; color: var(--brand); margin-left: 4px; }
.about__stats .label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { aspect-ratio: 5/4; }
}

/* ---------- Services / Equipment ---------- */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.fleet-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, oklch(0.96 0.012 70), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: -1;
}
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 60px -28px rgba(20,20,20,0.18);
}
.fleet-card:hover::before { opacity: 1; }

.fleet-card__head {
  display: flex; align-items: center; justify-content: space-between;
}
.fleet-card .code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.fleet-card .icon-tile {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  transition: background .3s var(--ease), transform .4s var(--ease);
}
.fleet-card:hover .icon-tile {
  background: var(--brand);
  transform: rotate(-6deg);
}
.fleet-card .icon-tile svg { width: 26px; height: 26px; }

.fleet-card h3 { font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; }
.fleet-card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

.fleet-card__meta {
  margin-top: auto;
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px dashed var(--line-2);
}
.fleet-card__meta .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

@media (max-width: 900px) { .fleet { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fleet { grid-template-columns: 1fr; } }

/* ---------- Why choose us ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__cell {
  grid-column: span 4;
  background: var(--dark);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  transition: background .3s var(--ease);
  position: relative;
  min-height: 240px;
}
.why__cell:hover { background: var(--dark-2); }
.why__cell .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: oklch(0.6 0.01 70);
}
.why__cell h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: oklch(0.96 0.005 70);
}
.why__cell p { font-size: 14.5px; line-height: 1.55; color: oklch(0.74 0.008 70); }
.why__cell .icn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--amber-soft);
}
.why__cell .icn svg { width: 24px; height: 24px; }

@media (max-width: 900px) { .why__cell { grid-column: span 6; } }
@media (max-width: 600px) { .why__cell { grid-column: span 12; } }

/* ---------- Process ---------- */
.process {
  position: relative;
}
.process__rail {
  position: absolute;
  top: 105px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process__rail-fill {
  position: absolute; top: 0; left: 0;
  height: 1px;
  width: 0%;
  background: var(--brand);
  transition: width 1.6s var(--ease);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.process-step {
  padding-top: 80px;
  position: relative;
  padding-right: 12px;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 95px; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ink-3);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.process-step:hover::before { background: var(--brand); border-color: var(--brand); transform: scale(1.2); }
.process-step .step-no {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.process-step h4 {
  margin-top: 20px;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.process-step p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__rail { display: none; }
  .process-step { padding-top: 24px; }
  .process-step::before { top: 0; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ---------- Coverage ---------- */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.coverage__map {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: var(--dark);
  border: 1px solid var(--dark-line);
  overflow: hidden;
}
.coverage__map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(245, 166, 35, 0.05), transparent 40%),
    radial-gradient(circle at 60% 70%, rgba(215, 36, 36, 0.06), transparent 40%);
}
.coverage__map svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.coverage__map .legend {
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.7 0.01 70);
  display: flex; align-items: center; gap: 10px;
}
.coverage__map .legend .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
.cities-grid .city {
  background: var(--bg);
  padding: 18px 20px;
  font-size: 14px;
  letter-spacing: -0.005em;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .25s var(--ease);
}
.cities-grid .city:hover { background: var(--bg-2); }
.cities-grid .city .code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .coverage__grid { grid-template-columns: 1fr; gap: 32px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Pulsing map nodes */
.pulse-dot { transform-origin: center; }
.pulse-dot circle.core { fill: var(--amber); }
.pulse-dot circle.ring { fill: none; stroke: var(--amber); stroke-width: 1; opacity: 0.6; transform-origin: center; animation: pulse-ring 2.4s var(--ease) infinite; }
.pulse-dot--brand circle.core { fill: var(--brand); }
.pulse-dot--brand circle.ring { stroke: var(--brand); }
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  80%  { transform: scale(3.2); opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 24px;
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); }
.quote .mark {
  font-family: "Instrument Serif", serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--brand);
  height: 24px;
}
.quote blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote__by {
  margin-top: auto;
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.quote__by .name { font-weight: 500; font-size: 14.5px; letter-spacing: -0.005em; }
.quote__by .role { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Insights / Blog ---------- */
.insights {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.insight {
  display: flex; flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease);
  background: transparent;
}
.insight:hover { transform: translateY(-4px); }
.insight__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.insight--feat .insight__media { aspect-ratio: 16/10; }
.insight__media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 12px);
  transition: transform .6s var(--ease);
}
.insight:hover .insight__media::before { transform: scale(1.06); }
.insight__media .caption {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.insight__meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.insight__meta .cat { color: var(--brand); }
.insight h3 {
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.018em;
}
.insight--feat h3 { font-size: clamp(24px, 2vw, 34px); }
.insight p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

@media (max-width: 900px) { .insights { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: oklch(0.85 0.005 70);
  padding: clamp(80px, 10vw, 120px) 0 32px;
}
.site-footer .footer-mark {
  font-family: var(--font-sans);
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: oklch(0.96 0.005 70);
  margin-bottom: 80px;
}
.site-footer .footer-mark .ital {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--dark-line);
}
.footer__cols h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.62 0.008 70);
  margin: 0 0 18px;
  font-weight: 400;
}
.footer__cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__cols a { color: oklch(0.85 0.005 70); transition: color .2s var(--ease); font-size: 15px; }
.footer__cols a:hover { color: #fff; }
.footer__cols address {
  font-style: normal;
  color: oklch(0.85 0.005 70);
  font-size: 15px;
  line-height: 1.6;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  flex-wrap: wrap; gap: 16px;
}
.footer__bottom p, .footer__bottom .legal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: oklch(0.6 0.01 70);
  text-transform: uppercase;
}
.social {
  display: flex; gap: 8px;
}
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  display: grid; place-items: center;
  color: oklch(0.78 0.008 70);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.social a:hover { color: #fff; border-color: var(--brand); background: var(--brand); }
.social a svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }
.reveal[data-delay="6"] { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive header ---------- */
@media (max-width: 900px) {
  .nav, .nav-meta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Hero responsive ---------- */
@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 18px; padding-top: 24px; }
  .hero__top { flex-direction: column; align-items: start; }
  .float-chip--c { display: none; }
}
