/* ============================================================
   Uren — /products/flavours/ hub
   Layered on top of colors_and_type.css
   ============================================================ */

:root {
  /* Brief-specific aliases (mapped to existing Uren tokens, with a few new soft tones) */
  --uren-orange-pale: #FDEEDE;
  --uren-green-pale:  #EAF5E0;
  --uren-teal-pale:   #E0EEF3;
  --uren-charcoal:    #2E2B29;
  --uren-divider:     #E3E5EA;
  --uren-bg-alt:      #F7F8FA;

  --container-pad: 28px;
  --section-py: 96px;
  --card-radius: 6px;
  --card-shadow: 0 1px 2px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.06);
  --card-shadow-hover: 0 12px 28px rgba(42,42,42,.10), 0 2px 4px rgba(42,42,42,.06);
}

html { scroll-behavior: smooth; }
body { background: #fff; color: var(--uren-charcoal); }

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

.row { padding: var(--section-py) 0; }
.bg-paper-soft { background: var(--uren-bg-alt); }

/* ----------------------------------------------------------------
   Eyebrows / row heads
---------------------------------------------------------------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0 0 14px;
}
.eyebrow--on-dark { color: rgba(255,255,255,.7); }

.row-head { max-width: 880px; margin: 0 0 56px; }
.row-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.row-head h2 {
  font-size: 38px; line-height: 1.12; letter-spacing: -.018em;
  font-weight: 700; margin: 0 0 16px; color: var(--uren-charcoal);
}
.row-head__sub {
  font-size: 17px; line-height: 1.55; color: var(--ink-soft);
  margin: 0; max-width: 64ch;
}
.row-head--center .row-head__sub { margin-left: auto; margin-right: auto; }

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--card-radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s var(--ease-out),
              border-color .2s var(--ease-out), transform .2s var(--ease-out),
              box-shadow .2s var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: var(--uren-orange); color: #fff; }
.btn--primary:hover { background: var(--uren-orange-hover); color: #fff; text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: var(--uren-charcoal);
  border-color: rgba(42,42,42,.22);
}
.btn--ghost:hover { background: var(--uren-charcoal); color: #fff; text-decoration: none; }
.btn--ghost-on-dark {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.btn--ghost-on-dark:hover {
  background: #fff; color: var(--uren-charcoal); text-decoration: none;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ----------------------------------------------------------------
   Site header / breadcrumb
---------------------------------------------------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--uren-divider);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.brand img { height: 32px; width: auto; display: block; }
.primary-nav { flex: 1; }
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 26px; align-items: center;
}
.primary-nav a {
  color: var(--uren-charcoal);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--uren-orange); }
.primary-nav a[aria-current="page"] {
  color: var(--uren-orange); border-bottom-color: var(--uren-orange);
}
.breadcrumb { background: var(--uren-bg-alt); border-bottom: 1px solid var(--uren-divider); }
.breadcrumb ol {
  list-style: none; margin: 0; padding: 10px 0;
  display: flex; gap: 8px; font-size: 12px; color: var(--ink-muted);
}
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--uren-orange); }
.breadcrumb [aria-current="page"] { color: var(--uren-charcoal); font-weight: 500; }

/* ============================================================
   01 · HERO
============================================================ */
.hero { position: relative; padding: 0; min-height: 640px; overflow: hidden; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__photo { position: absolute; inset: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(28,24,22,.88) 0%, rgba(28,24,22,.72) 38%, rgba(244,125,43,.28) 100%),
    linear-gradient(180deg, rgba(28,24,22,.4) 0%, rgba(28,24,22,.55) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.45fr 1fr; gap: 64px;
  align-items: end;
  padding: 110px 28px 96px;
  min-height: 640px;
}
.hero__copy { max-width: 640px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -.022em;
  margin: 0 0 22px;
  color: #fff;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--uren-orange);
  background: linear-gradient(180deg, transparent 62%, rgba(244,125,43,.25) 62%, rgba(244,125,43,.25) 92%, transparent 92%);
}
.hero__sub {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.86);
  margin: 0 0 32px; max-width: 56ch;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  align-self: end;
  width: 100%;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 22px 20px;
  color: #fff;
  display: flex; flex-direction: column; gap: 8px;
}
.stat-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--uren-yellow);
  letter-spacing: -.02em;
}
.stat-card__num sup { font-size: .55em; vertical-align: super; color: rgba(255,203,40,.85); margin-left: 2px; }
.stat-card__num .u { font-size: .5em; font-weight: 600; color: rgba(255,255,255,.85); margin-left: 2px; letter-spacing: 0; }
.stat-card__label {
  font-size: 12px; line-height: 1.45;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* ============================================================
   02 · TRUST STRIP
============================================================ */
.trust-strip { padding: 36px 0; border-bottom: 1px solid var(--uren-divider); }
.trust-strip__inner {
  display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  align-items: center;
}
.trust-strip__eyebrow { margin: 0; line-height: 1.5; max-width: 14ch; }
.trust-strip__badges {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  justify-content: flex-end;
}
.badge {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 8px;
}
.badge__logo {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  background: var(--uren-bg-alt); color: var(--uren-charcoal);
  border: 1px solid var(--uren-divider);
}
.badge__mark {
  display: inline-flex;
  font-family: var(--font-display); font-weight: 700;
  background: var(--uren-charcoal); color: #fff;
  padding: 7px 12px; border-radius: 4px;
  font-size: 12px; letter-spacing: .06em;
}
.badge__label {
  font-size: 11px; line-height: 1.35; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 500;
}

/* ============================================================
   03 · WHAT WE OFFER
============================================================ */
.offer__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.offer__h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 1.12; letter-spacing: -.02em;
  margin: 0 0 24px; color: var(--uren-charcoal);
}
.offer__h2 em { font-style: normal; color: var(--uren-orange); }
.offer__sub { font-size: 19px; color: var(--uren-charcoal); margin: 0 auto 18px; max-width: 60ch; }
.offer__body { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin: 0 auto 30px; max-width: 64ch; }
.pill-row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.pill {
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--uren-divider);
  background: #fff;
  color: var(--uren-charcoal);
}

/* ============================================================
   Card grids — shared
============================================================ */
.card-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 20px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--uren-divider);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transition: transform .25s var(--ease-out),
              box-shadow .25s var(--ease-out),
              border-color .25s var(--ease-out);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--uren-orange);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 17px; line-height: 1.3; font-weight: 600;
  letter-spacing: -.005em;
  margin: 0 0 6px;
  color: var(--uren-charcoal);
}
.card p {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.card__cta {
  font-size: 13px; font-weight: 600; color: var(--uren-orange);
  text-decoration: none;
}
.card__cta:hover { color: var(--uren-orange-hover); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------------------------------------------
   04 · Application cards
---------------------------------------------------------------- */
.card--app {
  padding: 28px 22px 22px;
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: 200px;
}
.card--app .card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--uren-orange-pale);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card--app .card__icon svg {
  width: 28px; height: 28px;
  fill: none; stroke: var(--uren-orange);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ----------------------------------------------------------------
   05 · Family cards (image-led, green accent)
---------------------------------------------------------------- */
.card--family {
  display: flex; flex-direction: column;
  border-left: 3px solid var(--uren-green);
}
.card--family .card__photo {
  aspect-ratio: 16 / 10;
  background: var(--uren-green-pale);
  position: relative;
  overflow: hidden;
}
.card--family .card__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.card--family .card__body { padding: 18px 20px 22px; }
.card--family .card__examples {
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
  margin: 0 0 14px; min-height: 38px;
}
.card--missing .card__photo { background: var(--uren-bg-alt); }

/* ----------------------------------------------------------------
   06 · Inspiration cards (teal accent)
---------------------------------------------------------------- */
.card--insp {
  padding: 26px 22px 22px;
  border-left: 3px solid var(--uren-teal);
}
.card--insp .card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--uren-teal-pale);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.card--insp .card__icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--uren-teal);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.card--insp h3 { font-size: 16px; }
.card--insp p { margin: 0; font-size: 12.5px; }

/* ----------------------------------------------------------------
   07 · Format cards
---------------------------------------------------------------- */
.fmt-grid { gap: 16px; }
.card--fmt {
  padding: 28px 20px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.card--fmt .card__round {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--uren-orange-pale);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card--fmt .card__round svg {
  width: 32px; height: 32px;
  fill: none; stroke: var(--uren-orange);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.card--fmt h3 { font-size: 16px; }
.card--fmt p { margin: 0; font-size: 13px; text-align: center; }

/* ============================================================
   08 · SENSALT / SENSUGAR
============================================================ */
.sens {
  background: linear-gradient(135deg, #fff8eb 0%, #fdeede 100%);
}
.sens__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center;
}
.sens__h2 {
  font-family: var(--font-display);
  font-size: 40px; line-height: 1.12; letter-spacing: -.02em;
  font-weight: 700; margin: 0 0 20px; color: var(--uren-charcoal);
}
.hl-teal { color: var(--uren-teal); }
.hl-green { color: var(--uren-green); }
.sens p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 28px; max-width: 56ch; }

.sens__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 28px;
}
.reduce-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 22px;
  border: 1px solid var(--uren-divider);
}
.reduce-card header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.reduce-card__badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.02em;
  line-height: 1;
}
.reduce-card__tag {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  padding: 4px 8px; border-radius: 3px;
  color: #fff;
}
.reduce-card--teal { border-top: 3px solid var(--uren-teal); }
.reduce-card--teal .reduce-card__badge { color: var(--uren-teal); }
.reduce-card--teal .reduce-card__tag { background: var(--uren-teal); }
.reduce-card--green { border-top: 3px solid var(--uren-green); }
.reduce-card--green .reduce-card__badge { color: var(--uren-green); }
.reduce-card--green .reduce-card__tag { background: var(--uren-green); }
.reduce-card h3 { font-size: 18px; margin: 0 0 6px; }
.reduce-card p { font-size: 13px; margin: 0; color: var(--ink-soft); }

.sens__chart {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  padding: 36px 36px 32px;
  border: 1px solid var(--uren-divider);
  box-shadow: var(--card-shadow);
}
.sens__chart-title { margin-bottom: 28px; }
.sens__chart-title .eyebrow { margin-bottom: 4px; }
.sens__chart-title strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; color: var(--uren-charcoal);
}
.bar-chart {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px;
  height: 280px;
  align-items: end;
  padding: 0 12px;
  position: relative;
}
.bar { display: flex; flex-direction: column; align-items: center; gap: 10px; height: 100%; justify-content: flex-end; }
.bar__fill {
  display: block;
  width: 72%;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  position: relative;
}
.bar--before .bar__fill {
  background: linear-gradient(180deg, var(--ink-faint), var(--ink-muted));
}
.bar--after .bar__fill {
  background: linear-gradient(180deg, color-mix(in oklab, var(--uren-teal) 70%, #fff), var(--uren-teal));
}
.bar__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; color: var(--uren-charcoal);
  letter-spacing: -.01em;
  position: absolute;
  top: -34px;
}
.bar { position: relative; }
.bar__num small { font-weight: 500; font-size: .55em; color: var(--ink-muted); margin-left: 2px; }
.bar__lbl {
  font-size: 12px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}
.bar__delta {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--uren-yellow);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; color: var(--uren-charcoal);
  letter-spacing: -.02em;
  box-shadow: 0 4px 12px rgba(255,202,38,.4);
  transform: rotate(-8deg);
}
.sens__caption { margin: 24px 0 0; font-size: 12px; color: var(--ink-muted); line-height: 1.5; }

/* ============================================================
   09 · WHY UREN
============================================================ */
.card--why {
  padding: 32px 28px;
  border-left: 3px solid var(--uren-orange);
}
.card--why .card__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 44px;
  color: var(--uren-orange);
  line-height: 1; letter-spacing: -.04em;
  display: block; margin-bottom: 16px;
}
.card--why h3 { font-size: 20px; margin-bottom: 10px; }
.card--why p { font-size: 14px; line-height: 1.6; margin: 0; color: var(--ink-soft); }

/* ============================================================
   10 · INNOVATION
============================================================ */
.innov { background: var(--uren-charcoal); color: #fff; }
.innov__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.innov h2 {
  color: #fff;
  font-size: 42px; line-height: 1.12; letter-spacing: -.02em;
  font-weight: 700; margin: 0 0 22px;
}
.innov p {
  color: rgba(255,255,255,.78);
  font-size: 16px; line-height: 1.65;
  margin: 0 0 24px; max-width: 52ch;
}
.innov__list {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.innov__list li {
  font-size: 15px; color: rgba(255,255,255,.92);
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.innov__list li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.innov__bullet { color: var(--uren-orange); font-weight: 700; flex-shrink: 0; }

.innov__photo { position: relative; margin: 0; }
.innov__photo .placeholder--photo {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #1a1816;
}
.innov__corner {
  position: absolute;
  top: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--uren-green);
  opacity: .85;
  z-index: -1;
  border-radius: 4px;
}
.innov__photo { isolation: isolate; }
.innov__photo::before {
  content: ""; position: absolute;
  inset: -16px -16px auto auto;
  width: 120px; height: 120px;
  background: var(--uren-green);
  border-radius: 4px;
  z-index: 0;
}
.innov__photo .placeholder--photo { position: relative; z-index: 1; }

/* ============================================================
   11 · CASE STUDIES
============================================================ */
.card--case { display: flex; flex-direction: column; }
.card--case .card__photo {
  aspect-ratio: 16 / 10;
  background: var(--uren-bg-alt);
}
.card--case .card__body { padding: 22px 24px 26px; }
.card--case h3 { font-size: 20px; line-height: 1.25; margin: 12px 0 12px; }
.card--case p { font-size: 14px; line-height: 1.55; }
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: .08em;
}
.tag--magenta { background: color-mix(in oklab, var(--uren-magenta) 12%, #fff); color: var(--uren-magenta); }
.tag--orange { background: var(--uren-orange-pale); color: var(--uren-orange-hover); }
.tag--teal { background: var(--uren-teal-pale); color: var(--uren-teal-hover); }

/* ============================================================
   12 · FAQ
============================================================ */
.faq__list { max-width: 880px; margin: 0 auto; }
.faq__list details {
  border-top: 1px solid var(--uren-divider);
  padding: 4px 0;
}
.faq__list details:last-of-type { border-bottom: 1px solid var(--uren-divider); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; line-height: 1.4;
  color: var(--uren-charcoal);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__plus {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform .25s var(--ease-out);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--uren-orange);
  border-radius: 2px;
}
.faq__plus::before {
  top: 50%; left: 0; right: 0; height: 2px; margin-top: -1px;
}
.faq__plus::after {
  left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px;
  transition: transform .25s var(--ease-out);
}
details[open] .faq__plus { transform: rotate(45deg); }
.faq__body { padding: 0 4px 24px; }
.faq__body p {
  font-size: 15px; line-height: 1.65; color: var(--ink-soft);
  margin: 0; max-width: 70ch;
}

/* ============================================================
   13 · LATEST NEWS
============================================================ */
.card--news { display: flex; flex-direction: column; }
.card--news .card__photo { aspect-ratio: 16 / 9; background: var(--uren-bg-alt); }
.card--news .card__body { padding: 18px 22px 22px; }
.card--news .card__meta {
  font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  display: block; margin-bottom: 8px;
}
.card--news h3 { font-size: 17px; line-height: 1.35; margin: 0 0 10px; }
.card--news p { font-size: 13.5px; line-height: 1.55; }

/* ============================================================
   14 · ENQUIRY
============================================================ */
.enquiry { background: var(--uren-bg-alt); }
.enquiry__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: start;
}
.enquiry h2 {
  font-size: 40px; line-height: 1.12; letter-spacing: -.02em;
  font-weight: 700; margin: 0 0 18px; color: var(--uren-charcoal);
}
.enquiry__copy > p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 32px; max-width: 52ch; }
.enquiry__contacts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.enquiry__contacts li {
  display: grid; grid-template-columns: 100px 1fr; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--uren-divider);
  font-size: 15px; color: var(--uren-charcoal);
}
.enquiry__contacts li:last-child { border-bottom: 1px solid var(--uren-divider); }
.enquiry__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; color: var(--ink-muted);
}
.enquiry__contacts a { color: var(--uren-charcoal); text-decoration: none; }
.enquiry__contacts a:hover { color: var(--uren-orange); }
.enquiry__contacts small { color: var(--ink-faint); font-size: .75em; margin-left: 4px; }

.enquiry__form {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--uren-divider);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 12px; font-weight: 600; color: var(--uren-charcoal);
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--uren-divider);
  border-radius: var(--card-radius);
  background: #fff;
  color: var(--uren-charcoal);
  transition: border-color .15s var(--ease-out), box-shadow .15s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--uren-orange);
  box-shadow: 0 0 0 3px var(--uren-orange-pale);
}
.enquiry__form .btn { align-self: flex-start; margin-top: 6px; }
.enquiry__success {
  margin: 12px 0 0; font-size: 14px; color: var(--uren-green);
  font-weight: 600;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--uren-charcoal); color: rgba(255,255,255,.7); }
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding: 72px 28px 56px;
}
.site-footer__logo { height: 28px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.site-footer__col p { font-size: 14px; line-height: 1.6; max-width: 38ch; color: rgba(255,255,255,.65); }
.site-footer__col h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: #fff;
  margin: 0 0 16px;
}
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 12px;
}
.site-footer__legal .container {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   Placeholders (striped SVG + mono labels)
============================================================ */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(42,42,42,.04) 0 14px,
      rgba(42,42,42,.08) 14px 28px
    ),
    var(--uren-bg-alt);
  display: grid; place-items: center;
  overflow: hidden;
}
.placeholder::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: lowercase;
  color: rgba(42,42,42,.55);
  background: rgba(255,255,255,.92);
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid var(--uren-divider);
  z-index: 2;
  text-align: center;
  max-width: 80%;
}
.placeholder--photo { width: 100%; height: 100%; }
.placeholder--dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.05) 0 14px,
      rgba(255,255,255,.09) 14px 28px
    ),
    #1a1816;
}
.placeholder--dark::after {
  background: rgba(0,0,0,.7);
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.15);
}
.placeholder--needs {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(228,23,92,.06) 0 14px,
      rgba(228,23,92,.12) 14px 28px
    ),
    var(--uren-bg-alt);
}
.placeholder--needs::after {
  color: var(--uren-magenta);
  border-color: color-mix(in oklab, var(--uren-magenta) 30%, #fff);
}
.placeholder--logo {
  background: var(--uren-bg-alt);
  background-image: none;
}
.placeholder--logo::after { display: none; }

/* Hero photo placeholder special — warm tones */
.hero__photo.placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(244,125,43,.18) 0 24px,
      rgba(244,125,43,.28) 24px 48px
    ),
    linear-gradient(135deg, #3a2418 0%, #1f1612 100%);
}
.hero__photo.placeholder::after {
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.15);
  font-size: 11px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .card-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .primary-nav ul { gap: 18px; }
  .primary-nav a { font-size: 13px; }
}
@media (max-width: 980px) {
  :root { --section-py: 72px; }
  .hero__title { font-size: 42px; }
  .row-head h2, .offer__h2, .sens__h2, .innov h2, .enquiry h2 { font-size: 32px; }
  .sens__inner, .innov__inner, .enquiry__inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-strip__inner { grid-template-columns: 1fr; gap: 20px; }
  .trust-strip__badges { justify-content: flex-start; }
  .primary-nav { display: none; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 800px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .sens__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --section-py: 56px; --container-pad: 20px; }
  .card-grid--3, .card-grid--4, .card-grid--5 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
  .row-head h2, .offer__h2, .sens__h2, .innov h2, .enquiry h2 { font-size: 26px; }
  .sens__cards { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .bar-chart { height: 220px; gap: 20px; }
  .bar__delta { width: 70px; height: 70px; font-size: 18px; top: 40px; right: 0; }
}
