/* ============================================================
   SOLINTEL — Redesign: Architectural Elegance
   Palette: Deep navy / warm charcoal / gold accent / cream
   Typography: Syne (display) + Inter Tight (body)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #132040;
  --navy-soft:  #1e3060;
  --gold:       #c9a84c;
  --gold-light: #e2c882;
  --cream:      #f5f0e8;
  --cream-mid:  #ede7da;
  --ink:        #1c2333;
  --muted:      #6b7280;
  --line:       rgba(201,168,76,0.18);
  --line-light: rgba(201,168,76,0.10);
  --white:      #ffffff;
  --shadow-sm:  0 4px 20px rgba(10,22,40,0.08);
  --shadow:     0 16px 48px rgba(10,22,40,0.14);
  --shadow-lg:  0 32px 80px rgba(10,22,40,0.20);
  --radius:     2px;
  --radius-md:  6px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0 0 0 1.2em; }
li { margin-bottom: 0.4em; color: var(--muted); font-size: 0.95rem; }

/* ── LAYOUT ── */
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 120px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; line-height: 1.0; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 6.5vw, 6.4rem); font-weight: 700; color: var(--navy); }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); font-weight: 700; color: var(--navy); }
h3 { font-size: 1.35rem; font-weight: 700; color: var(--navy); }
h4 { font-size: 1rem; font-weight: 400; color: var(--navy-soft); letter-spacing: -0.01em; }

.eyebrow {
  margin: 0 0 20px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow.light { color: var(--gold-light); }

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.nav-links a { transition: color .2s ease; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.12em; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--gold) !important;
  letter-spacing: 0.12em;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.8); margin: 6px 0; transition: .2s; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(201,168,76,0.06), transparent 50%),
    linear-gradient(160deg, #0a1628 0%, #132040 60%, #0d1f3c 100%);
}
.hero-architecture {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-architecture::before {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  border-left: 1px solid rgba(201,168,76,0.10);
}
.hero-watermark { display: none; }
.hero-gradient-line { display: none; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0 60px;
}
.hero-copy h1 { color: var(--cream); font-weight: 700; max-width: 820px; line-height: 0.95; letter-spacing: -0.05em; }
.hero-lead {
  max-width: 580px;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.62);
  margin: 32px 0 40px;
  line-height: 1.78;
  font-weight: 300;
}
.hero-proof-line {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.hero-proof-line span {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(201,168,76,0.65); padding: 5px 12px;
  border: 1px solid rgba(201,168,76,0.22);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 28px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: all 0.25s ease; border-radius: 0;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  animation: heroVisualIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.hero-image-card { position: relative; border-radius: 0; overflow: hidden; }
.hero-image-card > img {
  width: 100%; height: 520px; object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: filter 0.4s;
}
.hero-image-card:hover > img { filter: brightness(0.82) saturate(0.95); }
.hero-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 100%);
}
.hero-card-overlay img {
  height: 30px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 10px;
}
.hero-card-overlay p { font-size: 0.82rem; color: rgba(245,240,232,0.65); margin: 0; line-height: 1.5; }
.hero-image-card::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 56px; height: 56px;
  border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); z-index: 2;
}
.hero-image-card::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 56px; height: 56px;
  border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); z-index: 2;
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Floating capability tags ── */
/* All tags anchor from top-left corner of the image, stacked downward.
   Animation is triggered by JS adding .tags-visible to .hero-visual */
@keyframes tagSlideIn {
  0%   { opacity: 0; transform: translateX(-18px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%       { box-shadow: 0 0 0 5px rgba(201,168,76,0.10); }
}

.floating-capability {
  position: absolute;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600;
  color: var(--gold); background: rgba(10,22,40,0.92);
  border: 1px solid rgba(201,168,76,0.32); padding: 8px 16px;
  backdrop-filter: blur(12px);
  opacity: 0;
  cursor: default;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.floating-capability:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Stack from top-left of image, each offset 52px down, slight left protrusion */
.capability-one   { top: 0px;   left: -8px; }
.capability-two   { top: 52px;  left: -24px; }
.capability-three { top: 104px; left: -8px; }
.capability-four  { top: 156px; left: -24px; }

/* Animations fire when .tags-visible is added to .hero-visual by JS */
.hero-visual.tags-visible .capability-one {
  animation: tagSlideIn 0.6s cubic-bezier(0.22,1,0.36,1) 0s both,
             tagPulse 3.5s ease-in-out 1.5s infinite;
}
.hero-visual.tags-visible .capability-two {
  animation: tagSlideIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.15s both,
             tagPulse 3.5s ease-in-out 1.8s infinite;
}
.hero-visual.tags-visible .capability-three {
  animation: tagSlideIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.3s both,
             tagPulse 3.5s ease-in-out 2.1s infinite;
}
.hero-visual.tags-visible .capability-four {
  animation: tagSlideIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.45s both,
             tagPulse 3.5s ease-in-out 2.4s infinite;
}

/* ── CREDIBILITY STRIP ── */
.credibility-strip {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  border-top: 1px solid rgba(201,168,76,0.18);
  margin-top: 60px; padding: 0;
}
.credibility-strip > div {
  flex: 1; padding: 28px 20px;
  border-right: 1px solid rgba(201,168,76,0.10);
  text-align: center;
}
.credibility-strip > div:last-child { border-right: 0; }
.credibility-strip strong {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--gold); margin-bottom: 4px;
}
.credibility-strip span {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(245,240,232,0.4); font-weight: 500;
}

/* ── CONSORTIA SECTION ── */
.home-consortia { background: var(--cream); }
.home-consortia .section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.consortia-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--cream-mid); margin-top: 56px;
}
.consortia-cards .card {
  background: var(--white); border: none;
  border-right: 1px solid var(--cream-mid);
  border-radius: 0; padding: 40px 36px; min-height: 280px;
  box-shadow: none; position: relative; overflow: hidden; transition: background 0.3s;
}
.consortia-cards .card:last-child { border-right: 0; }
.consortia-cards .card:hover { background: var(--navy); }
.consortia-cards .card:hover h3 { color: var(--cream); }
.consortia-cards .card:hover p { color: rgba(245,240,232,0.6); }
.consortia-cards .card:hover .card-number { color: var(--gold); }
.consortia-cards .card::after { display: none; }
.consortia-cards .card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.consortia-cards .card:hover::before { transform: scaleX(1); }
.card-number {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5); margin-bottom: 20px; transition: color 0.3s;
}
.consortia-cards .card h3 { font-size: 1.35rem; margin-bottom: 14px; transition: color 0.3s; }
.consortia-cards .card p { color: var(--muted); font-size: 0.95rem; margin: 0; transition: color 0.3s; }

/* ── SECTION HEADINGS ── */
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; margin: 16px 0 0; line-height: 1.78; }
.section-heading h2 { margin-top: 8px; }
.centre { text-align: center; max-width: 820px; margin: 0 auto 56px; }

/* ── ABOUT ── */
.intro.about-expanded { background: var(--white); }
.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.text-block p { color: var(--muted); font-size: 1.02rem; margin: 0 0 20px; line-height: 1.8; }

.about-detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cream-mid);
  margin-top: 64px; border: 1px solid var(--cream-mid);
}
.about-detail-card {
  background: var(--white); padding: 36px 32px;
  position: relative; transition: background 0.3s;
}
.about-detail-card:hover { background: var(--cream); }
.about-detail-card > span {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,168,76,0.45); margin-bottom: 16px; transition: color 0.3s;
}
.about-detail-card:hover > span { color: var(--gold); }
.about-detail-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.about-detail-card p { color: var(--muted); font-size: 0.94rem; margin: 0; line-height: 1.75; }

/* ── IMAGE BAND ── */
.image-band { padding: 0; }
.image-band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.image-band-grid img {
  height: 340px; width: 100%; object-fit: cover;
  border-radius: 0; box-shadow: none;
  filter: saturate(0.8) brightness(0.92);
  transition: filter 0.4s;
}
.image-band-grid img:hover { filter: saturate(1.05) brightness(1.02); }

/* ── EXPERTISE / SERVICES ── */
.cards.service-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cream-mid);
  border: 1px solid var(--cream-mid); margin-top: 56px;
}
.cards.service-cards .card {
  background: var(--white); border: none; border-radius: 0;
  padding: 36px 28px 40px; min-height: 300px; box-shadow: none;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.cards.service-cards .card:hover { background: var(--navy); }
.cards.service-cards .card:hover h3 { color: var(--cream); }
.cards.service-cards .card:hover p { color: rgba(245,240,232,0.58); }
.cards.service-cards .card:hover .card-number { color: var(--gold); }
.cards.service-cards .card::after { display: none; }
.cards.service-cards .card::before {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.cards.service-cards .card:hover::before { transform: scaleX(1); }
.cards.service-cards .card h3 { font-size: 1.2rem; margin: 16px 0 12px; transition: color 0.3s; }
.cards.service-cards .card p { font-size: 0.93rem; color: var(--muted); margin: 0; transition: color 0.3s; }

/* ── R&D DARK SECTION ── */
.dark-section {
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.dark-section::before {
  content: ""; position: absolute; inset: -20% auto auto 60%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 62%);
}
.rd-expanded { padding: 120px 0; }
.rd-grid {
  position: relative; display: grid;
  grid-template-columns: 0.95fr 1.05fr; gap: 80px; align-items: center;
}
.dark-section h2 { color: var(--cream); }
.dark-section p { color: rgba(245,240,232,0.62); font-size: 1.02rem; line-height: 1.8; margin: 20px 0; }
.dark-section a.btn-primary { margin-top: 8px; }

.rd-list {
  display: grid; gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.rd-list > div {
  padding: 26px 28px;
  background: rgba(19,32,64,0.75);
  transition: background 0.3s;
  position: relative;
}
.rd-list > div:hover { background: rgba(19,32,64,1); }
.rd-list > div::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 1px;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: transform 0.3s;
}
.rd-list > div:hover::before { transform: scaleY(1); }
.rd-list strong { display: block; margin-bottom: 8px; color: var(--cream); font-weight: 600; font-size: 0.97rem; }
.rd-list span { color: rgba(245,240,232,0.52); font-size: 0.9rem; line-height: 1.65; }

.rd-service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08); margin-top: 72px;
}
.rd-service-card {
  background: rgba(10,22,40,0.5); padding: 32px 28px;
  position: relative; transition: background 0.3s;
}
.rd-service-card:hover { background: rgba(10,22,40,0.85); }
.rd-service-card > span {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: 18px; transition: color 0.3s;
}
.rd-service-card:hover > span { color: rgba(201,168,76,0.4); }
.rd-service-card h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 14px; }
.rd-service-card p { font-size: 0.9rem; color: rgba(245,240,232,0.52); line-height: 1.7; margin: 0 0 14px; }
.rd-service-card ul { padding-left: 1.1em; }
.rd-service-card li { color: rgba(245,240,232,0.45); font-size: 0.87rem; margin-bottom: 6px; }

/* ── PROJECTS ── */
.projects-section { background: var(--cream); }
.projects-section .section-heading { max-width: none; }
.projects-section .section-heading p:not(.eyebrow) { margin-top: 14px; }

.track-record {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cream-mid);
  border: 1px solid var(--cream-mid); margin: 48px 0 32px;
}
.track-record > div {
  padding: 32px 28px; background: var(--white); text-align: center; transition: background 0.3s;
}
.track-record > div:hover { background: var(--navy); }
.track-record strong {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -0.04em;
  line-height: 1; color: var(--gold); margin-bottom: 10px;
}
.track-record span {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 500; transition: color 0.3s;
}
.track-record > div:hover span { color: rgba(245,240,232,0.5); }

.project-capabilities {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cream-mid);
  border: 1px solid var(--cream-mid); margin: 32px 0 72px;
}
.project-capabilities article {
  padding: 28px 24px; background: var(--white);
  border-radius: 0; box-shadow: none; border: none;
}
.project-capabilities span {
  display: block;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  background: none; width: auto; height: auto; border-radius: 0; margin-bottom: 14px;
}
.project-capabilities h3 { font-size: 1.05rem; margin-bottom: 10px; }
.project-capabilities p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.65; }

.projects-subheading {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--navy); margin-bottom: 36px;
  padding-bottom: 20px; border-bottom: 1px solid var(--cream-mid);
}

.projects-timeline-image {
  margin: 0 0 64px; border: 1px solid var(--cream-mid); overflow: hidden;
}
.projects-timeline-image img { width: 100%; height: auto; display: block; }

.detailed-projects-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--cream-mid); border: 1px solid var(--cream-mid);
}
.detailed-project {
  display: grid; grid-template-columns: 280px 1fr;
  background: var(--white); transition: background 0.2s;
}
.detailed-project:hover { background: #fdfcfa; }
.detailed-project-media {
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; padding: 32px;
  border-right: 1px solid var(--cream-mid);
}
.detailed-project-media img { max-width: 100%; max-height: 160px; object-fit: contain; }
.detailed-project-media.contained img { width: 80%; }
.detailed-project-content { padding: 36px 40px; }
.project-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); font-weight: 600; margin: 0 0 12px !important; display: block;
}
.detailed-project-content h3 { font-size: 1.8rem; margin-bottom: 4px; font-weight: 700; letter-spacing: -0.04em; }
.detailed-project-content h4 {
  font-size: 1rem; font-style: italic; color: var(--muted);
  font-family: 'Inter Tight', sans-serif; font-weight: 400; margin: 0 0 18px; line-height: 1.4;
}
.detailed-project-content > p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin: 0 0 20px; }
.project-facts {
  margin: 0 0 18px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px 16px; border: none; padding: 0;
}
.project-facts > div { display: flex; flex-direction: column; gap: 2px; }
.project-facts dt { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; }
.project-facts dd { font-size: 0.87rem; color: var(--navy-soft); margin: 0; line-height: 1.45; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.project-tags span {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px; border: 1px solid var(--cream-mid);
  color: var(--muted); font-weight: 500; background: var(--cream);
}
.project-links { display: flex; gap: 16px; }
.project-links a {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px; transition: border-color 0.2s, color 0.2s;
}
.project-links a:hover { border-color: var(--gold); color: var(--navy); }

/* Legacy */
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--cream-mid); border: 1px solid var(--cream-mid); }
.project-card { border: none; border-radius: 0; background: white; box-shadow: none; overflow: hidden; }
.project-img { height: 220px; background: var(--cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-img.contained img { width: 80%; height: auto; object-fit: contain; }
.project-content { padding: 28px; }
.project-logo { max-height: 38px; width: auto; margin-bottom: 16px; }
.project-content p { color: var(--muted); font-size: 0.93rem; }
.project-logo-panel--renozeb, .project-logo-panel--geotech {}
.project-logo-image { }

/* ── PARTNERS / NETWORKS ── */
.partner-section { background: var(--navy); }
.partner-section .section-heading h2 { color: var(--cream); }
.partner-section .section-heading p:not(.eyebrow) { color: rgba(245,240,232,0.52); }
.network-panel {
  background: rgba(19,32,64,0.4); border: 1px solid var(--line);
  border-radius: 0; padding: 32px; box-shadow: none;
}
.network-panel img { display: block; width: 100%; height: auto; border-radius: 0; opacity: 0.9; }

/* ── TEAM ── */
.team-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 64px; align-items: center;
}
.team-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--cream-mid); }
.team-card {
  background: var(--white); border: none; border-radius: 0;
  overflow: hidden; box-shadow: none; transition: background 0.3s;
}
.team-card:hover { background: var(--cream); }
.team-card img {
  width: 100%; height: 290px; object-fit: cover;
  filter: grayscale(100%) contrast(1.05); transition: filter 0.4s;
}
.team-card:hover img { filter: grayscale(55%) contrast(1); }
.team-card div { padding: 28px 24px; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.team-card p { color: var(--muted); margin: 0; font-size: 0.93rem; line-height: 1.65; }

/* ── NEWS ── */
.news { background: var(--cream); }
.news-placeholder {
  border: 1px solid var(--cream-mid); border-radius: 0; padding: 40px; background: var(--white);
}
.news-placeholder p { color: var(--muted); margin-top: 0; }
.news-placeholder span {
  display: inline-flex; padding: 6px 14px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 600;
}

/* ── CONTACT ── */
.contact-section { background: var(--navy); color: var(--cream); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 0.78fr; gap: 72px; align-items: center; }
.contact-section h2 { color: var(--cream); }
.contact-section > .container > div > p { color: rgba(245,240,232,0.58); line-height: 1.8; margin-top: 20px; }
.contact-card {
  background: rgba(19,32,64,0.45); border: 1px solid var(--line);
  padding: 44px 40px; border-radius: 0; box-shadow: none;
}
.contact-card h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 24px; }
.contact-card > a:not(.btn) {
  display: block; font-size: 1rem; font-weight: 500;
  color: var(--gold); margin-bottom: 8px; transition: color 0.2s;
}
.contact-card > a:not(.btn):hover { color: var(--gold-light); }
.contact-card p { color: rgba(245,240,232,0.52); font-size: 0.92rem; line-height: 1.7; margin: 20px 0 28px; }
.contact-legal { font-size: 0.78rem !important; margin-top: 20px !important; }
.contact-legal a { color: var(--gold) !important; }

/* ── FOOTER ── */
.footer { padding: 36px 0; border-top: 1px solid rgba(201,168,76,0.12); background: var(--navy); }
.footer-grid {
  display: grid; grid-template-columns: 160px 1fr auto;
  gap: 24px; align-items: center;
  color: rgba(245,240,232,0.38); font-size: 0.82rem;
}
.footer img { max-height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.55; }
.footer a { color: var(--gold); font-weight: 500; opacity: 0.8; transition: opacity 0.2s; }
.footer a:hover { opacity: 1; }
.footer-links { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-text-btn {
  background: none; border: none; cursor: pointer; color: var(--gold);
  font-size: 0.82rem; padding: 0; font-family: inherit; font-weight: 500; opacity: 0.8;
}
.footer-text-btn:hover { opacity: 1; }
.footer-note { color: rgba(245,240,232,0.28); font-size: 0.75rem; margin-top: 6px; }

/* ── REVEALS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.78s ease, transform 0.78s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: var(--navy);
  border-top: 1px solid var(--line); padding: 20px 0;
}
.cookie-banner__inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cookie-copy strong { display: block; color: var(--cream); margin-bottom: 6px; font-size: 0.9rem; }
.cookie-copy p { color: rgba(245,240,232,0.52); font-size: 0.83rem; margin: 0; }
.cookie-copy a { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; margin-left: auto; }
.cookie-btn { min-height: 42px; padding: 0 22px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section-pad { padding: 90px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 0 40px; }
  .hero-copy h1 { max-width: none; }
  .hero-visual { max-width: 540px; }
  .two-col, .rd-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .consortia-cards { grid-template-columns: 1fr; }
  .consortia-cards .card { border-right: 0; border-bottom: 1px solid var(--cream-mid); }
  .consortia-cards .card:last-child { border-bottom: 0; }
  .cards.service-cards { grid-template-columns: repeat(2, 1fr); }
  .track-record { grid-template-columns: repeat(2, 1fr); }
  .project-capabilities { grid-template-columns: repeat(2, 1fr); }
  .rd-service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-detail-grid { grid-template-columns: 1fr; }
  .detailed-project { grid-template-columns: 200px 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 72px 16px auto 16px;
    background: var(--navy); padding: 24px;
    border: 1px solid var(--line); display: none;
    flex-direction: column; align-items: stretch; gap: 16px; z-index: 200;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 768px) {
  .image-band-grid { grid-template-columns: 1fr; }
  .image-band-grid img { height: 240px; }
  .cards.service-cards { grid-template-columns: 1fr; }
  .rd-service-grid { grid-template-columns: 1fr; }
  .detailed-project { grid-template-columns: 1fr; }
  .detailed-project-media { max-height: 180px; border-right: 0; border-bottom: 1px solid var(--cream-mid); }
  .team-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { align-items: center; }
  .credibility-strip { flex-direction: column; }
  .credibility-strip > div { border-right: 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .capability-one, .capability-two, .capability-three, .capability-four { display: none; }
  h1 { font-size: 3.2rem; }
}
@media (max-width: 560px) {
  .section-pad { padding: 64px 0; }
  .container { width: min(100% - 32px, 1180px); }
  .hero-grid { padding: 60px 0 32px; }
  h1 { font-size: 2.7rem; }
  .track-record, .project-capabilities { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { margin-left: 0; }
}

/* Compatibility aliases */
.hero-premium, .hero-cinematic {}

/* ── NEWS SECTION ── */
.news-source-block {
  background: var(--white);
  border: 1px solid var(--cream-mid);
  padding: 36px 40px 40px;
}
.news-source-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-mid);
}
.news-source-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.news-source-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.news-source-link {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.news-source-link:hover { color: var(--navy); }

/* Cards row */
.news-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-mid);
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.news-card:hover { background: var(--cream); }
.news-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--cream);
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.35s, transform 0.35s;
}
.news-card:hover .news-card-img img {
  filter: saturate(1);
  transform: scale(1.03);
}
.news-card-img--empty { background: var(--navy-mid); }
.news-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.news-card-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.news-card-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}
.news-card-cta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.news-card:hover .news-card-cta {
  color: var(--navy);
  border-color: var(--navy);
}

/* Skeleton loading */
.news-card-skeleton {
  height: 380px;
  background: linear-gradient(90deg, var(--cream) 25%, var(--cream-mid) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Fallback */
.news-fallback {
  padding: 32px;
  background: var(--white);
}
.news-fallback p { color: var(--muted); margin: 0; }
.news-fallback a { color: var(--gold); font-weight: 600; }

@media (max-width: 768px) {
  .news-cards-row { grid-template-columns: 1fr; }
  .news-source-block { padding: 28px 24px 32px; }
}

/* News source icon (for sources without logo image) */
.news-source-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 100px;
  padding: 0 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.25);
}
.news-source-icon--cordis {
  background: var(--navy-mid);
  color: var(--gold-light);
}
