:root {
  --menhir-black: #100d0a;
  --menhir-black-soft: #19130f;
  --menhir-cream: #f3ead8;
  --menhir-cream-soft: #e4d6bd;
  --menhir-stone: #b9aa90;
  --menhir-muted: rgba(243, 234, 216, 0.68);
  --menhir-line: rgba(243, 234, 216, 0.18);
  --menhir-dark-line: rgba(16, 13, 10, 0.16);
  --menhir-serif: "Cormorant Garamond", "Times New Roman", serif;
  --menhir-sans: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--menhir-cream);
  background: var(--menhir-black);
  font-family: var(--menhir-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--menhir-black);
  background: var(--menhir-cream);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

a:focus-visible {
  outline: 2px solid var(--menhir-cream);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: var(--menhir-black);
  background: var(--menhir-cream);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.menhir-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 54px) clamp(18px, 5vw, 76px);
  color: var(--menhir-cream);
}

.menhir-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--menhir-cream);
  text-decoration: none;
}

.menhir-brand img {
  width: 30px;
  height: 56px;
  object-fit: contain;
  opacity: 0.92;
}

.menhir-brand span {
  display: grid;
  gap: 3px;
}

.menhir-brand strong {
  font-family: var(--menhir-serif);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.menhir-brand small {
  color: var(--menhir-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menhir-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(243, 234, 216, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.menhir-nav a {
  text-decoration: none;
}

.menhir-nav a:hover {
  color: var(--menhir-cream);
}

.menhir-container {
  width: min(100% - clamp(36px, 8vw, 128px), 1220px);
  margin-inline: auto;
}

.menhir-hero {
  position: relative;
  display: grid;
  min-height: min(790px, 88svh);
  align-items: end;
  overflow: hidden;
  background: var(--menhir-black);
}

.menhir-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menhir-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 13, 10, 0.84) 0%, rgba(16, 13, 10, 0.58) 42%, rgba(16, 13, 10, 0.24) 100%),
    linear-gradient(180deg, rgba(16, 13, 10, 0.44) 0%, rgba(16, 13, 10, 0.2) 48%, rgba(16, 13, 10, 0.84) 100%);
}

.menhir-hero__content {
  position: relative;
  width: min(100% - clamp(36px, 9vw, 150px), 920px);
  margin: 0 auto;
  padding: 170px 0 clamp(72px, 10vw, 120px);
}

.menhir-kicker,
.menhir-index {
  margin: 0;
  color: var(--menhir-stone);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.menhir-hero h1,
.menhir-section h2,
.menhir-project h3 {
  margin: 0;
  font-family: var(--menhir-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.menhir-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(64px, 11vw, 164px);
  line-height: 0.86;
}

.menhir-hero__content p:last-child {
  max-width: 690px;
  margin: clamp(26px, 4vw, 42px) 0 0;
  color: rgba(243, 234, 216, 0.78);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.62;
}

.menhir-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 920px);
  margin: clamp(34px, 5vw, 58px) 0 0;
  border-top: 1px solid var(--menhir-line);
  border-bottom: 1px solid var(--menhir-line);
}

.menhir-hero__facts div {
  min-width: 0;
  padding: 18px clamp(14px, 2vw, 24px);
  border-left: 1px solid var(--menhir-line);
}

.menhir-hero__facts div:first-child {
  border-left: 0;
  padding-left: 0;
}

.menhir-hero__facts dt {
  margin: 0 0 8px;
  color: var(--menhir-stone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menhir-hero__facts dd {
  margin: 0;
  color: rgba(243, 234, 216, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.menhir-scroll {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(22px, 4vw, 42px);
  color: var(--menhir-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.menhir-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 14px auto 0;
  background: var(--menhir-muted);
}

.menhir-section {
  padding: clamp(82px, 11vw, 150px) 0;
}

.menhir-manifesto,
.menhir-contact {
  color: var(--menhir-black);
  background: var(--menhir-cream);
}

.menhir-section__head {
  max-width: 850px;
}

.menhir-section__head--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: end;
}

.menhir-section__head h2 {
  margin-top: 16px;
  font-size: clamp(46px, 7vw, 106px);
  line-height: 0.94;
}

.menhir-section__head p:last-child,
.menhir-contact__inner > p {
  margin: 0;
  color: var(--menhir-muted);
}

.menhir-manifesto .menhir-kicker,
.menhir-contact .menhir-kicker {
  color: rgba(16, 13, 10, 0.56);
}

.menhir-manifesto .menhir-section__head p:last-child,
.menhir-contact__inner > p {
  color: rgba(16, 13, 10, 0.68);
}

.menhir-columns {
  max-width: 980px;
  margin-top: clamp(40px, 6vw, 74px);
  color: rgba(16, 13, 10, 0.74);
  column-count: 2;
  column-gap: clamp(42px, 7vw, 96px);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.72;
}

.menhir-columns p {
  margin: 0 0 1.2em;
  break-inside: avoid;
}

.menhir-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 7vw, 90px);
  background: var(--menhir-dark-line);
  border: 1px solid var(--menhir-dark-line);
}

.menhir-principles article {
  min-width: 0;
  padding: clamp(24px, 3.4vw, 42px);
  background: rgba(255, 255, 255, 0.2);
}

.menhir-principles span,
.menhir-process span {
  display: block;
  margin-bottom: 28px;
  color: rgba(16, 13, 10, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menhir-principles h3 {
  margin: 0;
  color: var(--menhir-black);
  font-family: var(--menhir-serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 0.96;
}

.menhir-principles p {
  margin: 20px 0 0;
  color: rgba(16, 13, 10, 0.68);
  line-height: 1.64;
}

.menhir-projects {
  padding-bottom: 0;
}

.menhir-projects .menhir-section__head {
  margin-bottom: clamp(54px, 8vw, 96px);
}

.menhir-project {
  border-top: 1px solid var(--menhir-line);
}

.menhir-project__media {
  position: relative;
  width: 100%;
  margin: 0;
}

.menhir-project__media img {
  width: 100%;
  height: min(820px, 82svh);
  object-fit: cover;
}

.menhir-project__media figcaption {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(18px, 3vw, 38px);
  max-width: min(430px, calc(100% - 36px));
  padding: 13px 16px;
  color: var(--menhir-cream);
  background: rgba(16, 13, 10, 0.72);
  border: 1px solid var(--menhir-line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.menhir-project__body {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.86fr) minmax(320px, 0.76fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(42px, 6vw, 78px) 0 clamp(78px, 9vw, 126px);
}

.menhir-project h3 {
  color: var(--menhir-cream);
  font-size: clamp(42px, 6vw, 96px);
  line-height: 0.94;
}

.menhir-project__text {
  color: rgba(243, 234, 216, 0.72);
}

.menhir-project__text p {
  margin: 0;
}

.menhir-project__text ul {
  display: grid;
  gap: 12px;
  padding: 26px 0 0;
  margin: 0;
  list-style: none;
}

.menhir-project__text li {
  padding-top: 12px;
  border-top: 1px solid var(--menhir-line);
}

.menhir-atelier {
  padding-bottom: 0;
}

.menhir-atelier__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.64fr);
  gap: clamp(40px, 8vw, 116px);
  align-items: start;
}

.menhir-atelier__copy {
  color: rgba(243, 234, 216, 0.72);
  font-size: clamp(18px, 1.5vw, 21px);
}

.menhir-atelier__copy p {
  margin: 0 0 1.35em;
}

.menhir-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - clamp(36px, 8vw, 128px), 1220px);
  padding: 0;
  margin: clamp(44px, 7vw, 82px) auto 0;
  background: var(--menhir-line);
  border: 1px solid var(--menhir-line);
  list-style: none;
}

.menhir-process li {
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  background: var(--menhir-black);
}

.menhir-process span {
  color: var(--menhir-stone);
}

.menhir-process strong {
  display: block;
  color: var(--menhir-cream);
  font-family: var(--menhir-serif);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.menhir-process p {
  margin: 18px 0 0;
  color: rgba(243, 234, 216, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.menhir-atelier__image {
  margin: clamp(64px, 9vw, 116px) 0 0;
}

.menhir-atelier__image img {
  width: 100%;
  height: min(760px, 80svh);
  object-fit: cover;
}

.menhir-contact {
  padding-top: clamp(88px, 11vw, 160px);
}

.menhir-contact__inner {
  position: relative;
  max-width: 980px;
}

.menhir-contact__mark {
  position: absolute;
  top: clamp(-34px, -2vw, -18px);
  right: min(0px, 2vw);
  width: clamp(54px, 9vw, 96px);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
}

.menhir-contact h2 {
  margin-top: 16px;
  max-width: 920px;
  color: var(--menhir-black);
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.95;
}

.menhir-contact__inner > p {
  max-width: 720px;
  margin-top: clamp(26px, 4vw, 42px);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.64;
}

.menhir-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: clamp(34px, 5vw, 54px);
  padding: 13px 22px;
  border: 1px solid var(--menhir-black);
  color: var(--menhir-black);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.menhir-button:hover,
.menhir-button:focus-visible {
  color: var(--menhir-cream);
  background: var(--menhir-black);
}

.menhir-footer {
  padding: 32px 0;
  color: rgba(243, 234, 216, 0.66);
  background: var(--menhir-black);
  border-top: 1px solid var(--menhir-line);
  font-size: 13px;
}

.menhir-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 34px;
}

.menhir-footer p {
  margin: 0;
}

.menhir-footer a {
  color: var(--menhir-cream);
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 760ms ease, transform 760ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .menhir-header {
    align-items: flex-start;
  }

  .menhir-section__head--split,
  .menhir-project__body,
  .menhir-atelier__grid,
  .menhir-principles,
  .menhir-process {
    grid-template-columns: 1fr;
  }

  .menhir-project__body {
    gap: 24px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .menhir-header {
    position: absolute;
    display: grid;
    padding-top: 22px;
  }

  .menhir-nav {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 11px;
  }

  .menhir-brand img {
    width: 24px;
    height: 46px;
  }

  .menhir-hero {
    min-height: 86svh;
  }

  .menhir-hero__shade {
    background:
      linear-gradient(180deg, rgba(16, 13, 10, 0.42) 0%, rgba(16, 13, 10, 0.3) 36%, rgba(16, 13, 10, 0.88) 100%),
      linear-gradient(90deg, rgba(16, 13, 10, 0.76) 0%, rgba(16, 13, 10, 0.2) 100%);
  }

  .menhir-hero__content {
    width: min(100% - 36px, 920px);
    padding: 180px 0 84px;
  }

  .menhir-hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .menhir-hero__content p:last-child {
    font-size: 17px;
  }

  .menhir-hero__facts {
    grid-template-columns: 1fr;
  }

  .menhir-hero__facts div,
  .menhir-hero__facts div:first-child {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--menhir-line);
  }

  .menhir-hero__facts div:first-child {
    border-top: 0;
  }

  .menhir-scroll {
    display: none;
  }

  .menhir-section {
    padding: 70px 0;
  }

  .menhir-container {
    width: min(100% - 36px, 1220px);
  }

  .menhir-section__head h2,
  .menhir-contact h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .menhir-columns {
    column-count: 1;
    font-size: 18px;
  }

  .menhir-project__media img {
    height: 68svh;
  }

  .menhir-project__media figcaption {
    right: 18px;
    bottom: 18px;
    font-size: 11px;
  }

  .menhir-project__body {
    padding: 32px 0 72px;
  }

  .menhir-project h3 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .menhir-atelier__image img {
    height: 62svh;
  }

  .menhir-contact__mark {
    top: -24px;
    right: 0;
    width: 58px;
  }

  .menhir-footer__inner {
    display: grid;
  }
}

@media (max-width: 390px) {
  .menhir-nav {
    max-width: 290px;
  }

  .menhir-hero__content {
    padding-top: 208px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
