/* ============ TOKENS ============ */
:root{
  --navy: #14213D;
  --navy-soft: #1E325C;
  --bg: #F6F2EF;
  --paper: #F6F2EF;
  --surface: #FFFFFF;
  --bronze: #3D6FE0;
  --bronze-soft: #9AB6F5;
  --harbor: #B0C0CC;
  --santorini: #D9DFE3;
  --ink: #14213D;
  --ink-muted: #55638A;
  --line: rgba(20,33,61,0.12);
  --line-strong: rgba(20,33,61,0.22);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

html[data-theme="dark"]{
  --bg: #14213D;
  --paper: #14213D;
  --surface: #1B2C4F;
  --ink: #FFFFFF;
  --ink-muted: #C7CEE3;
  --line: rgba(255,255,255,0.14);
  --line-strong: rgba(255,255,255,0.26);
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; overflow-y: scroll; scrollbar-gutter: stable; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before{
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--bronze);
  -webkit-mask: url('assets/invex-symbol.png') center / contain no-repeat;
  mask: url('assets/invex-symbol.png') center / contain no-repeat;
}
.eyebrow-light{ color: var(--bronze-soft); }
.eyebrow-light::before{ background: var(--bronze-soft); }

.section-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
html[data-theme="dark"] .section-title{ color: var(--ink); }
.section-title-sm{ font-size: clamp(22px, 2.6vw, 28px); }

.section-sub{
  font-size: 16px;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

/* ============ HEADER ============ */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 18px 24px 0;
  background: transparent;
}
.floating-nav{
  position: relative;
  max-width: var(--container);
  margin:0 auto;
  padding: 10px 12px 10px 22px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 20px;
  background: rgba(27,33,48,0.55);
  border: 1px solid rgba(251,249,245,0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled .floating-nav{
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-color: var(--line-strong);
}
.header-actions{ display:flex; align-items:center; gap: 10px; }
.brand{ display:flex; align-items:center; position: relative; }
.brand-logo{
  height: 22px;
  width: auto;
  transition: opacity .2s ease;
}
.brand-logo-dark{ position: absolute; opacity: 0; }
.brand-logo-light{ position: relative; opacity: 1; }
.site-header.scrolled .brand-logo-dark{ opacity: 1; position: relative; }
.site-header.scrolled .brand-logo-light{ opacity: 0; position: absolute; }
html[data-theme="dark"] .site-header.scrolled .brand-logo-dark{ opacity: 0; position: absolute; }
html[data-theme="dark"] .site-header.scrolled .brand-logo-light{ opacity: 1; position: relative; }
.brand-logo-footer{ height: 24px; }
.main-nav{ display:flex; align-items:center; gap: 30px; margin-left: auto; }
.main-nav a{ font-size: 14px; color: rgba(251,249,245,0.78); transition: color .2s ease; }
.main-nav a:hover{ color: #FBF9F5; }
.site-header.scrolled .main-nav a{ color: var(--ink-muted); }
.site-header.scrolled .main-nav a:hover{ color: var(--ink); }
.nav-cta{
  padding: 10px 22px;
  border: none;
  background: var(--bronze);
  border-radius: var(--radius-pill);
  color: #FBF9F5 !important;
  font-weight: 500;
}
.nav-cta:hover{ background: var(--bronze-soft); }
.site-header.scrolled .nav-cta{ background: var(--navy); color: #FBF9F5 !important; }
html[data-theme="dark"] .site-header.scrolled .nav-cta{ background: var(--bronze); color: #FBF9F5 !important; }
.site-header.scrolled .nav-cta:hover{ opacity: 0.88; }
.nav-toggle{ display:none; }
.nav-toggle span{ background: rgba(251,249,245,0.9); }
.site-header.scrolled .nav-toggle span{ background: var(--ink); }

.theme-toggle{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251,249,245,0.3);
  background: rgba(251,249,245,0.08);
  cursor: pointer;
  display: flex; align-items:center; justify-content:center;
  margin-left: 12px;
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}
.site-header.scrolled .theme-toggle{
  border-color: var(--line-strong);
  background: var(--surface);
}
.theme-icon{
  position: absolute;
  font-size: 15px;
  color: #FBF9F5;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.site-header.scrolled .theme-icon{ color: var(--ink); }
.theme-icon-moon{ opacity: 0; transform: scale(0.6); }
html[data-theme="dark"] .theme-icon-sun{ opacity: 0; transform: scale(0.6); }
html[data-theme="dark"] .theme-icon-moon{ opacity: 1; transform: scale(1); }

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 88vh;
  display:flex; align-items:center;
  padding: 150px 40px 70px;
  overflow:hidden;
}
.hero-dark{
  background: #0B1526;
}
.hero-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-tint{
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(11,21,38,0.85) 0%, rgba(11,21,38,0.35) 45%, rgba(20,33,61,0.55) 100%),
    linear-gradient(100deg, rgba(20,33,61,0.7) 0%, rgba(61,111,224,0.25) 60%, rgba(20,33,61,0.5) 100%);
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
  .hero-dark{ background: radial-gradient(120% 100% at 75% 20%, #1E325C 0%, #14213D 45%, #0B1526 100%); }
}
.hero-overlay{
  position: absolute; inset:0;
  background: linear-gradient(0deg, rgba(11,18,32,0.4) 0%, rgba(11,18,32,0.05) 55%, rgba(11,18,32,0.1) 100%);
}
.hero-content{
  position: relative; z-index: 2;
  max-width: 640px;
}
.hero-badge{
  display:inline-block;
  font-size: 12.5px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(251,249,245,0.1);
  border: 1px solid rgba(251,249,245,0.18);
  color: var(--bronze-soft);
  margin-bottom: 22px;
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: rgba(251,249,245,0.7);
  margin-bottom: 20px;
  max-width: 560px;
}
.hero h1 em{
  font-style: normal;
  font-weight: 600;
  color: #FBF9F5;
}
.hero-lede{
  font-size: 17px;
  line-height: 1.6;
  color: #FBF9F5;
  margin-bottom: 32px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 28px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
  border: 1px solid transparent;
}
.btn-primary{ background: var(--bronze); color: #FBF9F5; }
.btn-primary:hover{ background: var(--bronze-soft); }

/* ============ STATS ============ */
.stats{ background: var(--navy); padding: 64px 0; }
.stats-grid{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.stat-pill{
  display:flex; flex-direction: column;
  flex: 1;
  padding: 0 32px;
  border-left: 1px solid rgba(251,249,245,0.14);
}
.stat-pill:first-child{ border-left: none; padding-left: 0; }
.stat-pill:last-child{ padding-right: 0; }
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #FBF9F5;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-suffix{ color: var(--bronze); }
.stat-label{
  font-size: 12.5px;
  color: var(--bronze-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

/* ============ PLATFORMS ============ */
.platforms{ padding: 30px 0 100px; background: var(--paper); }
.platforms .section-inner:first-child{ margin-bottom: 46px; }
.platform-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.platform-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.platform-card:hover{ transform: translateY(-4px); }
.platform-media{
  position: relative;
  height: 168px;
  overflow: hidden;
  background: var(--navy);
  display: block;
  cursor: pointer;
}
.platform-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.15) brightness(0.8) saturate(1.1);
  transition: transform .5s ease;
}
.platform-card:hover .platform-media img{ transform: scale(1.06); }
.media-tint{
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,33,61,0.75) 0%, rgba(61,111,224,0.4) 100%);
  mix-blend-mode: multiply;
}
.media-tint::after{
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,33,61,0.55) 0%, rgba(20,33,61,0) 55%);
}
.platform-body{ padding: 22px; }
.platform-body h3{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.platform-body h3 a{ color: inherit; text-decoration: none; transition: color .2s ease; }
.platform-body h3 a:hover{ color: var(--bronze); }
html[data-theme="dark"] .platform-body h3{ color: var(--ink); }
.platform-tag{
  display:block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bronze);
  margin-bottom: 12px;
}
.platform-body p{
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.link-more{ font-size: 13.5px; font-weight: 500; color: var(--navy); }
html[data-theme="dark"] .link-more{ color: var(--bronze-soft); }

/* ============ TEXT REVEAL ============ */
.text-reveal{ padding: 90px 0; background: var(--paper); }
.text-reveal-inner{
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.text-reveal-left .text-reveal-inner{
  display: block;
  align-items: initial;
  text-align: left;
}
.text-reveal-eyebrow{ margin-bottom: 18px; }
.text-reveal-line{
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-muted);
  max-width: 760px;
  opacity: 0.35;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease, color 1s ease;
}
.text-reveal-line.is-visible{
  color: var(--ink);
  opacity: 1;
  transform: translateY(0);
}

/* ============ COMPANIES ============ */
.page-hero{ padding: 160px 0 60px; background: var(--paper); }
.page-hero-title{ margin-top: 6px; }
.companies-page{ padding-top: 0; }
.companies{ padding: 10px 0 80px; background: var(--paper); }

/* Platform detail pages */
.platform-detail{ padding: 60px 0; background: var(--paper); }
.platform-detail-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.platform-detail-reverse .platform-detail-media{ order: 2; }
.platform-detail-reverse .platform-detail-content{ order: 1; }
.platform-detail-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.platform-detail-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.15) brightness(0.8) saturate(1.1);
}
.platform-detail-content .eyebrow{ margin-bottom: 10px; }
.platform-detail-content .section-title{ margin-bottom: 18px; }
.platform-detail-lead{
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.platform-detail-sub{
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-list{ margin-top: 8px; }
.feature-item{
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.feature-item:last-child{ padding-bottom: 0; }
.feature-item-head{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.feature-item-head h3{
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}
.feature-arrow{
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--ink-muted);
}
.feature-item p{
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 8px;
}

.companies .section-inner:first-child{ margin-bottom: 24px; }
.company-table{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.company-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.company-row:last-child{ border-bottom: none; }
.company-platform{
  display:flex; align-items:center; gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  padding-top: 6px;
  text-decoration: none;
  transition: color .2s ease;
}
.company-platform:hover{ color: var(--bronze); }
html[data-theme="dark"] .company-platform{ color: var(--ink); }
html[data-theme="dark"] .company-platform:hover{ color: var(--bronze); }
.company-names{ display:flex; flex-wrap: wrap; gap: 8px 10px; }
.company-names a{
  font-size: 13px;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
}
.company-names a:hover{
  color: var(--bronze);
  border-color: var(--bronze);
  transform: translateY(-1px);
}
.company-view-all{ display:inline-block; margin-top: 22px; }

.company-filters{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.filter-chip{
  display:flex; align-items:center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s ease;
}
.filter-chip:hover{ border-color: var(--line-strong); color: var(--ink); }
.filter-chip.is-active{
  background: var(--navy);
  border-color: var(--navy);
  color: #FBF9F5;
}
html[data-theme="dark"] .filter-chip.is-active{ background: var(--bronze); border-color: var(--bronze); }

.company-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.company-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.company-card:hover{ transform: translateY(-2px); border-color: var(--line-strong); }
.company-card.is-hidden{ display: none; }
.company-card .cp-dot{ margin-bottom: 14px; }
.company-name{
  display:block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.company-cat{
  display:block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bronze);
  margin-bottom: 10px;
}
.company-desc{
  display:block;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.cp-dot{ width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; display:inline-block; }
.cp-dot-pangea{ background: #454E62; }
.cp-dot-astoria{ background: #B0C0CC; }
.cp-dot-digital{ background: #6E7686; }
.cp-dot-capital{ background: #8EA39D; }
.cp-dot-eurosky{ background: #3D6FE0; }

.company-grid-compact{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.company-chip{
  display:flex; align-items:center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 15px 18px;
  transition: transform .2s ease, border-color .2s ease;
  width: 100%;
  box-sizing: border-box;
}
.company-chip:hover{ transform: translateY(-2px); border-color: var(--line-strong); }
.company-chip.is-hidden{ display: none; }
.company-chip .cp-dot{ flex-shrink: 0; }
.company-chip .company-name{
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ ABOUT ============ */
.about{ padding: 130px 0 110px; background: var(--paper); }
.about-fade-image{
  position: relative;
  padding-bottom: 260px;
  background:
    linear-gradient(to bottom, var(--paper) 0%, var(--paper) 55%, rgba(20,33,61,0.35) 100%),
    url("assets/photos/fjord-farm.jpg") center bottom / cover no-repeat;
}
html[data-theme="dark"] .about-fade-image{
  background:
    linear-gradient(to bottom, var(--paper) 0%, var(--paper) 55%, rgba(11,18,32,0.55) 100%),
    url("assets/photos/fjord-farm.jpg") center bottom / cover no-repeat;
}
.about-grid{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
.about-label{ padding-top: 4px; }
.about-content p{
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 24px;
  max-width: 620px;
}
.about-lead{
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
}
html[data-theme="dark"] .about-lead{ color: var(--ink); }
.about-bg{
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-bg-img{
  position: absolute; top: -8%; left: 0;
  width: 100%; height: 116%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.1) brightness(0.75) saturate(1.05);
  z-index: 0;
  will-change: transform;
}
.about-bg-tint{
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,33,61,0.88) 0%, rgba(20,33,61,0.55) 55%, rgba(20,33,61,0.3) 100%);
  z-index: 1;
}
.about-bg-content{
  position: relative; z-index: 2;
}
.about-bg-content p{
  font-size: 16.5px; line-height: 1.75; color: rgba(251,249,245,0.75);
  margin-bottom: 20px; max-width: 560px;
}
.about-bg-content .about-lead{
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
  color: #FBF9F5;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 560px;
}
/* ============ TEAM ============ */
.team{ padding: 40px 0 110px; background: var(--paper); }
.team .section-inner:first-child{ margin-bottom: 44px; }
.team-grid{ display:grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
.team-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.team-card.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.team-photo{
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
  overflow: hidden;
}
.team-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.08) brightness(1.02) saturate(0.9);
  transition: transform .4s ease;
}
.team-card:hover .team-photo img{ transform: scale(1.04); }
.team-initial{
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--bronze);
}
.team-card h3{
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--navy); margin-bottom: 4px;
}
html[data-theme="dark"] .team-card h3{ color: var(--ink); }
.team-role{ display:block; font-size: 12px; color: var(--ink-muted); margin-bottom: 12px; }
.team-card p{ font-size: 13px; line-height: 1.6; color: var(--ink-muted); }

/* ============ CONTACT ============ */
.contact{ padding: 120px 0; background: var(--navy); text-align:center; }
.contact-inner{ display:flex; flex-direction:column; align-items:center; }
.contact .eyebrow{ color: var(--bronze-soft); }
.contact .section-title{ color: #FBF9F5; }
.contact .section-sub{ color: rgba(251,249,245,0.65); margin-left:auto; margin-right:auto; }

/* ============ FOOTER ============ */
.site-footer{ background: var(--navy); color: rgba(251,249,245,0.75); padding-top: 56px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,249,245,0.12);
}
.brand-footer{ color: #FBF9F5; margin-bottom: 12px; display:block; }
.footer-brand{ display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .brand-logo-footer{ margin-bottom: 18px; }
.footer-brand p{ font-size: 13.5px; line-height: 1.6; max-width: 320px; color: rgba(251,249,245,0.8); }
.footer-contact-btn{ margin-top: 28px; }
.footer-links{ display:flex; flex-direction:column; gap: 10px; }
.footer-heading{ font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(251,249,245,0.55); margin-bottom: 4px; }
.footer-links a, .footer-links span{ font-size: 13.5px; color: rgba(251,249,245,0.8); }
.footer-address{ line-height: 1.6; margin-bottom: 4px; display: block; }
.footer-address strong{ color: #FBF9F5; font-weight: 500; }
.footer-links a:hover{ color: #FBF9F5; }
.footer-bottom{ padding: 20px 40px; font-size: 12.5px; font-family: var(--font-mono); color: rgba(251,249,245,0.6); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .platform-detail-grid{ grid-template-columns: 1fr; gap: 28px; }
  .platform-detail-reverse .platform-detail-media{ order: 1; }
  .platform-detail-reverse .platform-detail-content{ order: 2; }
  .platform-detail-media{ aspect-ratio: 16/10; }
  .stats-grid{ flex-wrap: wrap; gap: 24px 0; }
  .stat-pill{ flex: 0 0 50%; border-left: none; padding-left: 0; }
  .main-nav{ display:none; }
  .main-nav.mobile-open{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%; left: 16px; right: 16px;
    margin-left: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-top: 10px;
  }
  .main-nav.mobile-open a{ color: var(--ink); padding: 10px 0; width: 100%; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px;
    background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{ width:22px; height:2px; background:var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .about-grid{ grid-template-columns: 1fr; gap:20px; }
  .about-bg{ padding: 80px 0; }
  .platform-grid{ grid-template-columns: 1fr 1fr; }
  .team-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .company-grid{ grid-template-columns: 1fr 1fr; }
  .company-grid-compact{ grid-template-columns: 1fr 1fr; }
  .company-row{ grid-template-columns: 1fr; gap: 10px; padding: 20px 22px; }
  .company-platform{ padding-top: 0; }
  .footer-grid{ grid-template-columns: 1fr; gap: 26px; padding-bottom: 32px; }
  .hero h1{ font-size: 38px; }
  .section-inner{ padding: 0 22px; }
  .header-inner{ padding: 16px 22px; }
  .hero{ padding: 120px 22px 50px; }
}

/* ============ PLATFORM EXPLORER ============ */
.platform-explorer{ padding: 20px 0 120px; background: var(--paper); }
.platform-tabs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.platform-tab{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px 28px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.platform-tab:hover{ transform: translateY(-2px); }
.platform-tab.is-active{
  border-color: var(--bronze);
  box-shadow: 0 0 0 1px var(--bronze);
}
.platform-tab-name{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.platform-tab-tag{
  font-size: 13.5px;
  color: var(--ink-muted);
}
.platform-tab .cp-dot{ margin-bottom: 4px; }

.explorer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 60px;
}
.explorer-hint{
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 18px;
  font-family: var(--font-mono);
}
.company-chip-clickable{
  cursor: pointer;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  text-align: left;
  width: 100%;
}
.company-chip-clickable:hover{ border-color: var(--bronze); }

/* Company detail panel — slides up from bottom */
.company-panel-backdrop{
  position: fixed; inset: 0;
  background: rgba(11,18,32,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  z-index: 200;
}
.company-panel-backdrop.is-open{ opacity: 1; pointer-events: auto; }

.company-panel{
  position: fixed;
  left: 50%; top: 5vh;
  transform: translate(-50%, 40px);
  opacity: 0;
  width: min(940px, 96vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0;
  z-index: 201;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  pointer-events: none;
}
.company-panel.is-open{
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.company-panel-banner{
  display: none;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.company-panel-banner.has-image{ display: block; }
.company-panel-body{ padding: 56px 64px 72px; }
.company-panel-banner.has-image ~ .company-panel-body{ padding-top: 40px; }
.company-panel-logo{
  display: none;
  height: 32px;
  width: auto;
  margin-bottom: 20px;
}
.company-panel-logo.has-logo{ display: block; }
html[data-theme="dark"] .company-panel-logo{ filter: invert(1) brightness(1.8); }
.company-panel-logo.logo-light{ filter: invert(1) brightness(1.8); }
html[data-theme="dark"] .company-panel-logo.logo-light{ filter: none; }
body.panel-open{ overflow: hidden; }

.company-panel-close{
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
}
.company-panel .cp-dot{ width: 10px; height: 10px; margin-bottom: 14px; }
.company-panel-cat{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bronze);
  margin-bottom: 8px;
}
.company-panel-name{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.company-panel-desc{
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.company-panel-nolink{
  font-size: 13.5px;
  color: var(--ink-muted);
  font-style: italic;
}

@media (max-width: 900px){
  .platform-tabs{ grid-template-columns: 1fr 1fr; }
  .explorer-grid{ grid-template-columns: 1fr; max-width: 100%; }
  .company-chip .company-name{ white-space: normal; overflow-wrap: break-word; word-break: break-word; text-overflow: clip; line-height: 1.3; }
  .company-chip-tagline{ white-space: normal; overflow-wrap: break-word; word-break: break-word; text-overflow: clip; line-height: 1.4; }
  .company-chip{ align-items: flex-start; max-width: 100%; overflow: hidden; }
  .company-chip-text{ max-width: 100%; overflow: hidden; }
  .company-panel{ width: 96vw; top: 3vh; max-height: 92vh; }
  .company-panel-name{ font-size: 21px; }
  .company-panel-tagline{ font-size: 13px; margin-bottom: 16px; }
  .company-panel-desc{ font-size: 13px; line-height: 1.55; }
  .company-panel-facts{ padding: 16px 0; margin-bottom: 20px; gap: 10px; }
  .fact-label{ font-size: 10.5px; }
  .fact-value{ font-size: 12.5px; }
  .company-panel-cat{ font-size: 11px; }
  .company-panel-close{ top: 14px; right: 14px; width: 34px; height: 34px; }
  .company-panel-banner{ height: 180px; }
  .company-panel-body{ padding: 24px 20px 8px !important; }
}

/* Platform tab thumbnails */
.platform-tab-thumb{
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.platform-tab-thumb img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.1) brightness(0.85) saturate(0.9);
}
.platform-tab.is-active .platform-tab-thumb img{
  filter: grayscale(0.15) contrast(1.1) brightness(0.95) saturate(1.05);
}

/* Company chip with tagline */
.company-chip-text{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.company-chip-tagline{
  font-size: 11.5px;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Expanded company panel */
.company-panel-name{
  font-size: 44px;
  margin-bottom: 10px;
}
.company-panel-cat{ font-size: 14px; }
.company-panel-tagline{
  font-size: 20px;
  color: var(--ink-muted);
  margin-bottom: 36px;
}
.company-panel-facts{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.fact-row{ display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fact-label{
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.fact-value{
  font-size: 17px;
  color: var(--ink);
  text-align: right;
}
.fact-link{ color: var(--bronze); }
.fact-link:hover{ text-decoration: underline; }
.company-panel-desc{ font-size: 18px; line-height: 1.75; }
.company-panel-close{
  width: 40px; height: 40px;
  font-size: 16px;
  top: 24px; right: 24px;
}

/* ============ ABOUT HERO (video) ============ */
.about-hero{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}
.about-hero-content{
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-align: left;
  margin-right: auto;
}
.about-hero-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  color: #FBF9F5;
  letter-spacing: -0.01em;
}

/* ============ MINI REEL ============ */
.mini-reel{ padding: 90px 0 30px; background: var(--paper); }
.mini-reel-card{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.mini-reel-card video{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.08) saturate(1.05);
}

@media (prefers-reduced-motion: reduce){
  .about-hero video,
  .mini-reel-card video{ display: none; }
  .about-hero{ background: linear-gradient(120deg, #1E325C, #14213D); }
  .mini-reel-card{ background: var(--navy); }
}

@media (max-width: 900px){
  .about-hero{ min-height: 34vh; padding-top: 64px; }
  .mini-reel-card{ aspect-ratio: 4/3; }
  .about{ padding: 50px 0 70px; }
  .page-hero{ padding: 110px 0 24px; }
  .platform-explorer{ padding: 0 0 80px; overflow-x: hidden; }
}

/* Case-study format: Client's Challenge / Services / Impact */
.company-panel-case{ display: none; }
.case-block{
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.case-block:first-child{ border-top: none; padding-top: 0; }
.case-block h4{
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bronze);
  margin-bottom: 8px;
}
.case-block p{
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}

@media (max-width: 900px){
  .case-block h4{ font-size: 11px; }
  .case-block p{ font-size: 13px; line-height: 1.55; }
}

/* ============ ABOUT US (short) ============ */
.about-short{ padding: 50px 0 30px; background: var(--paper); }
.about-short-grid{ max-width: 900px; }
.about-short-text{
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
}
.about-short-split{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  max-width: none;
  align-items: start;
}
.about-short-split .eyebrow{ padding-top: 4px; }
.about-short-split .about-short-text{ max-width: 640px; }

@media (max-width: 900px){
  .about-short-split{ grid-template-columns: 1fr; gap: 12px; }
}

/* ============ WHAT WE DO ============ */
.what-we-do{ padding: 40px 0 110px; background: var(--paper); }
.what-we-do-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.what-we-do-media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(61,111,224,0.35) 0%, rgba(20,33,61,0.25) 100%);
}
.what-we-do-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1) saturate(1.05);
}
.feature-grid-2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 40px;
}
.feature-grid-full{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.feature-grid-dark .feature-item{ border-top-color: rgba(251,249,245,0.18); }
.feature-grid-dark .feature-item-head h3{ color: #FBF9F5; }
.feature-grid-dark .feature-item p{ color: rgba(251,249,245,0.7); }
.feature-grid-dark .feature-arrow{ border-color: rgba(251,249,245,0.4); color: rgba(251,249,245,0.8); }
.feature-grid-2col .feature-item{ padding: 22px 0; }
.what-we-do-grid{
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 50px;
  align-items: center;
}
.section-title-compact{ font-size: clamp(24px, 2.8vw, 30px); }
.what-we-do-content .what-we-do-lead{
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 24px;
  max-width: 640px;
}
.pull-quote{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--bronze);
  padding-left: 22px;
  margin-top: 32px;
  max-width: 600px;
  font-style: normal;
}
html[data-theme="dark"] .pull-quote{ color: var(--ink); }

/* ============ ABOUT DEEP (tech background, no photo) ============ */
.about-deep{
  position: relative;
  padding: 140px 0;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-deep-bg-img{
  position: absolute; top: -8%; left: 0;
  width: 100%; height: 116%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.1) brightness(0.65) saturate(1.05);
  z-index: 0;
  will-change: transform;
}
.about-deep-tint{
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(20,33,61,0.9) 0%, rgba(61,111,224,0.4) 55%, rgba(20,33,61,0.75) 100%);
}
.about-deep-inner{
  position: relative; z-index: 2;
  display: block;
}
.about-deep-text{ max-width: 620px; }
.about-deep-title{
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.3;
  color: #FBF9F5;
  margin: 12px 0 22px;
}
.about-deep-text p{
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(251,249,245,0.75);
  margin-bottom: 20px;
}
.about-deep-text strong{ color: #FBF9F5; }
.about-deep-placeholder{
  font-family: var(--font-mono);
  font-size: 15px;
  color: rgba(251,249,245,0.55);
  font-style: italic;
}

@media (max-width: 900px){
  .what-we-do-grid{ grid-template-columns: 1fr; gap: 24px; }
  .feature-grid-2col{ grid-template-columns: 1fr; gap: 0; }
  .feature-grid-full{ grid-template-columns: 1fr; margin-top: 0; padding-top: 0; }
  .about-deep{ padding: 60px 0; }
  .platforms{ padding: 30px 0 40px; }
  .what-we-do{ padding: 0 0 60px; }
  .what-we-do-media{ aspect-ratio: 16/10; min-height: unset; }
  .about-deep-inner{ grid-template-columns: 1fr; gap: 32px; }
  .about-deep-media{ order: -1; }
  .about-short-text{ font-size: 19px; }
}

/* ============ CONTACT PAGE ============ */
.contact-email-link{ color: var(--bronze); font-weight: 500; text-decoration: underline; }
.offices{ padding: 15px 0 120px; background: var(--paper); }
.offices-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.office-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 4px;
}
.office-card h3{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  padding: 24px 24px 4px;
}
.office-address{
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  padding: 0 24px 20px;
}
.office-map{
  width: 100%;
  aspect-ratio: 4/3;
}
.office-map iframe{ display: block; filter: grayscale(0.3) contrast(1.05); }
html[data-theme="dark"] .office-map iframe{ filter: grayscale(0.5) invert(0.92) contrast(0.9) hue-rotate(180deg); }

@media (max-width: 900px){
  .offices-grid{ grid-template-columns: 1fr; }
}

/* ============ FEATURED INVESTMENTS ============ */
.featured{ padding: 140px 0 130px; background: var(--paper); }
.featured-heading-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.featured-next{
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.featured-next:hover{ background: var(--bronze); color: #FBF9F5; transform: translateX(3px); }
.featured-scroll{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 48px;
}
.featured-scroll::-webkit-scrollbar{ display: none; }
.featured-track{
  display: flex;
  gap: 20px;
  padding: 0 40px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}
.featured-track-aligned{
  padding-left: max(40px, calc((100vw - var(--container)) / 2 + 40px));
  padding-right: 40px;
  justify-content: flex-start;
  min-width: 0;
}
.featured-card{
  position: relative;
  display: block;
  width: min(420px, 80vw);
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  scroll-snap-align: center;
  flex-shrink: 0;
}
.featured-card video{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.featured-card:hover video{ transform: scale(1.06); }
.featured-tint{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,33,61,0.85) 0%, rgba(20,33,61,0.05) 55%, rgba(20,33,61,0.15) 100%);
}
.featured-play-hint{
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(251,249,245,0.15);
  border: 1.5px solid rgba(251,249,245,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #FBF9F5;
  font-size: 18px;
  opacity: 1;
  transition: opacity .3s ease;
  pointer-events: none;
}
.featured-card:hover .featured-play-hint{ opacity: 0; }
.featured-label{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px;
  display: flex; flex-direction: column;
}
.featured-name{
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #FBF9F5;
}
.featured-platform{
  font-size: 11.5px;
  color: rgba(251,249,245,0.65);
  margin-top: 2px;
}

@media (max-width: 900px){
  .featured-track{ padding: 0 22px; }
  .featured-track-aligned{ padding-left: 22px; padding-right: 22px; }
  .featured-heading-row{ align-items: flex-start; }
  .featured-next{ width: 44px; height: 44px; font-size: 15px; }
}

/* ============ LEGAL / PRIVACY PAGE ============ */
.legal-content{ padding: 20px 0 120px; background: var(--paper); }
.legal-inner{ max-width: 780px; }
.legal-notice{
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 44px;
}
.legal-inner h2{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal-inner h2:first-of-type{ margin-top: 0; }
.legal-inner p{
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.legal-inner ul{
  margin: 0 0 16px;
  padding-left: 20px;
}
.legal-inner li{
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.legal-inner a{ color: var(--bronze); }
.legal-inner strong{ color: var(--ink); }

/* ============ COOKIE BANNER ============ */
.cookie-banner{
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--navy);
  color: #FBF9F5;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  z-index: 300;
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.is-visible{ transform: translateY(0); }
.cookie-banner p{
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(251,249,245,0.8);
  margin-bottom: 16px;
}
.cookie-banner a{ color: #FBF9F5; text-decoration: underline; }
.cookie-banner-actions{ display: flex; gap: 10px; }
.cookie-banner-actions button{
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(251,249,245,0.3);
  background: transparent;
  color: #FBF9F5;
  transition: all .2s ease;
}
.cookie-banner-accept{ background: var(--bronze) !important; border-color: var(--bronze) !important; }
.cookie-banner-actions button:hover{ opacity: 0.85; }

@media (max-width: 900px){
  .cookie-banner{ left: 14px; right: 14px; bottom: 14px; padding: 18px 20px; }
}

/* ============ MAP PLACEHOLDER (click to load) ============ */
.office-map{ position: relative; }
.office-map-placeholder{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  background: var(--bg);
  cursor: pointer;
  border: none;
  width: 100%; height: 100%;
}
.office-map-placeholder-icon{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink);
}
.office-map-placeholder span{
  font-size: 12.5px;
  color: var(--ink-muted);
  max-width: 220px;
  text-align: center;
  line-height: 1.5;
}
