/* ============================================================
   SQUEEZE TECHNOLOGY — New Site
   Editorial, premium, technical, with a quirky orange accent.
   ============================================================ */

:root {
  --orange: #F37021;
  --orange-deep: #D85B12;
  --orange-tint: #FCE7D6;
  --ink: #0E0F0C;
  --ink-soft: #25241F;
  --mid: #6B6960;
  --hair: #E8E2D5;
  --cream: #F6F2EA;
  --cream-deep: #EFE8D7;
  --paper: #FFFFFF;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(20px, 4vw, 64px);
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- TOP UTILITY BAR ---------- */
.utility {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.utility-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.utility-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.utility .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: inline-block; margin-right: 8px; vertical-align: 1px; }
.utility a:hover { color: var(--orange); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 242, 234, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 64px; width: auto; }
.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 500; white-space: nowrap; }
.nav-links a { position: relative; }
.nav-links a:hover { color: var(--orange-deep); }
.nav-links a.has-caret::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-left: 6px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  white-space: nowrap;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--orange-deep); color: #fff; }
.nav-cta .arrow {
  width: 14px; height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
}

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 120px); }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow .pill {
  background: var(--ink);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.hero-eyebrow .pill .o { color: var(--orange); }
.hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange-deep);
}
.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  max-width: 52ch;
  color: var(--ink-soft);
  margin: 0 0 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn .arrow {
  width: 14px; height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
}

.hero-meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  padding-top: 28px;
}
.hero-meta > div {
  padding-right: 24px;
  border-right: 1px solid var(--hair);
}
.hero-meta > div:last-child { border-right: none; }
.hero-meta .k {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta .k .o { color: var(--orange); }
.hero-meta .l {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid);
  margin-top: 10px;
}

/* big squeeze decoration in the hero corner */
.hero-decor {
  position: absolute;
  right: clamp(40px, 6vw, 120px);
  top: clamp(130px, 13vw, 200px);
  bottom: auto;
  width: clamp(260px, 28vw, 380px);
  pointer-events: none;
  opacity: 0.95;
  z-index: 0;
}
.hero-decor img,
.hero-decor svg { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .hero-decor { display: none; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-meta > div:nth-child(2) { border-right: none; }
}

/* ---------- SECTION CHROME ---------- */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: var(--cream); }

.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mid);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 16px;
  max-width: 18ch;
}
.section-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange-deep); }
.section-ink .section-title em { color: var(--orange); }
.section-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}
.section-ink .section-eyebrow { color: rgba(246, 242, 234, 0.5); }
.section-ink .section-lede { color: rgba(246, 242, 234, 0.7); }

/* ---------- TIERS (Everything / Everything Plus / Project Blocks / Data-Shift) ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--hair);
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
}
.tier {
  position: relative;
  padding: 32px 24px 28px;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.tier:last-child { border-right: none; }
.tier-featured { background: var(--ink); color: var(--cream); }
.tier-featured .tier-name { color: #fff; }
.tier-featured .tier-summary { color: rgba(246, 242, 234, 0.75); }
.tier-featured .tier-incl li { color: rgba(246, 242, 234, 0.85); }
.tier-featured .tier-incl li::before { background: var(--orange); }
.tier-featured .tier-foot { border-top-color: rgba(246, 242, 234, 0.15); color: rgba(246, 242, 234, 0.6); }

.tier-flag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}
.tier-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}
.tier-featured .tier-id { color: rgba(246, 242, 234, 0.5); }
.tier-name {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}
.tier-name em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange-deep); }
.tier-featured .tier-name em { color: var(--orange); }
.tier-summary {
  font-size: 14.5px;
  color: var(--mid);
  margin: 0 0 24px;
  line-height: 1.5;
}
.tier-incl {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.tier-incl li {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.tier-incl li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.tier-foot {
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.tier-foot .arrow {
  width: 12px; height: 12px;
  background: currentColor;
  display: inline-block;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
}

@media (max-width: 1400px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .tier { border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
  .tier:nth-child(3n) { border-right: none; }
}
@media (max-width: 1080px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .tier:nth-child(3n) { border-right: 1px solid var(--hair); }
  .tier:nth-child(2n) { border-right: none; }
  .tier { border-bottom: 1px solid var(--hair); }
  .tier-featured .tier-id, .tier-featured.tier:nth-child(2) { border-color: rgba(246, 242, 234, 0.15); }
}
@media (max-width: 640px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none !important; border-bottom: 1px solid var(--hair); }
  .tier:last-child { border-bottom: none; }
}

/* ---------- TIER ADD-ON ROW (DevOps / Project Blocks) ---------- */
.tier-addon-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 4fr;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 4px;
  overflow: hidden;
  align-items: stretch;
}
.tier-addon-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  border-right: 1px solid var(--hair);
  background: var(--paper);
}
.tier-addon-rail-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.tier-addon-rail-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-top: 14px;
  line-height: 1.5;
}
.tier-addon-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tier-addon-cards .tier-addon + .tier-addon { border-left: 1px solid var(--hair); }
.tier-addon {
  display: block;
  padding: 28px 28px 24px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.tier-addon:hover { background: rgba(243, 112, 33, 0.04); }
.tier-addon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.tier-addon-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-addon-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.tier-addon-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.tier-addon-name em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange-deep); }
.tier-addon-summary {
  font-size: 14px;
  color: var(--mid);
  margin: 0 0 18px;
  line-height: 1.5;
}
.tier-addon-incl {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tier-addon-incl li {
  font-size: 13.5px;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}
.tier-addon-incl li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.tier-addon .tier-foot {
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
@media (max-width: 1000px) {
  .tier-addon-cards { grid-template-columns: 1fr; }
  .tier-addon-cards .tier-addon + .tier-addon { border-left: none; border-top: 1px solid var(--hair); }
}
@media (max-width: 880px) {
  .tier-addon-row { grid-template-columns: 1fr; }
  .tier-addon-rail { flex-direction: row; justify-content: space-between; align-items: center; padding: 16px 24px; border-right: none; border-bottom: 1px solid var(--hair); }
  .tier-addon-rail-note { margin-top: 0; text-align: right; }
}

/* ---------- IT SITUATIONS ---------- */
.situations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.sit {
  background: var(--cream);
  padding: 36px 30px 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}
.sit:hover { background: var(--paper); }
.sit-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mid);
  margin-bottom: 28px;
}
.sit-num .o { color: var(--orange); }
.sit-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.sit-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 24px;
  flex: 1;
}
.sit-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.sit-link .arrow {
  width: 12px; height: 12px; background: currentColor; display: inline-block;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
}
@media (max-width: 900px) { .situations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .situations { grid-template-columns: 1fr; } }

/* ---------- AI SPOTLIGHT ---------- */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.ai-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 28px;
}
.ai-quote em { color: var(--orange); font-style: normal; font-family: var(--sans); font-weight: 500; letter-spacing: -0.025em; }
.ai-body { font-size: 16px; line-height: 1.6; color: rgba(246, 242, 234, 0.75); margin: 0 0 16px; }
.ai-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.ai-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(246, 242, 234, 0.14);
  border-radius: 12px;
  background: rgba(246, 242, 234, 0.03);
  align-items: start;
}
.ai-list .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--orange);
  padding-top: 4px;
}
.ai-list .t { font-size: 15px; color: var(--cream); line-height: 1.5; }
.ai-list .t b { font-weight: 600; }
@media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; } }

/* ---------- NUMBERS / OUTCOMES ---------- */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.out {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--hair);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 220px;
}
.out:nth-child(3n) { border-right: none; padding-right: 0; }
.out:not(:nth-last-child(-n+3)) { border-bottom: 1px solid var(--hair); }
.out > * + * { margin-top: 0; }
.out-num {
  font-family: var(--sans);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: flex; align-items: flex-start; gap: 4px;
}
.out-num .sign {
  font-size: 0.35em;
  color: var(--mid);
  margin-top: 0.5em;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.out-num .unit { font-size: 0.45em; color: var(--orange); margin-top: 0.4em; }
.out-name { font-size: 17px; font-weight: 500; margin: 24px 0 6px; }
.out-desc { font-size: 14px; color: var(--mid); line-height: 1.5; margin: 0; max-width: 32ch; }
@media (max-width: 900px) {
  .outcomes { grid-template-columns: 1fr 1fr; }
  .out { padding-right: 24px; }
  .out:nth-child(3n) { border-right: 1px solid var(--hair); padding-right: 24px; }
  .out:nth-child(2n) { border-right: none; padding-right: 0; }
  .out:nth-child(-n+4) { border-bottom: 1px solid var(--hair); }
  .out:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .outcomes { grid-template-columns: 1fr; }
  .out { border-right: none !important; padding-right: 0 !important; border-bottom: 1px solid var(--hair) !important; }
  .out:last-child { border-bottom: none !important; }
}

/* ---------- TESTIMONIALS ---------- */
.tcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tcard {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
}
.tcard-quote {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 28px;
  flex: 1;
}
.tcard-quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 56px;
  color: var(--orange);
  line-height: 0.7;
  display: block;
  margin-bottom: 6px;
}
.tcard-attr { display: flex; align-items: center; gap: 16px; padding-top: 22px; border-top: 1px solid var(--hair); }
.tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-deep);
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 15px;
}
.tcard-name { font-size: 15px; font-weight: 500; }
.tcard-role { font-family: var(--mono); font-size: 11px; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 800px) { .tcards { grid-template-columns: 1fr; } }

/* ---------- CUSTOMERS ---------- */
.customers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.cust {
  padding: 24px 20px;
  display: grid; place-items: center;
  border-right: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mid);
  text-transform: uppercase;
  min-height: 120px;
  text-align: center;
}
.cust:last-child { border-right: none; }
.cust .pl {
  display: block;
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink-soft);
  font-weight: 500;
}
.cust-logo {
  display: block;
  width: auto;
  max-width: 84%;
  max-height: 56px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 180ms ease;
}
.cust:hover .cust-logo { opacity: 1; }
@media (max-width: 900px) { .customers { grid-template-columns: repeat(3, 1fr); } .cust:nth-child(3n) { border-right: none; } }
@media (max-width: 540px) { .customers { grid-template-columns: repeat(2, 1fr); } .cust:nth-child(3n) { border-right: 1px solid var(--hair); } .cust:nth-child(2n) { border-right: none; } }

/* ---------- BLOG ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post { display: flex; flex-direction: column; }
.post-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.post-cover { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.post-thumb .pl-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: rgba(246, 242, 234, 0.85);
  padding: 4px 8px; border-radius: 4px;
}
.post-tag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 12px;
}
.post-title {
  font-size: 22px; font-weight: 500; letter-spacing: -0.014em;
  line-height: 1.2; margin: 0 0 12px;
}
.post-excerpt { font-size: 14.5px; color: var(--mid); line-height: 1.55; margin: 0 0 16px; }
.post-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.post-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
.post-foot .post-meta { margin: 0; }
.post-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.post-read .arrow { transition: transform 0.2s; }
.post:hover .post-read { color: var(--orange-deep); }
.post:hover .post-read .arrow { transform: translateX(3px); }
@media (max-width: 900px) { .posts { grid-template-columns: 1fr 1fr; } .post:last-child { display: none; } }
@media (max-width: 600px) { .posts { grid-template-columns: 1fr; } .post:last-child { display: flex; } }

/* ---------- PRIVATE CLIENTS CALLOUT ---------- */
.private-clients { padding-top: 0; padding-bottom: clamp(40px, 5vw, 64px); }
.pc-band {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr auto;
  gap: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  align-items: stretch;
  position: relative;
  transition: background 0.2s;
}
.pc-band:hover { background: #1a1b16; }
.pc-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  border-right: 1px solid rgba(246, 242, 234, 0.12);
  background: rgba(243, 112, 33, 0.08);
}
.pc-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.pc-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.55);
  margin-top: 14px;
}
.pc-body {
  padding: 32px 36px;
  max-width: 64ch;
}
.pc-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}
.pc-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange); }
.pc-sub {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: rgba(246, 242, 234, 0.75);
}
.pc-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border-left: 1px solid rgba(246, 242, 234, 0.12);
}
.pc-cta .arrow {
  width: 14px; height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
  transition: transform 0.2s;
}
.pc-band:hover .pc-cta .arrow { transform: translateX(4px); }
@media (max-width: 900px) {
  .pc-band { grid-template-columns: 1fr; }
  .pc-rail { flex-direction: row; align-items: center; justify-content: space-between; padding: 16px 24px; border-right: none; border-bottom: 1px solid rgba(246, 242, 234, 0.12); }
  .pc-id { margin-top: 0; }
  .pc-cta { padding: 18px 24px; border-left: none; border-top: 1px solid rgba(246, 242, 234, 0.12); justify-content: space-between; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--orange);
  color: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 16px;
  max-width: 18ch;
}
.cta-band h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.cta-band p { font-size: 17px; line-height: 1.5; margin: 0; max-width: 50ch; opacity: 0.95; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.cta-band .btn { justify-content: space-between; }
.cta-band .btn-light { background: #fff; color: var(--ink); }
.cta-band .btn-light:hover { background: var(--ink); color: #fff; }
.cta-band .btn-dark { background: var(--ink); color: #fff; }
.cta-band .btn-dark:hover { background: #fff; color: var(--ink); }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand img { height: 44px; width: auto; display: block; }
.footer-brand .squeeze-mark { display: flex; align-items: center; gap: 12px; }
.footer-tag {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246, 242, 234, 0.7);
  max-width: 36ch;
}
.footer-partners { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.footer-partner {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(246, 242, 234, 0.55);
  padding: 8px 12px;
  border: 1px solid rgba(246, 242, 234, 0.15);
  border-radius: 6px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.45);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--cream); }
.footer-col a:hover { color: var(--orange); }

.footer-locations {
  border-top: 1px solid rgba(246, 242, 234, 0.12);
  border-bottom: 1px solid rgba(246, 242, 234, 0.12);
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 32px;
  margin-bottom: 24px;
  align-items: start;
}
.loc h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 8px;
  font-weight: 500;
}
.loc p { font-size: 14px; line-height: 1.5; margin: 0; color: rgba(246, 242, 234, 0.8); }
.contacts { text-align: right; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(246, 242, 234, 0.7); display: flex; flex-direction: column; gap: 6px; }
.contacts strong { color: var(--cream); font-weight: 500; }
.contacts a:hover { color: var(--orange); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.5);
}
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-locations { grid-template-columns: 1fr 1fr; }
  .contacts { text-align: left; grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid, .footer-locations { grid-template-columns: 1fr; }
  .contacts { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- BRAND MARK (CSS squeeze orange) ---------- */
.squeeze-orange {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.squeeze-orange svg { width: 100%; height: 100%; }

/* ---------- MISC ---------- */
.row-end { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.section-link {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.section-ink .section-link { color: var(--orange); }
.section-link .arrow {
  width: 12px; height: 12px; display: inline-block; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>") center/contain no-repeat;
}
