@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/font_004_311d352d9323.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/font_004_311d352d9323.woff2") format("woff2");
}

:root {
  --paper: #f6f3ee;
  --milk: #fffaf2;
  --mist: #ecebea;
  --graphite: #242424;
  --ink: #111;
  --muted: #706d67;
  --line: rgba(17, 17, 17, .14);
  --accent: #de0b0b;
  --max: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, 0));
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(246, 243, 238, .96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.brand img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-nav a,
.header-contacts a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  border-bottom-color: currentColor;
}

.header-contacts {
  display: grid;
  gap: 2px;
  justify-items: end;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 11px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #161616;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  z-index: 0;
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.96);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .14) 56%, rgba(0, 0, 0, .34)),
    linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0) 54%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  margin: 0 0 clamp(40px, 8vw, 110px) clamp(20px, 7vw, 110px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--accent);
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(58px, 7vw, 110px);
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 520px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.2;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-ghost {
  color: #fff;
  background: transparent;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.hero-note {
  margin: 26px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.section-pad {
  padding: clamp(82px, 11vw, 180px) clamp(20px, 5vw, 72px);
}

.intro {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.intro-scale {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: clamp(64px, 10vw, 150px);
  line-height: .8;
  color: rgba(17, 17, 17, .12);
  font-weight: 700;
}

.intro-copy p:last-child {
  max-width: 760px;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--muted);
}

.project {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.project-400 {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(320px, .85fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.project-media-large {
  align-self: stretch;
}

.photo-button {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.photo-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.photo-button:hover img {
  transform: scale(1.025);
}

.project-media-large .photo-button {
  aspect-ratio: 3 / 4;
}

.project-number {
  margin-bottom: 28px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.project-copy p:not(.project-number),
.sticky-copy p:not(.project-number),
.calm-copy p {
  max-width: 620px;
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--muted);
}

.price {
  margin: 34px 0;
  font-size: clamp(54px, 6vw, 84px);
  line-height: .9;
  font-weight: 700;
}

.price span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  margin-top: 16px;
}

.detail-strip .photo-button {
  aspect-ratio: 4 / 3;
}

.detail-strip .photo-button:first-child,
.detail-strip .photo-button:last-child {
  aspect-ratio: 3 / 4;
}

.pause {
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: clamp(70px, 12vw, 170px) clamp(20px, 6vw, 90px);
  background: var(--ink);
  color: var(--milk);
}

.pause p {
  width: min(1100px, 100%);
  margin: 0;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 1;
  text-align: center;
}

.project-500 {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 122px;
  padding-top: 10px;
}

.scrolling-photos {
  display: grid;
  gap: clamp(18px, 3vw, 42px);
}

.scrolling-photos .wide {
  aspect-ratio: 16 / 10;
}

.scrolling-photos .tall,
.scrolling-photos .photo-button:not(.wide) {
  aspect-ratio: 4 / 3;
}

.project-600 {
  display: grid;
  grid-template-columns: minmax(260px, 520px) minmax(300px, 1fr);
  grid-template-areas:
    "photo copy"
    "photo quiet";
  gap: clamp(26px, 5vw, 86px);
  align-items: center;
  background: var(--milk);
  max-width: none;
}

.portrait-frame {
  grid-area: photo;
  justify-self: end;
  width: min(520px, 100%);
}

.portrait-frame .photo-button,
.quiet-photo .photo-button {
  aspect-ratio: 3 / 4;
}

.calm-copy {
  grid-area: copy;
  max-width: 760px;
}

.quiet-photo {
  grid-area: quiet;
  width: min(430px, 65%);
  margin-left: min(13vw, 160px);
}

.compare,
.process,
.details {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.compare-grid article {
  padding: clamp(24px, 3vw, 44px) clamp(12px, 2.5vw, 30px);
  border-right: 1px solid var(--line);
}

.compare-grid article:last-child {
  border-right: 0;
}

.compare-grid span,
.process-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--muted);
  font-weight: 700;
}

.compare-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.compare-grid p,
.fine-note {
  color: var(--muted);
}

.fine-note {
  max-width: 760px;
  margin: 42px 0 0;
  font-size: 17px;
}

.process {
  background: var(--mist);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.process-list div {
  min-height: 230px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--mist);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-list p {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
}

.details {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
}

.detail-lines {
  border-top: 1px solid var(--line);
}

.detail-lines p {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  margin: 0;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.detail-lines span {
  color: var(--ink);
  font-weight: 700;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: clamp(80px, 10vw, 160px) clamp(20px, 6vw, 90px);
  background: var(--graphite);
  color: #fff;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.contact-actions {
  justify-content: flex-end;
  max-width: 460px;
}

.contact-actions a:not(.button) {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 48px clamp(20px, 5vw, 72px);
  background: #111;
  color: rgba(255, 255, 255, .72);
}

.site-footer img {
  width: 150px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 54px;
  background: rgba(0, 0, 0, .92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1500px);
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 52px;
  height: 70px;
  transform: translateY(-50%);
  font-size: 48px;
  line-height: 1;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 136px minmax(0, 1fr) auto;
  }

  .desktop-nav {
    gap: 12px;
    font-size: 12px;
  }

  .header-contacts {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 130px auto;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 28px;
    background: rgba(246, 243, 238, .98);
    color: var(--ink);
    box-shadow: 0 28px 40px rgba(0, 0, 0, .12);
  }

  .site-header.is-open .mobile-nav {
    display: grid;
    gap: 16px;
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 700;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 46px;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: .96;
  }

  .hero-lead,
  .hero-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 22px;
    line-height: 1.18;
  }

  .hero-note {
    font-size: 11px;
    line-height: 1.55;
  }

  .section-pad {
    padding: 76px 18px;
  }

  .intro,
  .project-400,
  .project-500,
  .project-600,
  .section-heading,
  .details,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-scale {
    font-size: 72px;
  }

  .project-400 {
    gap: 30px;
  }

  .detail-strip {
    grid-template-columns: 1fr;
  }

  .detail-strip .photo-button,
  .detail-strip .photo-button:first-child,
  .detail-strip .photo-button:last-child {
    aspect-ratio: 4 / 5;
  }

  .pause {
    min-height: 44vh;
  }

  .pause p {
    font-size: clamp(40px, 12vw, 62px);
    text-align: left;
  }

  .sticky-copy {
    position: static;
  }

  .project-600 {
    grid-template-areas:
      "photo"
      "copy"
      "quiet";
  }

  .portrait-frame {
    justify-self: stretch;
  }

  .quiet-photo {
    width: 78%;
    margin-left: auto;
  }

  .compare-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .compare-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list div {
    min-height: 160px;
  }

  .detail-lines p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-actions,
  .footer-contact {
    justify-content: flex-start;
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img,
  .site-footer img {
    width: 122px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }

  .price {
    font-size: 48px;
  }

  .lightbox {
    padding: 58px 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 14px;
    transform: none;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
