/* ============================================================
   BRUSSELS INTERNATIONAL HOUSING — CORPORATE EXTENSION
   Additive stylesheet. Loaded AFTER css/styles.css on:
     · index.html            (two-pathway block only)
     · corporate-housing.html
     · our-services.html
   Consumes the existing :root tokens from styles.css
   (--navy, --gold, --serif, --sans, ...). It DEFINES NO
   tokens and OVERRIDES NO existing rules. Every selector is
   prefixed .pathway-* / .corp-* to guarantee no collision
   with styles.css. Do not add site-wide rules here.
   ============================================================ */

/* ---------- shared building blocks ---------- */
.corp-btn,
.corp-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; font-family: var(--sans);
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.corp-btn { background: var(--gold); color: var(--navy-deep); }
.corp-btn:hover { background: var(--gold-light); }
.corp-btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.corp-btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.corp-btn-outline.on-light { color: var(--navy); border-color: var(--border); }
.corp-btn-outline.on-light:hover { border-color: var(--gold); color: var(--gold); }

.corp-section { padding: 96px 5%; background: var(--white); }
.corp-section.alt { background: var(--cream); }
.corp-section.navy { background: var(--navy); }
.corp-inner { max-width: 1200px; margin: 0 auto; }
.corp-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.corp-head.left { text-align: left; margin-left: 0; }
.corp-head h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500; color: var(--navy); line-height: 1.15; margin-bottom: 18px;
}
.corp-section.navy .corp-head h2 { color: var(--white); }
.corp-head h2 em { font-style: italic; color: var(--gold); }
.corp-section.navy .corp-head h2 em { color: var(--gold-light); }
.corp-head p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--text-mid); }
.corp-section.navy .corp-head p { color: rgba(255,255,255,0.6); }
.corp-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px;
}

/* ---------- HERO (corporate + services) ---------- */
.corp-hero { position: relative; background: var(--navy-deep); padding: 132px 5% 92px; overflow: hidden; }
.corp-hero .hero-grid-bg { position: absolute; inset: 0; opacity: 0.5; }
.corp-hero-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.corp-hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 60px);
  font-weight: 500; color: var(--white); line-height: 1.12; margin-bottom: 22px;
}
.corp-hero h1 em { font-style: italic; color: var(--gold-light); }
.corp-hero-sub {
  font-size: clamp(16px, 1.7vw, 19px); font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.62); max-width: 680px; margin: 0 auto 40px;
}
.corp-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.corp-hero-trust {
  margin-top: 56px; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px 34px; color: rgba(255,255,255,0.5); font-size: 13px;
}
.corp-hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.corp-hero-trust .tick { color: var(--gold); }

/* ---------- VALUE GRID ---------- */
.corp-value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.corp-value-card { background: var(--white); padding: 40px 34px; }
.corp-section.alt .corp-value-card { background: var(--cream); }
.corp-value-mark {
  width: 44px; height: 44px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 17px; margin-bottom: 22px;
}
.corp-value-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.corp-value-card p { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin: 0; }

/* ---------- AUDIENCE CHIPS ---------- */
.corp-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.corp-audience {
  background: var(--white); border: 1px solid var(--border); padding: 26px 28px;
  display: flex; align-items: flex-start; gap: 16px;
}
.corp-section.alt .corp-audience { background: var(--white); }
.corp-audience .ca-mark { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.corp-audience h3 { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 5px; }
.corp-audience p { font-size: 13px; line-height: 1.65; color: var(--text-mid); margin: 0; }

/* ---------- PROCESS / FUNNEL (a genuine sequence → numbered) ---------- */
.corp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: cstep; }
.corp-step { position: relative; padding-top: 20px; }
.corp-step-num {
  font-family: var(--serif); font-size: 40px; font-weight: 500;
  color: var(--gold); line-height: 1; margin-bottom: 16px; display: block;
}
.corp-step h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.corp-section:not(.navy) .corp-step h3 { color: var(--navy); }
.corp-step p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 0; }
.corp-section:not(.navy) .corp-step p { color: var(--text-mid); }

/* ---------- CORPORATE HOUSING PACK BAND ---------- */
.corp-pack { background: var(--navy); padding: 56px 5%; }
.corp-pack-inner {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.corp-pack-text { max-width: 640px; }
.corp-pack-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.corp-pack-text h3 { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 34px); font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.corp-pack-text h3 em { font-style: italic; color: var(--gold-light); }
.corp-pack-text p { font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.6); margin: 0; }

/* ---------- CONTACT / FORM SPLIT (reuses .cta-form-panel + .form-* from styles.css) ---------- */
.corp-contact { background: var(--navy-deep); padding: 96px 5%; }
.corp-contact-inner {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.corp-contact-text h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; color: var(--white); line-height: 1.18; margin-bottom: 20px; }
.corp-contact-text h2 em { font-style: italic; color: var(--gold-light); }
.corp-contact-text > p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.corp-detail { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.corp-detail-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.corp-detail-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.corp-detail-val { font-size: 14px; color: rgba(255,255,255,0.82); }
.corp-detail-val a { color: var(--gold-light); text-decoration: none; }
.corp-detail-val a:hover { text-decoration: underline; }

/* ============================================================
   HOMEPAGE TWO-PATHWAY BLOCK  (index.html, below the hero)
   Establishes Individual vs Corporate at equal weight WITHOUT
   touching the existing hero audience tiles above it.
   ============================================================ */
.pathway-wrap { background: var(--cream); padding: 84px 5% 88px; }
.pathway-inner { max-width: 1120px; margin: 0 auto; }
.pathway-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.pathway-head .corp-eyebrow { justify-content: center; }
.pathway-head h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 500; color: var(--navy); line-height: 1.18; margin-bottom: 14px; }
.pathway-head h2 em { font-style: italic; color: var(--gold); }
.pathway-head p { font-size: 15.5px; font-weight: 300; line-height: 1.75; color: var(--text-mid); }
.pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pathway-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 44px 40px 40px; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pathway-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(15,24,40,0.10); border-color: rgba(201,168,76,0.5); }
.pc-icon {
  width: 54px; height: 54px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.pc-label { font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.pc-sub { font-size: 13px; letter-spacing: 0.02em; color: var(--gold); text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.pc-desc { font-size: 14.5px; line-height: 1.75; color: var(--text-mid); margin-bottom: 24px; }
.pc-features { list-style: none; padding: 0; margin: 0 0 30px; }
.pc-features li { position: relative; padding-left: 24px; font-size: 13.5px; line-height: 1.5; color: var(--navy); margin-bottom: 11px; }
.pc-features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-size: 13px; }
.pc-cta { margin-top: auto; }
.pathway-card .corp-btn { width: 100%; justify-content: center; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .corp-value-grid { grid-template-columns: 1fr 1fr; }
  .corp-audience-grid { grid-template-columns: 1fr; }
  .corp-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .corp-contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .pathway-grid { grid-template-columns: 1fr; }
  .corp-hero { padding: 112px 5% 72px; }
}
@media (max-width: 560px) {
  .corp-value-grid { grid-template-columns: 1fr; }
  .corp-steps { grid-template-columns: 1fr; }
  .corp-hero-actions { flex-direction: column; }
  .corp-hero-actions .corp-btn, .corp-hero-actions .corp-btn-outline { width: 100%; justify-content: center; }
}

/* ---------- TALLY CTA PANELS (replaces removed inline forms) ---------- */
.cta-tally-lead { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.cta-tally-btn { width: 100%; justify-content: center; }
a.corp-btn.cta-tally-btn + a.corp-btn-outline.cta-tally-btn { margin-top: 12px; }

/* ---------- breadcrumb + homepage guide download ---------- */
.corp-breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border); }
.corp-breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 12px 5%; font-size: 12.5px; color: var(--text-mid); }
.corp-breadcrumb-inner a { color: var(--navy); text-decoration: none; }
.corp-breadcrumb-inner a:hover { color: var(--gold); }
.corp-breadcrumb-inner span { color: var(--text-light); margin: 0 5px; }
.corp-breadcrumb-inner span[aria-current] { color: var(--gold); margin: 0; }
.pc-download { display: inline-block; margin-top: 14px; font-size: 12.5px; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.pc-download:hover { color: var(--gold); }

/* ===================== UMBRELLA HERO (one company, two divisions) ===================== */
.uh-hero { position: relative; background: var(--navy-deep); padding: 150px 5% 84px; overflow: hidden; }
.uh-hero .hero-grid-bg { position: absolute; inset: 0; opacity: 0.5; }
.uh-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.uh-brand { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; color: var(--white); margin-bottom: 24px; }
.uh-brand span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-top: 8px; font-weight: 500; }
.uh-title { font-family: var(--serif); font-size: clamp(30px, 4.4vw, 52px); font-weight: 500; color: var(--white); line-height: 1.12; margin-bottom: 20px; }
.uh-title em { font-style: italic; color: var(--gold-light); }
.uh-sub { font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.62); max-width: 760px; margin: 0 auto 38px; }
.uh-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.uh-divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; margin-bottom: 42px; }
.uh-div { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); padding: 34px 32px; display: flex; flex-direction: column; transition: border-color .25s, background .25s, transform .25s; }
.uh-div:hover { border-color: rgba(201,168,76,0.55); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.uh-div-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.uh-div h2 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.uh-div p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; flex: 1; }
.uh-cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.uh-cta .corp-btn { width: 100%; justify-content: center; }
.uh-link { font-size: 13px; color: var(--gold-light); text-decoration: none; border-bottom: 1px solid transparent; align-self: center; }
.uh-link:hover { border-bottom-color: var(--gold-light); }
.uh-trust { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px 16px; color: rgba(255,255,255,0.5); font-size: 13px; }
.uh-trust i { color: var(--gold); font-style: normal; }
@media (max-width: 820px) { .uh-divisions { grid-template-columns: 1fr; } .uh-hero { padding: 124px 5% 68px; } }

/* ---------- BRAND BAND stats (company-first) ---------- */
.brand-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 4px; }
.brand-stat { background: var(--white); padding: 28px 20px; text-align: center; }
.corp-section.alt .brand-stat { background: var(--cream); }
.bs-num { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.bs-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); }
@media (max-width: 640px) { .brand-stats { grid-template-columns: 1fr 1fr; } }
