/* ==========================================================================
   Kanwood: standalone OOH & Retail Branding site
   Palette and type direction pulled from the Kanwood brand identity:
   warm coral-orange / navy / ink on a sand-and-cream ground,
   Bricolage Grotesque for display, IBM Plex Sans for body/UI.
   Baloo 2 is reserved for the logo wordmark only (see .logo-word).
   ========================================================================== */

:root {
  --cream: #FAF7F2;      /* Sand 50 - background */
  --cream-2: #F0E9DD;    /* Sand 100 - surface */
  --sand-300: #DCD0BC;   /* Sand 300 - border */
  --paper: #ffffff;
  --navy: #1b3c6f;       /* Secondary */
  --navy-deep: #132b50;
  --orange: #EE6C4D;     /* Primary (Kanwood coral-orange) */
  --orange-deep: #C6543A;
  --ink: #241F1A;        /* Text */
  --ink-dim: #6B6255;
  --ink-faint: #8C8172;  /* Warm grey - secondary text */
  --line: var(--sand-300);
  --line-strong: #C9BBA0;

  --font-display: "Bricolage Grotesque", "Avenir Next", "Century Gothic", "Futura", "Segoe UI", sans-serif;
  --font-logo: "Baloo 2", "Fredoka", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; font-family: var(--font-display); color: var(--navy); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.overflow-x { overflow-x: auto; }

/* ---------- Type system ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); display: inline-block; }

.section-title {
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.section-lede { max-width: 62ch; color: var(--ink-dim); font-size: 1.04rem; line-height: 1.7; }

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 6vw, 60px) 0; }
.section--paper { background: var(--paper); }
.section--tint {
  background-color: var(--cream-2);
  background-image: radial-gradient(rgba(27, 60, 111, 0.09) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
}
.section--navy { background: var(--navy); }
.divider { border-top: 1px solid var(--line); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.btn-outline { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-outline:hover { background: var(--navy); border-color: var(--navy); }
.btn-outline-light { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-outline-light:hover { background: var(--navy); border-color: var(--navy); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header ---------- */

.site-header { position: sticky; top: 0; z-index: 40; background: var(--cream); border-bottom: 1px solid var(--line); }
.header-top {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
}
.header-top .container { display: flex; justify-content: flex-end; gap: 20px; padding-top: 8px; padding-bottom: 8px; }
.header-top a:hover { color: #fff; }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo .logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--navy); letter-spacing: -0.01em; }
.logo .logo-word { font-family: var(--font-logo); font-weight: 700; font-size: 30px; line-height: 1; color: var(--orange); margin-left: 2px; }
.logo .logo-word--light { color: var(--cream); }
.logo .logo-sub { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-left: 10px; padding-left: 10px; border-left: 1px solid var(--line); white-space: nowrap; }
.footer-about .logo-sub { color: rgba(255,255,255,0.6); border-left-color: rgba(255,255,255,0.25); }
.logo-img { height: 30px; width: auto; display: block; }
@media (max-width: 480px) {
  .logo .logo-sub { font-size: 0.52rem; letter-spacing: 0.02em; margin-left: 6px; padding-left: 6px; }
  .logo-img { height: 26px; } .logo .logo-word { font-size: 26px; }
}
@media (max-width: 360px) {
  .logo-img { height: 22px; } .logo .logo-word { font-size: 22px; }
  .logo .logo-sub { font-size: 0.42rem; letter-spacing: 0; margin-left: 5px; padding-left: 5px; }
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { padding: 10px 14px; font-size: 0.88rem; font-weight: 600; color: var(--navy); border-radius: 2px; }
.main-nav a:hover { color: var(--orange); }
.main-nav a.is-active { color: var(--orange); }
.main-nav .btn { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); color: var(--navy); width: 42px; height: 42px; border-radius: 3px; cursor: pointer; flex-shrink: 0; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; }

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 0 0 0 0; top: 108px; background: var(--cream); flex-direction: column; align-items: stretch; padding: 14px; gap: 4px; display: none; border-top: 1px solid var(--line); overflow-y: auto; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px 16px; font-size: 1.05rem; }
  .main-nav .btn { margin: 10px 4px 0; justify-content: center; }
  .nav-toggle { display: block; }
  .header-top .container { justify-content: center; }
}

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; min-height: 560px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg svg { width: 100%; height: 100%; display: block; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,38,66,0.97) 0%, rgba(8,38,66,0.92) 34%, rgba(8,38,66,0.72) 64%, rgba(8,38,66,0.4) 100%);
}
/* Illustrated heroes are already tuned in navy/orange/cream, so they only need a light scrim to keep text legible. */
.hero--graphic .hero-bg::after {
  background: linear-gradient(0deg, rgba(8,38,66,0.55) 0%, rgba(8,38,66,0.28) 45%, rgba(8,38,66,0.1) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 56px; }
.hero-eyebrow { color: #ffcda3; }
.hero-eyebrow::before { background: #ffcda3; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.08; max-width: 18ch; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #ffcda3; }
.hero-sub { color: rgba(255,255,255,0.86); font-size: 1.08rem; max-width: 54ch; line-height: 1.65; margin-bottom: 30px; }

/* ---------- Cards / grid ---------- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.svc-card { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: 30px 26px; transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.svc-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(27,60,111,0.35); }
.svc-card .icon { display: inline-block; width: 44px; height: 44px; color: var(--orange); margin-bottom: 18px; }
.svc-card .icon svg { width: 100%; height: 100%; }
.svc-card h3 { font-size: 1.08rem; font-weight: 700; margin: 0 0 8px; }
.svc-card p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; }
.svc-card .card-link { display: inline-block; margin-top: 14px; font-size: 0.84rem; font-weight: 700; color: var(--orange); }

.figure { border: 1px solid var(--line); background: var(--paper); border-radius: 4px; overflow: hidden; }
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.figure figcaption { padding: 14px 16px; font-size: 0.86rem; font-weight: 700; color: var(--navy); border-top: 1px solid var(--line); }

/* ---------- Work carousel ---------- */

.work-carousel { position: relative; margin-top: 32px; }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 24px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
}
.carousel-slide img { width: 100%; height: 190px; object-fit: cover; display: block; }
.carousel-slide figcaption { padding: 10px 14px; font-size: 0.82rem; font-weight: 700; color: var(--navy); border-top: 1px solid var(--line); }
.carousel-slide.work-card { display: block; transition: border-color 160ms ease, transform 160ms ease; }
.carousel-slide.work-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.work-card-body { padding: 14px 16px; border-top: 1px solid var(--line); }
.work-card-body .wp-client { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.work-card-body h3 { font-size: 0.98rem; color: var(--navy); margin: 0; line-height: 1.35; }
.carousel-arrow {
  position: absolute;
  top: 95px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.25);
}
.carousel-arrow:hover { color: var(--orange); border-color: var(--orange); }
.carousel-arrow--prev { left: 8px; }
.carousel-arrow--next { right: 8px; }
@media (max-width: 700px) {
  .carousel-slide { width: 240px; }
  .carousel-slide img { height: 150px; }
  .carousel-arrow { display: none; }
}

/* ---------- Process (3-column, Avail-style) ---------- */

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
@media (max-width: 780px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { background: var(--paper); padding: 34px 30px; border-left: 1px solid var(--line); }
.process-step:first-child { border-left: none; }
@media (max-width: 780px) { .process-step { border-left: none; border-top: 1px solid var(--line); } .process-step:first-child { border-top: none; } }
.process-icon { display: block; width: 56px; height: 56px; margin-bottom: 16px; }
.process-icon svg { width: 100%; height: 100%; }
.process-step .step-num { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--orange); letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
.process-step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.process-step p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; }

/* ---------- Client wall ---------- */

.client-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.client-wall .client { background: var(--paper); padding: 24px 14px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.86rem; color: var(--navy); text-align: center; min-height: 76px; }
@media (max-width: 900px) { .client-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .client-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  padding: 48px 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -55%;
  right: -6%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.16;
}
.cta-band .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h3 { color: #fff; font-size: 1.35rem; margin: 0 0 6px; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 0.94rem; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap { background: var(--paper); padding: 40px; }
.contact-info-wrap {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.6px, transparent 1.6px);
  background-size: 26px 26px;
  padding: 40px;
  color: #fff;
}
.contact-info-wrap h3 { color: #fff; font-size: 1.15rem; margin-bottom: 18px; }
.contact-info-wrap .row { display: flex; gap: 12px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.16); }
.contact-info-wrap .row:first-of-type { border-top: none; }
.contact-info-wrap .k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); width: 9ch; flex-shrink: 0; padding-top: 2px; }
.contact-info-wrap .v { font-weight: 700; font-size: 0.95rem; }
.contact-info-wrap a:hover { color: #ffcda3; }
.contact-info-wrap .cross { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.86rem; color: rgba(255,255,255,0.75); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.05em; }
.field input, .field textarea, .field select { width: 100%; background: var(--cream); border: 1px solid var(--line-strong); color: var(--ink); padding: 12px 14px; font-family: var(--font-body); font-size: 0.94rem; border-radius: 3px; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); padding: 52px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 14px; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { font-size: 0.9rem; color: rgba(255,255,255,0.82); }
.footer-grid a:hover { color: #ffcda3; }
.footer-about .logo-name { color: #fff; }
.footer-about .logo-img { height: 26px; }
.footer-about .logo-word { font-size: 26px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; max-width: 32ch; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.55); }

.note-box { border: 1px dashed var(--line-strong); background: var(--cream-2); padding: 16px 18px; font-size: 0.86rem; color: var(--ink-dim); line-height: 1.6; border-radius: 3px; }
.note-box strong { color: var(--navy); }

/* ---------- Work / project case studies ---------- */

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }
@media (max-width: 700px) { .category-grid { grid-template-columns: 1fr; } }
.category-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 160ms ease, transform 160ms ease;
}
.category-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.category-card .cat-icon { display: inline-block; width: 40px; height: 40px; color: var(--orange); margin-bottom: 16px; }
.category-card h3 { font-size: 1.2rem; margin: 0 0 8px; color: var(--navy); }
.category-card p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; margin: 0 0 14px; }
.category-card .cat-count { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint); }
.category-card .cat-link { font-size: 0.86rem; font-weight: 700; color: var(--orange); }

.project-block { border: 1px solid var(--line); background: var(--paper); border-radius: 4px; padding: 32px; margin-bottom: 28px; }
.project-block-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.project-block-head h3 { font-size: 1.3rem; color: var(--navy); margin: 0; }
.project-client { font-size: 0.86rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.03em; }
.project-desc { color: var(--ink-dim); font-size: 0.95rem; line-height: 1.65; max-width: 72ch; margin: 10px 0 18px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.project-meta span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink-faint); background: var(--cream-2); border: 1px solid var(--line); border-radius: 3px; padding: 5px 10px; }
.project-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.project-photos img { width: 100%; height: 150px; object-fit: cover; border-radius: 3px; border: 1px solid var(--line); display: block; }
@media (max-width: 560px) { .project-photos { grid-template-columns: repeat(2, 1fr); } .project-photos img { height: 120px; } }

/* ---------- Logo wall (real client marks + text fallback) ---------- */

.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.logo-wall .logo-item { background: var(--paper); padding: 20px 22px; display: flex; align-items: center; justify-content: center; min-height: 88px; }
.logo-wall .logo-item img {
  max-height: 34px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 160ms ease, opacity 160ms ease;
}
.logo-wall .logo-item:hover img { filter: grayscale(0); opacity: 1; }
.logo-wall .logo-item.text-only { font-weight: 700; font-size: 0.84rem; color: var(--navy-deep); opacity: 0.75; text-align: center; }
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Service detail pages ---------- */

.breadcrumb { font-size: 0.82rem; font-weight: 600; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--orange); }

.service-head { display: flex; align-items: flex-start; gap: 26px; margin-bottom: 6px; }
.service-head .icon {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  border-radius: 26px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 20px;
  box-sizing: border-box;
  color: var(--orange);
  display: inline-block;
}
.service-head .icon svg { width: 100%; height: 100%; overflow: visible; }
@media (max-width: 560px) {
  .service-head { flex-direction: column; }
  .service-head .icon { width: 96px; height: 96px; padding: 16px; }
}

.service-hero-figure { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--paper); }
.service-hero-figure img { width: 100%; height: auto; display: block; max-height: 460px; object-fit: cover; }

.included-list { display: flex; flex-direction: column; }
.included-list li { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.included-list li:first-child { border-top: none; }
.included-list .mark { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; margin-top: 2px; }
.included-list h4 { font-size: 1rem; font-weight: 700; margin: 0 0 4px; color: var(--navy); }
.included-list p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.6; }

.service-nav-strip { display: flex; gap: 10px; flex-wrap: wrap; padding: 18px 0; }
.service-nav-strip a { font-size: 0.84rem; font-weight: 600; color: var(--navy); padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 3px; }
.service-nav-strip a:hover { border-color: var(--orange); color: var(--orange); }
.service-nav-strip a.is-current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ==========================================================================
   Motion system: page load, scroll reveals, hover micro-interactions.
   Everything here is neutralised globally under prefers-reduced-motion
   (see the transition/animation-duration override near the top of this file).
   ========================================================================== */

/* Page load */
body { opacity: 0; animation: bodyIn 460ms ease forwards; animation-delay: 40ms; }
@keyframes bodyIn { to { opacity: 1; } }

/* Hero entrance: staggered, plays once on load (hero is always above the fold) */
.hero .eyebrow,
.hero h1,
.hero-sub,
.hero .btn-row {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 780ms cubic-bezier(0.16, 0.8, 0.24, 1) forwards;
}
.hero .eyebrow { animation-delay: 120ms; }
.hero h1 { animation-delay: 220ms; }
.hero-sub { animation-delay: 380ms; }
.hero .btn-row { animation-delay: 520ms; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Slow Ken Burns drift on hero photography */
.hero-bg img, .hero-bg svg { animation: kenburns 22s ease-in-out infinite alternate; transform-origin: center; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }

/* Scroll reveals: class + --reveal-delay are applied by main.js */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.16, 0.8, 0.24, 1), transform 700ms cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Card / icon micro-interactions */
.svc-card .icon svg { transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.svc-card:hover .icon svg { transform: scale(1.14) rotate(-4deg); }
.svc-card .card-link { transition: transform 220ms ease; }
.svc-card:hover .card-link { transform: translateX(5px); }

.figure img { transition: transform 420ms cubic-bezier(0.16, 0.8, 0.24, 1); }
.figure:hover img { transform: scale(1.04); }

.logo-wall .logo-item img { transition: filter 200ms ease, opacity 200ms ease, transform 200ms ease; }
.logo-wall .logo-item:hover img { transform: scale(1.07); }

.btn:active { transform: translateY(0) scale(0.96); }

/* Nav underline sweep */
.main-nav a:not(.btn) { position: relative; }
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(0.16, 0.8, 0.24, 1);
}
.main-nav a:not(.btn):hover::after,
.main-nav a.is-active:not(.btn)::after { transform: scaleX(1); }

/* Mobile menu entrance */
.main-nav.is-open { animation: navIn 260ms cubic-bezier(0.16, 0.8, 0.24, 1); }
@keyframes navIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

.nav-toggle span, .nav-toggle::before, .nav-toggle::after { transition: transform 220ms ease, opacity 220ms ease; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

/* Breadcrumb + service icon */
.breadcrumb a { transition: color 160ms ease; }
.service-head .icon svg { animation: iconPop 560ms cubic-bezier(0.34, 1.56, 0.64, 1) both; animation-delay: 120ms; }
@keyframes iconPop { from { opacity: 0; transform: scale(0.6) rotate(-8deg); } to { opacity: 1; transform: none; } }
