/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/font-01.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/font-02.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/font-03.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/font-04.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/font-05.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/font-06.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/font-07.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/font-08.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-navy: #052746;
  --color-gold: #B57400;
  --color-white: #FFFFFF;
  --color-bg-alt: #F4F5F7;
  --color-text: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-navy); text-decoration: none; }
a:hover { color: var(--color-gold); }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-navy); line-height: 1.25; margin: 0 0 0.6em; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.button:hover { background: var(--color-gold); color: var(--color-white); }
.button--outline { background: transparent; border: 1px solid var(--color-white); }

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-bg-alt);
  background-image: url(/assets/images/header-banner.jpg);
  background-size: cover;
  /* 35% keeps the "INTERIM MANAGER" wordmark uncropped in the ~140px strip */
  background-position: left 35%;
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(5,39,70,0.55);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.site-nav__toggle-input { display: none; }
.site-nav__toggle-label {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: rgba(255,255,255,0.75);
  border-radius: 4px;
  padding: 8px 6px;
}
.site-nav__toggle-label span { width: 24px; height: 2px; background: var(--color-navy); }
.site-nav__menu { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; align-items: center; }
.site-nav__menu > li > a { font-weight: 600; color: var(--color-white); }
.site-nav__dropdown details summary { cursor: pointer; font-weight: 600; color: var(--color-white); list-style: none; }
.site-nav__dropdown details summary::-webkit-details-marker { display: none; }
.site-nav__dropdown details ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0;
  position: absolute;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 180px;
}
.site-nav__dropdown details ul li { padding: 0.4rem 1rem; }
.site-nav__lang a { font-weight: 600; padding: 0 0.25rem; color: var(--color-white); }
.site-nav__lang a.is-active { color: var(--color-gold); }

/* Hero */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}
.hero h1, .hero h2 { color: var(--color-white); }
.hero h1 { font-size: 2rem; }
.hero h2 { font-size: 1.4rem; }
.hero__photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; border: 4px solid var(--color-gold); }
.hero__availability { color: var(--color-bg-alt); margin-bottom: 1.5rem; }

/* Sections */
.section { padding: 4rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section__heading { text-align: center; margin-bottom: 2.5rem; }

/* Competencies grid */
.competencies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.competency-card { background: var(--color-white); padding: 1.5rem; border-top: 3px solid var(--color-gold); }

/* Card grid (project previews / overview) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { display: block; background: var(--color-white); box-shadow: 0 2px 8px rgba(0,0,0,0.08); overflow: hidden; }
.card img { aspect-ratio: 4/3; object-fit: cover; object-position: top; }
.card__body { padding: 1.25rem; }
.card__body h3 { margin-bottom: 0.4rem; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats__item { font-weight: 600; color: var(--color-navy); }

/* Project facts list */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 2rem; list-style: none; margin: 0 0 2rem; padding: 1.5rem; background: var(--color-bg-alt); }
.facts dt { font-weight: 600; color: var(--color-navy); }
.facts dd { margin: 0; }

/* Results highlight box */
.results-box { background: var(--color-navy); color: var(--color-white); padding: 1.5rem 2rem; }
.results-box h2 { color: var(--color-gold); }
.results-box ul { margin: 0; padding-left: 1.25rem; }

/* Accordion (other projects) */
.accordion-item { border-bottom: 1px solid var(--color-bg-alt); padding: 1rem 0; }
.accordion-item summary { cursor: pointer; font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-navy); }
.accordion-item ul { margin-top: 0.75rem; }

/* Contact page */
.contact-card { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.contact-card img { width: 220px; border-radius: 4px; }

/* Footer */
.site-footer { background: var(--color-navy); color: var(--color-bg-alt); padding: 3rem 0 1.5rem; margin-top: 3rem; }
.site-footer__logo { text-align: center; margin-bottom: 2rem; }
.site-footer__logo img { display: inline-block; border-radius: 50%; background: var(--color-white); padding: 6px; }
.site-footer__inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.site-footer h2 { color: var(--color-white); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer a { color: var(--color-bg-alt); }
.site-footer a:hover { color: var(--color-gold); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.4rem; }
.site-footer__copyright { text-align: center; font-size: 0.85rem; margin: 2rem 0 0; color: rgba(255,255,255,0.6); }

/* Cookie consent banner */
.cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.cookie-banner--visible { display: block; }
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { margin: 0; flex: 1 1 320px; font-size: 0.9rem; }
.cookie-banner__actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner__link { color: var(--color-bg-alt); font-size: 0.85rem; text-decoration: underline; }
.cookie-banner__link:hover { color: var(--color-gold); }
.cookie-banner__actions .button { padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* 404 */
.error-404 { text-align: center; padding: 5rem 0; }

/* Responsive */
@media (max-width: 1024px) {
  .competencies { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { background-image: url(/assets/images/header-banner-small.jpg); }
  .site-nav__toggle-label { display: flex; }
  .site-nav__menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .site-nav__toggle-input:checked ~ .site-nav__menu { display: flex; }
  .site-header__inner { position: relative; flex-wrap: wrap; align-items: flex-end; }
  .site-nav {
    width: 100%;
    justify-content: space-between;
    background: none;
    padding: 0;
    border-radius: 0;
  }
  .site-nav__lang { background: rgba(5,39,70,0.55); padding: 0.4rem 0.6rem; border-radius: 4px; }
  .site-nav__menu > li > a { color: var(--color-navy); }
  .site-nav__dropdown details summary { color: var(--color-navy); }
  .site-nav__dropdown details ul { position: static; box-shadow: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .competencies { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
}
