/* =========================================================
   What We Do — Gold-on-Black, polished & responsive
   (Includes upgraded ICON styles without diagonal sheen)
   ========================================================= */

:root {
  --bg: #000;
  --text: #fff;
  --muted: #cfd2d8;
  --gold: #FFD700;
  --gold-2: #ffec8b;
  --border: #1a1a1a;
  --ring: 0 0 0 3px color-mix(in oklab, var(--gold) 40%, transparent);
  --wrap: 1200px;
}

/* ---------- Page hero ---------- */
.wwd-hero {
  position: relative;
  background: #000;
  color: var(--text);
  padding: clamp(2.2rem, 5vw, 3rem) 1rem 1.2rem;
  padding-top: 150px;
}

.wwd-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wwd-hero .hero-bg::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(40% 35% at 20% 30%, color-mix(in oklab, var(--gold) 18%, transparent) 0, transparent 60%),
    radial-gradient(45% 40% at 80% 70%, color-mix(in oklab, var(--gold-2) 16%, transparent) 0, transparent 70%);
  filter: blur(60px);
  opacity: .22;
}

.wwd-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs ol {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 .8rem;
  padding: 0;
  color: #c9ccd2;
}

.breadcrumbs a {
  color: #c9ccd2;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
}

.breadcrumbs a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.breadcrumbs li+li::before {
  content: "/";
  opacity: .5;
  margin: 0 .25rem;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: .35rem .6rem;
  border-radius: .6rem;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 28px -16px color-mix(in oklab, var(--gold) 60%, transparent);
}

/* Head */
.wwd-head h1 {
  margin: .6rem 0 .45rem;
  font-size: clamp(1.9rem, 1.6vw + 1.3rem, 2.5rem);
  letter-spacing: -.01em;
}

.wwd-head .lead {
  color: var(--muted);
  max-width: 72ch;
}

.wwd-head .sublead {
  color: #d9dde4;
  max-width: 72ch;
  margin-top: .35rem;
}

/* Value chips */
.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .6rem;
  margin: .9rem 0 0;
  padding: 0;
  list-style: none;
}

.value-chips li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .6rem;
  border: 1px solid var(--border);
  border-radius: .7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  color: #e9edf5;
  font-weight: 700;
  font-size: .85rem;
}

.value-chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, .6);
}

/* Hero CTAs */
.hero-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1rem 0 0;
}

.btn {
  --btn-bg: #0e0e0e;
  --btn-fg: #fff;
  --btn-bd: #232323;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  border-radius: .9rem;
  border: 1px solid var(--btn-bd);
  color: var(--btn-fg);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  border-color: transparent;
  box-shadow: 0 12px 36px -12px color-mix(in oklab, var(--gold) 60%, transparent);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-ghost {
  background: var(--btn-bg);
}

.btn-ghost,
.btn-ghost:visited,
.btn-link,
.btn-link:visited {
  color: #fff;
}

.btn-ghost:hover {
  border-color: color-mix(in oklab, var(--gold) 40%, var(--btn-bd));
  box-shadow: var(--ring);
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: .4rem;
}

/* ---------- Proof row ---------- */
.wwd-proof {
  background: #000;
  color: var(--text);
  padding: .6rem 1rem 1.4rem;
}

.wwd-proof-img {
  width: 100%;
  height: auto;
}

.proof-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 1.4vw, 1rem);
}

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

.proof-card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem .95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.proof-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--gold) 40%, var(--border));
  box-shadow: 0 16px 44px -10px color-mix(in oklab, var(--gold) 22%, transparent);
}

.pc-top {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #dfe3ea;
}

/* Service card icons */
.card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111; /* dark icon fill */
  box-shadow: 0 10px 24px -12px color-mix(in oklab, var(--gold) 55%, transparent);
}

/* Ensure Lucide icons inherit size + color */
.card .icon i {
  width: 26px;
  height: 26px;
  display: block;
  color: inherit;
  stroke-width: 2.2; /* bolder lines */
}

/* Optional hover polish on card */
.card:hover .icon {
  transform: scale(1.05);
  box-shadow: 0 12px 32px -10px color-mix(in oklab, var(--gold) 70%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-top svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.proof-card strong {
  display: block;
  font-size: 1.05rem;
  margin: .4rem 0 0;
}

.proof-card p {
  color: #cfd2d8;
  margin: .2rem 0 0;
}

/* ---------- Services ---------- */
.wwd-services {
  background: #000;
  color: var(--text);
  padding: 1rem 1rem 2.6rem;
}

.wwd-services h2 {
  font-size: clamp(1.4rem, 1.2vw + 1rem, 1.8rem);
  margin-bottom: .9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.card {
  min-width: 0;
}

.svc {
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: .6rem;
  padding: clamp(1rem, 1.4vw, 1.25rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.svc:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--gold) 40%, var(--border));
  box-shadow: 0 16px 44px -10px color-mix(in oklab, var(--gold) 26%, transparent);
}

/* ===== ICON ENHANCEMENTS — glossy gold tile (no diagonal bar) ===== */
.icon {
  --i: 46px;
  --g1: color-mix(in oklab, var(--gold) 82%, #fff 18%);
  --g2: color-mix(in oklab, var(--gold-2) 72%, #fff 28%);
  --rim: color-mix(in oklab, var(--gold) 24%, var(--border));
  --halo: rgba(255, 216, 77, .42);

  width: var(--i);
  height: var(--i);
  display: grid;
  place-items: center;
  border-radius: .9rem;
  position: relative;
  overflow: clip;
  contain: paint;
  color: #0b0b0b;

  background:
    radial-gradient(120% 110% at 18% 14%, rgba(255, 255, 255, .75) 0 28%, transparent 40%),
    linear-gradient(145deg, var(--g1), var(--g2));
  border: 1px solid var(--rim);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .45), 0 8px 24px -12px rgba(255, 216, 77, .30);
}

.icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 42deg, var(--halo) 90deg 130deg, transparent 210deg 360deg);
  filter: blur(6px) saturate(120%);
  opacity: .85;
  -webkit-mask: radial-gradient(closest-side, transparent 64%, #000 66%);
  mask: radial-gradient(closest-side, transparent 64%, #000 66%);
  animation: iconOrbit 10s linear infinite;
  pointer-events: none;
}

/* Optional subtle glint (opt-in) */
.icon.icon--glint::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(60% 40% at 24% 18%, rgba(255, 255, 255, .55) 0 14%, rgba(255, 255, 255, .15) 16%, transparent 38%);
  opacity: .85;
  animation: glintPulse 3.2s ease-in-out infinite;
}

.icon svg {
  width: 62%;
  height: 62%;
  position: relative;
  z-index: 1;
  stroke: currentColor;
  fill: none;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .22)) drop-shadow(0 0 5px rgba(0, 0, 0, .25));
}

.svc:hover .icon {
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .5), 0 10px 28px -12px rgba(255, 216, 77, .40);
}

.svc:hover .icon::before {
  animation-duration: 7s;
  opacity: .95;
}

.icon:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 50%, transparent), 0 10px 28px -12px rgba(255, 216, 77, .45);
}

.icon--sm {
  --i: 36px;
}

.icon--lg {
  --i: 56px;
}

.icon--xl {
  --i: 64px;
}

.icon--circle {
  border-radius: 999px;
}

.icon--square {
  border-radius: .6rem;
}

@keyframes iconOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glintPulse {

  0%,
  100% {
    opacity: .8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion:reduce) {

  .icon::before,
  .icon.icon--glint::after {
    animation: none !important;
  }
}

/* Text & lists */
.svc h3 {
  font-size: 1.05rem;
  letter-spacing: .1px;
  margin: 0;
}

.desc {
  color: #dfe3ea;
}

.bullets {
  list-style: none;
  margin: .15rem 0 0;
  padding: 0;
  color: #c9ccd2;
  display: grid;
  gap: .25rem;
}

.bullets li::marker {
  content: "";
}

/* “More” link */
.more {
  align-self: end;
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  position: relative;
}

.more::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: .2rem;
  transition: transform .18s ease;
}

.more:hover {
  color: var(--gold);
}

.more:hover::after {
  transform: translateX(2px) rotate(-45deg);
}

/* CTA row */
.page-cta {
  margin-top: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.wwd-faq {
  background: #000;
  color: var(--text);
  padding: 0 1rem 2.6rem;
}

.wwd-faq h2 {
  font-size: clamp(1.3rem, 1.2vw + 1rem, 1.7rem);
  margin-bottom: .8rem;
}

.faq-list {
  display: grid;
  gap: .6rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: .9rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: .85rem 1rem;
  position: relative;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  padding-right: 1.6rem;
  display: block;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform .18s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #cfd2d8;
}

/* ---------- Closing band ---------- */
.wwd-band {
  position: relative;
  background: #050505;
  color: var(--text);
  border-block: 1px solid var(--border);
  padding: 1.4rem 1rem 1.6rem;
}

.band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.band-copy h2 {
  margin: 0 0 .2rem;
  font-size: clamp(1.4rem, 1.2vw + 1rem, 1.9rem);
}

.band-copy p {
  margin: 0;
  color: #cfd2d8;
}

.band-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

@media (max-width:820px) {
  .band-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Motion respect */
@media (prefers-reduced-motion:reduce) {

  .btn,
  .proof-card,
  .more::after,
  .svc {
    transition: none !important;
  }
}