:root {
  --ink: #192742;
  --ink-2: #253758;
  --paper: #ffffff;
  --mist: #f4f6f8;
  --line: #d9dee7;
  --text: #20242b;
  --muted: #667085;
  --accent: #e9c9c8;
  --signal: #192742;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 50;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--paper);
  background: rgba(25, 39, 66, 0.92);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand img {
  width: 148px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.desktop-nav a,
.nav-cta {
  opacity: 0.86;
}

.desktop-nav a:hover,
.nav-cta:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 650;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.72;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(25, 39, 66, 0.94) 0%, rgba(25, 39, 66, 0.68) 42%, rgba(25, 39, 66, 0.25) 100%),
    linear-gradient(0deg, rgba(25, 39, 66, 0.9) 0%, rgba(25, 39, 66, 0.08) 55%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 48px;
  padding: 170px 0 84px;
}

.hero-grid-clean {
  grid-template-columns: minmax(0, 760px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 11vw, 9.8rem);
  line-height: 0.9;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  font-size: clamp(5.5rem, 14vw, 12rem);
  line-height: 0.82;
  font-weight: 880;
  text-transform: uppercase;
}

.hero-title-sub {
  font-size: clamp(2rem, 4.8vw, 5.2rem);
  line-height: 1;
  font-weight: 340;
  text-transform: none;
}

.hero-tagline {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 820;
  text-transform: uppercase;
}

h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 760;
}

.button.primary {
  color: var(--ink);
  background: var(--paper);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.44);
}

.button.dark {
  color: var(--paper);
  background: #000000;
  min-width: 190px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button.accent {
  color: var(--paper);
  background: var(--signal);
  min-width: 150px;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 10vw, 128px) 0;
}

.text-link,
.work-item a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 780;
  border-bottom: 1px solid currentColor;
}

.manifesto {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.manifesto-label {
  position: absolute;
  left: 0;
  top: clamp(74px, 13vw, 132px);
  width: min(48vw, 760px);
  min-width: 0;
  height: clamp(120px, 13vw, 172px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--signal);
}

.manifesto-label span {
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.manifesto-believe .manifesto-label {
  width: min(48vw, 760px);
}

.manifesto-believe .manifesto-label span {
  font-size: clamp(2.55rem, 5vw, 5rem);
}

.manifesto-we-are {
  min-height: auto;
}

.manifesto-we-are .manifesto-label {
  top: clamp(42px, 6vw, 76px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(74px, 13vw, 132px) 0 clamp(80px, 10vw, 130px);
}

.manifesto-copy h2 {
  display: block;
  margin-bottom: 34px;
  color: #000000;
  font-size: clamp(2.2rem, 3.55vw, 3.95rem);
  line-height: 1.1;
  text-transform: lowercase;
}

.manifesto-copy h2 span {
  display: block;
  white-space: nowrap;
}

.manifesto-copy p {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  font-weight: 720;
}

.manifesto-we-are .manifesto-copy {
  margin-top: 0;
}

.manifesto-we-are .manifesto-grid {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(34px, 4vw, 70px);
}

.manifesto-believe {
  min-height: auto;
  padding-bottom: clamp(74px, 9vw, 120px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    url("assets/vox-collage.jpg") center / cover;
}

.manifesto-believe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(25, 39, 66, 0.035) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.believe-grid {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(38px, 6vw, 72px);
}

.believe-copy h2 {
  display: block;
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(1.75rem, 2.85vw, 3.15rem);
  line-height: 1.1;
  text-transform: none;
}

.believe-copy p {
  max-width: 900px;
  color: #000000;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 760;
}

.believe-image-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vw, 52px);
}

/* 4-image bento Z-pattern */
.believe-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: clamp(220px, 26vw, 380px) clamp(220px, 26vw, 380px);
  gap: 6px;
  width: min(100%, 1320px);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(25, 39, 66, 0.16);
}

.gal-img {
  display: block;
  overflow: hidden;
}

.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.gal-img:hover img {
  transform: scale(1.04);
}

.gal-img:nth-child(1) { grid-column: 1; grid-row: 1; }
.gal-img:nth-child(2) { grid-column: 2; grid-row: 1; }
.gal-img:nth-child(3) { grid-column: 1; grid-row: 2; }
.gal-img:nth-child(4) { grid-column: 2; grid-row: 2; }

@media (max-width: 640px) {
  .believe-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gal-img:nth-child(1),
  .gal-img:nth-child(2),
  .gal-img:nth-child(3),
  .gal-img:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }
}


.metrics {
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metrics-grid div {
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(28px, 4vw, 52px) clamp(18px, 3vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.metrics-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metrics strong {
  display: block;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  line-height: 0.92;
}

.metrics span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  font-weight: 720;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-head {
  max-width: 880px;
  margin-bottom: 42px;
}

.section-head p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.clients {
  background: var(--mist);
}

.clients .section-head {
  max-width: 980px;
}

.clients h2 {
  text-transform: none;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.client-logo {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 180ms ease, transform 180ms ease;
}

.client-logo:nth-child(6n) {
  border-right: 0;
}

.client-logo img {
  width: min(150px, 84%);
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.78;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo:hover,
.client-logo:focus-visible {
  background: #f9fafb;
}

.client-logo:hover img,
.client-logo:focus-visible img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}

.services {
  background: #e8edf8;
}

.services h2 {
  text-transform: none;
}


.work {
  background: var(--ink);
}

.work h2,
.work h3 {
  color: var(--paper);
}

.work .section-head h2 {
  font-size: clamp(0.95rem, 1.55vw, 1.28rem);
  font-weight: 400;
  text-transform: none;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 32px;
}

.work .section-kicker {
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  font-weight: 820;
  text-transform: none;
  letter-spacing: normal;
  color: var(--paper);
  margin-bottom: 6px;
}

.work .section-head p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.insights .section-kicker {
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  font-weight: 820;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════
   SERVICES PAGE — service-grid & tiles
═══════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line, #e8eaee);
  border: 2px solid var(--line, #e8eaee);
  border-radius: 10px;
  overflow: hidden;
}

.service-tile {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 44px);
  background: #fff;
  transition: background 0.25s;
  gap: 0;
}

/* Smooth text color transition on all children */
.service-tile span,
.service-tile h3,
.service-tile p,
.service-tile li,
.service-tile a {
  transition: color 0.25s;
}

.service-tile:hover {
  background: var(--ink, #192742);
}

/* number */
.service-tile:hover .service-num,
.service-tile:hover > span:first-child {
  color: rgba(255, 255, 255, 0.5);
}

/* heading */
.service-tile:hover .service-name,
.service-tile:hover h3 {
  color: #fff;
}

/* description paragraph */
.service-tile:hover .service-desc,
.service-tile:hover > p {
  color: rgba(255, 255, 255, 0.72);
}

/* sub-links list items */
.service-tile:hover .service-links li,
.service-tile:hover .pillar-links li {
  color: rgba(255, 255, 255, 0.85);
}

/* sub-links anchors */
.service-tile:hover .service-links a,
.service-tile:hover .pillar-links a {
  color: rgba(255, 255, 255, 0.85);
}

.service-tile:hover .service-links a:hover,
.service-tile:hover .pillar-links a:hover {
  color: #fff;
}

.service-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(25, 39, 66, 0.4);
  margin-bottom: 16px;
  font-family: inherit;
}

.service-name {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 760;
  line-height: 1.15;
  color: var(--ink, #192742);
  margin: 0 0 16px;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0 0 20px;
  flex-grow: 1;
}

.service-links {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-links li {
  font-size: 0.875rem;
  line-height: 1.5;
}

.service-links a {
  color: var(--ink, #192742);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.service-links a:hover {
  color: var(--accent, #c8a96e);
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}


.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.work-item {
  position: relative;
  min-height: 280px;
  padding: 28px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.work-item.large {
  position: relative;
  min-height: 580px;
  grid-row: span 2;
  color: var(--paper);
}

/* Image link wrapper fills the entire card */
.work-item__img-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  /* Override global .work-item a { margin-top: 12px } that causes white gap */
  margin: 0 !important;
  border-bottom: none !important;
}

/* Direct background image — no wrapper, fills perfectly */
.work-item__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover zoom on the bg image */
.work-item:hover .work-item__bg-img {
  transform: scale(1.04);
}

.work-item__img-link img,
.work-item__img-link .work-collage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 39, 66, 0.92), rgba(25, 39, 66, 0.12));
  pointer-events: none;
}

.work-item div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-item div h3 {
  margin-bottom: 0;
}

.work-item div span {
  margin-bottom: 6px;
}

/* Override: large card links must be WHITE (not var(--ink)) */
.work-item.large a,
.work-item.large .work-item__cta {
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,0.5);
}

.work-item.large .work-item__cta:hover {
  border-bottom-color: #fff;
}

.work-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-item:not(.large) span {
  color: var(--muted);
}

/* When small card has a bg image, flip text to white and add overlay */
.work-item:not(.large):has(.work-item__img-link) span {
  color: rgba(200,169,110,0.9);
}
.work-item:not(.large):has(.work-item__img-link) h3,
.work-item:not(.large):has(.work-item__img-link) a {
  color: #fff;
}
.work-item:not(.large):has(.work-item__img-link)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,45,0.88) 0%, rgba(10,22,45,0.28) 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.work-item:not(.large) h3,
.work-item:not(.large) a {
  color: var(--ink);
}

.work-item.dark {
  color: var(--paper);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.work-item.dark h3,
.work-item.dark a {
  color: var(--paper);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tab {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.tab.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  border-color: var(--ink);
  box-shadow: 0 4px 24px rgba(25, 39, 66, 0.08);
}

.article-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.article-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-topic {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-excerpt {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
  flex: 1;
}

.article-card__readmore {
  display: inline-block;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.15s, opacity 0.15s;
  opacity: 0.7;
}
.article-card__readmore:hover { opacity: 1; }

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-meta time {
  color: var(--muted);
  font-size: 0.82rem;
}

.article-service-link {
  font-size: 0.82rem;
  font-weight: 760;
  color: var(--ink);
  white-space: nowrap;
}

.article-service-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-card.is-hidden {
  display: none;
}

/* ── Article Card Thumbnail ── */
.article-card__thumb {
  display: block;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  margin: -26px -26px 16px; /* counteract card padding */
}

.article-card__thumb-placeholder {
  height: 160px;
  width: 100%;
}

.article-card__thumb--event {
  background: linear-gradient(135deg, #1a3a5c 0%, #c8a96e 100%);
}

.article-card__thumb--marketing {
  background: linear-gradient(135deg, #192742 0%, #4a6fa5 100%);
}

.article-card__thumb--digital {
  background: linear-gradient(135deg, #1e3d2f 0%, #52a888 100%);
}

.article-card__thumb--mice {
  background: linear-gradient(135deg, #3d1e2f 0%, #a85268 100%);
}

.article-card__thumb--interior {
  background: linear-gradient(135deg, #2f2e1e 0%, #a89852 100%);
}

.article-card__thumb--tools {
  background: linear-gradient(135deg, #1e2a3d 0%, #7a8fb5 100%);
}

.article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__coming-soon {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(25,39,66,0.08);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
}

.btn-outline-dark {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}


.contact {
  color: var(--paper);
  background: var(--ink);
}

.contact h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.22;
  text-transform: none;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 7vw, 86px);
}

.contact p,
.contact address {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.contact a {
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.lead-form label:nth-child(5),
.lead-form .button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .button {
  width: max-content;
  min-width: 180px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  color: var(--paper);
  background: #111b2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px 48px;
  align-items: start;
}

.footer-grid img {
  width: 160px;
  height: auto;
  display: block;
  padding-top: 4px;
}

/* --- Brand column --- */
.footer-info strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* --- Contact block (inside footer-info) --- */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.footer-contact span,
.footer-contact a {
  display: inline;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.footer-contact a {
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-addr {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-addr a {
  display: inline;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-addr a:hover {
  color: #fff;
}

/* --- Nav column --- */
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .manifesto-grid {
    grid-template-columns: minmax(430px, 0.78fr) minmax(0, 1.22fr);
    gap: 34px;
  }

  .manifesto-label,
  .manifesto-believe .manifesto-label {
    width: min(46vw, 640px);
  }

  .manifesto-copy h2 {
    font-size: clamp(2rem, 3.1vw, 3rem);
  }

  .believe-copy h2 {
    font-size: clamp(1.75rem, 2.65vw, 2.8rem);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .manifesto {
    min-height: auto;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--paper);
  }

  .mobile-nav {
    position: fixed;
    z-index: 19;
    inset: 75px 16px auto;
    display: none;
    padding: 16px;
    color: var(--paper);
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .hero-grid,
  .manifesto-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 140px;
  }

  .manifesto-label {
    position: relative;
    top: auto;
    width: min(92vw, 680px);
    min-width: 0;
    height: 112px;
    margin-top: 24px;
  }

  .manifesto-believe .manifesto-label {
    width: min(92vw, 680px);
    min-width: 0;
  }

  .manifesto-grid {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .manifesto-we-are .manifesto-copy {
    margin-top: 0;
  }

  .manifesto-grid > div:first-child {
    display: none;
  }

  .service-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .client-logo:nth-child(6n) {
    border-right: 1px solid var(--line);
  }

  .client-logo:nth-child(4n) {
    border-right: 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item.large {
    min-height: 430px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 120px;
  }

  .site-header {
    padding-inline: 14px;
  }

  h1 {
    font-size: 4rem;
  }

  .hero-title-main {
    font-size: clamp(4.4rem, 19vw, 6rem);
  }

  .hero-title-sub {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  h2 {
    font-size: 2.28rem;
  }

  .hero-grid {
    padding-bottom: 56px;
  }

  .metrics-grid,
  .service-grid,
  .client-logo-grid,
  .article-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo:nth-child(4n),
  .client-logo:nth-child(6n) {
    border-right: 1px solid var(--line);
  }

  .client-logo:nth-child(2n) {
    border-right: 0;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto-label {
    width: calc(100% - 28px);
    height: 82px;
    margin-top: 18px;
  }

  .manifesto-label span {
    font-size: clamp(1.95rem, 9vw, 2.4rem);
  }

  .manifesto-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(1.75rem, 7.4vw, 2.05rem);
    line-height: 1.16;
    gap: 8px;
  }

  .manifesto-copy p {
    font-size: 0.98rem;
  }

  .manifesto-we-are .manifesto-grid {
    padding-bottom: 34px;
  }

  .manifesto-believe .manifesto-label {
    margin-top: 18px;
  }

  .manifesto-copy h2 span {
    white-space: normal;
  }

  .believe-image-wrap img {
    height: 340px;
  }

  .metrics-grid div,
  .metrics-grid div:last-child,
  .client-logo {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .metrics-grid div {
    min-height: 180px;
  }

  .client-logo {
    border-bottom-color: var(--line);
    min-height: 112px;
  }

  .client-logo img {
    max-height: 54px;
  }

  .service-tile {
    min-height: 360px;
  }

  .work-item {
    min-height: 240px;
  }
}

/* =========================================================
   WORK PAGE — portfolio grid
   ========================================================= */

.portfolio-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--mist, #f3f5f8);
}

.section-title {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #5a6375);
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper, #fff);
  box-shadow: 0 2px 16px rgba(25, 39, 66, 0.07);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.portfolio-card:hover {
  box-shadow: 0 8px 40px rgba(25, 39, 66, 0.16);
  transform: translateY(-4px);
}

.card-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-figure {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-figure picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .card-figure picture img {
  transform: scale(1.05);
}

.card-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px 22px;
}

.card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent, #c2893f);
}

.card-title {
  display: block;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 760;
  color: var(--ink, #192742);
  line-height: 1.3;
}

.card-meta {
  font-size: 0.84rem;
  color: var(--muted, #5a6375);
}

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

/* =========================================================
   CTA SECTION (Work page)
   ========================================================= */

.cta-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--ink, #192742);
  color: var(--paper, #fff);
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-inner h2 {
  color: var(--paper, #fff);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 760;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease, box-shadow 180ms ease;
}

.btn-primary {
  color: var(--ink, #192742);
  background: #fff;
  border: none;
}

.btn-primary:hover {
  background: #e8edf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.18);
}

/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 160ms ease;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 820;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 600px;
}

/* =========================================================
   INSIGHTS PAGE — article cards
   ========================================================= */

.insights-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--mist, #f3f5f8);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  border-radius: 10px;
  background: var(--paper, #fff);
  box-shadow: 0 2px 12px rgba(25, 39, 66, 0.06);
  overflow: hidden;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.insight-card--coming-soon {
  opacity: 0.82;
}

.insight-card--coming-soon:hover {
  opacity: 1;
  box-shadow: 0 8px 32px rgba(25, 39, 66, 0.12);
  transform: translateY(-3px);
}

.insight-card__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  height: 100%;
}

.insight-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: max-content;
}

.insight-badge--event {
  background: #eef1ff;
  color: #3b4fb5;
}

.insight-badge--marketing {
  background: #fff4e6;
  color: #b56a1e;
}

.insight-badge--mice {
  background: #edfaf4;
  color: #1a7a50;
}

.insight-badge--interior {
  background: #f5eeff;
  color: #6b35b5;
}

.insight-card__title {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 760;
  line-height: 1.35;
  color: var(--ink, #192742);
  margin: 0;
}

.insight-card__excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted, #5a6375);
  flex: 1;
  margin: 0;
}

.coming-soon-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: max-content;
  background: rgba(25, 39, 66, 0.07);
  color: var(--muted, #5a6375);
  border: 1px solid rgba(25, 39, 66, 0.12);
  margin-top: auto;
}

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

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

/* =========================================================
   NEWSLETTER SECTION
   ========================================================= */

.newsletter-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--ink, #192742);
  color: var(--paper, #fff);
}

.newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 620px;
}

.newsletter-inner h2 {
  color: var(--paper, #fff);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0;
}

.newsletter-inner p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 1rem;
}

.newsletter-form {
  width: 100%;
}

.newsletter-form__group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form__group input[type="email"] {
  flex: 1;
  min-width: 240px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper, #fff);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.newsletter-form__group input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form__group input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-hint {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 580px) {
  .newsletter-form__group {
    flex-direction: column;
  }

  .newsletter-form__group input[type="email"],
  .newsletter-form__group .btn {
    width: 100%;
    min-width: 0;
  }
}

