﻿:root {
  --bg: #e8e2d7;
  --bg-alt: #f4f1ea;
  --ink: #181712;
  --ink-soft: #4b453d;
  --line: rgba(24, 23, 18, 0.16);
  --panel: rgba(255, 255, 255, 0.72);
  --accent: #a06b3d;
  --accent-strong: #7e4f28;
  --accent-soft: #c9a783;
  --accent-dark: #2f2317;
  --shadow: 0 24px 60px rgba(20, 18, 14, 0.16);
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 500;
  background: radial-gradient(circle at 10% 20%, #f2ede4 0%, var(--bg) 45%, #ddd5c7 100%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.hero h1,
.page-hero h1,
.section-header h2,
.start-hero-card h2,
.start-cta-clean h2,
.cta-box h2,
.metric-value,
.start-metric .value,
.news-feature-title,
.news-detail-card p:first-of-type {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.scrolled {
  background: rgba(235, 229, 218, 0.82);
  backdrop-filter: blur(10px);
  border-color: rgba(24, 23, 18, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: 0.04em;
}

.brand-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.brand-main {
  font-size: 1.02rem;
  text-transform: uppercase;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  position: relative;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  color: var(--ink);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover {
  background: var(--ink);
  color: #f4f1ea;
}

.nav-cta-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-language-switch {
  position: absolute;
  left: calc(100% + 0.36rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}

.lang-mini-toggle {
  width: 44px;
  height: 34px;
  padding: 0 0.35rem;
  border-radius: 0.68rem;
  border: 1px solid rgba(24, 23, 18, 0.25);
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.lang-mini-toggle:hover,
.lang-mini-toggle[aria-expanded="true"] {
  border-color: rgba(24, 23, 18, 0.52);
  background: #fff;
}

.lang-mini-toggle .lang-flag {
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
}

.lang-current-code {
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  line-height: 1;
  font-weight: 600;
  min-width: 1rem;
  text-align: center;
}

.lang-mini-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  width: 176px;
  border: 1px solid rgba(24, 23, 18, 0.2);
  border-radius: 0.72rem;
  background: rgba(250, 247, 241, 0.98);
  box-shadow: 0 18px 38px rgba(20, 18, 14, 0.2);
}

.lang-mini-list {
  max-height: 172px;
  overflow-y: auto;
  padding: 0.28rem;
  scrollbar-width: thin;
}

.lang-mini-list::-webkit-scrollbar {
  width: 6px;
}

.lang-mini-list::-webkit-scrollbar-thumb {
  background: rgba(24, 23, 18, 0.26);
  border-radius: 999px;
}

.lang-mini-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.36rem 0.42rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  text-align: left;
  color: var(--ink-soft);
  font-family: var(--font-ui);
}

.lang-mini-option:hover,
.lang-mini-option.active {
  background: rgba(24, 23, 18, 0.09);
  color: var(--ink);
}

.lang-option-label {
  font-size: 0.72rem;
  line-height: 1.2;
}

.lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(24, 23, 18, 0.16);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.lang-flag-de { background-image: url("https://flagcdn.com/w40/de.png"); }
.lang-flag-gb { background-image: url("https://flagcdn.com/w40/gb.png"); }
.lang-flag-es { background-image: url("https://flagcdn.com/w40/es.png"); }
.lang-flag-fr { background-image: url("https://flagcdn.com/w40/fr.png"); }
.lang-flag-ru { background-image: url("https://flagcdn.com/w40/ru.png"); }
.lang-flag-it { background-image: url("https://flagcdn.com/w40/it.png"); }
.lang-flag-ua { background-image: url("https://flagcdn.com/w40/ua.png"); }
.lang-flag-pl { background-image: url("https://flagcdn.com/w40/pl.png"); }
.lang-flag-tr { background-image: url("https://flagcdn.com/w40/tr.png"); }

.google-translate-hidden,
#google_translate_element {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: var(--ink);
  display: block;
  margin: 5px auto;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 3500ms ease;
  filter: saturate(0.84) contrast(1.05);
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18, 16, 13, 0.76) 8%, rgba(18, 16, 13, 0.25) 54%, rgba(18, 16, 13, 0.72) 95%);
}

.hero-content {
  position: relative;
  color: #f7f3ec;
  z-index: 3;
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 2.5rem;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  color: rgba(247, 243, 236, 0.85);
}

.section .kicker {
  color: rgba(24, 23, 18, 0.56);
}

.hero h1 {
  margin: 0.85rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.2vw, 5.3rem);
  line-height: 0.95;
  max-width: 15ch;
  letter-spacing: 0.01em;
}

.hero p {
  margin: 0;
  max-width: 54ch;
  color: rgba(247, 243, 236, 0.88);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(20, 18, 14, 0.15);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(20, 18, 14, 0.2);
}

.btn-light {
  background: linear-gradient(160deg, #f8f5ef 0%, #ece2d2 100%);
  color: #17140f;
  border-color: rgba(24, 23, 18, 0.14);
}

.btn-light:hover {
  background: #fff;
}

.btn-ghost {
  border-color: rgba(244, 241, 234, 0.72);
  color: #f7f3ec;
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: #f4f1ea;
  background: rgba(244, 241, 234, 0.1);
}

.hero-panel {
  align-self: end;
  background: rgba(15, 14, 11, 0.54);
  border: 1px solid rgba(244, 241, 234, 0.22);
  backdrop-filter: blur(9px);
  border-radius: 1rem;
  padding: 1.2rem;
}

.hero-panel h2 {
  margin: 0 0 0.6rem;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-panel p {
  margin: 0;
  font-size: 0.88rem;
}

.hero-metrics {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-top: 1px solid rgba(244, 241, 234, 0.2);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 10, 8, 0.84);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  padding: 1.2rem 1rem 1.3rem;
  border-right: 1px solid rgba(244, 241, 234, 0.14);
  color: #f7f3ec;
}

.metric:last-child {
  border-right: 0;
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1;
}

.metric-label {
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
  color: rgba(247, 243, 236, 0.72);
}

.start-main {
  overflow: clip;
  position: relative;
}

.start-main::before,
.start-main::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(58px);
}

.start-main::before {
  width: 360px;
  height: 360px;
  top: -110px;
  right: -120px;
  background: rgba(190, 165, 132, 0.2);
}

.start-main::after {
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: 90px;
  background: rgba(126, 79, 40, 0.12);
}

.page-start .hero {
  min-height: calc(95vh - 82px);
  border-bottom: 0;
}

.page-start .hero-scrim {
  background:
    linear-gradient(150deg, rgba(10, 10, 9, 0.84) 7%, rgba(10, 10, 9, 0.34) 50%, rgba(10, 10, 9, 0.9) 95%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 56%);
}

.start-hero-content {
  align-items: end;
  gap: clamp(1rem, 1.8vw, 1.8rem);
  padding-top: clamp(4rem, 6.8vh, 5.2rem);
  padding-bottom: clamp(2.8rem, 5vh, 4rem);
}

.start-hero-copy {
  max-width: 640px;
}

.start-hero-copy .kicker {
  letter-spacing: 0.13em;
  color: rgba(247, 243, 236, 0.84);
}

.start-hero-copy h1 {
  margin: 0.62rem 0 0.86rem;
  max-width: 11.2ch;
  line-height: 0.92;
}

.start-hero-copy p {
  max-width: 39ch;
  color: rgba(247, 243, 236, 0.9);
}

.start-hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.start-hero-tags span {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 241, 234, 0.4);
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  color: rgba(247, 243, 236, 0.94);
  background: rgba(244, 241, 234, 0.1);
  backdrop-filter: blur(4px);
}

.start-hero-card {
  width: min(100%, 328px);
  justify-self: end;
  align-self: end;
  border-radius: 0.88rem;
  border: 1px solid rgba(244, 241, 234, 0.28);
  background: rgba(14, 12, 9, 0.42);
  backdrop-filter: blur(12px);
  padding: 1rem;
  color: #f7f3ec;
  box-shadow: 0 16px 34px rgba(8, 8, 7, 0.3);
}

.start-hero-card-kicker {
  margin: 0;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 243, 236, 0.78);
}

.start-hero-card h2 {
  margin: 0.33rem 0 0;
  font-size: clamp(1.12rem, 2.1vw, 1.35rem);
  font-family: var(--font-display);
}

.start-hero-card p {
  margin: 0.52rem 0 0;
  font-size: 0.82rem;
  color: rgba(247, 243, 236, 0.9);
}

.start-hero-news-title {
  display: block;
  margin-top: 0.58rem;
  color: rgba(247, 243, 236, 0.95);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.12;
  text-wrap: balance;
  transition: opacity 180ms ease;
}

.start-hero-news-title:hover {
  opacity: 0.78;
}

.start-hero-card .btn {
  margin-top: 0.78rem;
}

.start-hero-card .btn-light {
  width: 100%;
}

.start-hero-bottom {
  position: relative;
  z-index: 4;
  margin-top: -0.7rem;
  padding-bottom: 0.75rem;
}

.start-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid rgba(244, 241, 234, 0.36);
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.95);
  background: rgba(8, 8, 7, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.start-scroll-hint::after {
  content: "↓";
  font-size: 0.74rem;
  line-height: 1;
}

.start-scroll-hint:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 241, 234, 0.62);
  background: rgba(8, 8, 7, 0.42);
}

.start-metric-row {
  margin-top: -1.35rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding-bottom: 1.4rem;
}

.start-metric {
  border-radius: 0.82rem;
  border: 1px solid rgba(24, 23, 18, 0.2);
  background: rgba(255, 255, 255, 0.76);
  padding: 0.92rem 0.9rem 0.84rem;
  box-shadow: 0 10px 20px rgba(20, 18, 14, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(20, 18, 14, 0.14);
}

.start-metric .value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.52rem);
  line-height: 1;
}

.start-metric .label {
  display: block;
  margin-top: 0.33rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
}

.start-header-tight {
  align-items: end;
}

.start-projects {
  padding-top: 1.4rem;
}

.start-project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.78rem;
}

.start-project-tile {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(24, 23, 18, 0.16);
  min-height: 250px;
  box-shadow: 0 14px 32px rgba(20, 18, 14, 0.14);
}

.start-project-tile.large { grid-column: span 7; min-height: 338px; }
.start-project-tile.tall { grid-column: span 5; min-height: 338px; }
.start-project-tile.medium { grid-column: span 4; min-height: 264px; }
.start-project-tile.wide { grid-column: span 8; min-height: 264px; }

.start-project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  transition: transform 320ms ease, filter 280ms ease;
  filter: contrast(1.04) saturate(0.9);
}

.start-project-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.04) 0%, rgba(9, 8, 6, 0.52) 100%);
  pointer-events: none;
  z-index: 2;
}

.start-project-tile::after {
  content: "";
  position: absolute;
  inset: -40% -28%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.24) 50%, transparent 65%);
  transform: translateX(-42%) rotate(10deg);
  opacity: 0;
  transition: transform 420ms ease, opacity 420ms ease;
  z-index: 3;
  pointer-events: none;
}

.start-project-tile:hover img {
  transform: scale(1.055);
  filter: contrast(1.08) saturate(0.96);
}

.start-project-tile:hover::after {
  transform: translateX(42%) rotate(10deg);
  opacity: 1;
}

.start-services {
  padding-top: 3.7rem;
}

.start-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.start-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.82rem;
  border: 1px solid rgba(24, 23, 18, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 238, 228, 0.9) 100%);
  box-shadow: 0 12px 24px rgba(20, 18, 14, 0.1);
  padding: 1.1rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.start-service-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -38px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 107, 61, 0.22) 0%, rgba(160, 107, 61, 0) 68%);
  pointer-events: none;
}

.start-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 23, 18, 0.34);
  box-shadow: 0 16px 30px rgba(20, 18, 14, 0.14);
}

.start-service-card h3 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-display);
}

.start-service-card p {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.start-spotlight-section {
  padding-top: 3rem;
}

.start-spotlight-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 0.76rem;
}

.start-spotlight-main {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  isolation: isolate;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(24, 23, 18, 0.2);
  box-shadow: 0 18px 36px rgba(20, 18, 14, 0.2);
  background: #0f0d0a;
  contain: paint;
}

.start-spotlight-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 420ms ease;
}

.start-spotlight-main:hover img {
  transform: scale(1.06);
}

.start-spotlight-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.05rem;
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.02) 0%, rgba(9, 8, 6, 0.86) 94%);
  color: #f7f3ec;
}

.start-spotlight-overlay .kicker {
  color: rgba(247, 243, 236, 0.85);
}

.start-spotlight-overlay h3 {
  margin: 0.38rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.04;
  max-width: 16ch;
}

.start-spotlight-overlay .btn {
  margin-top: 0.86rem;
}

.start-spotlight-list {
  display: grid;
  gap: 0.58rem;
}

.start-spotlight-item {
  width: 100%;
  border: 1px solid rgba(24, 23, 18, 0.2);
  border-radius: 0.74rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  text-align: left;
  padding: 0.82rem 0.82rem 0.74rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.start-spotlight-item:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 23, 18, 0.45);
  background: #fff;
  box-shadow: 0 12px 24px rgba(20, 18, 14, 0.12);
}

.start-spotlight-item.active {
  border-color: rgba(24, 23, 18, 0.6);
  background: linear-gradient(160deg, #fffefa 0%, #f1e7d8 100%);
  box-shadow: 0 12px 24px rgba(20, 18, 14, 0.14);
}

.spotlight-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.96rem;
  line-height: 1.14;
}

.spotlight-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
}

.start-team-preview {
  padding-top: 2.9rem;
}

.start-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.start-team-item {
  border-radius: 0.82rem;
  border: 1px solid rgba(24, 23, 18, 0.16);
  overflow: hidden;
  background: rgba(245, 239, 230, 0.96);
  box-shadow: 0 8px 18px rgba(20, 18, 14, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.start-team-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 22px rgba(20, 18, 14, 0.14);
}

.start-team-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.01);
  transition: transform 320ms ease;
}

.start-team-photo-naira {
  object-position: center 16%;
}

.start-team-photo-andreas {
  object-position: center 10%;
}

.start-team-placeholder {
  width: 100%;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: 0.08em;
  color: rgba(245, 242, 234, 0.95);
  background: linear-gradient(155deg, #262016 0%, #624427 100%);
  transition: transform 320ms ease;
}

.start-team-item:hover .start-team-photo {
  transform: scale(1.06);
}

.start-team-item:hover .start-team-placeholder {
  transform: scale(1.03);
}

.start-marquee-section {
  padding-top: 2.2rem;
  overflow: hidden;
}

.start-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(24, 23, 18, 0.2);
  border-bottom: 1px solid rgba(24, 23, 18, 0.2);
  border-left: 1px solid rgba(24, 23, 18, 0.2);
  border-right: 1px solid rgba(24, 23, 18, 0.2);
  border-radius: 0.92rem;
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.9) 0%, rgba(240, 233, 221, 0.94) 100%);
}

.start-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: start-marquee 34s linear infinite;
}

.start-marquee-set {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.56rem;
}

.start-marquee-track span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  border: 1px solid rgba(24, 23, 18, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

@keyframes start-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-marquee-track {
    animation: none;
  }

  .start-project-tile img,
  .start-project-tile::after,
  .start-team-photo,
  .start-team-placeholder,
  .start-spotlight-main img,
  .start-service-card,
  .btn {
    transition: none;
  }
}

.start-cta-clean {
  border-radius: 0.88rem;
  border: 1px solid rgba(24, 23, 18, 0.22);
  background: linear-gradient(142deg, #1b1611 0%, #2d2117 48%, #573a24 100%);
  color: #f4ede2;
  padding: 1.45rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.15rem;
  box-shadow: 0 18px 34px rgba(18, 16, 12, 0.24);
}

.start-cta-clean h2 {
  margin: 0.38rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.08;
}

.start-cta-clean p {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: rgba(244, 237, 226, 0.88);
}

.start-cta-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.section {
  padding: 5.6rem 0;
}

.section.compact {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.3vw, 3.3rem);
  line-height: 1.03;
}

.section-header p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 45ch;
}

.section-link {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
  color: var(--accent-strong);
  font-weight: 600;
  white-space: nowrap;
}

.cards {
  display: grid;
  gap: 1.15rem;
}

.project-preview {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.project-preview article {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(24, 23, 18, 0.18);
  min-height: 290px;
  box-shadow: var(--shadow);
}

.project-preview article.large {
  grid-column: span 7;
}

.project-preview article.medium {
  grid-column: span 5;
}

.project-preview article.small {
  grid-column: span 4;
}

.project-preview article.tall {
  grid-column: span 4;
  min-height: 450px;
}

.project-preview article.wide {
  grid-column: span 8;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 400ms ease;
}

.project-preview article:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(12, 10, 7, 0) 0%, rgba(12, 10, 7, 0.9) 95%);
  color: #f6f2ea;
}

.card-overlay h3 {
  margin: 0;
  font-size: 1rem;
}

.card-overlay p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  opacity: 0.86;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
}

.philosophy-copy {
  background: var(--panel);
  border: 1px solid rgba(24, 23, 18, 0.14);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.philosophy-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.philosophy-copy p + p {
  margin-top: 1rem;
}

.philosophy-quote {
  border-radius: 1.25rem;
  border: 1px solid rgba(24, 23, 18, 0.2);
  padding: 2rem;
  display: grid;
  align-content: center;
  background: linear-gradient(155deg, #242016 0%, #4a3a28 100%);
  color: #f4ede2;
}

.philosophy-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 23, 18, 0.14);
  border-radius: 1rem;
  padding: 1.2rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(24, 23, 18, 0.25);
  font-size: 0.76rem;
  margin-bottom: 0.9rem;
}

.process-step h3 {
  margin: 0;
  font-size: 1rem;
}

.process-step p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(24, 23, 18, 0.18);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.2);
  transition: filter 300ms ease, transform 400ms ease;
}

.team-card-placeholder {
  background: linear-gradient(160deg, #2c251b 0%, #6a4a2e 100%);
}

.person-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.08em;
  color: rgba(245, 242, 234, 0.92);
}

.team-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.team-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(22, 20, 16, 0) 0%, rgba(22, 20, 16, 0.86) 95%);
  color: #f7f3ec;
}

.team-card strong {
  display: block;
  font-size: 0.95rem;
}

.team-card small {
  font-size: 0.78rem;
  opacity: 0.84;
}

.band {
  background: #1a1712;
  color: #f5f2ea;
  border-top: 1px solid rgba(245, 242, 234, 0.2);
  border-bottom: 1px solid rgba(245, 242, 234, 0.2);
}

.band-inner {
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: rgba(245, 242, 234, 0.85);
}

.band-inner span {
  display: inline-block;
  padding-right: 2rem;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.cta-box {
  border-radius: 1.4rem;
  border: 1px solid rgba(24, 23, 18, 0.2);
  background: linear-gradient(145deg, #31261b 0%, #8b5c34 100%);
  color: #f4ede2;
  padding: 2.1rem;
  display: grid;
  gap: 1rem;
}

.cta-box h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 1.08;
}

.cta-box p {
  margin: 0;
  max-width: 54ch;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(240, 233, 221, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 2.6rem 0;
}

.footer h3,
.footer h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.76rem;
}

.footer p,
.footer a {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.footer a {
  display: block;
}

.footer-note {
  border-top: 1px solid rgba(24, 23, 18, 0.1);
  padding: 1rem 0 1.4rem;
  color: rgba(24, 23, 18, 0.62);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  color: #f7f3ec;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.78) contrast(1.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(19, 17, 13, 0.82) 6%, rgba(19, 17, 13, 0.32) 50%, rgba(19, 17, 13, 0.84) 92%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 3.2rem;
}

.page-hero h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 4.1rem);
  line-height: 0.98;
  max-width: 14ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(24, 23, 18, 0.26);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #201b14;
  color: #f4f1ea;
  border-color: #201b14;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.85rem;
}

.project-card {
  grid-column: span 4;
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(24, 23, 18, 0.2);
  background: #15120e;
  box-shadow: 0 16px 34px rgba(20, 18, 14, 0.2);
}

.project-card.hidden {
  display: none;
}

.project-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 360ms ease, filter 260ms ease;
  filter: saturate(0.9) contrast(1.05);
}

.project-card:hover img {
  transform: scale(1.075);
  filter: saturate(0.98) contrast(1.08);
}

.project-card .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.82rem;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0) 0%, rgba(9, 8, 7, 0.9) 92%);
  color: #f7f3ec;
}

.project-card .type {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 236, 0.36);
  background: rgba(247, 243, 236, 0.12);
  padding: 0.19rem 0.52rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 236, 0.96);
}

.project-card h3 {
  margin: 0.52rem 0 0;
  font-size: 0.96rem;
  line-height: 1.18;
  color: #fffdf9;
  text-wrap: balance;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-profile {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(24, 23, 18, 0.16);
  background: #f3eee5;
}

.team-profile figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.team-profile-placeholder {
  background: linear-gradient(160deg, #2c251b 0%, #6a4a2e 100%);
}

.team-profile .content {
  padding: 1rem;
}

.team-profile h3 {
  margin: 0;
  font-size: 1.05rem;
}

.team-profile p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.team-profile .langs {
  margin-top: 0.55rem;
  display: inline-block;
  border: 1px solid rgba(24, 23, 18, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
}

.panel {
  border-radius: 1.2rem;
  border: 1px solid rgba(24, 23, 18, 0.16);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  padding: 1.7rem;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.panel p,
.panel li {
  color: var(--ink-soft);
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.map-panel {
  padding: 0.4rem;
}

.map-embed {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 0.9rem;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
}

.contact-item {
  padding: 0.75rem 0.85rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(24, 23, 18, 0.14);
  background: rgba(255, 255, 255, 0.52);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item span,
.contact-item a {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(24, 23, 18, 0.2);
  border-radius: 0.7rem;
  padding: 0.75rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.phone-inline {
  display: grid;
  grid-template-columns: minmax(170px, 42%) minmax(0, 1fr);
  gap: 0.6rem;
}

.phone-inline select,
.phone-inline input {
  height: 44px;
}

.phone-inline select {
  font-size: 0.86rem;
}

.field-check {
  font-size: 0.74rem;
  min-height: 1em;
  color: var(--ink-soft);
}

.field-check.ok {
  color: #1e6f3a;
}

.field-check.bad {
  color: #8f2f2f;
}

.hero-news-link {
  color: inherit;
  border-bottom: 1px solid rgba(245, 242, 234, 0.6);
}

.project-open,
.team-open {
  cursor: pointer;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.archive-item {
  border: 1px solid rgba(24, 23, 18, 0.16);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
}

.archive-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.archive-item div {
  padding: 0.8rem;
}

.archive-item h3 {
  margin: 0;
  font-size: 0.92rem;
}

.archive-item p {
  margin: 0.32rem 0 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.gallery-modal,
.person-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
}

.gallery-modal.open,
.person-modal.open {
  display: block;
}

.gallery-backdrop,
.person-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.7);
}

.gallery-card,
.person-modal-card {
  position: relative;
  width: min(900px, calc(100% - 2rem));
  margin: 5vh auto 0;
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(246, 241, 233, 0.97);
}

.person-modal-card {
  width: min(620px, calc(100% - 2rem));
}

.gallery-card .kicker,
.person-modal-card .kicker {
  color: #181712;
}

.copy-mail-wrap {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.copy-mail-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 23, 18, 0.24);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  padding: 0.5rem 0.68rem;
  gap: 0.45rem;
  font: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.copy-mail-btn:hover {
  border-color: rgba(24, 23, 18, 0.52);
  background: #fff;
  transform: translateY(-1px);
}

.copy-mail-btn.is-copied {
  border-color: rgba(30, 111, 58, 0.55);
  background: rgba(226, 243, 231, 0.9);
}

.copy-mail-btn.is-failed {
  border-color: rgba(143, 47, 47, 0.5);
  background: rgba(250, 236, 236, 0.94);
}

.copy-mail-email {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.copy-icon {
  font-size: 0.98rem;
  line-height: 1;
  color: var(--ink-soft);
  transition: transform 220ms ease, color 220ms ease;
}

.copy-mail-btn.is-copied .copy-icon {
  color: #1e6f3a;
  transform: rotate(-12deg) scale(1.06);
}

.copy-mail-btn.is-failed .copy-icon {
  color: #8f2f2f;
  transform: scale(0.96);
}

.copy-feedback {
  width: 1.2rem;
  height: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 160ms ease, transform 160ms ease;
}

.copy-feedback.show {
  opacity: 1;
  transform: scale(1);
}

.copy-feedback.ok {
  color: #1e6f3a;
  background: rgba(226, 243, 231, 0.95);
  border: 1px solid rgba(30, 111, 58, 0.38);
}

.copy-feedback.bad {
  color: #8f2f2f;
  background: rgba(250, 236, 236, 0.95);
  border: 1px solid rgba(143, 47, 47, 0.32);
}

.gallery-close,
.person-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1.8rem;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.8rem;
  border: 1px solid rgba(24, 23, 18, 0.16);
}

.gallery-controls {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.team-mail {
  display: block;
  margin-top: 0.58rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  word-break: break-word;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  border-radius: 1rem;
  border: 1px solid rgba(24, 23, 18, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

.news-card time {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.news-card h3 {
  margin: 0.45rem 0 0;
  font-size: 1.03rem;
}

.news-card p {
  margin: 0.42rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.news-grid-single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.news-card-link a {
  display: block;
  color: inherit;
  height: 100%;
}

.news-grid-single .news-card {
  aspect-ratio: 1 / 1;
  display: grid;
  align-content: center;
}

.news-page-section {
  padding-top: 3rem;
}

.news-single-shell {
  display: grid;
  place-items: center;
}

.news-feature-card {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 0.72rem;
  border: 1px solid rgba(24, 23, 18, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 240, 231, 0.96) 100%);
  color: var(--ink);
  padding: 0.95rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.7rem;
  box-shadow: 0 14px 30px rgba(16, 14, 10, 0.14);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.news-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 23, 18, 0.5);
  background: #fffdf9;
  box-shadow: 0 18px 40px rgba(16, 14, 10, 0.2);
}

.news-feature-card time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.news-feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.06;
  max-width: 12ch;
}

.news-feature-cta {
  margin: 0;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.news-feature-cta::after {
  content: "->";
  transition: transform 180ms ease;
}

.news-feature-card:hover .news-feature-cta::after {
  transform: translateX(3px);
}

.news-detail-section {
  padding-top: 3rem;
}

.news-detail-card {
  width: min(780px, 100%);
  border-radius: 0.72rem;
  border: 1px solid rgba(24, 23, 18, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 240, 231, 0.98) 100%);
  box-shadow: 0 14px 30px rgba(20, 18, 14, 0.12);
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
}

.news-detail-card time {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-strong);
  margin-bottom: 0.65rem;
}

.news-detail-card p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 72ch;
}

.news-detail-card p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.08;
  color: var(--ink);
}

.news-detail-card p + p {
  margin-top: 0.72rem;
}

.news-detail-card .btn {
  margin-top: 1rem;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .start-hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 304px);
  }

  .start-metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-project-tile.large,
  .start-project-tile.tall {
    grid-column: span 6;
    min-height: 300px;
  }

  .start-project-tile.medium,
  .start-project-tile.wide {
    grid-column: span 6;
    min-height: 240px;
  }

  .start-service-grid,
  .start-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-spotlight-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .start-spotlight-main {
    aspect-ratio: 16 / 10;
  }

  .start-spotlight-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-preview article.large,
  .project-preview article.medium,
  .project-preview article.small,
  .project-preview article.tall,
  .project-preview article.wide {
    grid-column: span 6;
    min-height: 320px;
  }

  .team-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card {
    grid-column: span 6;
  }

  .archive-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-embed {
    min-height: 500px;
  }

  .news-feature-card {
    width: min(300px, 100%);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(1180px, calc(100% - 1.6rem));
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-eyebrow {
    font-size: 0.66rem;
  }

  .brand-main {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    background: rgba(239, 234, 224, 0.98);
    border-bottom: 1px solid rgba(24, 23, 18, 0.12);
    backdrop-filter: blur(8px);
    display: grid;
    gap: 0;
    padding: 0.4rem 0.8rem 0.9rem;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 0.8rem;
    padding: 0.65rem 0.3rem;
    border-bottom: 1px solid rgba(24, 23, 18, 0.08);
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: 0;
  }

  .nav-cta-wrap {
    display: grid;
    gap: 0.34rem;
    justify-items: stretch;
  }

  .nav-language-switch {
    position: static;
    transform: none;
    justify-self: start;
  }

  .lang-mini-toggle {
    width: 64px;
    height: 32px;
  }

  .lang-mini-menu {
    top: calc(100% + 0.24rem);
    left: 0;
    right: auto;
    width: 190px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .filters::-webkit-scrollbar {
    height: 6px;
  }

  .filters::-webkit-scrollbar-thumb {
    background: rgba(24, 23, 18, 0.2);
    border-radius: 999px;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 40px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.45rem;
  }

  .section-link {
    white-space: normal;
  }

  .project-card {
    border-radius: 0.82rem;
  }

  .project-card .meta {
    padding: 0.74rem;
  }

  .project-card .type {
    font-size: 0.6rem;
  }

  .project-card h3 {
    font-size: 0.92rem;
  }

  .gallery-card {
    width: calc(100% - 1.1rem);
    margin: 3.8vh auto 0;
    padding: 0.9rem;
  }

  .gallery-card img {
    max-height: 54vh;
  }

  .gallery-controls .filter-btn {
    min-width: 86px;
  }

  .person-modal-card {
    width: calc(100% - 1.1rem);
    margin-top: 3.8vh;
    padding: 0.9rem;
  }

  .copy-mail-wrap {
    width: 100%;
  }

  .copy-mail-btn {
    width: 100%;
    justify-content: space-between;
  }

  .phone-inline {
    grid-template-columns: minmax(132px, 42%) minmax(0, 1fr);
    gap: 0.48rem;
  }

  .phone-inline select {
    font-size: 0.79rem;
  }

  .map-embed {
    min-height: 380px;
  }

  .news-feature-card {
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
  }

  .page-start .hero {
    min-height: 90vh;
  }

  .start-hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 1.15rem;
  }

  .start-hero-copy {
    max-width: 100%;
  }

  .start-hero-copy h1 {
    max-width: 12.5ch;
  }

  .start-hero-bottom {
    margin-top: -0.45rem;
    padding-bottom: 0.62rem;
  }

  .start-scroll-hint {
    padding: 0.3rem 0.6rem;
    font-size: 0.58rem;
  }

  .start-hero-card {
    justify-self: start;
    width: min(100%, 292px);
  }

  .start-metric-row {
    margin-top: -0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding-bottom: 1.1rem;
  }

  .start-metric {
    padding: 0.8rem 0.76rem;
  }

  .start-projects {
    padding-top: 1rem;
  }

  .start-project-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .start-project-tile.large,
  .start-project-tile.tall,
  .start-project-tile.medium,
  .start-project-tile.wide {
    grid-column: auto;
    min-height: 228px;
  }

  .start-services {
    padding-top: 3rem;
  }

  .start-service-grid,
  .start-team-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .start-spotlight-section {
    padding-top: 2.4rem;
  }

  .start-spotlight-main {
    aspect-ratio: 16 / 10;
  }

  .start-spotlight-list {
    grid-template-columns: 1fr;
  }

  .start-marquee-section {
    padding-top: 1.4rem;
  }

  .start-marquee-track {
    animation-duration: 30s;
  }

  .start-marquee-set {
    padding: 0.48rem;
  }

  .start-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-team-photo,
  .start-team-placeholder {
    aspect-ratio: 4 / 5;
  }

  .start-team-preview {
    padding-top: 2.5rem;
  }

  .start-cta-clean {
    padding: 1.1rem;
    align-items: start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero-content,
  .philosophy,
  .two-column,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 84vh;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric:nth-child(2n) {
    border-right: 0;
  }

  .project-preview article.large,
  .project-preview article.medium,
  .project-preview article.small,
  .project-preview article.tall,
  .project-preview article.wide,
  .project-card,
  .team-grid,
  .team-profile,
  .team-strip {
    grid-column: auto;
  }

  .project-preview,
  .project-grid,
  .archive-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process,
  .team-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-eyebrow {
    font-size: 0.58rem;
  }

  .brand-main {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
  }

  .section {
    padding: 3.4rem 0;
  }

  .section.compact {
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
  }

  .page-hero .container {
    padding-bottom: 2.15rem;
  }

  .page-hero h1 {
    max-width: 15ch;
    font-size: clamp(1.75rem, 9.5vw, 2.45rem);
    line-height: 1;
  }

  .page-hero {
    min-height: 46vh;
  }

  .start-scroll-hint {
    font-size: 0.55rem;
    gap: 0.32rem;
  }

  .filters {
    gap: 0.42rem;
  }

  .filter-btn {
    font-size: 0.69rem;
    padding: 0.4rem 0.74rem;
    min-height: 38px;
  }

  .project-card figure {
    aspect-ratio: 5 / 4;
  }

  .project-card .meta {
    padding: 0.68rem;
  }

  .project-card h3 {
    font-size: 0.88rem;
    line-height: 1.16;
  }

  .gallery-card {
    width: calc(100% - 0.8rem);
    margin: 2.6vh auto 0;
    padding: 0.72rem;
  }

  .gallery-card img {
    max-height: 47vh;
  }

  .gallery-controls {
    gap: 0.45rem;
  }

  .gallery-controls .filter-btn {
    min-width: 76px;
    min-height: 38px;
    padding: 0.4rem 0.62rem;
  }

  .person-modal-card {
    width: calc(100% - 0.8rem);
    margin: 2.8vh auto 0;
    padding: 0.72rem;
  }

  .copy-mail-email {
    font-size: 0.83rem;
  }

  .phone-inline {
    grid-template-columns: minmax(116px, 45%) minmax(0, 1fr);
    gap: 0.42rem;
  }

  .phone-inline select,
  .phone-inline input {
    height: 42px;
  }

  .team-grid,
  .start-team-grid {
    grid-template-columns: 1fr;
  }

  .news-feature-card {
    width: min(246px, 100%);
    padding: 0.82rem;
  }

  .news-feature-title {
    font-size: clamp(1.08rem, 7.2vw, 1.38rem);
  }

  .start-spotlight-main {
    aspect-ratio: 5 / 4;
  }

  .start-spotlight-overlay {
    padding: 0.8rem;
  }

  .start-spotlight-overlay h3 {
    font-size: clamp(1.1rem, 7vw, 1.34rem);
  }

  .start-spotlight-item {
    padding: 0.68rem 0.68rem 0.62rem;
  }

  .spotlight-name {
    font-size: 0.88rem;
  }

  .spotlight-meta {
    font-size: 0.63rem;
  }

  .start-marquee-track {
    animation-duration: 26s;
  }

  .start-marquee-set {
    padding: 0.4rem;
  }

  .start-marquee-track span {
    font-size: 0.61rem;
    padding: 0.24rem 0.52rem;
  }

  .start-hero-copy h1 {
    max-width: 10.8ch;
  }

  .start-hero-tags {
    gap: 0.36rem;
  }

  .start-hero-tags span {
    font-size: 0.63rem;
  }

  .start-metric-row {
    grid-template-columns: 1fr;
  }

  .start-hero-card,
  .start-cta-actions .btn {
    width: 100%;
  }
}



