:root {
  --paper: #f1ecdf;
  --paper-2: #e5dccb;
  --ink: #1a1916;
  --wine: #5a1927;
  --wine-deep: #3a0f19;
  --olive: #596047;
  --line: rgba(26, 25, 22, 0.22);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

::selection {
  background: var(--wine);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.section-pad {
  padding-left: clamp(24px, 5vw, 78px);
  padding-right: clamp(24px, 5vw, 78px);
}

.eyebrow,
.section-index {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-index {
  color: rgba(26, 25, 22, 0.55);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 4vw, 64px);
  color: #fff;
  transition: background-color 300ms ease, color 300ms ease, min-height 300ms ease;
}

.site-header::after {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 0;
  left: clamp(24px, 4vw, 64px);
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.35;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(241, 236, 223, 0.94);
  color: var(--ink);
  backdrop-filter: blur(15px);
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 17px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 2.45rem;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.brand__meta {
  padding-left: 17px;
  border-left: 1px solid currentColor;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.language-switcher {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(26, 25, 22, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #fff;
  backdrop-filter: blur(12px);
}

.language-switcher button {
  display: inline-flex;
  min-width: 42px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  appearance: none;
  color: inherit;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.72;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--wine);
  opacity: 1;
}

.language-switcher button:hover {
  transform: translateY(-1px);
}

.language-switcher__flag {
  display: block;
  width: 18px;
  height: 12px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .language-switcher {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(26, 25, 22, 0.92);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 7px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 18px;
  border: 1px solid currentColor;
  transition: background 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
}

.is-scrolled .nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-button {
  position: relative;
  z-index: 102;
  display: none;
  border: 0;
  background: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  color: white;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 8, 5, 0.62) 0%, rgba(12, 8, 5, 0.12) 57%, rgba(12, 8, 5, 0.25) 100%),
    linear-gradient(0deg, rgba(12, 8, 5, 0.5) 0%, transparent 50%);
}

.hero__eyebrow {
  position: absolute;
  top: 135px;
  left: clamp(24px, 5vw, 78px);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preserve-case {
  text-transform: none !important;
}

.hero__content {
  position: absolute;
  bottom: clamp(60px, 11vh, 118px);
  left: clamp(24px, 5vw, 78px);
  max-width: 800px;
}

.hero__kicker {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-style: italic;
}

.hero h1 {
  margin: 0 0 31px;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 9.8vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.75;
}

.hero h1 em,
.intro h2 em,
.studio h2 em,
.contact h2 em {
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 220ms ease;
}

.text-link:hover {
  gap: 52px;
}

.text-link--light {
  color: white;
}

.hero__side-note {
  position: absolute;
  right: clamp(24px, 3.8vw, 60px);
  bottom: 123px;
  margin: 0;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero__scroll {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: block;
  width: 38px;
  height: 1px;
  background: currentColor;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 3.6fr;
  gap: 50px;
  padding-top: clamp(110px, 14vw, 210px);
  padding-bottom: clamp(110px, 14vw, 210px);
}

.intro__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.intro__body > .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -15px;
}

.intro h2,
.work h2,
.portfolio h2,
.services h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.2vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.intro__copy {
  padding-bottom: 10px;
}

.intro__copy p {
  max-width: 430px;
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}

.work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: clamp(90px, 14vw, 210px) clamp(34px, 6vw, 100px);
  padding-top: 130px;
  padding-bottom: 180px;
  background: var(--paper-2);
}

.work__heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.work__heading .eyebrow,
.services__intro .eyebrow {
  margin: 0 0 35px;
}

.work__dek {
  max-width: 340px;
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.project--wide {
  align-self: end;
  margin-bottom: 120px;
}

.project--panoramic {
  grid-column: 1 / -1;
  width: 82%;
  margin-left: auto;
}

.project__image-wrap {
  position: relative;
  display: block;
  background: #b3a78f;
  overflow: hidden;
}

.project--tall .project__image-wrap {
  aspect-ratio: 4 / 5;
}

.project--wide .project__image-wrap {
  aspect-ratio: 4 / 3;
}

.project--panoramic .project__image-wrap {
  aspect-ratio: 16 / 8;
}

.project__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project__image-wrap:hover img {
  transform: scale(1.025);
}

.project__view {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: translateY(140%);
  transition: transform 350ms ease;
}

.project__image-wrap:hover .project__view,
.project__image-wrap:focus-visible .project__view {
  transform: translateY(0);
}

.project__meta {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  margin-top: 12px;
}

.project__meta h3,
.project__meta p {
  margin: 0;
}

.project__meta h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 400;
}

.project__meta p,
.project__meta > span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.atelier-story {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(300px, 0.88fr) minmax(450px, 1.12fr);
  gap: clamp(55px, 8vw, 135px);
  align-items: center;
  padding: clamp(110px, 12vw, 175px) clamp(24px, 5vw, 78px);
  overflow: hidden;
  background: #ebe2d4;
}

.atelier-story::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, rgba(241, 236, 223, 0.2), rgba(241, 236, 223, 0.86) 72%);
  content: "";
}

.atelier-story__texture {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  mix-blend-mode: multiply;
}

.atelier-story__visual {
  position: relative;
  max-width: 610px;
}

.atelier-story__visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(46, 25, 20, 0.16);
}

.atelier-story__number {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 8px 10px;
  background: rgba(241, 236, 223, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.atelier-story__copy {
  max-width: 760px;
}

.atelier-story__copy > .eyebrow {
  margin: 0 0 34px;
  color: var(--wine);
}

.atelier-story__copy h2 {
  max-width: 780px;
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.89;
}

.atelier-story__copy h2 em {
  color: var(--wine);
  font-weight: 400;
}

.atelier-story__lead {
  max-width: 670px;
  margin: 0 0 21px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.atelier-story__body {
  max-width: 650px;
  margin: 0;
  color: rgba(26, 25, 22, 0.72);
  font-size: 0.92rem;
  line-height: 1.75;
}

.atelier-story__values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(55px, 7vw, 90px);
}

.atelier-story__values article {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.atelier-story__values span {
  display: block;
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.atelier-story__values h3 {
  margin: 0 0 11px;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
}

.atelier-story__values p {
  margin: 0;
  color: rgba(26, 25, 22, 0.67);
  font-size: 0.75rem;
  line-height: 1.6;
}

.portfolio {
  padding-top: clamp(110px, 12vw, 165px);
  padding-bottom: clamp(105px, 12vw, 170px);
  overflow: hidden;
  background: var(--paper-2);
}

.portfolio__header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(45px, 9vw, 150px);
  align-items: end;
}

.portfolio__header .eyebrow {
  margin: 0 0 32px;
}

.portfolio__intro {
  padding-bottom: 7px;
}

.portfolio__intro > p {
  max-width: 490px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.portfolio__controls {
  display: flex;
  gap: 8px;
  margin-top: 35px;
}

.portfolio__controls button {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(26, 25, 22, 0.45);
  border-radius: 50%;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio__controls button:hover,
.portfolio__controls button:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.portfolio__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 31vw);
  gap: clamp(18px, 2.1vw, 32px);
  margin-right: calc(clamp(24px, 5vw, 78px) * -1);
  padding: clamp(65px, 8vw, 105px) clamp(24px, 5vw, 78px) 18px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--wine) rgba(26, 25, 22, 0.12);
  scrollbar-width: thin;
}

.portfolio__rail::-webkit-scrollbar {
  height: 4px;
}

.portfolio__rail::-webkit-scrollbar-track {
  background: rgba(26, 25, 22, 0.12);
}

.portfolio__rail::-webkit-scrollbar-thumb {
  background: var(--wine);
}

.reference-card {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  scroll-snap-align: start;
}

.reference-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #b8ad9b;
}

.reference-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.48));
  content: "";
}

.reference-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.reference-card:hover .reference-card__visual img,
.reference-card:focus-visible .reference-card__visual img {
  transform: scale(1.035);
  filter: saturate(0.9);
}

.reference-card:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 5px;
}

.reference-card__index,
.reference-card__location {
  position: absolute;
  z-index: 1;
  bottom: 17px;
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reference-card__index {
  left: 17px;
}

.reference-card__location {
  right: 17px;
}

.reference-card__body {
  display: grid;
  min-height: 176px;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
  margin-top: 12px;
}

.reference-card__body strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.08;
}

.reference-card__body > span {
  max-width: 390px;
  color: rgba(26, 25, 22, 0.7);
  font-size: 0.76rem;
  line-height: 1.6;
}

.reference-card__body small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-dialog {
  width: min(1420px, calc(100% - 54px));
  max-width: none;
  max-height: calc(100svh - 54px);
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}

.project-dialog::backdrop {
  background: rgba(15, 10, 8, 0.76);
  backdrop-filter: blur(5px);
}

.project-dialog__shell {
  position: relative;
  min-height: 100%;
  padding: clamp(70px, 7vw, 115px) clamp(24px, 5vw, 78px);
}

.project-dialog__close {
  position: sticky;
  z-index: 3;
  top: 18px;
  float: right;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  margin-top: -52px;
  background: rgba(241, 236, 223, 0.94);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.project-dialog__close:hover,
.project-dialog__close:focus-visible {
  background: var(--wine);
  color: white;
}

.project-dialog__header {
  display: grid;
  grid-template-columns: minmax(90px, 0.25fr) minmax(170px, 0.45fr) minmax(330px, 1fr);
  gap: 30px;
  align-items: baseline;
  padding-bottom: clamp(48px, 6vw, 85px);
  border-bottom: 1px solid var(--line);
}

.project-dialog__header > span,
.project-dialog__header > p:first-of-type {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-dialog__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.project-dialog__header > p:last-child {
  grid-column: 3;
  max-width: 650px;
  margin: 5px 0 0;
  color: rgba(26, 25, 22, 0.7);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
}

.project-dialog__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(45px, 7vw, 105px) clamp(25px, 4vw, 62px);
  padding-top: clamp(55px, 7vw, 100px);
}

.project-dialog__gallery.is-single {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.project-dialog__gallery figure {
  min-width: 0;
  margin: 0;
}

.project-dialog__gallery img {
  width: 100%;
  height: clamp(340px, 43vw, 650px);
  background: var(--paper-2);
  object-fit: contain;
}

.project-dialog__gallery figcaption {
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  margin-top: 12px;
}

.project-dialog__gallery small {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-dialog__gallery h3 {
  margin: 0 0 11px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
}

.project-dialog__gallery p {
  max-width: 590px;
  margin: 0;
  color: rgba(26, 25, 22, 0.72);
  font-size: 0.82rem;
  line-height: 1.65;
}

body:has(.project-dialog[open]) {
  overflow: hidden;
}

.studio {
  display: grid;
  min-height: 850px;
  grid-template-columns: 1.4fr 0.6fr;
  background: var(--wine);
  color: var(--paper);
}

.studio__statement,
.studio__detail {
  padding: clamp(100px, 11vw, 165px) clamp(28px, 5vw, 80px);
}

.studio__statement {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.studio__statement .section-index {
  color: rgba(255, 255, 255, 0.58);
}

.studio__statement .eyebrow {
  margin: auto 0 32px;
}

.studio h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6.2vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.studio__detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--wine-deep);
}

.studio__monogram {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 10rem);
  font-style: italic;
  letter-spacing: -0.11em;
  line-height: 0.8;
  opacity: 0.25;
}

.studio__monogram span {
  font-size: 0.55em;
}

.studio__detail p {
  max-width: 430px;
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.45;
}

.services {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
}

.services__intro {
  margin-bottom: clamp(80px, 10vw, 140px);
}

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

.service {
  display: grid;
  grid-template-columns: 0.18fr 1.35fr 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 152px;
  border-bottom: 1px solid var(--line);
  transition: padding 250ms ease, background 250ms ease;
}

.service:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--paper-2);
}

.service > span {
  font-size: 0.65rem;
  font-weight: 600;
}

.service h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.service p {
  max-width: 390px;
  margin: 0;
  color: rgba(26, 25, 22, 0.7);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service > a {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: background 180ms ease, color 180ms ease;
}

.service > a:hover {
  background: var(--ink);
  color: var(--paper);
}

.quote {
  position: relative;
  display: grid;
  min-height: 710px;
  place-items: center;
  background: var(--olive);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}

.quote__mark {
  position: absolute;
  top: -150px;
  left: 50%;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--serif);
  font-size: 38rem;
  line-height: 1;
  transform: translateX(-50%);
}

.quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 970px;
  margin: 0;
}

.quote blockquote p {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.quote footer {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote footer span {
  margin-left: 16px;
  opacity: 0.65;
}

.contact {
  background: var(--paper-2);
}

.contact__top {
  display: flex;
  min-height: 670px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact__top .eyebrow {
  margin: 0 0 36px;
}

.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.circle-link {
  display: flex;
  width: clamp(185px, 20vw, 280px);
  height: clamp(185px, 20vw, 280px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  transition: background 250ms ease, transform 250ms ease;
}

.circle-link:hover {
  background: var(--wine-deep);
  transform: rotate(-5deg);
}

.circle-link b {
  font-size: 1.35rem;
  font-weight: 400;
}

.contact__details {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.35fr);
  gap: clamp(42px, 6vw, 100px);
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 135px;
  scroll-margin-top: 24px;
}

.contact__directory {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.contact-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 18px 2px;
  border-top: 1px solid var(--line);
  transition: color 220ms ease, padding 220ms ease;
}

.contact-card:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--wine);
}

.contact-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.contact-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.contact-card__icon .contact-card__dot {
  fill: currentColor;
  stroke: none;
}

.contact-card__text {
  min-width: 0;
}

.contact-card__text small,
.contact-card__text strong {
  display: block;
}

.contact-card__text small {
  margin-bottom: 8px;
  color: rgba(26, 25, 22, 0.52);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card__text strong {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
}

.contact-card--address {
  flex: 1;
  min-height: 150px;
}

.contact-card__arrow {
  font-family: var(--serif);
  font-size: 1.3rem;
  transition: transform 220ms ease;
}

.contact-card:hover .contact-card__arrow {
  transform: translate(3px, -3px);
}

.contact-map {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #d8d4ca;
  isolation: isolate;
}

.contact-map::before,
.contact-map::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.contact-map::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.contact-map::after {
  inset: 0;
  background: linear-gradient(145deg, rgba(62, 21, 42, 0.08), transparent 48%, rgba(238, 232, 220, 0.15));
  mix-blend-mode: multiply;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.12) contrast(0.92) brightness(0.94);
  pointer-events: none;
  transform: scale(1.01);
  transition: filter 350ms ease, transform 650ms ease;
}

.contact-map:hover iframe {
  filter: grayscale(0.78) sepia(0.08) contrast(0.96);
  transform: scale(1.035);
}

.contact-map__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.contact-map__corner {
  position: absolute;
  z-index: 4;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  pointer-events: none;
}

.contact-map__corner--top {
  top: 31px;
  right: 32px;
}

.contact-map__corner--bottom {
  right: 32px;
  bottom: 31px;
}

.contact-map__caption {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 40px;
  left: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 28px 30px;
  background: rgba(62, 21, 42, 0.93);
  color: #fff;
  pointer-events: none;
}

.contact-map__caption small {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
}

.contact-map__caption strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 400;
}

.contact-map__caption em {
  padding-bottom: 4px;
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map__link {
  position: absolute;
  z-index: 5;
  inset: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 90px;
  padding-bottom: 35px;
  border-top: 1px solid var(--line);
}

.footer__brand {
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 12rem);
  font-style: italic;
  letter-spacing: -0.1em;
  line-height: 0.65;
}

.footer__brand span {
  display: block;
  padding-left: 1.2em;
  font-size: 0.27em;
  letter-spacing: -0.03em;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__links p {
  margin: 0 0 15px;
  color: rgba(26, 25, 22, 0.55);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__links a {
  border-bottom: 1px solid transparent;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer__links a:hover {
  border-color: currentColor;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  margin-top: 75px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .menu-button i,
  .menu-button i::after {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 200ms ease;
  }

  .menu-button i::after {
    transform: translateY(5px);
  }

  .menu-button[aria-expanded="true"] i {
    transform: rotate(45deg) translateY(2px);
  }

  .menu-button[aria-expanded="true"] i::after {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 110px 28px 50px;
    background: var(--wine-deep);
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: none;
    transform: translateY(-102%);
    transition: transform 450ms cubic-bezier(0.7, 0, 0.2, 1);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-header:has(.site-nav.is-open) {
    color: var(--paper);
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .intro__body {
    grid-template-columns: 1fr;
  }

  .intro__body > .eyebrow {
    grid-column: auto;
  }

  .work {
    gap: 100px 40px;
  }

  .atelier-story {
    min-height: 820px;
    grid-template-columns: minmax(270px, 0.78fr) minmax(400px, 1.22fr);
    gap: 45px;
  }

  .atelier-story__values {
    gap: 14px;
  }

  .portfolio__header {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portfolio__rail {
    grid-auto-columns: minmax(300px, 45vw);
  }

  .project-dialog__header {
    grid-template-columns: 0.35fr 0.65fr;
  }

  .project-dialog__header h2,
  .project-dialog__header > p:last-child {
    grid-column: 1 / -1;
  }

  .project--wide {
    margin-bottom: 80px;
  }

  .studio {
    grid-template-columns: 1fr;
  }

  .studio__statement {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .studio__detail {
    min-height: 620px;
  }

  .contact__details {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 78px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header::after {
    right: 20px;
    left: 20px;
  }

  .brand__name {
    font-size: 2rem;
  }

  .brand__meta {
    display: none;
  }

  .header-right {
    gap: 12px;
  }

  .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .language-switcher button {
    min-width: 30px;
    min-height: 28px;
    padding: 3px 5px;
  }

  .language-switcher__code {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero {
    min-height: 680px;
  }

  .hero__image {
    object-position: 59% center;
  }

  .hero__eyebrow {
    top: 112px;
  }

  .hero__content {
    bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 21vw, 6.6rem);
    line-height: 0.8;
  }

  .hero__side-note {
    display: none;
  }

  .hero__scroll {
    right: 20px;
    bottom: 25px;
  }

  .intro {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .intro h2,
  .work h2,
  .portfolio h2,
  .services h2 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .work {
    display: block;
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .atelier-story {
    display: block;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .atelier-story::after {
    background: linear-gradient(180deg, rgba(241, 236, 223, 0.2), rgba(241, 236, 223, 0.94) 58%);
  }

  .atelier-story__visual {
    width: min(86%, 470px);
    margin: 0 0 75px auto;
  }

  .atelier-story__copy h2 {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .atelier-story__values {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .atelier-story__values span {
    margin-bottom: 13px;
  }

  .portfolio {
    padding-top: 100px;
    padding-bottom: 105px;
  }

  .portfolio__rail {
    grid-auto-columns: minmax(280px, 82vw);
    padding-top: 65px;
  }

  .reference-card__body {
    min-height: 170px;
  }

  .project-dialog {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
  }

  .project-dialog__shell {
    padding-top: 76px;
    padding-bottom: 65px;
  }

  .project-dialog__close {
    top: 12px;
    width: 43px;
    height: 43px;
    margin-top: -58px;
  }

  .project-dialog__header {
    grid-template-columns: 1fr auto;
    gap: 14px 20px;
  }

  .project-dialog__header h2,
  .project-dialog__header > p:last-child {
    grid-column: 1 / -1;
  }

  .project-dialog__header h2 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .project-dialog__gallery,
  .project-dialog__gallery.is-single {
    grid-template-columns: 1fr;
  }

  .project-dialog__gallery img {
    height: auto;
    max-height: 64svh;
  }

  .work__heading {
    display: block;
    margin-bottom: 85px;
  }

  .work__dek {
    margin-top: 35px;
  }

  .project,
  .project--panoramic {
    width: 100%;
    margin: 0 0 85px;
  }

  .project:last-child {
    margin-bottom: 0;
  }

  .project--panoramic .project__image-wrap {
    aspect-ratio: 4 / 3;
  }

  .project__meta {
    grid-template-columns: 1fr auto;
  }

  .project__meta p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .project__meta > span {
    grid-column: 2;
    grid-row: 1;
  }

  .project__view {
    transform: translateY(0);
  }

  .studio__statement,
  .studio__detail {
    padding: 95px 24px;
  }

  .studio h2 {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
  }

  .services {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .service {
    grid-template-columns: 34px 1fr auto;
    gap: 16px;
    padding: 28px 0;
  }

  .service h3 {
    font-size: 1.8rem;
  }

  .service p {
    grid-column: 2 / -1;
  }

  .service:hover {
    padding-right: 12px;
    padding-left: 12px;
  }

  .quote {
    min-height: 620px;
  }

  .quote blockquote p {
    font-size: clamp(2.3rem, 10vw, 3.7rem);
  }

  .contact__top {
    min-height: 730px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .circle-link {
    align-self: flex-end;
    padding: 33px;
  }

  .contact__details {
    gap: 55px;
    padding-bottom: 100px;
  }

  .contact-card {
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 14px;
    min-height: 104px;
  }

  .contact-card__icon {
    width: 44px;
    height: 44px;
  }

  .contact-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-card--address {
    min-height: 148px;
  }

  .contact-map {
    min-height: 450px;
  }

  .contact-map__caption {
    right: 28px;
    bottom: 28px;
    left: 28px;
    grid-template-columns: 1fr;
    padding: 23px 22px;
  }

  .contact-map__caption em {
    margin-top: 12px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .footer__brand {
    font-size: 7rem;
  }

  .footer__bottom {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .footer__bottom span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer__bottom a {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
