/* ============================================
   Greenframe sp zoo — Editorial Styles
   ============================================ */

:root {
  --color-bg: #0c0f0d;
  --color-bg-alt: #121816;
  --color-surface: #1a211c;
  --color-surface-hover: #222b24;
  --color-green: #3d8f63;
  --color-green-light: #5cb87e;
  --color-green-dark: #265a3d;
  --color-green-glow: rgba(61, 143, 99, 0.15);
  --color-cream: #ede8df;
  --color-cream-muted: #a8a093;
  --color-text: #e4dfd6;
  --color-text-muted: #7d7770;
  --color-border: rgba(237, 232, 223, 0.07);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-top-height: 36px;
  --header-bar-height: 88px;
  --header-height: calc(var(--header-top-height) + var(--header-bar-height) + 20px);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(61, 143, 99, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(38, 90, 61, 0.06), transparent 45%);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-green-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-cream); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0 0;
  transition: padding var(--transition);
}

.header--scrolled {
  padding-top: 8px;
}

.header--menu-open {
  z-index: 1003;
}

.header__top {
  height: var(--header-top-height);
  margin-bottom: 8px;
  transition: opacity var(--transition), height var(--transition), margin var(--transition);
}

.header--scrolled .header__top {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.header__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.header__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green-light);
  box-shadow: 0 0 0 0 rgba(92, 184, 126, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92, 184, 126, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(92, 184, 126, 0); }
}

.header__email {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-cream-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.header__email:hover { color: var(--color-green-light); }

.header__bar {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.header__bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--header-bar-height);
  padding: 0 12px 0 16px;
  min-width: 0;
  background: transparent;
  border: 1px solid rgba(237, 232, 223, 0.09);
  border-radius: 100px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(237, 232, 223, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
  isolation: isolate;
}

.header__bar-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(18, 24, 20, 0.72);
  backdrop-filter: blur(24px) saturate(1.2);
  z-index: 0;
  transition: background var(--transition);
}

.header__bar-inner > .logo,
.header__bar-inner > .header__actions,
.header__bar-inner > .burger {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .header__bar-inner > .nav {
    position: relative;
    z-index: 1;
  }
}

.header--scrolled .header__bar-inner::before {
  background: rgba(12, 15, 13, 0.92);
}

.header--scrolled .header__bar-inner {
  border-color: rgba(237, 232, 223, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo {
  position: relative;
  display: block;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}

.logo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.logo:hover::after {
  border-color: rgba(61, 143, 99, 0.4);
  box-shadow: 0 0 24px rgba(61, 143, 99, 0.22);
}

.logo__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(92, 184, 126, 0.35) 52%,
    transparent 65%
  );
  transform: translateX(-130%);
  pointer-events: none;
}

.logo:hover .logo__shine {
  animation: logoShine 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo__img {
  display: block;
  width: auto;
  height: 68px;
  max-width: 280px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover .logo__img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(92, 184, 126, 0.45));
}

@keyframes logoShine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__mobile-head,
.nav__mobile-footer,
.nav__overlay {
  display: none;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 10, 9, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--color-cream-muted);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 100px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav__index {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.nav__label {
  letter-spacing: 0.02em;
}

.nav__link:hover {
  color: var(--color-cream);
  background: rgba(237, 232, 223, 0.05);
}

.nav__link:hover .nav__index {
  opacity: 1;
  color: var(--color-green-light);
}

.nav__link--active {
  color: var(--color-cream);
  background: rgba(61, 143, 99, 0.12);
}

.nav__link--active .nav__index {
  opacity: 1;
  color: var(--color-green-light);
}

.nav__indicator {
  position: absolute;
  bottom: 6px;
  left: 0;
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, var(--color-green), var(--color-green-light));
  border-radius: 2px;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  pointer-events: none;
}

.nav__indicator--visible {
  opacity: 1;
}

.header__actions {
  flex-shrink: 0;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-green));
  color: var(--color-cream);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.header__cta:hover {
  color: var(--color-cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 143, 99, 0.35);
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
}

.header__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(12, 15, 13, 0.25);
  border-radius: 50%;
}

.header__cta-icon svg {
  width: 16px;
  height: 16px;
}

.burger {
  display: none;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  background: rgba(237, 232, 223, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  color: var(--color-cream);
}

.burger__lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.burger__lines span {
  display: block;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.burger__lines span:last-child { width: 70%; }

.burger__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.burger--active .burger__lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.burger--active .burger__lines span:last-child {
  width: 100%;
  transform: translateY(-3.5px) rotate(-45deg);
}

.burger--active .burger__label { opacity: 0.6; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: var(--color-green-light);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61, 143, 99, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(237, 232, 223, 0.2);
}

.btn--outline:hover {
  border-color: var(--color-green);
  color: var(--color-green-light);
  background: var(--color-green-glow);
}

.btn--full { width: 100%; }

/* ---- Hero ---- */
.hero {
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0 80px;
}

.hero__badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(61, 143, 99, 0.35);
  color: var(--color-green-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-green-light);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--color-cream-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__disciplines span {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
}

.hero__disciplines span:hover {
  border-color: rgba(61, 143, 99, 0.4);
  color: var(--color-green-light);
}

.hero__visual {
  position: relative;
  overflow: hidden;
}

.hero__img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}

.hero__img-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__frame-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--color-green-dark);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.5;
}

.hero__img-accent {
  position: absolute;
  bottom: 32px;
  left: -24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.hero__accent-line {
  width: 3px;
  height: 40px;
  background: var(--color-green);
  border-radius: 2px;
}

.hero__accent-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Marquee ---- */
.marquee {
  position: relative;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  padding: 20px 0;
  overflow: hidden;
}

.marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-alt), transparent);
}

.marquee__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 22s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.marquee__group span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-cream-muted);
  font-style: italic;
  white-space: nowrap;
}

.marquee__dot {
  color: var(--color-green);
  font-style: normal;
  font-size: 0.7rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ---- Sections ---- */
.section {
  padding: 110px 0;
}

.section__header {
  margin-bottom: 56px;
}

.section__header--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 16px;
}

.section__tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-green), transparent);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.12;
}

.section__subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section__subtitle--aside {
  max-width: 400px;
}

/* ---- Bento Services ---- */
.services {
  background: var(--color-bg-alt);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.bento__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  cursor: default;
}

.bento__item--hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter var(--transition);
}

.bento__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.bento__overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(12, 15, 13, 0.92) 0%, rgba(12, 15, 13, 0.2) 55%, transparent 100%);
  transition: background var(--transition);
}

.bento__item:hover .bento__overlay {
  background: linear-gradient(to top, rgba(12, 15, 13, 0.95) 0%, rgba(12, 15, 13, 0.5) 60%, rgba(12, 15, 13, 0.15) 100%);
}

.bento__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-green-light);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.bento__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.bento__item--hero .bento__overlay h3 {
  font-size: 2rem;
}

.bento__overlay p {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  line-height: 1.6;
  max-width: 480px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.bento__item:hover .bento__overlay p {
  opacity: 1;
  transform: translateY(0);
}

.bento__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.bento__item:hover .bento__tags {
  opacity: 1;
  transform: translateY(0);
}

.bento__tags li {
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--color-cream-muted);
  border: 1px solid var(--color-border);
  border-radius: 100px;
}

/* ---- Approach panels ---- */
.approach__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.approach__panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.approach__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 0.6s ease, filter var(--transition);
}

.approach__panel:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.approach__panel-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(12, 15, 13, 0.9) 0%, transparent 60%);
}

.approach__panel-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.approach__panel-content p {
  font-size: 0.88rem;
  color: var(--color-cream-muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.approach__panel:hover .approach__panel-content p {
  opacity: 1;
  transform: translateY(0);
}

.approach__note {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.approach__note-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: var(--color-green);
}

.approach__note h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.approach__note p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Gallery ---- */
.gallery {
  background: var(--color-bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(12, 15, 13, 0.85), transparent);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery__item:hover figcaption {
  transform: translateY(0);
}

/* ---- Process zigzag ---- */
.process__zigzag {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.process__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process__row--reverse .process__img {
  order: 2;
}

.process__row--reverse .process__text {
  order: 1;
}

.process__row--text {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0;
}

.process__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process__img img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process__row:hover .process__img img {
  transform: scale(1.03);
}

.process__step {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}

.process__text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.process__text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ---- Scope / Materials ---- */
.scope__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.scope__visual {
  position: relative;
  overflow: hidden;
}

.scope__img-primary {
  border-radius: var(--radius-xl);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.scope__img-primary img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.scope__stat-card {
  position: absolute;
  bottom: 24px;
  right: -20px;
  padding: 24px 28px;
  background: var(--color-green-dark);
  border-radius: var(--radius-md);
  text-align: center;
}

.scope__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: 6px;
}

.scope__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.7);
}

.scope__intro {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
  font-size: 1rem;
}

.scope__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scope__detail {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color var(--transition);
}

.scope__detail[open] {
  border-color: rgba(61, 143, 99, 0.3);
}

.scope__detail summary {
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}

.scope__detail summary::-webkit-details-marker { display: none; }

.scope__detail summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--color-green);
  transition: transform var(--transition);
}

.scope__detail[open] summary::after {
  transform: rotate(45deg);
}

.scope__detail summary:hover {
  color: var(--color-green-light);
}

.scope__detail p {
  padding: 0 24px 18px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- Contact ---- */
.contact__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.contact__visual {
  position: relative;
  min-height: 520px;
}

.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact__visual-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(12, 15, 13, 0.92) 0%, rgba(12, 15, 13, 0.3) 60%, transparent 100%);
}

.contact__visual-overlay .section__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 24px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-cream-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact__link svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--color-green);
}

.contact__link:hover { color: var(--color-cream); }

.contact__form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.contact-page__form-section {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
}

.contact-page__map-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.contact-map {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.contact-map__head {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--color-border);
}

.contact-map__head .section__title {
  margin-bottom: 8px;
}

.contact-map__address {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  line-height: 1.6;
}

.contact-map__embed {
  position: relative;
  width: 100%;
  height: 440px;
  background: var(--color-bg-alt);
}

.contact-map__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

@media (max-width: 768px) {
  .contact-page__form-section {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 40px;
  }

  .contact-page__map-section {
    padding-bottom: 64px;
  }

  .contact-map__head {
    padding: 24px 20px 20px;
  }

  .contact-map__embed {
    height: 320px;
  }
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-cream-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px var(--color-green-glow);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a093' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__field--error {
  border-color: #c45c52 !important;
  box-shadow: 0 0 0 3px rgba(196, 92, 82, 0.15) !important;
}

/* ---- Form modal ---- */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.form-modal--visible {
  opacity: 1;
  visibility: visible;
}

.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 9, 0.78);
  backdrop-filter: blur(8px);
}

.form-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 36px 32px 32px;
  background: rgba(18, 24, 20, 0.95);
  border: 1px solid rgba(237, 232, 223, 0.1);
  border-radius: var(--radius-xl);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(237, 232, 223, 0.06);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-modal--visible .form-modal__dialog {
  transform: translateY(0) scale(1);
}

.form-modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 143, 99, 0.3), transparent);
  opacity: 0.8;
}

.form-modal--error .form-modal__dialog::before {
  background: linear-gradient(90deg, transparent, rgba(196, 92, 82, 0.4), transparent);
}

.form-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(61, 143, 99, 0.35);
  background: linear-gradient(145deg, rgba(61, 143, 99, 0.22), rgba(61, 143, 99, 0.08));
  color: var(--color-green-light);
  box-shadow: 0 12px 32px rgba(61, 143, 99, 0.15);
}

.form-modal--error .form-modal__icon {
  border-color: rgba(196, 92, 82, 0.4);
  background: linear-gradient(145deg, rgba(196, 92, 82, 0.2), rgba(196, 92, 82, 0.06));
  color: #e07a6f;
  box-shadow: 0 12px 32px rgba(196, 92, 82, 0.12);
}

.form-modal__icon svg {
  width: 26px;
  height: 26px;
}

.form-modal__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.form-modal__text {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.form-modal__errors {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: rgba(196, 92, 82, 0.08);
  border: 1px solid rgba(196, 92, 82, 0.22);
  border-radius: var(--radius-md);
}

.form-modal__errors li {
  font-size: 0.84rem;
  color: #e8a8a0;
  line-height: 1.55;
  padding: 4px 0;
}

.form-modal__errors li + li {
  border-top: 1px solid rgba(196, 92, 82, 0.15);
  margin-top: 4px;
  padding-top: 8px;
}

.form-modal__btn {
  width: 100%;
  border-radius: 100px;
  padding: 14px 28px;
}

.form-modal--success .form-modal__text {
  margin-bottom: 24px;
}

/* ---- Legal pages ---- */
.legal-page {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
}

.legal-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-page__header {
  width: 100%;
  max-width: 720px;
  margin-bottom: 48px;
  text-align: center;
}

.legal-page__intro {
  font-size: 1rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  margin-top: 20px;
  text-align: left;
}

.legal-page__content {
  width: 100%;
  max-width: 800px;
}

.legal-page__block {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-page__block:first-child {
  padding-top: 0;
}

.legal-page__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-cream);
  margin-bottom: 16px;
  line-height: 1.35;
}

.legal-page__content p {
  font-size: 0.92rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-page__content p:last-child {
  margin-bottom: 0;
}

.legal-page__content ul {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
}

.legal-page__content li {
  position: relative;
  font-size: 0.92rem;
  color: var(--color-cream-muted);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
}

.legal-page__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  opacity: 0.7;
}

.legal-page__content a {
  color: var(--color-green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(92, 184, 126, 0.35);
}

.legal-page__content a:hover {
  color: var(--color-cream);
  text-decoration-color: var(--color-green-light);
}

.legal-page__content strong {
  color: var(--color-cream);
  font-weight: 600;
}

.legal-page__content em {
  font-style: italic;
  color: var(--color-cream-muted);
}

.legal-page__header .section__tag {
  justify-content: center;
}

/* ---- FAQs page ---- */
.faqs-page {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
}

.faqs-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faqs-page__header {
  width: 100%;
  max-width: 720px;
  margin-bottom: 48px;
  text-align: center;
}

.faqs-page__intro {
  font-size: 1rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  margin-top: 20px;
  text-align: left;
}

.faqs-page__header .section__tag {
  justify-content: center;
}

.faqs-page__list {
  width: 100%;
  max-width: 800px;
}

.faqs-page__cta {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  padding: 28px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.faqs-page__cta p {
  color: var(--color-cream-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faqs-page {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 64px;
  }

  .faqs-page__header {
    margin-bottom: 36px;
  }

  .faqs-page__cta {
    padding: 24px 20px;
  }
}

/* ---- Materials page ---- */
.materials-page__hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
  margin-bottom: 0;
}

.materials-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 15, 13, 0.94) 0%,
    rgba(12, 15, 13, 0.45) 55%,
    rgba(12, 15, 13, 0.25) 100%
  );
}

.materials-page__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  max-width: 680px;
}

.materials-page__hero-content .section__title {
  margin-bottom: 16px;
}

.materials-page__hero-desc {
  font-size: 1.02rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  max-width: 560px;
}

.materials-pillars {
  padding-top: 64px;
  padding-bottom: 64px;
}

.materials-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.materials-pillar {
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: border-color var(--transition), transform var(--transition);
}

.materials-pillar:hover {
  border-color: rgba(61, 143, 99, 0.35);
  transform: translateY(-3px);
}

.materials-pillar__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}

.materials-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.materials-pillar p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.materials-catalog {
  padding-top: 40px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.materials-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.materials-card:hover {
  border-color: rgba(61, 143, 99, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.materials-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.materials-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.materials-card:hover .materials-card__img img {
  transform: scale(1.05);
}

.materials-card__body {
  padding: 24px 26px 28px;
}

.materials-card__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 10px;
}

.materials-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.materials-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.materials-card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.materials-card li {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(61, 143, 99, 0.1);
  color: var(--color-green-light);
  border: 1px solid rgba(61, 143, 99, 0.2);
}

.materials-supply {
  padding-top: 80px;
}

.materials-supply__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.materials-supply__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.materials-supply__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.materials-supply__content .section__title {
  margin-bottom: 16px;
}

.materials-supply__content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.materials-supply__list {
  list-style: none;
  margin-top: 20px;
}

.materials-supply__list li {
  position: relative;
  font-size: 0.88rem;
  color: var(--color-cream-muted);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.55;
}

.materials-supply__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}

.materials-checklist {
  padding-top: 80px;
  padding-bottom: 80px;
}

.materials-checklist__inner {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  background: linear-gradient(145deg, rgba(26, 33, 28, 0.9), rgba(18, 24, 20, 0.95));
}

.materials-checklist__head {
  margin-bottom: 28px;
  max-width: 560px;
}

.materials-checklist__head .section__title {
  margin-bottom: 12px;
}

.materials-checklist__head p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.materials-page__cta {
  padding-bottom: 80px;
}

.materials-page__cta-inner {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.materials-page__cta-inner p {
  color: var(--color-cream-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .materials-pillars__grid {
    grid-template-columns: 1fr;
  }

  .materials-supply__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .materials-page__hero {
    min-height: 52vh;
  }

  .materials-page__hero-content {
    padding: 48px 0 40px;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .materials-checklist__inner {
    padding: 28px 20px;
  }

  .materials-pillars {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* ---- Process page ---- */
.process-page__hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
}

.process-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 15, 13, 0.94) 0%,
    rgba(12, 15, 13, 0.45) 55%,
    rgba(12, 15, 13, 0.25) 100%
  );
}

.process-page__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  max-width: 720px;
}

.process-page__hero-desc {
  font-size: 1.02rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 16px;
}

.process-overview {
  padding-top: 64px;
  padding-bottom: 32px;
}

.process-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-overview__item {
  padding: 22px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  text-align: center;
}

.process-overview__item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
}

.process-overview__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-cream);
  margin-bottom: 6px;
}

.process-overview__item p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.process-page__steps {
  padding-top: 40px;
  padding-bottom: 80px;
}

.process-deliverables {
  padding-top: 0;
  padding-bottom: 80px;
}

.process-deliverables__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 33, 28, 0.9), rgba(18, 24, 20, 0.95));
}

.process-deliverables__content .section__title {
  margin-bottom: 14px;
}

.process-deliverables__content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.process-deliverables__list {
  list-style: none;
}

.process-deliverables__list li {
  position: relative;
  font-size: 0.88rem;
  color: var(--color-cream-muted);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.55;
}

.process-deliverables__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}

.process-deliverables__aside {
  padding: 28px 24px;
  border: 1px solid rgba(61, 143, 99, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(61, 143, 99, 0.08);
}

.process-deliverables__aside h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.process-deliverables__aside p {
  font-size: 0.88rem;
  color: var(--color-cream-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.process-page__cta {
  padding-bottom: 80px;
}

.process-page__cta-inner {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.process-page__cta-inner p {
  color: var(--color-cream-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .process-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-deliverables__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .process-page__hero {
    min-height: 52vh;
  }

  .process-page__hero-content {
    padding: 48px 0 40px;
  }

  .process-overview__grid {
    grid-template-columns: 1fr;
  }

  .process-overview {
    padding-top: 48px;
  }
}

/* ---- Gallery page ---- */
.gallery-page__hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
}

.gallery-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 15, 13, 0.94) 0%,
    rgba(12, 15, 13, 0.45) 55%,
    rgba(12, 15, 13, 0.25) 100%
  );
}

.gallery-page__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  max-width: 680px;
}

.gallery-page__hero-desc {
  font-size: 1.02rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 16px;
}

.gallery-focus {
  padding-top: 64px;
  padding-bottom: 32px;
}

.gallery-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-focus__card {
  padding: 26px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.gallery-focus__card span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 10px;
}

.gallery-focus__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.gallery-focus__card p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.gallery-page__section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.gallery-page__section-header {
  margin-bottom: 32px;
  max-width: 560px;
}

.gallery-page__section-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.gallery-page__section-header p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.gallery-page__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 14px;
}

.gallery-page__cta {
  padding-bottom: 80px;
}

.gallery-page__cta-inner {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.gallery-page__cta-inner p {
  color: var(--color-cream-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-page__mosaic .gallery__item {
  cursor: pointer;
}

.gallery-page__mosaic .gallery__item:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

/* ---- Gallery lightbox ---- */
body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox--visible {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 9, 0.92);
  backdrop-filter: blur(10px);
}

.gallery-lightbox__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.96);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox--visible .gallery-lightbox__inner {
  transform: scale(1);
}

.gallery-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(12, 15, 13, 0.8);
  color: var(--color-cream-muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.gallery-lightbox__close:hover {
  border-color: rgba(61, 143, 99, 0.45);
  color: var(--color-cream);
  background: rgba(12, 15, 13, 0.95);
}

.gallery-lightbox__close svg {
  width: 18px;
  height: 18px;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(12, 15, 13, 0.8);
  color: var(--color-cream-muted);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.gallery-lightbox__nav:hover {
  border-color: rgba(61, 143, 99, 0.45);
  color: var(--color-cream);
  background: rgba(12, 15, 13, 0.95);
}

.gallery-lightbox__nav svg {
  width: 22px;
  height: 22px;
}

.gallery-lightbox__nav--prev {
  left: -8px;
}

.gallery-lightbox__nav--next {
  right: -8px;
}

.gallery-lightbox__stage {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(237, 232, 223, 0.08);
  background: var(--color-bg-alt);
  touch-action: pan-y pinch-zoom;
}

.gallery-lightbox__stage img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #0a0c0b;
}

.gallery-lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
  padding: 0 4px;
}

.gallery-lightbox__caption {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.03em;
}

.gallery-lightbox__counter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-green-light);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox__nav--prev {
    left: 4px;
  }

  .gallery-lightbox__nav--next {
    right: 4px;
  }

  .gallery-lightbox__stage img {
    max-height: 65vh;
  }

  .gallery-lightbox__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 1100px) {
  .gallery-focus__grid {
    grid-template-columns: 1fr;
  }

  .gallery-page__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-page__mosaic .gallery__item {
    min-height: 220px;
  }

  .gallery-page__mosaic .gallery__item--tall,
  .gallery-page__mosaic .gallery__item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-page__hero {
    min-height: 50vh;
  }

  .gallery-page__hero-content {
    padding: 48px 0 40px;
  }

  .gallery-focus {
    padding-top: 48px;
  }

  .gallery-page__mosaic {
    grid-template-columns: 1fr;
  }
}

/* ---- Approach page ---- */
.approach-page__hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
}

.approach-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 15, 13, 0.94) 0%,
    rgba(12, 15, 13, 0.45) 55%,
    rgba(12, 15, 13, 0.25) 100%
  );
}

.approach-page__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  max-width: 720px;
}

.approach-page__hero-desc {
  font-size: 1.02rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 16px;
}

.approach-foundations {
  padding-top: 64px;
  padding-bottom: 32px;
}

.approach-foundations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.approach-foundations__item {
  padding: 22px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.approach-foundations__item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
}

.approach-foundations__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-cream);
  margin-bottom: 6px;
}

.approach-foundations__item p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.approach-page__sectors {
  padding-top: 40px;
  padding-bottom: 40px;
}

.approach-page__practice {
  padding-top: 40px;
  padding-bottom: 80px;
}

.approach-commitments {
  padding-top: 0;
  padding-bottom: 80px;
}

.approach-commitments__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 33, 28, 0.9), rgba(18, 24, 20, 0.95));
}

.approach-commitments__content .section__title {
  margin-bottom: 14px;
}

.approach-commitments__content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.approach-commitments__list {
  list-style: none;
}

.approach-commitments__list li {
  position: relative;
  font-size: 0.88rem;
  color: var(--color-cream-muted);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.55;
}

.approach-commitments__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}

.approach-commitments__aside {
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(12, 15, 13, 0.45);
}

.approach-commitments__aside h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.approach-commitments__aside p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.approach-commitments__aside p:last-child {
  margin-bottom: 0;
}

.approach-page__cta {
  padding-bottom: 80px;
}

.approach-page__cta-inner {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.approach-page__cta-inner p {
  color: var(--color-cream-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .approach-foundations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-commitments__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .approach-page__hero {
    min-height: 52vh;
  }

  .approach-page__hero-content {
    padding: 48px 0 40px;
  }

  .approach-foundations__grid {
    grid-template-columns: 1fr;
  }

  .approach-foundations {
    padding-top: 48px;
  }
}

/* ---- Services page ---- */
.services-page__hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
}

.services-page__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 15, 13, 0.94) 0%,
    rgba(12, 15, 13, 0.45) 55%,
    rgba(12, 15, 13, 0.25) 100%
  );
}

.services-page__hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  max-width: 720px;
}

.services-page__hero-desc {
  font-size: 1.02rem;
  color: var(--color-cream-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 16px;
}

.services-page__catalog {
  padding-top: 64px;
  padding-bottom: 80px;
}

.services-page__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.services-card {
  grid-column: span 4;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.services-card:hover {
  border-color: rgba(61, 143, 99, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.services-card:nth-child(4) {
  grid-column: 3 / span 4;
}

.services-card:nth-child(5) {
  grid-column: 7 / span 4;
}

.services-card__media {
  position: relative;
  overflow: hidden;
}

.services-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.services-card:hover .services-card__media img {
  transform: scale(1.04);
}

.services-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(12, 15, 13, 0.72);
  color: var(--color-green-light);
  border: 1px solid rgba(61, 143, 99, 0.35);
  backdrop-filter: blur(6px);
}

.services-card__body {
  padding: 22px 22px 24px;
}

.services-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.services-card__body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.services-card__btn {
  width: 100%;
}

/* ---- Service modal ---- */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.service-modal--visible {
  opacity: 1;
  visibility: visible;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 9, 0.82);
  backdrop-filter: blur(8px);
}

.service-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: rgba(18, 24, 20, 0.97);
  border: 1px solid rgba(237, 232, 223, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(237, 232, 223, 0.06);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modal--visible .service-modal__dialog {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(12, 15, 13, 0.75);
  color: var(--color-cream-muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.service-modal__close:hover {
  border-color: rgba(61, 143, 99, 0.45);
  color: var(--color-cream);
  background: rgba(12, 15, 13, 0.9);
}

.service-modal__close svg {
  width: 18px;
  height: 18px;
}

.service-modal__media {
  position: relative;
  min-height: 0;
  background: var(--color-bg-alt);
}

.service-modal__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  object-fit: cover;
  display: block;
}

.service-modal__body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.service-modal__num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 10px;
}

.service-modal__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-cream);
  margin-bottom: 14px;
  line-height: 1.25;
}

.service-modal__content {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.service-modal__content p {
  margin-bottom: 14px;
}

.service-modal__content p:last-child {
  margin-bottom: 0;
}

.service-modal__content ul {
  list-style: none;
  margin: 16px 0 0;
}

.service-modal__content li {
  position: relative;
  font-size: 0.86rem;
  color: var(--color-cream-muted);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.55;
}

.service-modal__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
}

.service-modal__cta {
  margin-top: 22px;
  align-self: flex-start;
}

body.service-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .services-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-card,
  .services-card:nth-child(4),
  .services-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-modal {
    padding: 16px;
  }

  .service-modal__dialog {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    max-width: 100%;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
  }

  .service-modal__media {
    min-height: 0;
    max-height: 30vh;
    max-height: 30dvh;
    flex-shrink: 0;
  }

  .service-modal__media img {
    min-height: 0;
    max-height: 30vh;
    max-height: 30dvh;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-modal__body {
    flex: 1;
    padding: 20px 20px 24px;
  }

  .service-modal__close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 10004;
  }

  .service-modal__cta {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services-page__hero {
    min-height: 50vh;
  }

  .services-page__hero-content {
    padding: 48px 0 40px;
  }

  .services-page__catalog {
    padding-top: 48px;
  }

  .services-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 64px;
  }

  .legal-page__header {
    margin-bottom: 36px;
  }

  .legal-page__block {
    padding: 28px 0;
  }

  .legal-page__content h2 {
    font-size: 1.2rem;
  }
}

/* ---- Footer ---- */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 28px;
}

.footer__logo {
  position: relative;
  display: block;
  margin-bottom: 16px;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}

.footer__logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.footer__logo:hover::after {
  border-color: rgba(61, 143, 99, 0.4);
  box-shadow: 0 0 28px rgba(61, 143, 99, 0.25);
}

.footer__logo:hover .logo__shine {
  animation: logoShine 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__logo-img {
  display: block;
  width: auto;
  height: 80px;
  max-width: 300px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__logo:hover .footer__logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(92, 184, 126, 0.4));
}

.footer__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 20px;
}

.footer__address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-cream-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer__email {
  font-size: 0.88rem;
  color: var(--color-green-light);
}

.footer__hours {
  list-style: none;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
}

.footer__hours li:last-child { border-bottom: none; }

.footer__hours span:first-child { color: var(--color-cream-muted); }
.footer__hours span:last-child { color: var(--color-cream); font-weight: 500; }

.footer__bottom {
  border-top: 1px solid var(--color-border);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer__bottom a { color: var(--color-text-muted); }
.footer__bottom a:hover { color: var(--color-green-light); }

.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer__legal a:hover { color: var(--color-green-light); }

.footer__legal-sep {
  color: var(--color-text-muted);
  opacity: 0.5;
  font-size: 0.78rem;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (min-width: 769px) {
  .nav__overlay {
    display: none !important;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .nav__link {
    padding: 8px 9px;
    font-size: 0.74rem;
  }

  .nav__index { display: none; }

  .header__cta-text { display: none; }

  .header__cta {
    padding: 10px;
  }

  .logo__img { height: 52px; max-width: 210px; }
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual { max-width: 560px; margin: 0 auto; }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento__item--hero {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 360px;
  }

  .bento__item--wide { grid-column: span 2; }

  .approach__panels {
    grid-template-columns: 1fr;
  }

  .approach__panel { min-height: 320px; }
  .approach__panel img { min-height: 320px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }

  .scope__layout,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .contact__visual { min-height: 360px; }

  .section__header--row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root {
    --header-top-height: 0px;
    --header-bar-height: 60px;
    --header-height: calc(var(--header-bar-height) + 24px);
  }

  .header {
    padding-top: 10px;
  }

  .header__top {
    display: none;
  }

  .header__bar {
    padding: 0 12px;
  }

  .header__bar-inner {
    padding: 0 8px 0 12px;
    border-radius: 20px;
    gap: 6px;
    justify-content: space-between;
  }

  .logo {
    flex-shrink: 0;
    min-width: 0;
    max-width: calc(100% - 100px);
  }

  .logo__img { height: 40px; max-width: min(170px, 50vw); }

  .footer__logo-img { height: 64px; max-width: 240px; }

  .nav__overlay {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1001;
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--color-bg);
    border-left: none;
    padding: calc(var(--header-height) + 16px) 24px 32px;
    box-shadow: none;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease,
                visibility 0.35s ease;
    will-change: transform;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .header__bar-inner > .nav {
    position: fixed;
    z-index: 1001;
  }

  .nav--open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }

  .nav__mobile-head {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__mobile-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .nav__mobile-head-text {
    flex: 1;
    min-width: 0;
  }

  .nav__close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 2px;
    background: rgba(237, 232, 223, 0.06);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-cream);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
  }

  .nav__close svg {
    width: 18px;
    height: 18px;
  }

  .nav__close:hover {
    background: rgba(61, 143, 99, 0.15);
    border-color: rgba(61, 143, 99, 0.3);
    color: var(--color-green-light);
  }

  .nav__mobile-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-cream);
    margin-bottom: 6px;
  }

  .nav__mobile-sub {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav__link {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
  }

  .nav__link--active {
    border-color: rgba(61, 143, 99, 0.25);
  }

  .nav__index {
    font-size: 0.72rem;
    min-width: 24px;
  }

  .nav__mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }

  .nav__mobile-email {
    font-size: 0.88rem;
    color: var(--color-cream-muted);
    text-align: center;
  }

  .nav__mobile-email:hover { color: var(--color-green-light); }

  .nav__indicator { display: none; }

  .header__actions { display: none; }

  .burger {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .header__bar-inner > .burger {
    z-index: 1002;
  }

  .burger--active {
    background: rgba(61, 143, 99, 0.15);
    border-color: rgba(61, 143, 99, 0.3);
  }

  .section { padding: 80px 0; }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento__item--hero,
  .bento__item--wide {
    grid-column: span 1;
  }

  .bento__overlay p,
  .bento__tags {
    opacity: 1;
    transform: none;
  }

  .approach__panel-content p {
    opacity: 1;
    transform: none;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .process__row,
  .process__row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .process__row .process__img {
    order: 1;
  }

  .process__row .process__text {
    order: 2;
    text-align: left;
  }

  .process__row--text {
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .form__row { grid-template-columns: 1fr; }

  .contact__form { padding: 28px; }

  .hero__img-accent {
    left: 16px;
    bottom: 16px;
  }

  .hero__frame-accent {
    right: 0;
    top: -8px;
  }

  .scope__stat-card {
    right: 16px;
    bottom: 16px;
  }

  .container {
    padding: 0 20px;
  }

  .marquee__fade {
    width: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px;
    text-align: center;
  }

  .footer__col--brand {
    grid-column: span 1;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__logo-img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .footer__heading {
    text-align: center;
  }

  .footer__address {
    text-align: center;
  }

  .footer__email {
    display: inline-block;
  }

  .footer__hours li {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 12px 0;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .header__bar .header__bar-inner {
    padding: 0 10px 0 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header__bar {
    padding: 0 8px;
  }

  .logo__img {
    height: 36px;
    max-width: min(150px, 48vw);
  }

  .footer__legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer__legal-sep {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn { width: 100%; }

  .hero__title { font-size: 2.4rem; }

  .approach__note {
    flex-direction: column;
    padding: 24px;
  }
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 16px 20px 24px;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.45s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  pointer-events: auto;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 28px;
  background: rgba(18, 24, 20, 0.9);
  backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(237, 232, 223, 0.1);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(237, 232, 223, 0.05);
  position: relative;
  overflow: hidden;
}

.cookie-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(61, 143, 99, 0.2),
    var(--color-green),
    var(--color-green-light),
    rgba(61, 143, 99, 0.2),
    transparent
  );
  opacity: 0.75;
}

.cookie-banner__main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(61, 143, 99, 0.18), rgba(61, 143, 99, 0.06));
  border: 1px solid rgba(61, 143, 99, 0.28);
  border-radius: 14px;
  color: var(--color-green-light);
  box-shadow: 0 8px 24px rgba(61, 143, 99, 0.12);
}

.cookie-banner__icon svg {
  width: 26px;
  height: 26px;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-cream);
  line-height: 1.3;
  margin-bottom: 6px;
}

.cookie-banner__text {
  font-size: 0.84rem;
  color: var(--color-cream-muted);
  line-height: 1.65;
}

.cookie-banner__text a {
  color: var(--color-green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(92, 184, 126, 0.35);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.cookie-banner__text a:hover {
  color: var(--color-cream);
  text-decoration-color: var(--color-green-light);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 12px 24px;
  font-size: 0.82rem;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 12px 12px 16px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-lg);
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9997;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(237, 232, 223, 0.12);
  border-radius: 50%;
  background: rgba(18, 24, 20, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  color: var(--color-cream);
  cursor: pointer;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(237, 232, 223, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s ease,
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: rgba(61, 143, 99, 0.18);
  border-color: rgba(61, 143, 99, 0.45);
  color: var(--color-green-light);
  box-shadow:
    0 16px 40px rgba(61, 143, 99, 0.22),
    inset 0 1px 0 rgba(237, 232, 223, 0.08);
  transform: translateY(-3px) scale(1.04);
}

.scroll-top--visible:hover {
  transform: translateY(-3px) scale(1.04);
}

.scroll-top:active {
  transform: translateY(0) scale(0.98);
}

.scroll-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.scroll-top__ring-track {
  fill: none;
  stroke: rgba(237, 232, 223, 0.08);
  stroke-width: 2;
}

.scroll-top__ring-progress {
  fill: none;
  stroke: var(--color-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  transition: stroke-dashoffset 0.15s ease-out;
}

.scroll-top:hover .scroll-top__ring-progress {
  stroke: var(--color-green-light);
}

.scroll-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-top__icon svg {
  width: 100%;
  height: 100%;
}

.scroll-top:hover .scroll-top__icon {
  transform: translateY(-2px);
}

body:has(.cookie-banner--visible) .scroll-top {
  bottom: 200px;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  body:has(.cookie-banner--visible) .scroll-top {
    bottom: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: marqueeScroll 60s linear infinite;
  }
  .reveal { transition: opacity 0.3s; transform: none; }
  .cookie-banner { transition: opacity 0.3s; transform: none; }
  .scroll-top { transition: opacity 0.3s; transform: none; }
  .scroll-top--visible { transform: none; }
  .scroll-top:hover { transform: none; }
  .form-modal { transition: opacity 0.3s; }
  .form-modal__dialog { transition: none; transform: none; }
  .logo:hover .logo__shine,
  .footer__logo:hover .logo__shine {
    animation: none;
  }
  .logo:hover .logo__img,
  .footer__logo:hover .footer__logo-img {
    transform: none;
  }
}
