/* ============================================
   STRKBOUW BV — Global Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:   #0a0a0a;
  --white:   #ffffff;
  --off-white: #f5f5f3;
  --yellow:  #e8c84b;
  --yellow-dark: #c9ad30;
  --gray-100: #f0f0ee;
  --gray-200: #e0e0de;
  --gray-400: #9a9a96;
  --gray-600: #5a5a56;
  --gray-800: #2a2a26;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --section-pad: 100px 24px;
  --radius: 4px;
  --transition: 0.25s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.label--yellow { color: var(--yellow); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad); }

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--gray {
  background: var(--gray-100);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
}

.btn--primary:hover {
  background: #d4b33a;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}

.btn--outline-dark:hover {
  border-color: var(--black);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--black);
  letter-spacing: -0.03em;
}

.navbar__logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.navbar__logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-top: 1px;
}

.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
}

.navbar__nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--yellow);
  margin-top: 3px;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  transition: var(--transition);
}

.navbar__cta:hover {
  background: #d4b33a;
}

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px 40px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 28ch;
}

.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ============================================
   HERO (index)
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('images/breskens-render-1.png');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  opacity: 0.85;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.05) 40%, rgba(10,10,10,0.88) 100%),
    linear-gradient(135deg, rgba(232,200,75,0.04) 0%, transparent 60%);
  z-index: 1;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 32px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stat-bar {
  position: absolute;
  right: 24px;
  bottom: 100px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
}

.hero__stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__stat span {
  font-size: 0.72rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: 120px 24px;
}

.intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__text .label { margin-bottom: 20px; }

.intro__text h2 { margin-bottom: 28px; }

.intro__text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-200);
}

.intro__metric {
  background: var(--white);
  padding: 36px 32px;
}

.intro__metric strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.intro__metric span {
  font-size: 0.75rem;
  color: var(--gray-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro__metric--accent strong { color: var(--yellow); }

/* ============================================
   PILLARS / CORE VALUES
   ============================================ */
.pillars {
  background: var(--black);
  padding: 120px 24px;
}

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

.pillars__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.pillars__header .label { margin-bottom: 16px; }

.pillars__header h2 { color: var(--white); max-width: 12ch; }

.pillars__header p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 36ch;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.pillar {
  background: #111;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.pillar:hover::before { transform: scaleX(1); }

.pillar__num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 32px;
}

.pillar h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.pillar p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   PROJECT PREVIEW (home)
   ============================================ */
.projects-preview {
  padding: 120px 24px;
  background: var(--off-white);
}

.projects-preview__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.section-header .label { margin-bottom: 12px; }

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  background: var(--gray-200);
}

.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.card:hover { transform: translateY(-3px); }

.card:hover .card__img img {
  transform: scale(1.04);
}

.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-200);
  position: relative;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.15;
}

.card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.card__body {
  padding: 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.card__meta span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--black);
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
  transition: gap var(--transition);
}

.card__link:hover { gap: 14px; }

.card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.card__link:hover svg { transform: translateX(3px); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--yellow);
  padding: 100px 24px;
}

.cta-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-banner h2 {
  color: var(--black);
  max-width: 14ch;
}

.cta-banner p {
  color: rgba(0,0,0,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40ch;
  margin: 16px 0;
}

.cta-banner .btn--primary {
  background: var(--black);
  color: var(--white);
}

.cta-banner .btn--primary:hover {
  background: #1a1a1a;
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  background: var(--black);
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero .label { margin-bottom: 20px; }
.page-hero h1 { color: var(--white); margin-bottom: 24px; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-section {
  padding: 100px 24px;
}

.projects-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.projects-filter {
  display: flex;
  gap: 4px;
  margin-bottom: 56px;
}

.projects-filter button,
.projects-filter a {
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}

.projects-filter button.active,
.projects-filter button:hover,
.projects-filter a.active,
.projects-filter a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ============================================
   PROJECT DETAIL — BRESKENS
   ============================================ */
.project-intro {
  padding: 100px 24px;
}

.project-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.project-intro__text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.project-info-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 40px;
}

.project-info-card h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.project-info-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.project-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-info-item .info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.project-info-item .info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

/* Strategy section */
.project-strategy {
  padding: 100px 24px;
  background: var(--black);
}

.project-strategy__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.project-strategy .label { margin-bottom: 20px; }
.project-strategy h2 { color: var(--white); margin-bottom: 60px; }

.strategy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.strategy-step {
  background: #111;
  padding: 44px 36px;
}

.strategy-step__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.5;
}

.strategy-step h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}

.strategy-step p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.75;
}

/* Investment section */
.project-investment {
  padding: 100px 24px;
  background: var(--yellow);
}

.project-investment__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.project-investment .label--yellow { color: rgba(0,0,0,0.5); }
.project-investment h2 { color: var(--black); margin-bottom: 24px; }
.project-investment p {
  color: rgba(0,0,0,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.investment-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,0.1);
}

.investment-figure {
  background: rgba(0,0,0,0.06);
  padding: 36px 32px;
}

.investment-figure strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}

.investment-figure span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

/* Images section */
.project-images {
  padding: 100px 24px;
  background: var(--gray-100);
}

.project-images__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.project-images .label { margin-bottom: 20px; }
.project-images h2 { margin-bottom: 48px; }

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.image-grid__item {
  overflow: hidden;
  background: var(--gray-200);
}

.image-grid__item--tall { grid-row: span 2; }

.image-placeholder {
  width: 100%;
  padding-bottom: 66%;
  background: linear-gradient(135deg, #1e1e1e 0%, #2e2e2e 50%, #1a1a1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder--tall {
  padding-bottom: 140%;
}

.image-placeholder__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.image-placeholder__label svg {
  width: 40px;
  height: 40px;
  opacity: 0.2;
  color: var(--white);
}

.image-placeholder__label span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Collaboration badge */
.collab-banner {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.collab-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.collab-banner__text .label { margin-bottom: 12px; }

.collab-banner__text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.collab-banner__text p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

.collab-banner__logo {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

/* ============================================
   OVER ONS
   ============================================ */
.about-content {
  padding: 100px 24px;
}

.about-content__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 100px;
}

.about-sticky .label { margin-bottom: 20px; }
.about-sticky h2 { margin-bottom: 28px; }

.about-sticky p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.about-block:first-child { padding-top: 0; }

.about-block .label { margin-bottom: 16px; color: var(--yellow); }

.about-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-block p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Team / values */
.values-section {
  background: var(--black);
  padding: 100px 24px;
}

.values-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.values-section .label { margin-bottom: 16px; }
.values-section h2 { color: var(--white); margin-bottom: 64px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.value-item {
  background: #111;
  padding: 44px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.value-item__icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--black);
}

.value-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 100px 24px;
}

.contact-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .label { margin-bottom: 20px; }
.contact-info h2 { margin-bottom: 28px; }
.contact-info > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  color: var(--black);
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-detail span, .contact-detail a {
  font-size: 0.95rem;
  color: var(--black);
}

/* Form */
.contact-form-wrap {
  background: var(--gray-100);
  padding: 52px;
}

.form-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--black);
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 16px;
  text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro__inner { grid-template-columns: 1fr; gap: 60px; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillars__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .strategy-steps { grid-template-columns: repeat(2, 1fr); }
  .project-intro__inner { grid-template-columns: 1fr; }
  .project-investment__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-content__inner { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }

  .navbar__nav,
  .navbar__cta { display: none; }

  .navbar__toggle { display: flex; }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 32px 24px;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hero__stat-bar { display: none; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .strategy-steps { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: 1fr; }
  .collab-banner__inner { flex-direction: column; }
  .contact-form-wrap { padding: 32px 24px; }
}
