/* Quick EG Pass — window craft for Egyptian light */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #101814;
  --ink-soft: #2a3832;
  --stone: #e6ebe9;
  --stone-deep: #c5d0cb;
  --paper: #f4f7f5;
  --nile: #0a6b6e;
  --nile-deep: #064a4d;
  --saffron: #d4920a;
  --white: #ffffff;
  --line: rgba(16, 24, 20, 0.12);
  --shadow-soft: 0 18px 40px rgba(16, 24, 20, 0.08);
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Public Sans", sans-serif;
  --max: 1180px;
  --radius: 2px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--nile);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--nile-deep);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Lattice atmosphere */
.lattice {
  position: relative;
  isolation: isolate;
}

.lattice::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.045;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, var(--ink) 1px, transparent 1px),
    linear-gradient(150deg, var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 28px 48px, 28px 48px, 14px 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 3px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nile);
}


.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0.45rem 0.7rem;
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a.active:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a.active {
  color: var(--nile-deep);
}

.nav .nav-cta {
  background: var(--saffron);
  color: var(--ink);
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  margin-left: 0.35rem;
  font-weight: 700;
}

.nav .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav .nav-cta::after {
  display: none;
}

/* Hero — full bleed, brand-first */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16, 24, 20, 0.92) 0%, rgba(16, 24, 20, 0.72) 42%, rgba(10, 107, 110, 0.45) 100%),
    linear-gradient(to top, rgba(16, 24, 20, 0.88) 0%, rgba(16, 24, 20, 0.35) 55%, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 1.25rem;
  animation: riseIn 0.9s ease both;
}

.hero-line {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 28rem;
  color: rgba(244, 247, 245, 0.9);
  margin-bottom: 1.75rem;
  animation: riseIn 0.9s ease 0.15s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.9s ease 0.28s both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-1.5%);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--saffron);
  color: var(--ink);
}

.btn-primary:hover {
  background: #e6a420;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 247, 245, 0.45);
}

.btn-ghost:hover {
  background: rgba(244, 247, 245, 0.1);
  color: var(--paper);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--nile);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.page-title h1,
.content-block h2,
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin-bottom: 0.75rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nile);
  margin-bottom: 0.65rem;
}

.lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.band-nile {
  background: var(--nile-deep);
  color: var(--paper);
}

.band-nile h2,
.band-nile .lead {
  color: var(--paper);
}

.band-nile .lead {
  opacity: 0.88;
}

.band-stone {
  background: var(--stone);
}

.band-ink {
  background: var(--ink);
  color: var(--paper);
}

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-media::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 6px;
  background: var(--saffron);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.split-copy p + p {
  margin-top: 0.9rem;
}

.split-copy p {
  color: var(--ink-soft);
}

/* Feature ribbon — not cards */
.ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ribbon-item {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--line);
}

.ribbon-item:last-child {
  border-right: none;
}

.ribbon-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.ribbon-item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Services list */
.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s ease;
}

.service-row:hover {
  padding-left: 0.5rem;
}

.service-row .num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--nile);
  font-size: 1.1rem;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.service-row p {
  color: var(--ink-soft);
  max-width: 42rem;
}

.service-row .arrow {
  color: var(--saffron);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Project mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mosaic figure:hover img {
  transform: scale(1.04);
}

.mosaic figure:first-child {
  grid-row: span 2;
  min-height: 480px;
}

.mosaic figure:not(:first-child) {
  min-height: 230px;
}

.mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(16, 24, 20, 0.8));
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--saffron);
  margin-bottom: 0.4rem;
}

.stat span {
  color: rgba(244, 247, 245, 0.8);
  font-size: 0.95rem;
}

/* Page hero — editorial + visual weight */
.page-hero {
  padding: clamp(2.8rem, 6vw, 4.2rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(10, 107, 110, 0.12), transparent 55%),
    var(--paper);
}

.page-hero--bleed {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  padding: 0;
  border-bottom: none;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.page-hero--bleed .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--bleed .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.page-hero--bleed .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 24, 20, 0.94) 0%, rgba(16, 24, 20, 0.7) 48%, rgba(6, 74, 77, 0.5) 100%),
    linear-gradient(to top, rgba(16, 24, 20, 0.9) 0%, transparent 55%);
}

.page-hero--bleed .page-title {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.page-hero--bleed .eyebrow {
  color: var(--saffron);
}

.page-hero--bleed .page-title h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  max-width: 14ch;
}

.page-hero--bleed .page-title p {
  color: rgba(244, 247, 245, 0.88);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  max-width: 34rem;
  margin-top: 1.1rem;
}

.page-title {
  max-width: 42rem;
}

.page-title h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 0.85rem;
  line-height: 1.05;
}

.page-title p {
  color: var(--ink-soft);
  font-size: 1.15rem;
}

/* Content */
.content-block {
  max-width: 46rem;
}

.content-block h2 {
  font-size: 1.55rem;
  margin: 2rem 0 0.75rem;
}

.content-block p,
.content-block li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.content-block ul {
  padding-left: 1.1rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.content-block li::marker {
  color: var(--nile);
}

/* Process steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--nile);
  letter-spacing: -0.03em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--ink-soft);
}

/* FAQ */
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--nile);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  max-width: 44rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-facts dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nile);
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.contact-facts dd {
  color: var(--ink-soft);
}

.contact-facts a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-facts a:hover {
  color: var(--nile);
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--line);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  width: 100%;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--nile);
  outline-offset: 1px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(10, 107, 110, 0.1);
  border-left: 3px solid var(--nile);
  color: var(--nile-deep);
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* Two-col text */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Legal */
.legal {
  max-width: 48rem;
}

.legal h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.15rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal .meta {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.03em;
  max-width: 28rem;
  line-height: 1.15;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(244, 247, 245, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--paper);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 3px;
}

.site-footer a {
  color: rgba(244, 247, 245, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--saffron);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col li,
.footer-col p {
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 247, 245, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-soft);
  display: none;
  animation: riseIn 0.45s ease both;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  color: rgba(244, 247, 245, 0.88);
}

.cookie-banner a {
  color: var(--saffron);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.btn-accept {
  background: var(--saffron);
  color: var(--ink);
}

.btn-reject {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 247, 245, 0.35);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.98rem;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  font-family: var(--font-display);
  font-weight: 600;
  width: 36%;
  color: var(--ink);
}

.spec-table td {
  color: var(--ink-soft);
}

/* Gallery grid simple */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

/* Map placeholder strip */
.map-strip {
  background: var(--stone);
  padding: 1.5rem;
  border-left: 4px solid var(--nile);
}

.map-strip strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

/* Responsive */
@media (max-width: 960px) {
  .split,
  .split.reverse,
  .contact-grid,
  .two-col,
  .footer-grid,
  .mosaic,
  .stats,
  .ribbon,
  .gallery {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .mosaic figure:first-child {
    grid-row: auto;
    min-height: 300px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .ribbon-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .ribbon-item:last-child {
    border-bottom: none;
  }

  .service-row {
    grid-template-columns: 3rem 1fr;
  }

  .service-row .arrow {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .nav.open {
    display: flex;
  }

  .nav .nav-cta {
    text-align: center;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .stats,
  .footer-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 3.5rem 1fr;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

/* ——— Inner pages: weight & character ——— */
.manifesto {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
  max-width: 22ch;
}

.manifesto em {
  font-style: normal;
  color: var(--nile);
  border-bottom: 3px solid var(--saffron);
}

.pull-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pull-stat > div {
  padding: 2rem 1.4rem;
  border-right: 1px solid var(--line);
}

.pull-stat > div:last-child {
  border-right: none;
}

.pull-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--nile);
  margin-bottom: 0.55rem;
}

.pull-stat span {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service-panels {
  display: grid;
  gap: 1.25rem;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 280px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-panel:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.service-panel:nth-child(even) .service-panel-media {
  order: 2;
}

.service-panel:hover {
  border-color: var(--nile);
  transform: translateY(-3px);
}

.service-panel-media {
  position: relative;
  min-height: 260px;
}

.service-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-panel-body {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-panel-body .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--saffron);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.service-panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.service-panel-body p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.service-panel-body .more {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--nile);
  font-size: 0.95rem;
}

.case-slab {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.case-slab:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.case-slab:nth-child(even) .case-media {
  order: 2;
}

.case-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.case-slab:hover .case-media img {
  transform: scale(1.04);
}

.case-copy .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nile);
  margin-bottom: 0.75rem;
}

.case-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.case-copy p {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}

.case-meta span {
  color: var(--ink-soft);
  font-weight: 500;
}

.process-rail {
  display: grid;
  gap: 0;
}

.process-block {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) minmax(180px, 0.55fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.process-block .idx {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--nile);
}

.process-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.45rem;
}

.process-block p {
  color: var(--ink-soft);
}

.process-block .thumb {
  min-height: 140px;
  overflow: hidden;
}

.process-block .thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}

.faq-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.faq-aside p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: none;
  padding: 1.25rem 1.35rem;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  font-size: 1.2rem;
}

.contact-hero-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 1.5rem 0 0.5rem;
}

.contact-hero-phone a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 3px solid var(--saffron);
}

.contact-hero-phone a:hover {
  color: var(--saffron);
}

.contact-grid {
  align-items: stretch;
}

.contact-facts dt {
  margin-top: 1.6rem;
}

.contact-facts dd {
  font-size: 1.08rem;
}

.contact-facts dd a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.form .btn-dark {
  width: 100%;
  padding: 1rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.refuse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.refuse-item {
  padding: 1.5rem 1.35rem;
  background: var(--ink);
  color: var(--paper);
  min-height: 160px;
}

.refuse-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: var(--saffron);
}

.refuse-item p {
  color: rgba(244, 247, 245, 0.82);
  font-size: 0.98rem;
}

@media (max-width: 960px) {
  .pull-stat,
  .service-panel,
  .service-panel:nth-child(even),
  .case-slab,
  .case-slab:nth-child(even),
  .process-block,
  .faq-layout,
  .refuse-grid {
    grid-template-columns: 1fr;
  }

  .service-panel:nth-child(even) .service-panel-media,
  .case-slab:nth-child(even) .case-media {
    order: 0;
  }

  .service-panel-media {
    min-height: 220px;
  }

  .process-block .thumb {
    display: none;
  }

  .pull-stat > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .faq-aside {
    position: static;
  }
}

