:root {
  --ink: #111512;
  --forest: #10231a;
  --paper: #f4f5f1;
  --white: #ffffff;
  --green: #009640;
  --green-deep: #087133;
  --gold: #c7902d;
  --mist: #dfe4dd;
  --muted: #626962;
  --line: rgba(17, 21, 18, 0.15);
  --light-line: rgba(255, 255, 255, 0.2);
  --radius: 6px;
  --page-pad: 64px;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 86px;
  padding: 14px var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 50px rgba(13, 23, 17, 0.08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  width: 166px;
  min-width: 166px;
  padding: 5px 8px;
  align-items: center;
  background: var(--white);
  border-radius: 2px;
}
.brand img { width: 100%; height: auto; }
.brand-name { font-size: 31px; font-weight: 700; text-transform: uppercase; }
.brand-o { color: var(--green); }
.brand-sub { margin-top: 3px; font-size: 11px; font-weight: 500; letter-spacing: 0; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a { position: relative; padding: 9px 0; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 600; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover,
.button:focus-visible { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover,
.button-light:focus-visible { color: var(--white); background: var(--green); border-color: var(--green); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; }
.mobile-nav {
  position: fixed;
  z-index: 25;
  top: 74px;
  left: 12px;
  right: 12px;
  display: none;
  padding: 18px 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 600; }
.mobile-nav a:last-child { border-bottom: 0; }

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 830px;
  height: 94vh;
  max-height: 1050px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}
.hero-image,
.hero-shade { position: absolute; inset: 0; height: 100%; }
.hero-image { object-fit: cover; object-position: 54% 50%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 17, 12, 0.86) 0%, rgba(8, 17, 12, 0.53) 42%, rgba(8, 17, 12, 0.12) 78%),
    linear-gradient(0deg, rgba(8, 17, 12, 0.66) 0%, transparent 38%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 180px var(--page-pad) 142px; }
.eyebrow,
.section-label { margin: 0 0 18px; color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hero .eyebrow { color: rgba(255, 255, 255, 0.82); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 22px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: 0; }
h1 { font-size: 84px; line-height: 0.94; }
h2 { font-size: 58px; line-height: 1; }
h3 { margin-bottom: 14px; font-size: 22px; line-height: 1.16; letter-spacing: 0; }
.hero-statement { margin: 0 0 22px; color: #39c86d; font-family: Georgia, "Times New Roman", serif; font-size: 52px; line-height: 1; }
.hero-copy { max-width: 650px; margin-bottom: 0; color: rgba(255, 255, 255, 0.8); font-size: 19px; line-height: 1.6; }
.hero-actions,
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding: 6px 0; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span,
.text-link:focus-visible span { transform: translate(3px, -3px); }
.text-link-light { color: var(--white); }
.hero-meta {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 34px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  gap: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
}
.hero-meta span { padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.35); }
.competence-bar { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--white); border-bottom: 1px solid var(--line); }
.competence-bar span { padding: 22px 20px; text-align: center; border-right: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.competence-bar span:last-child { border-right: 0; }

.section,
.services,
.case-facts,
.metrics,
.office,
.contact,
.footer { padding-inline: var(--page-pad); }
.section { max-width: var(--max); margin-inline: auto; }
.intro { display: grid; grid-template-columns: 1fr 0.8fr; gap: 100px; padding-top: 124px; padding-bottom: 54px; }
.intro-copy,
.case-copy { align-self: end; }
.lead { font-size: 20px; line-height: 1.58; }
.intro-copy > p:last-child,
.case-copy > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 700; }

.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: var(--max); margin: 0 auto; padding-bottom: 124px; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: color 420ms ease, transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1), box-shadow 420ms ease;
}
.service-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--forest);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 460ms cubic-bezier(0.2, 0.72, 0.2, 1);
}
.service-card::after {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}
.service-card > * { position: relative; z-index: 1; }
.services.is-animated .service-card {
  opacity: 0;
  transform: translateY(34px);
  transition-delay: var(--service-delay, 0ms);
}
.services.is-animated .service-card.is-visible { opacity: 1; transform: translateY(0); }
.services.is-animated .service-card.is-visible:hover,
.services.is-animated .service-card.is-visible:focus-within {
  color: var(--white);
  box-shadow: 0 24px 56px rgba(16, 35, 26, 0.18);
  transform: translateY(-7px);
  transition-delay: 0ms;
}
.service-card:hover::before,
.service-card:focus-within::before { transform: scaleY(1); }
.service-card:hover::after,
.service-card:focus-within::after { transform: scaleX(1); }
.service-card:nth-child(3n + 1) { border-left: 1px solid var(--line); }
.service-card:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
.service-number {
  display: block;
  width: fit-content;
  margin-bottom: 68px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  transition: color 300ms ease, transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}
.service-card p { margin-bottom: 24px; color: var(--muted); line-height: 1.58; transition: color 300ms ease; }
.service-card .text-link { align-self: flex-start; margin-top: auto; }
.service-card:hover .service-number,
.service-card:focus-within .service-number { color: #43cc75; transform: translateX(8px); }
.service-card:hover p,
.service-card:focus-within p { color: rgba(255, 255, 255, 0.68); }
.service-card:hover .text-link,
.service-card:focus-within .text-link { color: var(--white); }

.case-study { color: var(--white); background: var(--forest); }
.section-dark { color: var(--white); }
.case-head { display: grid; grid-template-columns: 1fr 0.72fr; gap: 100px; padding-top: 116px; padding-bottom: 48px; }
.section-label-gold { color: var(--gold); }
.case-copy p:last-child { color: rgba(255, 255, 255, 0.6); }
.comparison { --position: 50%; position: relative; height: 680px; overflow: hidden; background: #263028; }
.comparison-after,
.comparison-before,
.comparison-before img { position: absolute; inset: 0; height: 100%; }
.comparison-after,
.comparison-before img { object-fit: cover; }
.comparison-before { width: var(--position); overflow: hidden; }
.comparison-before img { width: 100vw; max-width: none; object-position: center; }
.comparison-line { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--position); width: 2px; background: var(--white); transform: translateX(-1px); pointer-events: none; }
.comparison-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-size: 21px;
  transform: translate(-50%, -50%);
}
.comparison-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison-label {
  position: absolute;
  z-index: 3;
  top: 28px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(8, 17, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.label-before { left: 28px; }
.label-after { right: 28px; background: rgba(199, 144, 45, 0.9); }
.case-facts { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin-inline: auto; padding-top: 0; padding-bottom: 0; }
.case-facts div { min-height: 180px; padding: 34px 24px; border-right: 1px solid var(--light-line); }
.case-facts div:first-child { border-left: 1px solid var(--light-line); }
.case-facts strong { display: block; margin-bottom: 16px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 44px; font-weight: 400; line-height: 1; }
.case-facts span { color: rgba(255, 255, 255, 0.63); font-size: 13px; }

.projects-section { padding-top: 126px; padding-bottom: 126px; }
.projects-heading { display: grid; grid-template-columns: 1fr 0.55fr; gap: 90px; align-items: end; margin-bottom: 46px; }
.projects-heading > p { margin-bottom: 24px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 300px; gap: 14px; }
.project-card { position: relative; grid-column: span 4; overflow: hidden; min-height: 300px; color: var(--white); background: #243127; border-radius: var(--radius); }
.project-card-wide { grid-column: span 8; grid-row: span 2; }
.project-card-tall { grid-column: span 5; }
.project-card:last-child { grid-column: span 7; }
.project-card img { height: 100%; object-fit: cover; transition: transform 500ms ease; }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 12, 8, 0.82) 0%, rgba(6, 12, 8, 0.05) 62%); content: ""; }
.project-card:hover img { transform: scale(1.025); }
.project-info { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; }
.project-info p { margin-bottom: 8px; color: rgba(255, 255, 255, 0.72); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.project-info h3 { margin-bottom: 0; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.project-info a { display: inline-flex; gap: 8px; align-items: center; margin-top: 14px; color: #43cc75; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.irenicus { padding: 118px var(--page-pad); color: var(--white); background: var(--forest); }
.irenicus-inner { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 88px; align-items: center; max-width: var(--max); margin-inline: auto; }
.irenicus-media { min-width: 0; }
.irenicus-media figure { margin: 0; }
.irenicus-main-image { aspect-ratio: 16 / 10; overflow: hidden; }
.irenicus-main-image img,
.irenicus-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.irenicus-detail-image { position: relative; width: 66%; aspect-ratio: 4 / 3; margin: -64px 22px 0 auto !important; border: 8px solid var(--forest); }
.irenicus-detail-image figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 12px 14px; color: rgba(255, 255, 255, 0.78); background: rgba(7, 19, 12, 0.82); font-size: 11px; }
.irenicus-copy > p:not(.section-label) { color: rgba(255, 255, 255, 0.68); line-height: 1.68; }
.irenicus-copy .lead { color: var(--white); }
.irenicus-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 34px 0 28px; border-top: 1px solid var(--light-line); border-left: 1px solid var(--light-line); }
.irenicus-facts div { min-height: 108px; padding: 20px; border-right: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.irenicus-facts strong { display: block; margin-bottom: 8px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; line-height: 1; }
.irenicus-facts span { color: rgba(255, 255, 255, 0.58); font-size: 12px; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin-inline: auto; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics div { min-height: 190px; padding: 38px 24px; border-right: 1px solid var(--line); }
.metrics div:last-child { border-right: 0; }
.metrics strong { display: block; margin-bottom: 15px; color: var(--green-deep); font-family: Georgia, "Times New Roman", serif; font-size: 52px; font-weight: 400; line-height: 1; }
.metrics span { color: var(--muted); font-size: 13px; }

.process { display: grid; grid-template-columns: 0.72fr 1fr; gap: 100px; padding-top: 126px; padding-bottom: 126px; }
.process-intro h2 { position: sticky; top: 130px; }
.process-list { border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 80px 1fr; gap: 22px; padding: 32px 0 34px; border-bottom: 1px solid var(--line); }
.process-list article > span { color: var(--green); font-size: 13px; font-weight: 700; }
.process-list p { margin-bottom: 0; color: var(--muted); line-height: 1.6; }

.office { display: grid; grid-template-columns: 0.8fr 1fr; max-width: var(--max); margin-inline: auto; padding-top: 0; padding-bottom: 126px; }
.office-copy { padding: 70px 70px 70px 0; }
.office-copy > p:not(.section-label) { color: var(--muted); line-height: 1.65; }
.owner-perspective { margin-top: 32px; padding: 4px 0 4px 22px; border-left: 2px solid var(--green); }
.owner-perspective .section-label { margin-bottom: 14px; }
.owner-perspective h3 { margin-bottom: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; }
.owner-perspective p:not(.section-label) { margin-bottom: 15px; color: var(--muted); font-size: 14px; line-height: 1.64; }
.office-principles { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--line); }
.office-principles span { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.office-visual { position: relative; min-height: 690px; overflow: hidden; color: var(--white); }
.office-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.office-visual::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 15, 10, 0.75), transparent 54%); content: ""; }
.office-visual > div { position: absolute; z-index: 2; right: 34px; bottom: 32px; left: 34px; }
.office-visual > div span { color: #43cc75; font-size: 13px; font-weight: 700; }
.office-visual > div p { margin: 10px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 38px; line-height: 1.08; }
.office-visual > div small { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.78); font-size: 13px; }

.contact { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 90px; padding-top: 116px; padding-bottom: 116px; color: var(--white); background: var(--forest); }
.contact-main h2 { max-width: 680px; }
.contact-main > p:not(.section-label) { max-width: 620px; color: rgba(255, 255, 255, 0.68); font-size: 18px; }
.contact-locations { display: grid; grid-template-columns: repeat(2, 1fr); align-self: end; border-top: 1px solid var(--light-line); }
.contact-locations article { min-height: 220px; padding: 26px 26px 26px 0; border-bottom: 1px solid var(--light-line); }
.contact-locations article + article { padding-left: 26px; border-left: 1px solid var(--light-line); }
.contact-locations article > p { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.contact-locations h3 { font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 400; line-height: 1.25; }
.contact-locations article > a { color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.office-hours { grid-column: 1 / -1; margin: 0; padding: 18px 0; color: rgba(255, 255, 255, 0.58); border-bottom: 1px solid var(--light-line); font-size: 12px; }
.office-hours a { color: var(--white); }

.footer { display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; min-height: 120px; background: var(--white); }
.brand-dark { color: var(--ink); }
.footer .brand { width: 164px; min-width: 164px; padding: 0; }
.footer > p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--muted); font-size: 12px; }

@media (max-width: 1180px) {
  :root { --page-pad: 34px; }
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .header-actions { justify-self: end; }
  h1 { font-size: 68px; }
  h2 { font-size: 50px; }
  .hero-statement { font-size: 44px; }
  .comparison { height: 570px; }
  .intro, .case-head, .projects-heading, .process { gap: 58px; }
  .office-copy { padding-right: 40px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 76px; }
  .hero { min-height: 720px; height: 90vh; }
  .hero-content { padding-top: 150px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); justify-content: stretch; }
  .competence-bar { grid-template-columns: repeat(3, 1fr); }
  .competence-bar span:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .intro, .case-head, .projects-heading, .process, .office, .contact { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:nth-child(3n + 1) { border-left: 0; }
  .service-card:nth-child(2n + 1) { border-left: 1px solid var(--line); }
  .service-card:nth-last-child(-n + 3) { border-bottom: 0; }
  .service-card:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .comparison { height: 500px; }
  .case-facts, .metrics { grid-template-columns: repeat(2, 1fr); }
  .case-facts div:nth-child(3), .case-facts div:nth-child(4) { border-top: 1px solid var(--light-line); }
  .metrics div:nth-child(3), .metrics div:nth-child(4) { border-top: 1px solid var(--line); }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .project-card, .project-card-wide, .project-card-tall, .project-card:last-child { grid-column: span 1; grid-row: span 1; }
  .project-card-wide { grid-column: span 2; }
  .irenicus-inner { grid-template-columns: 1fr; gap: 58px; }
  .irenicus-media { max-width: 760px; }
  .process-intro h2 { position: static; }
  .office-copy { padding: 0 0 54px; }
  .office-visual { min-height: 560px; }
  .contact-locations { margin-top: 28px; }
  .footer { grid-template-columns: 1fr auto; }
  .footer > p { display: none; }
}

@media (max-width: 620px) {
  :root { --page-pad: 18px; }
  .site-header { gap: 12px; padding-top: 10px; padding-bottom: 10px; }
  .site-header .brand { width: 138px; min-width: 138px; padding: 4px 6px; }
  .header-actions .button { display: none; }
  .hero { min-height: 700px; height: auto; }
  .hero-image { object-position: 65% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(8, 17, 12, 0.84), rgba(8, 17, 12, 0.42)), linear-gradient(0deg, rgba(8, 17, 12, 0.78), transparent 48%); }
  .hero-content { padding-top: 132px; padding-bottom: 152px; }
  h1 { font-size: 46px; }
  h2 { font-size: 40px; }
  h3 { font-size: 20px; }
  .hero-statement { font-size: 34px; }
  .hero-copy, .lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { right: 18px; bottom: 22px; left: 18px; grid-template-columns: 1fr; gap: 7px; }
  .hero-meta span { padding-left: 10px; }
  .competence-bar { grid-template-columns: repeat(2, 1fr); }
  .competence-bar span { padding: 16px 10px; font-size: 11px; }
  .competence-bar span:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .intro, .projects-section, .process { padding-top: 86px; padding-bottom: 86px; }
  .intro { gap: 24px; }
  .services { grid-template-columns: 1fr; padding-bottom: 86px; }
  .service-card, .service-card:nth-child(3n + 1), .service-card:nth-child(2n + 1) { min-height: 290px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
  .service-card:nth-last-child(-n + 2) { border-bottom: 0; }
  .service-card:last-child { border-bottom: 1px solid var(--line); }
  .service-number { margin-bottom: 46px; }
  .case-head { gap: 22px; padding-top: 86px; }
  .comparison { height: 400px; }
  .comparison-before img { width: 185vw; }
  .comparison-label { top: 14px; }
  .label-before { left: 14px; }
  .label-after { right: 14px; }
  .comparison-line span { width: 48px; height: 48px; }
  .case-facts, .metrics { grid-template-columns: 1fr; }
  .case-facts div, .case-facts div:first-child { min-height: auto; border-top: 1px solid var(--light-line); border-right: 0; border-left: 0; }
  .metrics div { min-height: auto; border-top: 1px solid var(--line); border-right: 0; }
  .projects-heading { gap: 20px; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .project-card, .project-card-wide, .project-card-tall, .project-card:last-child { grid-column: span 1; }
  .project-info h3 { font-size: 26px; }
  .irenicus { padding-top: 86px; padding-bottom: 86px; }
  .irenicus-inner { gap: 42px; }
  .irenicus-detail-image { width: calc(100% - 28px); margin: 14px 0 0 28px !important; border: 0; }
  .irenicus-facts div { min-height: 96px; padding: 17px; }
  .irenicus-facts strong { font-size: 26px; }
  .process { gap: 26px; }
  .process-list article { grid-template-columns: 48px 1fr; }
  .office { padding-bottom: 86px; }
  .office-visual { min-height: 500px; }
  .office-visual img { object-position: center 20%; }
  .office-visual > div { right: 22px; bottom: 22px; left: 22px; }
  .office-visual > div p { font-size: 30px; }
  .contact { gap: 34px; padding-top: 86px; padding-bottom: 86px; }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .contact-actions .button { width: 100%; }
  .contact-locations { grid-template-columns: 1fr; }
  .contact-locations article + article { padding-left: 0; border-left: 0; }
  .footer { grid-template-columns: 1fr; gap: 24px; padding-top: 30px; padding-bottom: 30px; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .services.is-animated .service-card { opacity: 1; transform: none; transition: none; }
  .services.is-animated .service-card.is-visible:hover,
  .services.is-animated .service-card.is-visible:focus-within { transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

.reel-section {
  padding: 126px var(--page-pad) 0;
  color: var(--white);
  background: #0c120e;
}

.reel-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 90px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 48px;
}

.reel-intro h2,
.press-heading h2 { margin-bottom: 0; }

.reel-intro > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.reel-player {
  position: relative;
  max-width: var(--max);
  min-height: 610px;
  margin-inline: auto;
  overflow: hidden;
  background: #18211a;
}

.reel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.reel-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.reel-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 10, 6, 0.92), transparent 64%);
  content: "";
}

.reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 7s linear;
}

.reel-slide.is-active img { transform: scale(1); }

.reel-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 180px;
  bottom: 42px;
  left: 42px;
}

.reel-slide figcaption span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reel-slide figcaption strong {
  display: block;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 400;
  line-height: 1.08;
}

.reel-controls {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 48px;
  padding: 7px 12px 7px 7px;
  background: rgba(5, 11, 7, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.reel-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--white);
  background: var(--green);
  border: 0;
  cursor: pointer;
}

.reel-toggle span,
.reel-toggle span::before,
.reel-toggle span::after { position: absolute; display: block; content: ""; }

.reel-toggle.is-playing span::before,
.reel-toggle.is-playing span::after {
  top: -7px;
  width: 3px;
  height: 14px;
  background: var(--white);
}

.reel-toggle.is-playing span::before { left: -5px; }
.reel-toggle.is-playing span::after { left: 3px; }

.reel-toggle:not(.is-playing) span {
  top: 11px;
  left: 13px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--white);
}

.reel-step {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.reel-step:hover,
.reel-step:focus-visible { border-color: var(--white); background: rgba(255, 255, 255, 0.12); }
.reel-step span { font-size: 17px; line-height: 1; }

.reel-progress {
  width: 132px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.reel-progress span {
  display: block;
  width: 5%;
  height: 100%;
  background: var(--white);
  transition: width 500ms ease;
}

.reel-dots { display: flex; gap: 7px; align-items: center; }
.reel-dots button {
  width: 20px;
  height: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}
.reel-dots button.is-active { width: 34px; background: var(--white); }
.reel-count { margin: 0; color: rgba(255, 255, 255, 0.54); font-size: 11px; }
.reel-count strong { color: var(--white); font-weight: 700; }

.press-area {
  max-width: var(--max);
  margin-inline: auto;
  padding: 110px 0 94px;
}

.press-heading {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}
.press-heading h2 { max-width: 560px; font-size: 48px; }
.press-lead {
  max-width: 620px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
}

.press-film {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: #080b09;
  border: 1px solid var(--light-line);
}

.press-film-slide {
  display: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 660px;
}
.press-film-slide.is-active { display: grid; }
.press-page {
  display: grid;
  min-width: 0;
  padding: 30px 30px 96px;
  place-items: center;
  background: #e8e9e5;
}
.press-page img {
  width: 100%;
  height: 534px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(5, 8, 6, 0.2));
}
.press-copy {
  display: flex;
  min-width: 0;
  padding: 74px 64px 112px;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  border-left: 1px solid var(--light-line);
}
.press-copy p {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.press-copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.03;
}
.press-copy > span {
  max-width: 490px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}
.press-copy a {
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.press-copy a:hover,
.press-copy a:focus-visible { color: var(--gold); border-bottom-color: var(--gold); }
.press-copy b { margin-left: 7px; font-size: 15px; font-weight: 400; }
.press-film-controls { right: 32px; bottom: 28px; }

.qualification-strip {
  display: grid;
  grid-template-columns: 0.7fr repeat(4, 1fr);
  max-width: var(--max);
  margin-inline: auto;
  border-top: 1px solid var(--light-line);
}
.qualification-strip > * {
  display: flex;
  min-height: 108px;
  margin: 0;
  padding: 24px 18px;
  align-items: center;
  border-right: 1px solid var(--light-line);
  font-size: 12px;
  line-height: 1.45;
}
.qualification-strip > *:first-child { padding-left: 0; color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.qualification-strip > *:last-child { border-right: 0; }

@media (max-width: 900px) {
  .reel-intro { grid-template-columns: 1fr; gap: 34px; }
  .reel-player { min-height: 520px; }
  .press-area { padding-top: 86px; }
  .press-heading { grid-template-columns: 1fr; gap: 20px; }
  .press-film-slide { grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); }
  .press-page { padding-inline: 18px; }
  .press-copy { padding-inline: 42px; }
  .press-copy h3 { font-size: 39px; }
  .qualification-strip { grid-template-columns: repeat(2, 1fr); }
  .qualification-strip > * { border-bottom: 1px solid var(--light-line); }
  .qualification-strip > *:first-child { padding-left: 18px; }
}

@media (max-width: 620px) {
  .reel-section { padding-top: 86px; }
  .reel-intro { gap: 20px; }
  .reel-player { min-height: 520px; margin-inline: calc(var(--page-pad) * -1); }
  .reel-slide figcaption { right: 18px; bottom: 108px; left: 18px; }
  .reel-slide figcaption strong { font-size: 31px; }
  .reel-controls { right: 14px; bottom: 18px; left: 14px; justify-content: space-between; }
  .reel-progress { width: min(25vw, 96px); }
  .reel-dots button { width: 12px; }
  .reel-dots button.is-active { width: 22px; }
  .press-area { padding-bottom: 72px; }
  .press-heading h2 { font-size: 40px; }
  .press-film { min-height: 820px; margin-inline: calc(var(--page-pad) * -1); border-inline: 0; }
  .press-film-slide { grid-template-columns: 1fr; grid-template-rows: 420px minmax(400px, auto); min-height: 820px; }
  .press-page { padding: 20px 16px; }
  .press-page img { height: 380px; }
  .press-page-wide img { height: 330px; }
  .press-copy { padding: 48px 24px 110px; border-top: 1px solid var(--light-line); border-left: 0; justify-content: flex-start; }
  .press-copy h3 { font-size: 35px; }
  .press-copy > span { margin-top: 20px; }
  .press-copy a { margin-top: 26px; }
  .press-film-controls { right: 14px; bottom: 18px; left: 14px; justify-content: space-between; }
  .qualification-strip { grid-template-columns: 1fr; }
  .qualification-strip > * { min-height: 76px; padding: 18px 0; border-right: 0; }
  .qualification-strip > *:first-child { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-slide img { transform: none; }
}

/* Legal pages */
.legal-page { background: var(--paper); }
.legal-header {
  display: flex;
  min-height: 92px;
  padding: 16px var(--page-pad);
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--forest);
  border-bottom: 1px solid var(--light-line);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
}
.legal-back span { color: var(--gold); font-size: 18px; }
.legal-main { min-height: 70vh; }
.legal-intro {
  padding: 92px var(--page-pad) 82px;
  color: var(--white);
  background: var(--forest);
}
.legal-intro > * { max-width: 820px; }
.legal-intro h1 {
  margin: 14px 0 22px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.95;
}
.legal-intro > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}
.legal-content {
  width: min(900px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 86px 0 104px;
}
.legal-content section {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 0.66fr);
  gap: 48px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.legal-content section:last-child { border-bottom: 1px solid var(--line); }
.legal-content h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}
.legal-content p {
  grid-column: 2;
  margin: 0;
  color: #343b36;
  font-size: 15px;
  line-height: 1.8;
}
.legal-content p + p { margin-top: 15px; }
.legal-content a:not(.legal-link) { text-decoration: underline; text-decoration-color: rgba(8, 113, 51, 0.4); text-underline-offset: 3px; }
.legal-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 4px;
  color: var(--green-deep);
  font-weight: 700;
}
.legal-facts {
  grid-column: 2;
  margin: 0;
}
.legal-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.legal-facts div:first-child { padding-top: 0; }
.legal-facts dt { color: var(--muted); font-size: 13px; }
.legal-facts dd { margin: 0; font-size: 14px; }
.footer-links [aria-current="page"] { color: var(--green-deep); font-weight: 700; }

@media (max-width: 620px) {
  .legal-header { min-height: 78px; }
  .legal-header .brand { width: 142px; min-width: 142px; }
  .legal-intro { padding-top: 68px; padding-bottom: 62px; }
  .legal-intro h1 { font-size: 52px; }
  .legal-content { padding: 54px 0 72px; }
  .legal-content section { grid-template-columns: 1fr; gap: 15px; padding: 28px 0; }
  .legal-content p, .legal-facts { grid-column: 1; }
  .legal-footer { padding-top: 28px; padding-bottom: 28px; }
}
