:root {
  --ink: #11100f;
  --ink-2: #181715;
  --paper: #eeeae3;
  --paper-2: #e3dfd7;
  --muted: #8b867e;
  --line-dark: rgba(17, 16, 15, .16);
  --line-light: rgba(255, 255, 255, .18);
  --white: #f2efe9;
  --icon-stroke: 1.4;
  --serif: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: "Manrope", Inter, "Segoe UI", Arial, sans-serif;
  --header-h: 88px;
  --shell: 1580px;
  --pad: clamp(24px, 4.2vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
::selection { background: #cfc9bf; color: var(--ink); }

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  z-index: 1000;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--white);
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(9, 9, 8, .78);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.08);
}
.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand { display: inline-flex; width: max-content; min-height: 44px; flex-direction: column; justify-content: center; gap: 3px; }
.brand__mark { width: 110px; height: 28px; }
.brand__mark text {
  fill: currentColor;
  font: 500 24px/1 var(--sans);
  letter-spacing: 1.1px;
}
.brand > span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .17em;
  opacity: .62;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 50px); }
.desktop-nav a, .lang-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .8;
  transition: opacity .2s ease;
}
.desktop-nav a:hover, .lang-link:hover { opacity: 1; }
.site-header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.lang-link { display: inline-flex; align-items: center; min-height: 44px; cursor: default; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle svg { width: 21px; }
.menu-toggle path, .site-header svg path { fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); stroke-linecap: round; stroke-linejoin: round; }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(7, 7, 6, .72);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  overflow: hidden;
  pointer-events: none;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu__panel {
  margin-left: auto;
  width: min(500px, 100%);
  height: 100%;
  padding: 48px var(--pad) 40px;
  background: #0d0d0c;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  border-bottom: 1px solid var(--line-light);
  padding: 15px 0;
  font: 400 42px/1.1 var(--serif);
}
.mobile-menu__meta { display: grid; gap: 4px; font-size: 14px; opacity: .74; }
.mobile-menu__meta a { min-height: 44px; display: flex; align-items: center; }

.eyebrow {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--dark { color: #5f5a53; }

.hero {
  position: relative;
  min-height: min(980px, 100svh);
  color: var(--white);
  overflow: hidden;
}
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 58% 50%; transform: scale(1.015); }
.hero__shade {
  background:
    linear-gradient(90deg, rgba(5,5,4,.79) 0%, rgba(5,5,4,.53) 32%, rgba(5,5,4,.08) 65%),
    linear-gradient(180deg, rgba(5,5,4,.1) 50%, rgba(5,5,4,.65) 100%);
}
.hero__inner { position: relative; z-index: 2; min-height: inherit; padding-top: calc(var(--header-h) + 62px); padding-bottom: 42px; }
.hero__copy { width: min(680px, 56%); }
.hero h1 {
  margin: 28px 0 22px;
  font: 400 clamp(74px, 7.1vw, 118px)/.78 var(--serif);
  letter-spacing: -.045em;
}
.hero__lead { max-width: 450px; margin: 0 0 34px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.62; }
.circle-link { display: inline-flex; align-items: center; gap: 18px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.circle-link__icon {
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.circle-link__icon svg { width: 18px; }
.circle-link__icon path, .icon-button path, .process__cta path, .submit-button path, .featured-nav-button path { fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); stroke-linecap: round; stroke-linejoin: round; }
.circle-link:hover .circle-link__icon { transform: translateX(5px); background: var(--white); color: var(--ink); }
.hero__project-meta {
  position: absolute;
  right: var(--pad);
  bottom: 84px;
  display: grid;
  gap: 2px;
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.78);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.hero__index {
  position: absolute;
  bottom: 42px;
  left: var(--pad);
  display: grid;
  grid-template-columns: auto 100px auto;
  gap: 24px;
  align-items: start;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero__index i { margin-top: 6px; height: 1px; background: rgba(255,255,255,.48); }

.section-paper { background: var(--paper); }
.section-head {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto 1.8fr;
  align-items: center;
  gap: 40px;
}
.projects__head h2 { margin: 0; font: 400 clamp(42px, 4vw, 64px)/1 var(--serif); letter-spacing: -.035em; }
.projects__head h2 span { margin-right: 4px; }
.projects__head h2 em { font-style: normal; font-size: .58em; color: #6b655d; }
.filter-list { justify-self: end; display: flex; flex-wrap: wrap; gap: 18px; }
.filter-list__item {
  position: relative;
  border: 0;
  min-height: 38px;
  padding: 7px 0;
  background: transparent;
  color: #59544d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.filter-list__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  transform: translateX(-50%);
}
.filter-list__item.is-active::after { opacity: 1; }

.project-carousel { position: relative; padding-bottom: 34px; }
.project-carousel__track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.project-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.project-card.is-filtered { display: none; }
.project-card__image-wrap { display: block; overflow: hidden; aspect-ratio: 1.45; background: #d5d0c7; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.project-card:hover img { transform: scale(1.035); }
.project-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 13px 2px 0;
}
.project-card h3 { margin: 0 0 4px; font-size: 13px; line-height: 1.25; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; }
.project-card p { margin: 0; color: #746e66; font-size: 11px; line-height: 1.45; }
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20,20,20,.34);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.icon-button svg { width: 17px; }
.icon-button:hover { transform: translateX(3px); background: rgba(0,0,0,.05); }
.icon-button--light { border-color: rgba(255,255,255,.5); color: var(--white); }
.carousel-controls { display: none; }

.philosophy {
  position: relative;
  min-height: 640px;
  color: var(--white);
  overflow: hidden;
}
.philosophy > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.philosophy__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,7,.88) 0 30%, rgba(8,8,7,.3) 54%, rgba(8,8,7,.73) 100%);
}
.philosophy__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  align-items: center;
}
.philosophy__copy { max-width: 420px; }
.philosophy__copy h2 { margin: 0 0 24px; font: 400 clamp(58px, 5vw, 86px)/.9 var(--serif); letter-spacing: -.035em; }
.philosophy__copy p { margin: 0 0 34px; color: rgba(255,255,255,.68); font-size: 14px; max-width: 360px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.text-link span { width: 42px; height: 1px; background: currentColor; transition: width .25s ease; }
.text-link:hover span { width: 62px; }
.text-link--light { color: var(--white); }
.philosophy__values {
  grid-column: 3;
  justify-self: end;
  width: 150px;
  margin: 0;
  padding: 34px 0;
  list-style: none;
  border-block: 1px solid rgba(255,255,255,.32);
  display: grid;
  gap: 21px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.68);
}

.process { padding: 64px 0 68px; }
.process__head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.process__head h2 { margin: 0; font: 400 clamp(56px, 5vw, 82px)/.95 var(--serif); letter-spacing: -.04em; }
.process__head span { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #746e66; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr) 170px; align-items: stretch; }
.process-step { padding: 4px 30px 4px 0; margin-right: 30px; border-right: 1px solid var(--line-dark); min-height: 170px; }
.process-step span { font-size: 10px; letter-spacing: .08em; color: #686159; }
.process-step h3 { margin: 21px 0 13px; font: 400 28px/1 var(--serif); }
.process-step p { margin: 0; color: #69635b; font-size: 12px; line-height: 1.55; }
.process__cta {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: transform .25s ease;
}
.process__cta svg { position: absolute; width: 16px; transform: translateY(28px); }
.process__cta:hover { transform: scale(1.04); }

.featured { position: relative; min-height: 720px; color: var(--white); overflow: hidden; background: #0d0d0c; touch-action: pan-y; }
.featured__stage, .feature-slide, .feature-slide img, .featured__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature-slide { opacity: 0; transform: scale(1.03); transition: opacity .65s ease, transform 1.2s cubic-bezier(.22,.61,.36,1); }
.feature-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.feature-slide img { object-fit: cover; object-position: center; }
.featured__shade { z-index: 2; background: linear-gradient(90deg, rgba(7,7,6,.82) 0%, rgba(7,7,6,.54) 32%, rgba(7,7,6,.08) 67%), linear-gradient(180deg, rgba(7,7,6,.2), rgba(7,7,6,.4)); }
.featured__inner { position: relative; z-index: 3; min-height: inherit; padding-top: 32px; padding-bottom: 38px; }
.featured__topbar { display: flex; align-items: center; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.featured__nav { display: flex; align-items: center; gap: 18px; }
.featured-nav-button { min-height: 44px; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.72); display: inline-flex; align-items: center; gap: 9px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.featured-nav-button svg { width: 17px; flex: 0 0 17px; }
.featured__nav i { width: 16px; border-top: 1px dotted rgba(255,255,255,.5); }
.featured__copy { position: absolute; left: var(--pad); bottom: 70px; max-width: 640px; }
.project-badge { display: inline-block; margin-bottom: 24px; padding: 6px 10px; background: rgba(255,255,255,.14); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.featured__copy h2 { margin: 0 0 22px; font: 400 clamp(64px, 6.6vw, 106px)/.88 var(--serif); letter-spacing: -.045em; }
.featured__copy > p { margin: 0 0 18px; max-width: 530px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.65; }
.featured__meta { font-size: 10px !important; text-transform: uppercase; letter-spacing: .08em; }
.featured__stages { position: absolute; right: var(--pad); top: 46%; display: grid; gap: 22px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.62); }
.featured__thumb { position: absolute; right: var(--pad); bottom: 44px; width: 150px; aspect-ratio: 1.45; border: 1px solid rgba(255,255,255,.4); overflow: hidden; }
.featured__thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }

.manifesto { min-height: 300px; display: grid; grid-template-columns: 1.1fr 2fr 1fr; background: var(--paper); overflow: hidden; }
.manifesto__rock { min-width: 0; overflow: hidden; }
.manifesto__rock img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 50%; filter: grayscale(1) contrast(.9); }
.manifesto__quote { margin: 0; align-self: center; justify-self: center; font: 400 clamp(34px, 3.4vw, 56px)/.95 var(--serif); text-align: center; letter-spacing: -.03em; }
.manifesto__quote cite { display: block; margin-top: 20px; font: 500 10px/1 var(--sans); text-transform: uppercase; letter-spacing: .12em; }
.manifesto__seal { display: grid; place-items: center; }
.manifesto__seal svg { width: 150px; color: #6b655d; }
.manifesto__seal text { fill: currentColor; font: 500 10px/1 var(--sans); letter-spacing: .2em; }
.manifesto__seal path:not(#sealPath) { stroke: currentColor; stroke-width: 1; }

.prices { padding: 110px 0 100px; border-bottom: 1px solid var(--line-dark); }
.prices__intro { display: grid; grid-template-columns: 1fr 2fr 1.2fr; gap: 50px; align-items: end; margin-bottom: 64px; }
.prices__intro h2, .faq__intro h2 { margin: 0; font: 400 clamp(54px, 5vw, 82px)/.92 var(--serif); letter-spacing: -.04em; }
.prices__intro > p:last-child, .faq__intro > p:last-child { margin: 0; color: #676159; font-size: 14px; max-width: 420px; }
.price-tabs__list { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 18px; }
.price-tabs__list::-webkit-scrollbar { display: none; }
.price-tab {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: #5e5851;
  font-size: 11px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.price-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.price-panels { border-top: 1px solid var(--line-dark); }
.price-panel { animation: panelIn .28s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.price-row { min-height: 74px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; border-bottom: 1px solid var(--line-dark); }
.price-row span { font: 400 clamp(22px, 2vw, 31px)/1.1 var(--serif); }
.price-row strong { font-weight: 500; font-size: 13px; }

.faq { padding: 110px 0 120px; }
.faq__grid { display: grid; grid-template-columns: .85fr 1.65fr; gap: 9vw; }
.faq__intro .eyebrow { margin-bottom: 20px; }
.faq__intro h2 { margin-bottom: 20px; }
.accordion { border-top: 1px solid var(--line-dark); }
.accordion-item { border-bottom: 1px solid var(--line-dark); }
.accordion-item h3 { margin: 0; }
.accordion-item button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font: 400 clamp(24px, 2.4vw, 36px)/1.1 var(--serif);
  cursor: pointer;
}
.accordion-item button svg { width: 25px; transition: transform .25s ease; }
.accordion-item button path { fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); stroke-linecap: round; }
.accordion-item.is-open button svg { transform: rotate(45deg); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { margin: -4px 60px 30px 0; color: #6a645c; max-width: 700px; font-size: 14px; }

.contact { position: relative; color: var(--white); background: #0b0b0a; padding: 110px 0 80px; overflow: hidden; }
.contact__background { position: absolute; inset: 0; opacity: .22; }
.contact__background::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,10,.3), #0b0b0a 62%); }
.contact__background img { width: 58%; height: 100%; object-fit: cover; object-position: 72% 50%; filter: grayscale(1) brightness(.55); }
.contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.15fr; gap: 8vw; align-items: start; }
.contact__intro h2 { margin: 22px 0 24px; font: 400 clamp(68px, 6.7vw, 108px)/.82 var(--serif); letter-spacing: -.05em; }
.contact__intro > p:not(.eyebrow) { max-width: 470px; color: rgba(255,255,255,.68); font-size: 14px; }
.contact__links { margin-top: 50px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 34px; }
.contact__links a, .contact__links div { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(255,255,255,.8); }
.contact__links svg { width: 20px; flex: 0 0 20px; }
.contact__links path, .contact__links rect, .contact__links circle { fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); stroke-linecap: round; stroke-linejoin: round; }
.contact-form { border-top: 1px solid var(--line-light); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: grid; gap: 9px; padding: 22px 0 16px; border-bottom: 1px solid var(--line-light); }
.field span { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.48); }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  resize: vertical;
}
.field select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#aaa 50%),linear-gradient(135deg,#aaa 50%,transparent 50%); background-position: calc(100% - 15px) 20px,calc(100% - 10px) 20px; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.consent { min-height: 44px; display: flex; align-items: center; gap: 12px; margin-top: 16px; color: rgba(255,255,255,.62); font-size: 12px; cursor: pointer; }
.consent input { width: 20px; height: 20px; flex: 0 0 20px; margin: 0; accent-color: var(--paper); }
.contact-form__footer { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
.submit-button {
  min-height: 58px;
  padding: 0 22px 0 26px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 34px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  transition: background .2s ease, color .2s ease;
}
.submit-button svg { width: 20px; }
.submit-button:hover { background: var(--paper); color: var(--ink); }
.form-status { margin: 0; font-size: 12px; color: rgba(255,255,255,.72); }
.map-wrap { position: relative; z-index: 2; margin-top: 90px; }
.map-card { overflow: hidden; background: #d9d6d0; min-height: 320px; }
.map-card svg { width: 100%; height: auto; min-height: 320px; }
.map-water { fill: #c3c8c8; }
.map-road path { fill: none; stroke: #f2f0ec; stroke-width: 16; stroke-linecap: round; }
.map-minor path { fill: none; stroke: rgba(242,240,236,.75); stroke-width: 6; stroke-linecap: round; }
.map-label { font: 600 17px/1 var(--sans); fill: #171615; letter-spacing: .08em; }
.map-small { font: 500 11px/1 var(--sans); fill: #4c4944; letter-spacing: .08em; }

.footer { background: #090908; color: var(--white); border-top: 1px solid rgba(255,255,255,.1); }
.footer__inner { min-height: 135px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer__brand { display: flex; align-items: center; gap: 50px; }
.brand--footer .brand__mark { width: 110px; }
.footer__brand p, .footer__copy { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; }
.footer__socials { display: flex; gap: 13px; }
.footer__socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; }
.footer__socials svg { width: 15px; }
.footer__socials path, .footer__socials rect, .footer__socials circle { fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); stroke-linecap: round; stroke-linejoin: round; }
.footer__copy { justify-self: end; }

.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1200px) {
  :root { --pad: clamp(24px, 3.3vw, 44px); }
  .desktop-nav { gap: 24px; }
  .hero__copy { width: 62%; }
  .process__grid { grid-template-columns: repeat(4, 1fr); }
  .process__cta { grid-column: 4; margin-top: 24px; }
  .process-step { margin-right: 18px; padding-right: 18px; }
  .contact__grid { gap: 5vw; }
}

@media (max-width: 1024px) {
  :root { --header-h: 78px; }
  .desktop-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__actions { grid-column: 2; }
  .hero { min-height: 820px; }
  .hero__copy { width: 72%; }
  .hero__project-meta { bottom: 70px; }
  .section-head { grid-template-columns: 1fr auto; padding-block: 24px; }
  .filter-list { grid-column: 1 / -1; justify-self: stretch; justify-content: flex-start; }
  .philosophy__inner { grid-template-columns: 1fr 1fr; }
  .philosophy__values { grid-column: 2; }
  .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-step:nth-child(2), .process-step:nth-child(4) { border-right: 0; }
  .process__cta { grid-column: 2; justify-self: start; }
  .featured__copy { max-width: 560px; }
  .manifesto { grid-template-columns: .8fr 2fr .8fr; }
  .prices__intro { grid-template-columns: 1fr 2fr; }
  .prices__intro > p:last-child { grid-column: 2; }
  .faq__grid { gap: 6vw; }
  .contact__grid { grid-template-columns: .9fr 1.1fr; }
  .contact__links { grid-template-columns: 1fr; }
  .footer__brand { gap: 24px; }
}

@media (max-width: 768px) {
  :root { --pad: 22px; }
  .hero { min-height: 760px; }
  .hero__image { object-position: 67% 50%; }
  .hero__shade { background: linear-gradient(90deg, rgba(5,5,4,.78), rgba(5,5,4,.25)), linear-gradient(180deg, rgba(5,5,4,.1), rgba(5,5,4,.72)); }
  .hero__inner { padding-top: calc(var(--header-h) + 42px); }
  .hero__copy { width: 84%; }
  .hero h1 { font-size: clamp(60px, 13vw, 88px); }
  .hero__lead { font-size: 14px; max-width: 390px; }
  .hero__index { grid-template-columns: auto 60px auto; gap: 14px; }
  .hero__project-meta { right: var(--pad); bottom: 98px; }

  .projects__head { min-height: 150px; }
  .project-carousel__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
  }
  .project-carousel__track::-webkit-scrollbar { display: none; }
  .project-card { flex: 0 0 min(82vw, 460px); scroll-snap-align: start; }
  .carousel-controls { display: flex; justify-content: flex-end; gap: 10px; padding-top: 20px; }
  .filter-list__item { min-width: 44px; min-height: 44px; padding-inline: 10px; }
  .text-link { min-height: 44px; align-items: center; }
  .contact__links a, .contact__links div { min-height: 44px; }

  .philosophy { min-height: 760px; }
  .philosophy > img { object-position: 58% 50%; }
  .philosophy__overlay { background: linear-gradient(180deg, rgba(8,8,7,.76), rgba(8,8,7,.18) 48%, rgba(8,8,7,.86)); }
  .philosophy__inner { display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; padding-top: 70px; padding-bottom: 50px; }
  .philosophy__copy { max-width: 450px; }
  .philosophy__values { width: 100%; grid-template-columns: repeat(5, auto); gap: 12px; justify-content: space-between; padding: 20px 0; }

  .process { padding: 70px 0; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process-step { min-height: 180px; }

  .featured { min-height: 760px; }
  .feature-slide img { object-position: 58% 50%; }
  .featured__shade { background: linear-gradient(90deg, rgba(7,7,6,.76), rgba(7,7,6,.15)), linear-gradient(180deg, rgba(7,7,6,.1), rgba(7,7,6,.74)); }
  .featured__copy { bottom: 90px; max-width: calc(100% - 44px); }
  .featured__copy h2 { font-size: clamp(58px, 12vw, 84px); }
  .featured__stages { top: 120px; right: var(--pad); }
  .featured__thumb { display: none; }
  .featured__nav i { display: none; }
  .featured-nav-button { width: 44px; height: 44px; justify-content: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
  .featured-nav-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .featured__nav { gap: 10px; }

  .manifesto { grid-template-columns: .65fr 2fr; min-height: 330px; }
  .manifesto__seal { display: none; }
  .manifesto__quote { padding: 30px 18px; }

  .prices { padding: 82px 0 78px; }
  .prices__intro { display: block; }
  .prices__intro h2 { margin: 18px 0; }
  .prices__intro > p:last-child { max-width: 540px; }
  .price-tabs { margin-top: 45px; }

  .faq { padding: 80px 0 90px; }
  .faq__grid { grid-template-columns: 1fr; gap: 46px; }

  .contact { padding-top: 82px; }
  .contact__background::after { background: linear-gradient(180deg, rgba(11,11,10,.35), #0b0b0a 48%); }
  .contact__background img { width: 100%; height: 45%; }
  .contact__grid { grid-template-columns: 1fr; gap: 58px; }
  .contact__links { grid-template-columns: 1fr 1fr; }
  .map-wrap { margin-top: 70px; }

  .footer__inner { min-height: 170px; grid-template-columns: 1fr auto; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__copy { grid-column: 1 / -1; justify-self: start; }
  .footer__socials a { width: 44px; height: 44px; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; --header-h: 70px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .brand { min-height: 44px; justify-content: center; }
  .brand__mark { width: 96px; }
  .lang-link { display: none; }
  .mobile-menu nav a { font-size: 36px; }

  .hero { min-height: 720px; }
  .hero__inner { padding-top: calc(var(--header-h) + 44px); }
  .hero__copy { width: 100%; }
  .hero h1 { margin-top: 22px; font-size: clamp(54px, 17.5vw, 76px); }
  .hero__lead { max-width: 330px; font-size: 13px; }
  .circle-link__icon { width: 50px; }
  .hero__project-meta { bottom: 84px; font-size: 10px; }
  .hero__index { bottom: 30px; grid-template-columns: auto 54px; }
  .hero__index span:last-child { display: none; }

  .section-head { grid-template-columns: 1fr auto; gap: 20px; padding-block: 25px 18px; }
  .projects__head .eyebrow { grid-column: 1 / -1; }
  .projects__head h2 { font-size: 48px; }
  .filter-list { gap: 14px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
  .filter-list::-webkit-scrollbar { display: none; }
  .project-card { flex-basis: 84vw; }
  .project-card__body { min-height: 84px; }
  .project-card h3 { font-size: 14px; }
  .project-card p { font-size: 11px; }

  .philosophy { min-height: 720px; }
  .philosophy__copy h2 { font-size: 58px; }
  .philosophy__values { grid-template-columns: 1fr 1fr; justify-content: initial; gap: 16px 26px; font-size: 10px; }

  .process__head { align-items: flex-end; }
  .process__head h2 { font-size: 54px; }
  .process__grid { grid-template-columns: 1fr; row-gap: 0; }
  .process-step { min-height: auto; padding: 26px 0; margin: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process-step h3 { margin: 12px 0 8px; }
  .process-step p { font-size: 13px; }
  .process__cta { grid-column: 1; margin-top: 30px; justify-self: end; }

  .featured { min-height: 710px; }
  .featured__inner { padding-top: 20px; }
  .featured__copy { left: var(--pad); bottom: 56px; }
  .featured__copy h2 { font-size: clamp(55px, 16vw, 76px); }
  .featured__copy > p { font-size: 13px; }
  .featured__stages { top: 96px; gap: 13px; font-size: 10px; }
  .featured__topbar { font-size: 10px; }

  .manifesto { min-height: 300px; grid-template-columns: .48fr 2fr; }
  .manifesto__quote { font-size: 34px; }

  .prices__intro h2, .faq__intro h2 { font-size: 52px; }
  .price-row { min-height: 82px; grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .price-row span { font-size: 25px; }
  .price-row strong { justify-self: start; color: #59544d; }

  .accordion-item button { min-height: 78px; font-size: 27px; }
  .accordion-panel p { margin-right: 30px; }

  .contact__intro h2 { font-size: 64px; }
  .contact__links { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form__footer { align-items: flex-start; flex-direction: column; }
  .submit-button { width: 100%; justify-content: space-between; }
  .map-wrap { margin-top: 54px; }

  .footer__inner { padding-top: 36px; padding-bottom: 36px; grid-template-columns: 1fr; }
  .footer__socials { justify-self: start; }
  .footer__copy { grid-column: 1; }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 72px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10,10,9,.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.1);
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 8px;
    color: var(--white);
  }
  .mobile-cta a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 11px; }
  .mobile-cta svg { width: 17px; }
  .mobile-cta path { fill: none; stroke: currentColor; stroke-width: var(--icon-stroke); }
  .mobile-cta__primary { background: var(--paper); color: var(--ink); border-color: var(--paper) !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Yandex Maps */
.map-card {
  position: relative;
  min-height: 360px;
  background: #d9d6d0;
  isolation: isolate;
}
.yandex-map {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(.18) saturate(.82) contrast(.96);
}
.map-card__label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  min-width: 190px;
  padding: 14px 16px;
  background: rgba(238,234,227,.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.map-card__label span,
.map-card__label small { display: block; }
.map-card__label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}
.map-card__label small {
  margin-top: 3px;
  color: #625d56;
  font-size: 10px;
  letter-spacing: .06em;
}

/* Social icons: preserve brand silhouettes instead of forcing every logo to outline mode. */
.footer__socials a {
  color: rgba(255,255,255,.88);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer__socials a:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-2px);
}
.footer__socials .social-icon { width: 17px; height: 17px; }
.footer__socials .social-icon--instagram rect,
.footer__socials .social-icon--instagram circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__socials .social-icon--instagram .social-icon__dot {
  fill: currentColor;
  stroke: none;
}
.footer__socials .social-icon--behance path,
.footer__socials .social-icon--telegram path {
  fill: currentColor;
  stroke: none;
}

/* Mobile refinement pass — same composition, better legibility and touch behavior. */
@media (max-width: 768px) {
  :root { --pad: clamp(20px, 5vw, 28px); }

  .site-header.is-scrolled { background: rgba(9,9,8,.9); }
  .menu-toggle { width: 48px; height: 48px; margin-right: -8px; }
  .mobile-menu__panel {
    width: 100%;
    padding-top: 28px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .mobile-menu nav a {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: clamp(34px, 9vw, 48px);
  }
  .mobile-menu__meta { font-size: 15px; }

  .hero {
    min-height: max(720px, 100svh);
  }
  .hero__inner { padding-top: calc(var(--header-h) + 50px); }
  .hero__copy { width: min(100%, 560px); }
  .hero h1 {
    max-width: 9.2ch;
    font-size: clamp(64px, 13.8vw, 88px);
    line-height: .81;
  }
  .hero__lead {
    max-width: 35ch;
    font-size: 15px;
    line-height: 1.58;
  }
  .eyebrow { font-size: 11px; }
  .circle-link { min-height: 52px; font-size: 11px; }
  .hero__project-meta { font-size: 11px; }
  .hero__index { font-size: 11px; }

  .section-head {
    min-height: auto;
    padding-block: 28px 22px;
  }
  .filter-list { gap: 8px; }
  .filter-list__item {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid rgba(17,16,15,.16);
    border-radius: 999px;
    font-size: 11px;
    white-space: nowrap;
  }
  .filter-list__item::after { display: none; }
  .filter-list__item.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }
  .project-card { flex-basis: min(86vw, 470px); }
  .project-card__image-wrap { aspect-ratio: 1.28; }
  .project-card__body { min-height: 94px; padding-top: 15px; }
  .project-card h3 { font-size: 14px; line-height: 1.3; }
  .project-card p { max-width: 30ch; font-size: 12px; line-height: 1.5; }
  .carousel-controls { padding-bottom: 4px; }

  .philosophy { min-height: 820px; }
  .philosophy__inner { padding-top: 84px; padding-bottom: 54px; }
  .philosophy__copy h2 { font-size: clamp(58px, 12vw, 76px); }
  .philosophy__copy p { max-width: 35ch; font-size: 15px; line-height: 1.62; }
  .philosophy__values {
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: 11px;
    line-height: 1.4;
  }

  .process { padding: 78px 0; }
  .process__head h2 { font-size: clamp(54px, 10vw, 72px); }
  .process__head > span { font-size: 11px; }
  .process-step > span { font-size: 11px; }
  .process-step h3 { font-size: 31px; }
  .process-step p { max-width: 34ch; font-size: 14px; line-height: 1.6; }

  .featured { min-height: 820px; }
  .featured__copy { bottom: 74px; max-width: min(88%, 560px); }
  .featured__copy h2 { font-size: clamp(60px, 12vw, 82px); }
  .featured__copy > p { max-width: 37ch; font-size: 14px; line-height: 1.58; }
  .featured__meta { font-size: 11px !important; }
  .featured__stages { font-size: 11px; gap: 15px; }
  .featured__topbar { font-size: 11px; }
  .project-badge { font-size: 11px; }

  .manifesto__quote { font-size: clamp(34px, 7.5vw, 46px); }
  .manifesto__quote cite { font-size: 11px; }

  .prices__intro > p:last-child,
  .faq__intro > p:last-child { font-size: 15px; line-height: 1.6; }
  .price-tabs__list { margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
  .price-tab { min-height: 48px; padding-inline: 18px; font-size: 12px; }
  .price-row span { font-size: clamp(25px, 4vw, 31px); }
  .price-row strong { font-size: 14px; }

  .accordion-item button { min-height: 82px; }
  .accordion-panel p { font-size: 15px; line-height: 1.62; }

  .contact__intro > p:not(.eyebrow) { font-size: 15px; line-height: 1.62; }
  .contact__links a,
  .contact__links div { font-size: 14px; }
  .field span { font-size: 11px; }
  .consent { font-size: 13px; line-height: 1.45; }
  .submit-button { min-height: 60px; font-size: 11px; }
  .form-status { font-size: 13px; }

  .yandex-map { height: 360px; }
  .map-card__label { left: 16px; bottom: 16px; }

  .footer__brand p,
  .footer__copy { font-size: 11px; line-height: 1.5; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; --header-h: 70px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  .site-header__inner { padding-right: 12px; }
  .brand__mark { width: 100px; }
  .mobile-menu nav a { font-size: clamp(34px, 10vw, 44px); }

  .hero {
    min-height: max(700px, 100svh);
  }
  .hero__image { object-position: 70% 50%; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5,5,4,.82), rgba(5,5,4,.27) 88%),
      linear-gradient(180deg, rgba(5,5,4,.08) 32%, rgba(5,5,4,.76) 100%);
  }
  .hero__inner { padding-top: calc(var(--header-h) + 38px); }
  .hero h1 {
    margin-top: 18px;
    max-width: 8.8ch;
    font-size: clamp(57px, 16.8vw, 72px);
    line-height: .82;
  }
  .hero__lead { max-width: 31ch; font-size: 14px; }
  .hero__project-meta { bottom: 90px; font-size: 10px; }
  .hero__index { bottom: 32px; font-size: 10px; }

  .projects__head h2 { font-size: 50px; }
  .filter-list { gap: 8px; }
  .project-card { flex-basis: 88vw; }
  .project-card__image-wrap { aspect-ratio: 1.2; }
  .project-card__body { min-height: 96px; }
  .project-card h3 { font-size: 14px; }
  .project-card p { font-size: 12px; }

  .philosophy { min-height: 760px; }
  .philosophy__copy h2 { font-size: clamp(56px, 15vw, 66px); }
  .philosophy__copy p { font-size: 14px; }
  .philosophy__values {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0;
    padding: 0;
  }
  .philosophy__values li {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .philosophy__values li:nth-child(odd) { padding-right: 14px; }

  .process__head { gap: 18px; }
  .process__head h2 { max-width: 7ch; font-size: 55px; line-height: .92; }
  .process-step { padding: 28px 0; }
  .process-step h3 { font-size: 30px; }
  .process-step p { font-size: 14px; }
  .process__cta { width: 94px; height: 94px; }

  .featured { min-height: 760px; }
  .featured__shade {
    background:
      linear-gradient(90deg, rgba(7,7,6,.78), rgba(7,7,6,.18) 95%),
      linear-gradient(180deg, rgba(7,7,6,.1) 28%, rgba(7,7,6,.8) 100%);
  }
  .featured__stages {
    top: 116px;
    right: auto;
    left: var(--pad);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    max-width: calc(100% - 36px);
    font-size: 10px;
  }
  .featured__stages li { white-space: nowrap; }
  .featured__copy { bottom: 68px; max-width: calc(100% - 36px); }
  .featured__copy h2 { font-size: clamp(56px, 15vw, 70px); }
  .featured__copy > p { font-size: 14px; }
  .featured__topbar { align-items: flex-start; }
  .featured__nav { gap: 8px; }

  .manifesto { min-height: 320px; grid-template-columns: .42fr 2fr; }
  .manifesto__quote { padding-inline: 14px; font-size: clamp(31px, 8.4vw, 38px); }

  .prices { padding-top: 74px; }
  .prices__intro h2,
  .faq__intro h2 { font-size: 54px; line-height: .93; }
  .price-row { min-height: 86px; }
  .price-row span { font-size: 26px; }
  .price-row strong { font-size: 14px; }

  .faq { padding-top: 74px; }
  .accordion-item button { min-height: 82px; font-size: 28px; line-height: 1.08; }
  .accordion-panel p { margin-right: 12px; font-size: 14px; }

  .contact { padding-top: 76px; }
  .contact__intro h2 { font-size: clamp(60px, 16vw, 70px); }
  .contact__links { gap: 8px; }
  .contact__links a,
  .contact__links div { min-height: 48px; font-size: 14px; }
  .field { padding-top: 20px; }
  .field input,
  .field textarea,
  .field select { font-size: 16px; }
  .submit-button { width: 100%; }

  .map-wrap { margin-top: 52px; }
  .map-card { min-height: 310px; }
  .yandex-map { height: 310px; }
  .map-card__label {
    left: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 11px 13px;
  }
  .map-card__label span { font-size: 11px; }
  .map-card__label small { font-size: 10px; }

  .footer__inner { gap: 24px; padding-top: 34px; padding-bottom: 34px; }
  .footer__socials { gap: 10px; }
  .footer__socials a { width: 46px; height: 46px; }
  .footer__socials .social-icon { width: 18px; height: 18px; }

  .mobile-cta {
    min-height: 76px;
    grid-template-columns: minmax(108px, .8fr) minmax(0, 1.2fr);
    gap: 8px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-cta a {
    min-height: 52px;
    padding-inline: 12px;
    font-size: 11px;
  }
}
