/* =========================================================================
   Wedū Media — Reviews & Portfolio microsite
   Brand: dark grey + signature orange #f15f22
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --orange: #f15f22;
  --orange-600: #d94e17;
  --orange-300: #ff855a;
  --orange-soft: rgba(241, 95, 34, 0.14);
  --orange-glow: rgba(241, 95, 34, 0.35);

  /* Greys (dark theme) */
  --ink-900: #131315;   /* page background */
  --ink-850: #17171a;
  --ink-800: #1c1c20;   /* raised surfaces */
  --ink-750: #212127;
  --ink-700: #26262c;   /* cards */
  --ink-600: #34343c;   /* borders / hairlines */
  --ink-500: #4a4a54;
  --grey-400: #9a9aa4;  /* muted text */
  --grey-300: #b8b8c2;
  --grey-200: #d5d5dd;
  --white: #f6f6f8;

  /* Typography — Apple-style: real SF Pro on Apple devices, Inter elsewhere */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", system-ui, Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.42);
  --shadow-orange: 0 14px 34px rgba(241, 95, 34, 0.32);
  --ring: 0 0 0 1px var(--ink-600);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--grey-200);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }

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

:focus-visible {
  outline: 2px solid var(--orange-300);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad { padding-block: clamp(3.75rem, 9vw, 7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
/* orange dash removed per request — eyebrow is now a clean kicker label */

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}
.section-head p {
  color: var(--grey-300);
  font-size: 1.06rem;
  margin-top: 0.75rem;
}

.text-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(241, 95, 34, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--ink-600);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-300);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(19, 19, 21, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--ink-600);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand img { width: 40px; height: auto; }
.brand span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--grey-300);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  padding: 0;
  color: var(--white);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 78% 8%, rgba(241, 95, 34, 0.22), transparent 60%),
    radial-gradient(50% 50% at 12% 85%, rgba(241, 95, 34, 0.10), transparent 60%),
    var(--ink-900);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--ink-600) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-600) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 72%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
/* orange marker highlight behind "Wedū Media" */
.hero h1 .hl-mark {
  background: var(--orange);
  color: #fff;
  padding: 0.02em 0.16em 0.08em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--grey-300);
  max-width: 34ch;
  margin-bottom: 1.9rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.1rem; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-rating .stars { color: var(--orange); font-size: 1.15rem; letter-spacing: 2px; }
.hero-rating .rating-text { font-size: 0.92rem; color: var(--grey-300); }
.hero-rating .rating-text strong { color: var(--white); font-family: var(--font-display); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(241, 95, 34, 0.3);
  color: var(--orange-300);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}
.badge-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--orange-glow); }
  50% { box-shadow: 0 0 0 6px rgba(241, 95, 34, 0); }
}

/* Hero visual card */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--ink-600);
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40% 30% auto -20%;
  height: 60%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  filter: blur(30px);
}
.hero-visual .hv-top {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.hv-logo { width: 54px; opacity: 0.95; }
.hv-score {
  text-align: right;
  font-family: var(--font-display);
}
.hv-score b { display: block; font-size: 2.4rem; color: var(--white); line-height: 1; }
.hv-score small { color: var(--grey-400); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.hv-quote {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.4;
}
.hv-quote::before {
  content: "\201C";
  display: block;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 0.4;
  margin-bottom: 0.5rem;
}
.hv-meta { position: relative; z-index: 1; }
.hv-meta .stars { color: var(--orange); letter-spacing: 2px; }
.hv-meta .who { font-size: 0.85rem; color: var(--grey-400); margin-top: 0.25rem; }

/* Trust logos strip */
.trust-strip {
  border-top: 1px solid var(--ink-600);
  border-bottom: 1px solid var(--ink-600);
  background: var(--ink-850);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 1.5rem;
}
.trust-inner .label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 600;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--grey-300);
  font-size: 0.98rem;
  transition: color 0.2s var(--ease);
}
.trust-item:hover { color: var(--white); }
.trust-item .stars-sm { color: var(--orange); font-size: 0.8rem; }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--ink-600);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat b .u { color: var(--orange); }
.stat span { font-size: 0.86rem; color: var(--grey-400); margin-top: 0.5rem; display: block; }

/* ---------- Rich text / prose ---------- */
.prose { max-width: 760px; }
.prose p { color: var(--grey-300); font-size: 1.06rem; }
.prose h3 { margin-top: 2rem; font-size: 1.35rem; }
.prose strong { color: var(--white); }

/* ---------- Reviews ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  padding: 1.6rem 1.9rem;
  margin-bottom: 2.25rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--ink-600);
}
.rs-score { text-align: center; flex-shrink: 0; }
.rs-score b {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.rs-score .stars5 { display: block; margin: 0.4rem auto 0.25rem; }
.rs-score .stars { display: block; color: var(--orange); letter-spacing: 3px; margin-top: 0.35rem; }
.rs-score small { display: block; color: var(--grey-400); font-size: 0.78rem; margin-top: 0.3rem; }
.rs-divider { width: 1px; align-self: stretch; background: var(--ink-600); }
.rs-text { min-width: 220px; flex: 1; }
.rs-text p { margin: 0; color: var(--grey-300); font-size: 0.98rem; }
.rs-text strong { color: var(--white); }
.rs-listed {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem;
}
.rs-listed span {
  font-size: 0.78rem;
  color: var(--grey-300);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--ink-750);
  border: 1px solid var(--ink-600);
  font-family: var(--font-display);
  font-weight: 500;
}

/* Leave-a-review panel */
.leave-review {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem 1.9rem;
  border-radius: var(--radius);
  background: var(--orange-soft);
  border: 1px solid rgba(241, 95, 34, 0.28);
}
.leave-review .lr-copy b { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.1rem; }
.leave-review .lr-copy span { color: var(--grey-300); font-size: 0.92rem; }
.leave-review .lr-btns { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.reviews-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.filter-chip {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--ink-600);
  color: var(--grey-300);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.filter-chip:hover { border-color: var(--ink-500); color: var(--white); }
.filter-chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.35rem;
  align-items: start;
}
.review-card {
  background: var(--ink-700);
  border: 1px solid var(--ink-600);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-500);
  box-shadow: var(--shadow-md);
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-300);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--ink-850);
  border: 1px solid var(--ink-600);
}
.review-source .src-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.review-stars { color: var(--orange); letter-spacing: 2px; font-size: 0.98rem; }

.review-quote {
  font-size: 1.02rem;
  color: var(--grey-200);
  margin: 0;
  line-height: 1.6;
}
.review-quote .lead-quote {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  font-size: 1.12rem;
  display: block;
  margin-bottom: 0.6rem;
}
.review-foot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--ink-600);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--orange), var(--orange-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-who b { display: block; color: var(--white); font-size: 0.94rem; font-family: var(--font-display); }
.review-who span { font-size: 0.82rem; color: var(--grey-400); }
.review-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange-300);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
}

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.35rem;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink-700), var(--ink-850));
}
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-thumb .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--grey-400);
  text-align: center;
  padding: 1rem;
}
/* Logo-on-light thumbnail variant for client work cards */
.work-thumb.is-logo {
  background: radial-gradient(120% 120% at 50% 0%, #ffffff, #eef0f3);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 2.5rem);
}
.work-thumb.is-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s var(--ease);
}
.work-card:hover .work-thumb.is-logo img { transform: scale(1.05); }
.work-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.work-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  font-family: var(--font-display);
}
.work-body h3 { font-size: 1.18rem; margin: 0; }
.work-body p { font-size: 0.9rem; color: var(--grey-400); margin: 0; }
.work-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--grey-300);
  font-family: var(--font-display);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.work-card:hover .work-link { color: var(--orange-300); gap: 0.65rem; }

/* ---------- Awards ---------- */
.awards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}
.award-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(241, 95, 34, 0.14), transparent 55%),
    var(--ink-800);
  border: 1px solid var(--ink-600);
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  overflow: hidden;
}
.award-card { transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
a.award-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.award-link { color: var(--orange); font-weight: 600; white-space: nowrap; }
.award-icon {
  flex-shrink: 0;
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--orange-soft);
  border: 1px solid rgba(241, 95, 34, 0.3);
  color: var(--orange);
}
.award-icon svg { width: 30px; height: 30px; }
.award-body h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.award-body .yr {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.award-body p { font-size: 0.92rem; color: var(--grey-400); margin: 0.5rem 0 0; }

/* ---------- Nominate CTA ---------- */
.nominate {
  position: relative;
  overflow: hidden;
}
.nominate-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(241, 95, 34, 0.3);
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(241, 95, 34, 0.20), transparent 60%),
    linear-gradient(180deg, var(--ink-800), var(--ink-850));
  padding: clamp(2rem, 5vw, 3.5rem);
}
.nominate-head { max-width: 640px; margin-bottom: 2.25rem; }
.nominate-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.nominate-head p { color: var(--grey-300); font-size: 1.08rem; }

.nominate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.nom-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--ink-600);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.nom-btn:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  background: var(--orange-soft);
}
.nom-btn .nom-ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--ink-750);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
}
.nom-btn .nom-ic svg { width: 20px; height: 20px; }
.nom-txt { min-width: 0; }
.nom-txt b {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.25;
}
.nom-txt span { font-size: 0.8rem; color: var(--grey-400); }
.nom-btn .arrow { margin-left: auto; color: var(--grey-400); transition: transform 0.2s var(--ease), color 0.2s var(--ease); }
.nom-btn:hover .arrow { color: var(--orange); transform: translateX(3px); }
.nom-note {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--grey-400);
}

/* ---------- Services quick grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey-200);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.service-item:hover { border-color: var(--orange); color: var(--white); }
.service-item .tick { color: var(--orange); flex-shrink: 0; }

/* ---------- CTA / final ---------- */
.final-cta {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(241, 95, 34, 0.2), transparent 65%),
    var(--ink-850);
  border: 1px solid var(--ink-600);
}
.final-cta h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.final-cta p { max-width: 540px; margin-inline: auto; color: var(--grey-300); }
.final-cta .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--ink-600);
  background: var(--ink-850);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--grey-300); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-brand p { color: var(--grey-400); font-size: 0.92rem; max-width: 30ch; margin-top: 0.9rem; }
.footer-brand .brand { margin-bottom: 0.5rem; }

.socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  color: var(--grey-300);
  transition: all 0.2s var(--ease);
}
.social-btn:hover { color: #fff; background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ink-600);
  color: var(--grey-400);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--grey-300); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.65s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
/* media frames get a slightly stronger, more cinematic entrance */
.about-media.reveal, .work-card.reveal, .hero-visual.reveal { transform: translateY(40px) scale(0.965); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-top: 1rem; }
  .hero-lead { max-width: 46ch; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .awards-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .mobile-menu.open { display: flex; }
}

@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem var(--gutter) 1.5rem;
  background: rgba(19, 19, 21, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-600);
}
.mobile-menu a {
  padding: 0.85rem 0.5rem;
  color: var(--grey-200);
  font-family: var(--font-display);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-700);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 0.75rem; }

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

/* =========================================================================
   Icon system, SVG star ratings & imagery (v2 — no emoji, Apple-style)
   ========================================================================= */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.ic {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  flex-shrink: 0;
}

/* SVG star ratings */
.stars5 {
  color: var(--orange);
  display: inline-block;
  width: 5.4em;
  height: 1.06em;
  vertical-align: middle;
}
.stars5.lg { width: 6.6em; height: 1.3em; }
.star-inline { color: var(--orange); width: 1em; height: 1em; vertical-align: -0.14em; }

/* Canada tag for nomination buttons */
.ca-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-300);
  background: var(--orange-soft);
  border: 1px solid rgba(241, 95, 34, 0.3);
  padding: 0.12em 0.5em;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.ca-tag .ic { width: 0.85em; height: 0.85em; }

/* ---------- Imagery ---------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-600);
  box-shadow: var(--shadow-md);
}
.media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(19,19,21,0.35));
  pointer-events: none;
}
.media-frame .frame-badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(19,19,21,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ink-600);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
}
.media-frame .frame-badge .ic { color: var(--orange); width: 1.05em; height: 1.05em; }

/* About: two-column with image */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-grid .prose { max-width: none; }
.about-media { position: relative; aspect-ratio: 5 / 5.6; }
.about-media .glow {
  position: absolute; inset: auto 0 -8% auto;
  width: 52%; height: 55%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  filter: blur(38px);
  z-index: -1;
}

/* Full-bleed image band */
.band {
  position: relative;
  min-height: clamp(320px, 46vw, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--ink-600);
}
.band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19,19,21,0.94) 0%, rgba(19,19,21,0.78) 45%, rgba(19,19,21,0.45) 100%),
    radial-gradient(60% 80% at 90% 20%, var(--orange-soft), transparent 70%);
}
.band-inner { position: relative; z-index: 2; max-width: 620px; }
.band-inner h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.band-inner p { color: var(--grey-200); font-size: 1.08rem; }

/* Photo background behind final CTA */
.final-cta { position: relative; overflow: hidden; }
.final-cta .cta-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
}
.final-cta > *:not(.cta-photo) { position: relative; z-index: 1; }

/* Hero photo accent */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 16 / 11; max-width: 560px; }
}

/* =========================================================================
   Monotone platform logos (Clutch, Google, GoodFirms, Sortlist, DesignRush…)
   Any source logo is rendered as a uniform light-grey silhouette on the dark
   theme via CSS filter, so the whole "reviewed on" set looks like one system.
   ========================================================================= */
.plogo {
  height: 22px;
  width: auto;
  max-width: 128px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  filter: brightness(0) invert(0.74);
  opacity: 0.8;
  transition: filter 0.22s var(--ease), opacity 0.22s var(--ease);
}
/* brighten to white on hover of the surrounding link */
a:hover .plogo { filter: brightness(0) invert(1); opacity: 1; }

/* Trust strip */
.trust-item .plogo { height: 21px; }
.trust-item { gap: 0.55rem; }

/* Inside buttons: crisp white monotone */
.btn .plogo { filter: brightness(0) invert(1); opacity: 0.96; height: 17px; }
.btn:hover .plogo { opacity: 1; }

/* Review-card source badge */
.review-source .plogo { height: 14px; filter: brightness(0) invert(0.86); opacity: 0.92; }

/* Review-summary "listed on" tags */
.rs-listed span { display: inline-flex; align-items: center; gap: 0.4rem; }
.rs-listed .plogo { height: 14px; }

/* Footer "find us on" list */
.footer-col a .plogo { height: 15px; }

/* Leave-a-review panel: keep logos + labels aligned */
.leave-review .btn { gap: 0.5rem; }

/* Logo-only buttons */
.btn-logo { padding: 0.72rem 1.5rem; min-height: 44px; }
.btn-logo .plogo { height: 19px; margin: 0; }
