/* ═══════════════════════════════════════════
   TR BUSINESS MANAGEMENT — SHARED STYLESHEET
   trbmsarl.com
═══════════════════════════════════════════ */

/* TOKENS */
:root {
  --ink:      #0C0C10;
  --navy:     #0F1622;
  --navy-lt:  #16202E;
  --charcoal: #1E2535;
  --offwhite: #F3F1EC;
  --stone:    #E6E2D9;
  --stone-dk: #D4CFC4;
  --sand:     #C9A87A;
  --sand-dk:  #A8845A;
  --sand-lt:  #DFC49A;
  --steel:    #6A7280;
  --steel-lt: #98A3AE;
  --white:    #FFFFFF;
  --fd: 'Playfair Display', Georgia, serif;
  --fg: 'EB Garamond', Georgia, serif;
  --fb: 'Inter', sans-serif;
  --ft: 'Inter Tight', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--offwhite); color: var(--ink); font-family: var(--fb); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(12,12,16,.94); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,122,.12);
  transition: background .3s, border-color .3s;
}
nav.scrolled { background: rgba(12,12,16,.98); border-bottom-color: rgba(201,168,122,.2); }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-emblem {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.logo-emblem::after { content: ''; position: absolute; inset: 3px; border: 1px solid rgba(201,168,122,.25); }
.logo-emblem-text { font-family: var(--fd); font-size: 13px; font-weight: 500; color: var(--sand); position: relative; z-index: 1; }
.logo-wordmark { line-height: 1; }
.logo-name { font-family: var(--ft); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--offwhite); display: block; }
.logo-sub  { font-family: var(--ft); font-size: 7.5px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--steel-lt); display: block; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--ft); font-size: 10.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(243,241,236,.5); transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--sand); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover { color: var(--offwhite); }
.nav-links a.active { color: var(--offwhite); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-sw { display: flex; gap: 1px; background: rgba(201,168,122,.07); border: 1px solid rgba(201,168,122,.15); padding: 3px; border-radius: 2px; }
.lang-btn { font-family: var(--ft); font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 4px 9px; border: none; background: transparent; color: rgba(243,241,236,.4); cursor: pointer; border-radius: 1px; transition: all .2s; }
.lang-btn.active { background: var(--sand); color: var(--ink); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 20px; height: 1px; background: var(--offwhite); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; flex-direction: column; overflow: hidden; background: var(--ink); }
.hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center; animation: hzoom 24s ease-in-out infinite alternate; opacity: .35; }
@keyframes hzoom { from { transform: scale(1.03); } to { transform: scale(1.1); } }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(12,12,16,.88) 0%, rgba(15,22,34,.6) 55%, rgba(12,12,16,.5) 100%); }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(to top, rgba(12,12,16,1) 0%, transparent 100%); }
.hero-body { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 56px 90px; max-width: 900px; }
.hero-kicker { font-family: var(--ft); font-size: 9.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--sand); margin-bottom: 28px; display: flex; align-items: center; gap: 12px; animation: fadeUp .9s ease both; }
.hero-kicker-rule { width: 32px; height: 1px; background: var(--sand); flex-shrink: 0; }
.hero h1 { font-family: var(--fd); font-size: clamp(36px, 5vw, 72px); font-weight: 400; line-height: 1.08; letter-spacing: -.015em; color: var(--offwhite); margin-bottom: 26px; animation: fadeUp .9s ease .12s both; }
.hero-text { font-family: var(--fb); font-size: 15px; font-weight: 300; color: rgba(243,241,236,.58); max-width: 460px; line-height: 1.85; margin-bottom: 44px; animation: fadeUp .9s ease .24s both; }
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; animation: fadeUp .9s ease .36s both; }
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid rgba(201,168,122,.1); background: rgba(12,12,16,.7); backdrop-filter: blur(10px);
  padding: 14px 56px; display: flex; align-items: center; justify-content: space-between;
  animation: fadeUp .9s ease .48s both;
}
.hero-strip-text { font-family: var(--fg); font-size: 14px; font-style: italic; color: rgba(243,241,236,.45); }
.hero-strip-loc { font-family: var(--ft); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--sand); opacity: .65; }

/* BUTTONS */
.btn-sand { font-family: var(--ft); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 16px 34px; background: var(--sand); color: var(--ink); border: none; cursor: pointer; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 10px; }
.btn-sand:hover { background: var(--sand-dk); transform: translateY(-1px); }
.btn-sand svg { width: 12px; height: 12px; stroke: var(--ink); fill: none; stroke-width: 2; }
.btn-ghost { font-family: var(--ft); font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 15px 34px; background: transparent; color: var(--offwhite); border: 1px solid rgba(243,241,236,.22); cursor: pointer; transition: border-color .2s, transform .15s; display: inline-block; }
.btn-ghost:hover { border-color: var(--sand); transform: translateY(-1px); }
.btn-ink { font-family: var(--ft); font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 16px 34px; background: var(--ink); color: var(--offwhite); border: none; cursor: pointer; transition: background .2s; display: inline-flex; align-items: center; gap: 10px; }
.btn-ink:hover { background: var(--navy); }
.btn-ink svg { width: 12px; height: 12px; stroke: var(--offwhite); fill: none; stroke-width: 2; }

/* SECTION BASES */
.sec-light  { background: var(--offwhite); padding: 100px 56px; }
.sec-white  { background: var(--white);    padding: 100px 56px; }
.sec-stone  { background: var(--stone);    padding: 100px 56px; }
.sec-dark   { background: var(--navy);     padding: 100px 56px; }
.sec-ink    { background: var(--ink);      padding: 100px 56px; }
.rule-light { height: 1px; background: rgba(10,10,16,.08); }
.rule-dark  { height: 1px; background: rgba(201,168,122,.1); }

/* LABEL / TITLE / BODY */
.label { font-family: var(--ft); font-size: 9px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--sand); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.label::before { content: ''; width: 18px; height: 1px; background: var(--sand); flex-shrink: 0; }
.label.dk { color: var(--sand); }
.label.lt { color: var(--sand-dk); }
.h2 { font-family: var(--fd); font-size: clamp(26px, 2.8vw, 40px); font-weight: 400; line-height: 1.18; letter-spacing: -.01em; }
.h2.light { color: var(--ink); }
.h2.dark  { color: var(--offwhite); }
.btext { font-family: var(--fb); font-size: 14px; font-weight: 300; line-height: 1.85; letter-spacing: .01em; }
.btext.light { color: #4A5260; }
.btext.dark  { color: var(--steel-lt); }
.amp { font-family: var(--fg); font-size: .82em; font-style: normal; color: var(--sand); margin: 0 .06em; }
.sec-dark  .amp { color: var(--sand-lt); }
.sec-white .amp { color: var(--sand-dk); }

/* PAGE HEADER (dark photo) */
.page-hdr { position: relative; padding: 160px 56px 90px; overflow: hidden; background: var(--ink); }
.page-hdr-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .12; }
.page-hdr-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, var(--ink) 100%); }
.page-hdr-inner { position: relative; z-index: 1; max-width: 660px; }
.page-hdr h1 { font-family: var(--fd); font-size: clamp(32px, 4vw, 58px); font-weight: 400; color: var(--offwhite); line-height: 1.1; margin-bottom: 18px; }
.page-hdr p { font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--steel-lt); line-height: 1.8; }

/* INTRO SPLIT */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-img { position: relative; overflow: hidden; }
.intro-img img { width: 100%; height: 480px; object-fit: cover; filter: saturate(.85); }
.intro-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 20px; background: rgba(12,12,16,.6); font-family: var(--ft); font-size: 8.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(243,241,236,.55); }
.intro-pull { border-left: 2px solid var(--sand); padding-left: 20px; font-family: var(--fg); font-size: 16px; font-weight: 400; color: var(--ink); line-height: 1.65; }

/* WHEN GRID */
.when-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(168,132,90,.1); margin-top: 52px; }
.when-card { background: var(--white); padding: 36px 32px; border-top: 2px solid transparent; transition: border-color .25s, background .25s; }
.when-card:hover { background: var(--stone); border-top-color: var(--sand); }
.when-num { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .2em; color: var(--sand); margin-bottom: 12px; }
.when-card p { font-family: var(--fb); font-size: 13px; font-weight: 300; color: #4A5260; line-height: 1.7; }

/* POLES */
.poles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(201,168,122,.07); }
.pole { background: var(--navy-lt); padding: 52px 44px; position: relative; overflow: hidden; transition: background .3s; }
.pole:hover { background: #1a2640; }
.pole-accent { position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--sand); transition: height .45s ease; }
.pole:hover .pole-accent { height: 100%; }
.pole-idx { font-family: var(--ft); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: 20px; opacity: .8; }
.pole-title { font-family: var(--fd); font-size: 20px; font-weight: 400; color: var(--offwhite); line-height: 1.28; margin-bottom: 14px; }
.pole-body { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--steel-lt); line-height: 1.75; margin-bottom: 28px; }
.pole-badge { font-family: var(--ft); font-size: 8.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 5px 11px; border: 1px solid var(--sand); color: var(--sand); display: inline-block; }
.pole-badge.sec { border-color: rgba(152,163,174,.3); color: var(--steel-lt); }
.pole-cta { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-family: var(--ft); font-size: 9.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); cursor: pointer; transition: gap .2s; }
.pole-cta:hover { gap: 14px; }
.pole-cta::after { content: '→'; }

/* CITATION */
.citation-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.citation-orn { font-family: var(--fd); font-size: 80px; font-weight: 400; color: rgba(168,132,90,.2); line-height: .7; margin-bottom: 20px; display: block; }
.citation-text { font-family: var(--fg); font-size: clamp(20px, 2.5vw, 30px); font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 20px; }
.sec-dark  .citation-text { color: var(--offwhite); }
.citation-src { font-family: var(--ft); font-size: 9px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--sand-dk); }

/* APPROACH GRID */
.approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 60px; margin-top: 60px; }
.approach-item {}
.approach-num { font-family: var(--ft); font-size: 9px; font-weight: 700; letter-spacing: .22em; color: var(--sand-dk); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.approach-num::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--sand-dk); }
.approach-h { font-family: var(--fd); font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.approach-p { font-family: var(--fb); font-size: 13px; font-weight: 300; color: #4A5260; line-height: 1.8; }

/* METHODE */
.methode-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(168,132,90,.12); margin-top: 52px; }
.methode-step { background: var(--stone); padding: 36px 28px; }
.methode-step:nth-child(even) { background: var(--stone-dk); }
.methode-num { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .22em; color: var(--sand-dk); margin-bottom: 12px; }
.methode-step h4 { font-family: var(--fd); font-size: 15px; font-weight: 400; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
.methode-step p { font-family: var(--fb); font-size: 12px; font-weight: 300; color: #4A5260; line-height: 1.7; }

/* PHOTO BAND */
.photo-band { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 360px; overflow: hidden; }
.photo-band-item { position: relative; overflow: hidden; }
.photo-band-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.68) saturate(.7); transition: transform .9s ease, filter .5s ease; }
.photo-band-item:hover img { transform: scale(1.06); filter: brightness(.78) saturate(.85); }
.photo-band-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px 14px; background: linear-gradient(to top, rgba(12,12,16,.78) 0%, transparent 100%); }
.photo-band-caption strong { display: block; font-family: var(--ft); font-size: 8px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--sand); margin-bottom: 3px; }
.photo-band-caption span { font-family: var(--ft); font-size: 8px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,241,236,.5); }

/* CORRIDORS */
.corridors-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 60px; }
.corridors-connector { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 32px 0; font-family: var(--ft); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); opacity: .5; }
.corridors-connector::before, .corridors-connector::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,122,.15); }
.corridors-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(201,168,122,.07); border: 1px solid rgba(201,168,122,.07); }
.corridor-card { background: var(--navy-lt); padding: 40px 28px; transition: background .25s; }
.corridor-card:hover { background: #1a2640; }
.corridor-card.hub { border-top: 2px solid var(--sand); background: var(--charcoal); }
.corridor-city { font-family: var(--fd); font-size: 18px; font-weight: 400; color: var(--offwhite); margin-bottom: 8px; }
.corridor-role { font-family: var(--ft); font-size: 8.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; }
.corridor-desc { font-family: var(--fb); font-size: 12px; font-weight: 300; color: var(--steel-lt); line-height: 1.65; }
.corridor-hq-tag { float: right; font-family: var(--ft); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); border: 1px solid rgba(201,168,122,.3); padding: 3px 8px; }

/* MARKET DATA */
.market-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(168,132,90,.15); border: 1px solid rgba(168,132,90,.15); }
.market-cell { background: var(--stone); padding: 44px 36px; }
.market-cell.white-bg { background: var(--white); }
.market-fig { font-family: var(--ft); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 12px; letter-spacing: -.02em; }
.market-cell h4 { font-family: var(--ft); font-size: 11px; font-weight: 600; letter-spacing: .05em; color: var(--ink); margin-bottom: 8px; }
.market-cell p { font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: #4A5260; line-height: 1.65; }
.market-src { font-family: var(--ft); font-size: 8.5px; letter-spacing: .1em; color: var(--steel); margin-top: 10px; }

/* AVANTAGES */
.avantages { display: grid; grid-template-columns: 1fr 1fr; }
.av-img { position: relative; overflow: hidden; min-height: 540px; }
.av-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.58) saturate(.65); }
.av-img-ov { position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--ink) 100%); }
.av-body { background: var(--ink); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.av-item { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(201,168,122,.08); }
.av-item:first-of-type { padding-top: 0; }
.av-item:last-of-type { border-bottom: none; }
.av-num { font-family: var(--fd); font-size: 32px; font-weight: 400; color: rgba(201,168,122,.18); line-height: 1; margin-top: 3px; }
.av-h { font-family: var(--ft); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--offwhite); margin-bottom: 7px; }
.av-p { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--steel-lt); line-height: 1.75; }

/* CONFIDENTIALITE */
.confid-block { background: var(--navy); padding: 52px 56px; display: flex; align-items: flex-start; gap: 40px; }
.confid-icon { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid rgba(201,168,122,.25); display: flex; align-items: center; justify-content: center; margin-top: 4px; }
.confid-icon svg { width: 16px; height: 16px; stroke: var(--sand); fill: none; stroke-width: 1.5; }
.confid-lbl { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: 10px; }
.confid-text { font-family: var(--fg); font-size: 15px; font-style: italic; color: var(--steel-lt); line-height: 1.65; max-width: 680px; }

/* CONTACT STRIP */
.cta-strip { background: var(--charcoal); padding: 80px 56px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-strip h2 { font-family: var(--fd); font-size: clamp(22px, 2.5vw, 34px); font-weight: 400; color: var(--offwhite); max-width: 540px; line-height: 1.3; }
.cta-strip-sub { font-family: var(--fb); font-size: 13.5px; font-weight: 300; color: var(--steel-lt); margin-top: 12px; max-width: 460px; line-height: 1.75; }

/* VM BLOCKS */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(168,132,90,.12); }
.vm-block { padding: 60px 50px; }
.vm-block.lt { background: var(--stone); }
.vm-block.dk { background: var(--navy); }
.vm-lbl { font-family: var(--ft); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 9px; }
.vm-block.lt .vm-lbl { color: var(--sand-dk); }
.vm-block.dk .vm-lbl { color: var(--sand); }
.vm-lbl::before { content: ''; width: 16px; height: 1px; background: currentColor; }
.vm-block blockquote { font-family: var(--fg); font-size: 17px; font-style: italic; line-height: 1.65; }
.vm-block.lt blockquote { color: var(--ink); }
.vm-block.dk blockquote { color: var(--offwhite); }

/* LEGAL GRID */
.legal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(168,132,90,.12); }
.legal-cell { background: var(--white); padding: 30px 28px; }
.legal-cell dt { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sand-dk); margin-bottom: 7px; }
.legal-cell dd { font-family: var(--fb); font-size: 13px; color: var(--ink); }

/* SERVICES PAGE */
.svc-logic-wrap { background: var(--stone); padding: 72px 56px; }
.svc-logic-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(168,132,90,.12); margin-top: 44px; }
.svc-logic-step { background: var(--stone); padding: 32px 28px; }
.svc-logic-step:nth-child(even) { background: var(--stone-dk); }
.svc-logic-num { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-dk); margin-bottom: 12px; }
.svc-logic-step h4 { font-family: var(--fd); font-size: 16px; font-weight: 400; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
.svc-logic-step p { font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: #4A5260; line-height: 1.7; }

.svc-cards-section { background: var(--offwhite); padding: 80px 56px; }
.svc-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(168,132,90,.1); margin-top: 52px; }
.svc-card { background: var(--white); padding: 52px 44px; transition: background .25s; }
.svc-card:hover { background: #FAFAF8; }
.svc-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; gap: 12px; }
.svc-card-num { font-family: var(--ft); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); flex-shrink: 0; }
.svc-card-badge { font-family: var(--ft); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--sand); color: var(--sand); white-space: nowrap; }
.svc-card-badge.sec { border-color: rgba(106,114,128,.3); color: var(--steel); }
.svc-card-title { font-family: var(--fd); font-size: 21px; font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 14px; }
.svc-card-desc { font-family: var(--fb); font-size: 13.5px; font-weight: 300; color: #4A5260; line-height: 1.8; margin-bottom: 28px; border-bottom: 1px solid rgba(168,132,90,.12); padding-bottom: 28px; }
.svc-card-sublabel { font-family: var(--ft); font-size: 8px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sand-dk); margin-bottom: 10px; }
.svc-card-list { list-style: none; margin-bottom: 22px; }
.svc-card-list li { font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: #4A5260; padding: 7px 0; border-bottom: 1px solid rgba(10,10,16,.05); display: flex; gap: 10px; line-height: 1.5; }
.svc-card-list li::before { content: '–'; color: var(--sand-dk); flex-shrink: 0; }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-card-tag { font-family: var(--ft); font-size: 8.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; background: rgba(168,132,90,.06); border: 1px solid rgba(168,132,90,.15); color: #5A6270; }
.svc-card-tag.line { background: transparent; border-color: rgba(10,10,16,.12); color: var(--steel); }

.pour-qui-section { background: var(--navy); padding: 80px 56px; }
.pour-qui-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,122,.07); margin-top: 52px; }
.pour-qui-card { background: var(--navy-lt); padding: 36px 30px; }
.pour-qui-card h4 { font-family: var(--fd); font-size: 17px; font-weight: 400; color: var(--offwhite); margin-bottom: 10px; line-height: 1.3; }
.pour-qui-card p { font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: var(--steel-lt); line-height: 1.7; }

/* TEAM PAGE */
.team-section { background: var(--offwhite); padding: 80px 56px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(168,132,90,.1); margin-top: 60px; }
.team-card { background: var(--white); padding: 48px 36px; display: flex; flex-direction: column; transition: background .25s; }
.team-card:hover:not(.placeholder) { background: #FAFAF8; }
.team-card.featured { background: var(--navy); }
.team-card.featured:hover { background: #131d2b; }
.team-card.placeholder { background: var(--stone); opacity: .65; }
.team-avatar { width: 72px; height: 72px; margin-bottom: 24px; }
.team-avatar-box { width: 72px; height: 72px; border: 1.5px solid var(--sand); display: flex; align-items: center; justify-content: center; position: relative; }
.team-avatar-box::after { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(201,168,122,.22); }
.team-avatar-box span { font-family: var(--fd); font-size: 18px; font-weight: 500; color: var(--sand); position: relative; z-index: 1; }
.team-avatar-empty { width: 72px; height: 72px; border: 1px dashed rgba(168,132,90,.3); display: flex; align-items: center; justify-content: center; }
.team-avatar-empty svg { width: 22px; height: 22px; stroke: rgba(168,132,90,.35); fill: none; stroke-width: 1.5; }
.team-role { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; }
.team-card.featured .team-role { color: var(--sand); }
.team-card:not(.featured):not(.placeholder) .team-role { color: var(--sand-dk); }
.team-card.placeholder .team-role { color: var(--steel); }
.team-name { font-family: var(--fd); font-size: 20px; font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.team-card.featured .team-name { color: var(--offwhite); }
.team-card:not(.featured):not(.placeholder) .team-name { color: var(--ink); }
.team-card.placeholder .team-name { color: var(--steel); font-style: italic; }
.team-bio { font-family: var(--fb); font-size: 13px; font-weight: 300; line-height: 1.75; flex: 1; }
.team-card.featured .team-bio { color: var(--steel-lt); }
.team-card:not(.featured):not(.placeholder) .team-bio { color: #4A5260; }
.team-card.placeholder .team-bio { color: var(--steel); }
.team-sep { height: 1px; margin: 20px 0; }
.team-card.featured .team-sep { background: rgba(201,168,122,.15); }
.team-card:not(.featured):not(.placeholder) .team-sep { background: rgba(10,10,16,.08); }
.team-detail { font-family: var(--ft); font-size: 9px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; line-height: 1.8; }
.team-card.featured .team-detail { color: rgba(201,168,122,.5); }
.team-card:not(.featured):not(.placeholder) .team-detail { color: var(--steel); }
.team-detail::before { content: '—'; color: var(--sand); font-size: 10px; }
.team-values-section { background: var(--ink); padding: 80px 56px; }
.team-values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(201,168,122,.07); margin-top: 52px; }
.team-value { background: var(--navy-lt); padding: 36px 28px; }
.team-value-num { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .2em; color: var(--sand); margin-bottom: 12px; }
.team-value h4 { font-family: var(--fd); font-size: 17px; font-weight: 400; color: var(--offwhite); margin-bottom: 10px; }
.team-value p { font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: var(--steel-lt); line-height: 1.7; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.contact-panel-left { background: var(--navy); padding: 160px 56px 80px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.contact-panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .08; }
.contact-panel-left > * { position: relative; z-index: 1; }
.contact-panel-left h1 { font-family: var(--fd); font-size: clamp(28px, 3.5vw, 48px); font-weight: 400; color: var(--offwhite); line-height: 1.15; margin-bottom: 20px; }
.contact-intro { font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--steel-lt); line-height: 1.85; margin-bottom: 52px; max-width: 420px; }
.c-line { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(201,168,122,.08); }
.c-icon { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid rgba(201,168,122,.2); display: flex; align-items: center; justify-content: center; }
.c-icon svg { width: 13px; height: 13px; stroke: var(--sand); fill: none; stroke-width: 1.5; }
.c-lbl { font-family: var(--ft); font-size: 8.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); margin-bottom: 3px; }
.c-val { font-family: var(--fb); font-size: 13.5px; color: var(--offwhite); }
.c-val a { color: var(--offwhite); transition: color .2s; }
.c-val a:hover { color: var(--sand); }

.contact-panel-right { background: var(--offwhite); padding: 160px 56px 80px; }
.form-head { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-dk); margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid rgba(168,132,90,.2); display: flex; align-items: center; gap: 9px; }
.form-head::before { content: ''; width: 14px; height: 1px; background: var(--sand-dk); }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-family: var(--ft); font-size: 8.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--white); border: 1px solid rgba(10,10,16,.12); padding: 12px 14px; font-family: var(--fb); font-size: 13px; color: var(--ink); outline: none; transition: border-color .2s; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--sand-dk); }
.fg input::placeholder, .fg textarea::placeholder { color: #A8AEB6; }
.fg select option { background: var(--white); color: var(--ink); }
.fg textarea { resize: vertical; min-height: 110px; }
.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-note { font-family: var(--fb); font-size: 11px; font-weight: 300; color: var(--steel); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 56px 16px; }
.form-success.show { display: block; }
.suc-icon { width: 50px; height: 50px; border: 1.5px solid var(--sand-dk); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.suc-icon svg { width: 18px; height: 18px; stroke: var(--sand-dk); fill: none; stroke-width: 2; }
.form-success h3 { font-family: var(--fd); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--steel); }

/* FOOTER */
footer { background: var(--ink); padding: 70px 56px 38px; border-top: 1px solid rgba(201,168,122,.1); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 72px; margin-bottom: 52px; }
.footer-desc { font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: var(--steel); line-height: 1.75; margin-top: 18px; max-width: 290px; }
.footer-col h5 { font-family: var(--ft); font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,122,.1); }
.footer-col a, .footer-col p { display: block; font-family: var(--fb); font-size: 12.5px; font-weight: 300; color: var(--steel-lt); line-height: 2.3; transition: color .2s; }
.footer-col a:hover { color: var(--offwhite); }
.footer-btm { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(201,168,122,.06); }
.footer-copy { font-family: var(--ft); font-size: 9.5px; letter-spacing: .07em; color: #3E4552; }
.footer-tag { font-family: var(--fg); font-size: 13px; font-style: italic; color: var(--sand); opacity: .6; }

/* SCROLL ANIMATIONS */
.aos { opacity: 0; transform: translateY(20px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.aos.aos-left  { transform: translateX(-20px); }
.aos.aos-right { transform: translateX(20px); }
.aos.in { opacity: 1; transform: translate(0,0) !important; }
.aos.d1 { transition-delay: .08s; } .aos.d2 { transition-delay: .16s; }
.aos.d3 { transition-delay: .24s; } .aos.d4 { transition-delay: .32s; }
.aos.d5 { transition-delay: .40s; } .aos.d6 { transition-delay: .48s; }

/* ANIMATION */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* RESPONSIVE */
@media(max-width:980px){
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(12,12,16,.98); padding: 28px 20px; gap: 22px; border-bottom: 1px solid rgba(201,168,122,.1); z-index: 299; }
  .hamburger { display: flex; }
  .hero-body { padding: 0 20px 90px; }
  .hero-strip { padding: 14px 20px; flex-direction: column; gap: 6px; align-items: flex-start; }
  .sec-light,.sec-white,.sec-stone,.sec-dark,.sec-ink { padding: 60px 20px; }
  .intro-split,.corridors-intro,.avantages,.vm-grid,.contact-layout { grid-template-columns: 1fr; }
  .intro-img img { height: 260px; }
  .av-img { min-height: 220px; }
  .av-body { padding: 56px 20px; }
  .poles-grid,.when-grid,.corridors-grid,.market-strip,.approach-grid { grid-template-columns: 1fr; }
  .methode-grid,.svc-logic-grid,.svc-cards-grid,.pour-qui-grid { grid-template-columns: 1fr; }
  .team-grid,.team-values-grid,.legal-grid { grid-template-columns: 1fr; }
  .confid-block { padding: 40px 20px; flex-direction: column; gap: 20px; }
  .cta-strip { grid-template-columns: 1fr; padding: 56px 20px; }
  .contact-panel-left,.contact-panel-right { padding: 100px 20px 60px; }
  .f-row2 { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-band-item { height: 200px; }
  .svc-logic-wrap,.svc-cards-section,.pour-qui-section,.team-section,.team-values-section { padding: 60px 20px; }
  .page-hdr { padding: 120px 20px 60px; }
  footer { padding: 48px 20px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-btm { flex-direction: column; gap: 10px; text-align: center; }
}
