@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #E5DDC9;
  --bg-warm: #DCD2BA;
  --bg-deep: #CFC4A6;
  --ink: #1A1815;
  --ink-soft: #4A4640;
  --muted: #8B8580;
  --accent: #C8451E;
  --accent-deep: #9C3414;
  --accent-soft: #E8AB94;
  --line: rgba(26, 24, 21, 0.14);
  --line-soft: rgba(26, 24, 21, 0.07);

  --serif: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
em { font-style: normal; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.eyebrow strong { color: var(--accent); font-weight: 500; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.display em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
.display .accent { color: var(--accent); }

h1.display { font-size: clamp(40px, 6.4vw, 88px); line-height: 1.04; }
h2.display { font-size: clamp(30px, 4.4vw, 56px); line-height: 1.08; }
h3.display { font-size: clamp(22px, 2.8vw, 34px); line-height: 1.18; font-weight: 500; }

p.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
}

.body-text { color: var(--ink-soft); max-width: 64ch; }
.body-text + .body-text { margin-top: 1em; }

.prose {
  max-width: 70ch;
  margin-top: clamp(36px, 5vw, 56px);
}
.prose p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose p + p { margin-top: 1.25em; }
.prose strong { color: var(--ink); font-weight: 500; }

.mono-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* — — — Header — — — */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 24, 21, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(229, 221, 201, 0.12);
}
.site-header .logotype { color: var(--bg); gap: 14px; }
.site-header .logotype__name { font-size: 24px; letter-spacing: 0.09em; }
.site-header .logotype__mark { width: 13px; height: 13px; }
.site-header .nav__link { color: var(--bg); }
.site-header .nav__link:hover { color: var(--accent-soft); }
.site-header .nav__link.is-active { color: var(--accent); }
.site-header .nav-toggle span { background: var(--bg); }
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logotype {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.logotype__mark {
  width: 11px;
  height: 11px;
  background: var(--accent);
  display: block;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.logotype__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logotype__name em { font-style: normal; font-weight: 400; color: var(--accent); }

.nav { display: flex; gap: 28px; align-items: center; }
.nav__link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--accent); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 880px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26, 24, 21, 0.98); padding: 24px var(--gutter); flex-direction: column;
    align-items: flex-start; border-bottom: 1px solid rgba(229, 221, 201, 0.12); gap: 18px; }
  .nav.is-open { display: flex; }
  .nav__link { font-size: 13px; }
  .nav-toggle { display: flex; }
}

/* — — — Hero — — — */
.hero {
  padding: clamp(80px, 13vw, 180px) 0 clamp(60px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero__grid {
  display: block;
}
.hero__lead { margin-top: 32px; }
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.hero__meta__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero__meta__row strong { color: var(--ink); font-weight: 500; }

/* — — — Section — — — */
.section { padding: clamp(60px, 9vw, 130px) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: end;
}
@media (min-width: 900px) {
  .section__head { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}
.section__intro { color: var(--ink-soft); max-width: 48ch; font-size: 16px; }

/* — — — Service cards (homepage) — — — */
.services {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  padding: 44px 36px 48px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .service { border-bottom: none; }
  .service + .service { border-left: 1px solid var(--line); }
}
.service:hover { background: var(--bg-warm); }
.service__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 36px;
}
.service__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.service__title em { font-style: normal; color: var(--accent); font-weight: 500; }
.service__desc { color: var(--ink-soft); margin-bottom: auto; padding-bottom: 36px; font-size: 15px; }
.service__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.service__cta .arrow { transition: transform 0.3s ease; }
.service:hover .service__cta .arrow { transform: translateX(6px); }
.service:hover .service__cta { color: var(--accent); }

/* — — — Capabilities list — — — */
.capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.cap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.cap__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  min-width: 44px;
}
.cap__title {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.cap__desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 38ch;
  text-align: right;
}
@media (max-width: 760px) {
  .cap { grid-template-columns: auto 1fr; gap: 16px 20px; }
  .cap__desc { grid-column: 2; text-align: left; max-width: none; }
}

/* — — — Two column block — — — */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.two-col__panel {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.two-col__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.two-col__label::before { content: '◆'; font-size: 8px; }
.two-col__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.two-col__title em { font-style: normal; color: var(--accent); font-weight: 500; }
.two-col__body { color: var(--ink-soft); }
.two-col__body strong { color: var(--ink); font-weight: 500; }

/* — — — Sectors strip — — — */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sector {
  padding: 56px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.sector:last-child { border-right: none; }
.sector__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}
.sector__name {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 700px) {
  .sectors { grid-template-columns: 1fr; }
  .sector { border-right: none; border-bottom: 1px solid var(--line); }
  .sector:last-child { border-bottom: none; }
  .sector { padding: 36px 20px; }
}

/* — — — Placeholder visuals — — — */
.placeholder {
  background:
    repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(26,24,21,0.05) 14px, rgba(26,24,21,0.05) 15px),
    linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.placeholder--tall { aspect-ratio: 3 / 4; }
.placeholder--wide { aspect-ratio: 16 / 9; }
.placeholder--square { aspect-ratio: 1 / 1; }
.placeholder__corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.placeholder__corner--tl { top: 14px; left: 16px; }
.placeholder__corner--tr { top: 14px; right: 16px; }
.placeholder__corner--bl { bottom: 14px; left: 16px; }
.placeholder__corner--br { bottom: 14px; right: 16px; }
.placeholder__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  padding: 8px 14px;
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.placeholder::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  z-index: 1;
}

/* — — — Reference logo grid — — — */
.refs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 700px) { .refs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .refs { grid-template-columns: repeat(4, 1fr); } }
.ref {
  aspect-ratio: 4 / 3;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg);
  transition: background 0.3s ease;
}
.ref:hover { background: var(--bg-warm); }
.ref__id {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ref__logo {
  font-family: var(--serif);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ref__img {
  max-width: 64%;
  max-height: 56%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.78;
  transition: filter 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: multiply;
}
.ref:hover .ref__img {
  filter: grayscale(0);
  opacity: 1;
}
.ref__name {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .refs { grid-template-columns: 1fr; }
  .ref { aspect-ratio: 16 / 9; padding: 12px; }
  .ref__id { top: 12px; left: 14px; font-size: 9px; }
  .ref__name { bottom: 12px; right: 14px; font-size: 9px; }
  .ref__img { max-width: 50%; max-height: 70%; }
}

/* — — — Marquee — — — */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  gap: 36px;
  white-space: nowrap;
}
.marquee__track {
  display: flex;
  gap: 36px;
  animation: marquee 50s linear infinite;
  flex-shrink: 0;
}
.marquee__item {
  font-family: var(--mono);
  font-style: normal;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.marquee__item--accent { color: var(--accent); }
.marquee__item .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 6px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* — — — Logo marquee (kayan markalar) — — — */
.logo-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  padding: 28px 0;
  background: var(--bg-warm);
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-warm), rgba(220, 210, 186, 0));
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-warm), rgba(220, 210, 186, 0));
}
.logo-marquee + .logo-marquee { border-top: none; }
.logo-marquee__track {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-shrink: 0;
  padding-right: 64px;
  animation: logo-marquee 110s linear infinite;
}
.logo-marquee--reverse .logo-marquee__track { animation-direction: reverse; }
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item {
  flex: 0 0 auto;
  height: 110px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-marquee__img {
  max-height: 96px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@keyframes logo-marquee {
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
}

/* — — — CTA block — — — */
.cta-block {
  padding: clamp(60px, 9vw, 130px) 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--bg);
  position: relative;
}
.cta-block .display { color: var(--bg); }
.cta-block .eyebrow { color: rgba(229, 221, 201, 0.6); }
.cta-block .eyebrow::before { background: var(--accent); }
.cta-block__lead { color: rgba(229, 221, 201, 0.7); margin-top: 24px; max-width: 56ch; }
.cta-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding: 18px 28px;
  border: 1px solid rgba(229, 221, 201, 0.25);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  transition: all 0.3s ease;
}
.cta-block__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* — — — Footer — — — */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(229, 221, 201, 0.15);
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
}
.site-footer .logotype__name { color: var(--bg); }
.site-footer__tagline {
  font-family: var(--serif);
  font-style: normal;
  font-size: 16px;
  margin-top: 24px;
  max-width: 28ch;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(229, 221, 201, 0.85);
}
.foot-col__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 221, 201, 0.5);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  text-decoration: none;
  color: var(--bg);
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--accent-soft); }
.foot-col p { font-size: 14.5px; color: rgba(229, 221, 201, 0.75); }

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229, 221, 201, 0.5);
}

/* — — — Page hero (interior pages) — — — */
.page-hero {
  padding: clamp(70px, 11vw, 150px) 0 clamp(50px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.page-hero__crumbs a { text-decoration: none; color: var(--muted); }
.page-hero__crumbs a:hover { color: var(--accent); }
.page-hero__crumbs .sep { opacity: 0.4; }
.page-hero__title { margin-bottom: 32px; }
.page-hero__grid {
  display: block;
}

/* — — — Misc — — — */
.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(40px, 6vw, 80px) 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--bg);
}

.featured-image {
  margin-top: clamp(40px, 6vw, 80px);
}

/* — — — Photo grid — — — */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 720px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .photo-grid { grid-template-columns: 1fr; }
}
.photo-grid__item {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--line);
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* — — — Timeline — — — */
.timeline {
  margin-top: clamp(40px, 6vw, 80px);
}
.timeline__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 32px);
  position: relative;
}
.timeline__items::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.timeline__item {
  position: relative;
  z-index: 1;
}
.timeline__year {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 8px 0;
  line-height: 15px;
}
.timeline__dot {
  width: 11px;
  height: 11px;
  background: var(--accent);
  transform: rotate(45deg);
  margin-bottom: 22px;
}
.timeline__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 6px 0;
}
.timeline__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .timeline__items {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 28px;
  }
  .timeline__items::before {
    top: 6px;
    bottom: 6px;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .timeline__item {
    padding-top: 0;
  }
  .timeline__dot {
    position: absolute;
    left: -28px;
    top: 4px;
    margin-bottom: 0;
  }
  .timeline__year {
    margin-bottom: 6px;
  }
}

/* — — — Animations — — — */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.18s; }
.rise-3 { animation-delay: 0.32s; }
.rise-4 { animation-delay: 0.48s; }
.rise-5 { animation-delay: 0.62s; }

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade { animation: fade 1.4s ease both; animation-delay: 0.3s; }

.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 24, 21, 0.18), 0 2px 6px rgba(26, 24, 21, 0.12);
  text-decoration: none;
  z-index: 90;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.wa-fab:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 24, 21, 0.24), 0 4px 8px rgba(26, 24, 21, 0.14);
}
.wa-fab svg { width: 28px; height: 28px; display: block; }

@media (max-width: 640px) {
  .wa-fab { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
