/* =========================================================
   Usluel Group — design tokens & base
   Brand color sampled from official logo: #002060 (navy)
   ========================================================= */
:root {
  /* Ink scale */
  --ink:        #0E1116;
  --ink-2:      #1A1F26;
  --ink-3:      #2A3038;
  --muted:      #6B6358;
  --muted-2:    #8C8578;

  /* Paper scale (warm) */
  --paper:      #FAF8F3;
  --bone:       #F4F0E6;
  --bone-2:     #E8E2D2;
  --bone-3:     #D9D2BE;

  /* Brand */
  --navy:       #002060;        /* official logo navy */
  --navy-2:     #001A4D;
  --navy-deep:  #00103A;
  --navy-soft:  #C7CFDF;
  --navy-tint:  #EEF1F7;

  /* Hairlines */
  --hairline:       rgba(14,17,22,0.10);
  --hairline-dark:  rgba(246,243,236,0.16);
  --hairline-navy:  rgba(0,32,96,0.16);

  /* Type */
  --f-sans:  'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-serif: 'Newsreader', ui-serif, Georgia, serif;
  --f-mono:  'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Scale */
  --maxw:  1440px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

/* =========================================================
   Top navigation
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo .sep {
  width: 1px; height: 22px; background: var(--hairline);
}
.nav-logo .est {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 28px; margin-left: 12px; flex: 1; }
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  letter-spacing: -0.005em;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; gap: 4px; font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.lang button { padding: 4px 8px; border-radius: 2px; }
.lang button.on { color: var(--navy); background: var(--navy-tint); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline { color: var(--ink); border-color: var(--hairline); }
.btn-outline:hover { background: var(--bone); border-color: var(--ink); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-link {
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.btn-link:hover { border-bottom-color: var(--navy); }
.btn-link::after { content: '→'; transition: transform .2s; }
.btn-link:hover::after { transform: translateX(3px); }

/* =========================================================
   Section primitives
   ========================================================= */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--navy); display: inline-block; }
.eyebrow.on-ink { color: var(--navy-soft); }
.eyebrow.on-ink::before { background: var(--navy-soft); }

.h-display {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.h-display-xl {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
}
.section-head { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; margin-bottom: 72px; align-items: end; }

/* =========================================================
   Page header (sub-pages)
   ========================================================= */
.page-header {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--hairline);
}
.page-header .crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-header h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.page-header .lede { margin-top: 24px; max-width: 720px; font-size: 19px; }

/* =========================================================
   HOME — hero (image carousel + type-driven overlay)
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--hairline);
  min-height: 720px;
  color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 8s linear;
  transform: scale(1.0);
}
.hero-slide.on { opacity: 1; transform: scale(1.06); }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,16,58,0.50) 0%, rgba(0,16,58,0.20) 30%, rgba(0,16,58,0.30) 60%, rgba(0,16,58,0.90) 100%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--pad-x) 64px;
  z-index: 2;
}
.hero-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
  opacity: 0.92;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: #fff; display: inline-block; opacity: 0.8; }
.hero-tag .est {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: none;
  margin-left: 4px;
}
.hero h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 2px 20px rgba(0,16,58,0.4);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #fff;
  opacity: 0.85;
}
.hero-sub {
  max-width: 640px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary { background: #fff; color: var(--navy); }
.hero-actions .btn-primary:hover { background: var(--navy-soft); }
.hero-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Hero slide captions + indicators */
.hero-meta {
  position: absolute; right: var(--pad-x); bottom: 88px;
  z-index: 3;
  max-width: 560px;
  color: #fff;
  text-align: right;
}
.hero-meta .kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.hero-meta .title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 12px rgba(0,16,58,0.4);
}

.hero-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,16,58,0.5);
  backdrop-filter: blur(8px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex; gap: 32px; flex-wrap: wrap;
  align-items: center;
}
.hero-bar-inner .lbl { color: rgba(255,255,255,0.55); margin-right: 8px; }
.hero-bar .indicators { margin-left: auto; display: flex; gap: 6px; }
.hero-bar .indicators button {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
  transition: background .3s, width .3s;
}
.hero-bar .indicators button.on { background: #fff; width: 44px; }

/* =========================================================
   HOME — activity areas (icon trio from real assets)
   ========================================================= */
.activities { background: var(--paper); }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.activity-card {
  padding: 48px 36px 36px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 20px;
  background: var(--paper);
  transition: background .3s;
  position: relative;
  min-height: 380px;
  cursor: pointer;
}
.activity-card:hover { background: var(--bone); }
.activity-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.activity-card .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  padding: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.activity-card .icon img { width: 100%; height: 100%; object-fit: contain; }
.activity-card h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.activity-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 8px;
}
.activity-card .go {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--navy);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.activity-card:hover .go::after { transform: translateX(4px); }
.activity-card .go::after { content: '→'; transition: transform .2s; }

/* =========================================================
   HOME — stats strip
   ========================================================= */
.stats {
  background: var(--navy);
  color: #fff;
}
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--pad-x);
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  align-items: center;
}
.stats-intro {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  padding-right: 32px;
  border-right: 1px solid var(--hairline-dark);
}
.stats-intro em { font-style: italic; color: var(--navy-soft); }
.stat-num {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.stat-num .unit {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--navy-soft);
  margin-left: 4px;
  font-weight: 400;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--navy-soft);
  text-transform: uppercase;
}

/* =========================================================
   HOME — about teaser (text-only with fact aside)
   ========================================================= */
.about-teaser { background: var(--bone); border-bottom: 1px solid var(--hairline); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-teaser h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.about-teaser p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 560px;
}
.about-teaser p strong { color: var(--ink); font-weight: 500; }
.about-teaser-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink);
  margin-top: 56px;
}
.about-teaser-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.about-teaser-fact .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-teaser-fact .val {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

/* =========================================================
   HOME — featured projects list (typographic, no images)
   ========================================================= */
.featured { background: var(--paper); }
.featured-list {
  border-top: 1px solid var(--ink);
}
.featured-row {
  display: grid;
  grid-template-columns: 60px 88px 1fr 200px 140px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  cursor: pointer;
  transition: padding .3s, background .3s, color .3s;
}
.featured-row:hover { padding-left: 12px; padding-right: 12px; background: var(--bone); }
.featured-row .num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.featured-row .thumb {
  width: 88px; height: 64px;
  background: var(--ink);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.featured-row:hover .thumb { transform: scale(1.04); }
.featured-row .name {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.featured-row .cat {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}
.featured-row .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
}

/* =========================================================
   ABOUT — management portraits
   ========================================================= */
.mgmt { background: var(--paper); }
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  justify-items: start;
}
.mgmt-card { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 260px; }
.mgmt-portrait {
  aspect-ratio: 1 / 1;
  background: var(--bone-2);
  position: relative;
  overflow: hidden;
}
.mgmt-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter .3s, transform .6s;
}
.mgmt-card:hover .mgmt-portrait img { filter: grayscale(0); transform: scale(1.02); }
.mgmt-portrait.no-photo {
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mgmt-portrait.no-photo .mgmt-initials {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mgmt-portrait .badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--navy);
  padding: 4px 8px;
  text-transform: uppercase;
}
.mgmt-card h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.mgmt-role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}
.mgmt-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================================================
   ACTIVITIES (sub-page) — anchor sections with banner
   ========================================================= */
.activity-anchor {
  border-bottom: 1px solid var(--hairline);
  scroll-margin-top: 80px;
}
.activity-anchor .banner {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.activity-anchor .banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,16,58,0.15) 0%, rgba(0,16,58,0.55) 100%);
}
.activity-anchor .banner-label {
  position: absolute; left: var(--pad-x); bottom: 24px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.activity-anchor .banner-label::before {
  content: ''; width: 32px; height: 1px; background: rgba(255,255,255,0.7);
}
.activity-anchor .body-wrap {
  padding: 80px 0;
}
.activity-anchor:nth-of-type(even) .body-wrap { background: var(--bone); }
.activity-anchor-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.activity-anchor .icon-lg {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--navy);
  padding: 22px;
  margin-bottom: 28px;
}
.activity-anchor h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.activity-anchor .body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 640px;
}
.activity-anchor .sub-list {
  margin-top: 32px;
  border-top: 1px solid var(--hairline);
}
.activity-anchor .sub-list-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.activity-anchor .sub-list-row .n {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.activity-anchor .sub-list-row .t {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.activity-anchor .sub-list-row .d {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

/* =========================================================
   PROJECTS — categorized lists
   ========================================================= */
.proj-highlight {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}
.proj-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}
.proj-h-card {
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.proj-h-card:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--hairline); }
.proj-h-card:nth-child(even) { padding-left: 32px; padding-right: 0; }
.proj-h-card .cat {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}
.proj-h-card h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.proj-cat {
  padding: 64px 0;
  border-bottom: 1px solid var(--hairline);
}
.proj-cat-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: baseline;
  margin-bottom: 36px;
}
.proj-cat-head .count {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
}
.proj-cat h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.proj-cat ul {
  columns: 2;
  column-gap: 56px;
}
.proj-list-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  break-inside: avoid;
  display: flex; gap: 8px; align-items: baseline;
}
.proj-list-item .country {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 70px;
}
@media (max-width: 720px) {
  .proj-cat ul { columns: 1; }
}

/* =========================================================
   COMPANIES — 6-up logo grid
   ========================================================= */
.companies-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--hairline);
}
.company-logo-cell {
  position: relative;
  padding: 56px 36px 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  min-height: 260px;
  display: flex; flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: background .3s;
}
.company-logo-cell:hover { background: var(--bone); }
.company-logo-cell .n {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.company-logo-cell .logo {
  height: 56px;
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.company-logo-cell .logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: left;
}
.company-logo-cell .code {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
  margin-top: auto;
}
.company-logo-cell .note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.company-logo-cell .arrow-pip {
  position: absolute; bottom: 24px; right: 24px;
  color: var(--navy);
  font-size: 16px;
  transition: transform .25s;
}
.company-logo-cell:hover .arrow-pip { transform: translateX(4px); }

/* old companies-grid kept as fallback for any other reference */
.companies-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.company-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr 200px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  transition: padding .3s, background .3s;
  cursor: pointer;
}
.company-row:hover { padding-left: 16px; padding-right: 16px; background: var(--bone); }
.company-row .n {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.company-row .nm {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.company-row .desc { font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 480px; }
.company-row .area {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}

/* =========================================================
   CONTACT — offices (no form)
   ========================================================= */
.contact-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  margin: 64px 0 96px;
}
.contact-office {
  padding: 40px 36px 40px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-office:nth-child(odd)  { padding-right: 36px; border-right: 1px solid var(--hairline); }
.contact-office:nth-child(even) { padding-left: 36px; padding-right: 0; }
.contact-office-head { display: flex; flex-direction: column; gap: 14px; }
.contact-office-head .role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-office-head .city {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.contact-office-fields {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 18px;
  align-items: baseline;
}
.contact-office-fields dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
  border-top: 1px solid var(--hairline);
}
.contact-office-fields dd {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding-top: 6px;
  border-top: 1px solid var(--hairline);
}
.contact-office-fields dd a {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.contact-office-fields dd a:hover { border-bottom-color: var(--navy); }

/* Single general-inquiries line below the offices grid.
   Label + email sit close together, matching the office-card field
   typography (mono uppercase label, 15px body for the value). */
.contact-general {
  margin: 0 0 120px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-general .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 110px;
}
.contact-general a {
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.contact-general a:hover { border-bottom-color: var(--navy); }

@media (max-width: 860px) {
  .contact-offices { grid-template-columns: 1fr; }
  .contact-office:nth-child(odd),
  .contact-office:nth-child(even) {
    padding: 32px 0;
    border-right: 0;
  }
  .contact-office-fields { grid-template-columns: 80px 1fr; }
}

/* =========================================================
   CTA strip
   ========================================================= */
.cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
}
.cta h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.cta h2 em { font-style: italic; color: var(--navy-soft); }
.cta-actions { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.cta-info { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; }
.cta-info .lbl {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--navy-soft);
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 2px;
}

/* =========================================================
   Footer
   ========================================================= */
.foot { background: var(--ink); color: rgba(246,243,236,0.72); padding: 80px 0 32px; }
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
.foot-brand img { height: 36px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.foot-brand p { font-size: 14px; max-width: 320px; line-height: 1.55; }
.foot h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.foot ul { display: flex; flex-direction: column; gap: 10px; }
.foot ul a, .foot ul li { font-size: 14px; line-height: 1.5; transition: color .2s; }
.foot ul a:hover { color: var(--navy-soft); }
.foot-bot {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 24px var(--pad-x) 0;
  border-top: 1px solid var(--hairline-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(246,243,236,0.5);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-link { font-size: 13px; }
  .nav-logo .est { display: none; }
  .nav-logo .sep { display: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .activity-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-intro { grid-column: span 2; border-right: 0; border-bottom: 1px solid var(--hairline-dark); padding-bottom: 24px; padding-right: 0; }
  .about-teaser-grid, .activity-anchor-grid, .contact-main, .cta-inner, .foot-inner { grid-template-columns: 1fr; gap: 32px; }
  .featured-row { grid-template-columns: 60px 1fr; }
  .featured-row .cat, .featured-row .meta { display: none; }
  .mgmt-grid { grid-template-columns: 1fr 1fr; }
  .proj-cat ul { columns: 1; }
  .proj-highlight-grid { grid-template-columns: 1fr; }
  .proj-h-card:nth-child(odd), .proj-h-card:nth-child(even) { padding: 24px 0; border-right: 0; }
  .company-row { grid-template-columns: 1fr; gap: 8px; }
  .company-row .area { order: -1; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 960px) {
  .featured-row { grid-template-columns: 50px 64px 1fr; gap: 16px; }
  .featured-row .cat, .featured-row .meta { display: none; }
  .featured-row .thumb { width: 64px; height: 48px; }
  .activity-anchor .banner { height: 200px; }
  .companies-logo-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 580px; }
  .hero-meta { display: none; }
}
@media (max-width: 600px) {
  .companies-logo-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   KVKK — legal documents list
   ========================================================= */
.legal-docs {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
  margin: 48px 0 120px;
}
.legal-doc {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  transition: padding .3s, background .3s;
  color: var(--ink);
}
.legal-doc:hover { padding-left: 16px; padding-right: 16px; background: var(--bone); }
.legal-doc .n {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.legal-doc .legal-doc-text { display: flex; flex-direction: column; gap: 8px; }
.legal-doc .nm {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.legal-doc .desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
}
.legal-doc .legal-doc-action {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.legal-doc .legal-doc-action .arrow-pip {
  display: inline-block;
  transition: transform .3s;
}
.legal-doc:hover .legal-doc-action .arrow-pip { transform: translateY(2px); }

/* Footer fine-print row — KVKK link */
.foot-legal-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(246,243,236,0.25);
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s;
}
.foot-legal-link:hover {
  color: var(--navy-soft);
  text-decoration-color: var(--navy-soft);
}
.foot-sep { opacity: 0.5; }

@media (max-width: 700px) {
  .legal-doc { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .legal-doc .legal-doc-action { grid-column: 2; justify-self: start; margin-top: 4px; }
}
