/* ==========================================================================
   Desaever Group — design tokens
   ========================================================================== */

:root {
  --ink: #080808;
  --ivory: #f3f1ec;
  --paper: #ffffff;
  --red: #b51f24;

  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;

  --container-max: 1600px;
  --nav-height: 88px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background-color: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background-color: var(--ink);
  color: var(--ivory);
}

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

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding-inline: 4rem;
  }
}

.section-dark {
  background-color: var(--ink);
  color: var(--ivory);
}

.section-light {
  background-color: var(--ivory);
  color: var(--ink);
}

/* fixed, pointer-events-none grain layer only — never on a scrolling container */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.italic-clear {
  line-height: 1.15;
  padding-bottom: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  padding: 1rem 2rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}

.btn-primary {
  background-color: var(--ink);
  color: var(--ivory);
}

.btn-primary:hover {
  background-color: var(--red);
}

.btn-ghost-dark {
  border: 1px solid rgba(243, 241, 236, 0.3);
  color: var(--ivory);
}

.btn-ghost-dark:hover {
  border-color: rgba(243, 241, 236, 0.7);
  background-color: rgba(243, 241, 236, 0.05);
}

.btn-ghost-light {
  border: 1px solid rgba(8, 8, 8, 0.25);
  color: var(--ink);
}

.btn-ghost-light:hover {
  border-color: var(--ink);
  background-color: rgba(8, 8, 8, 0.05);
}

.btn-solid-ivory {
  background-color: var(--ivory);
  color: var(--ink);
}

.btn-solid-ivory:hover {
  background-color: var(--red);
  color: var(--ivory);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color 0.4s, box-shadow 0.4s;
}

.nav[data-scrolled="true"] {
  background-color: rgba(243, 241, 236, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(8, 8, 8, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  transition: padding 0.4s;
}

.nav[data-scrolled="true"] .nav__inner {
  padding-block: 1rem;
}

.nav__mark {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(8, 8, 8, 0.7);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
  }
  .nav__toggle {
    display: none;
  }
}

/* Mobile full-screen menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  color: var(--ivory);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu[data-open="true"] {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
}

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-menu__nav a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13vw;
  line-height: 1.05;
  color: rgba(243, 241, 236, 0.9);
  transition: color 0.3s;
}

.mobile-menu__nav a:hover {
  color: var(--ivory);
}

.mobile-menu__footer {
  padding-bottom: 2.5rem;
}

.mobile-menu__footer .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  transform: scale(1.18);
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, rgba(8, 8, 8, 0.35) 55%, rgba(8, 8, 8, 0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(243, 241, 236, 0.8);
}

.hero__eyebrow-brand {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero__eyebrow-location {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (min-width: 640px) {
  .hero__eyebrow-location {
    display: flex;
  }
}

.hero__title {
  margin-top: 2rem;
  max-width: 60rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15vw;
  line-height: 0.98;
  color: var(--ivory);
}

.hero__row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__subtext {
  max-width: 26rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.75);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 10vw;
  }
  .hero__row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 6.4vw;
  }
}

/* ==========================================================================
   Brand statement
   ========================================================================== */

.brand-statement {
  padding-block: 8rem;
}

@media (min-width: 640px) {
  .brand-statement {
    padding-block: 10rem;
  }
}

.brand-statement__inner {
  max-width: 60rem;
}

.brand-statement__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11vw;
  line-height: 1.02;
}

.brand-statement__body {
  margin-top: 2.5rem;
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.7);
}

@media (min-width: 640px) {
  .brand-statement__title {
    font-size: 7vw;
  }
  .brand-statement__body {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .brand-statement__title {
    font-size: 4.6vw;
  }
}

/* ==========================================================================
   Services (sticky crossfade)
   ========================================================================== */

.services {
  background-color: var(--ivory);
}

.services__intro {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .services__intro {
    padding-top: 8rem;
  }
}

.services__heading {
  max-width: 34rem;
  font-size: 11vw;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .services__heading {
    font-size: 6vw;
  }
}

@media (min-width: 1024px) {
  .services__heading {
    font-size: 4vw;
  }
}

.services__scroller {
  position: relative;
}

.services__sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100dvh;
  grid-template-columns: 1fr;
  grid-template-rows: 45vh 1fr;
}

@media (min-width: 1024px) {
  .services__sticky {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.services__text {
  position: relative;
  order: 2;
}

.services__media {
  position: relative;
  order: 1;
}

@media (min-width: 1024px) {
  .services__text {
    order: 1;
  }
  .services__media {
    order: 2;
  }
}

.services__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 1.5rem;
  padding-bottom: 4rem;
  opacity: 0;
}

.services__panel[data-active="true"] {
  opacity: 1;
}

@media (min-width: 640px) {
  .services__panel {
    padding-inline: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .services__panel {
    padding-inline: 4rem;
  }
}

.services__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15vw;
  color: rgba(8, 8, 8, 0.15);
}

@media (min-width: 640px) {
  .services__number {
    font-size: 8vw;
  }
}

@media (min-width: 1024px) {
  .services__number {
    font-size: 6vw;
  }
}

.services__title {
  margin-top: 0.5rem;
  font-size: 8vw;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .services__title {
    font-size: 3.4vw;
  }
}

@media (min-width: 1024px) {
  .services__title {
    font-size: 2.6vw;
  }
}

.services__desc {
  margin-top: 1.5rem;
  max-width: 24rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 8, 8, 0.65);
}

.services__image {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.services__image[data-active="true"] {
  opacity: 1;
}

.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 8, 8, 0.1);
}

.services__dots {
  position: absolute;
  left: 1.5rem;
  bottom: 2.5rem;
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .services__dots {
    left: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .services__dots {
    left: 4rem;
  }
}

.services__dot {
  height: 6px;
  width: 24px;
  background-color: rgba(8, 8, 8, 0.2);
  transition: background-color 0.3s;
}

.services__dot[data-active="true"] {
  background-color: var(--ink);
}

/* ==========================================================================
   Knokke (layered images)
   ========================================================================== */

.knokke {
  padding-block: 7rem;
}

@media (min-width: 640px) {
  .knokke {
    padding-block: 9rem;
  }
}

.knokke__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .knokke__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.knokke__images {
  position: relative;
  height: 70vh;
}

@media (min-width: 640px) {
  .knokke__images {
    height: 80vh;
  }
}

.knokke__image-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 68%;
  width: 78%;
  overflow: hidden;
  will-change: transform;
}

.knokke__image-front {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 62%;
  width: 70%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(8, 8, 8, 0.18);
  will-change: transform;
}

.knokke__image-back img,
.knokke__image-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.knokke__copy {
  max-width: 32rem;
}

.knokke__title {
  font-size: 10vw;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .knokke__title {
    font-size: 5vw;
  }
}

@media (min-width: 1024px) {
  .knokke__title {
    font-size: 3.2vw;
  }
}

.knokke__quote {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(8, 8, 8, 0.75);
}

@media (min-width: 640px) {
  .knokke__quote {
    font-size: 24px;
  }
}

.knokke__signoff {
  margin-top: 2.5rem;
  max-width: 22rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.7;
  letter-spacing: 0.14em;
  color: rgba(8, 8, 8, 0.6);
}

/* ==========================================================================
   Selected work (sticky stack)
   ========================================================================== */

.selected-work {
  background-color: var(--ink);
}

.selected-work__intro {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .selected-work__intro {
    padding-top: 8rem;
  }
}

.selected-work__heading {
  max-width: 34rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11vw;
  line-height: 0.98;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .selected-work__heading {
    font-size: 6vw;
  }
}

@media (min-width: 1024px) {
  .selected-work__heading {
    font-size: 4vw;
  }
}

.work-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100dvh;
  overflow: hidden;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 0%, rgba(8, 8, 8, 0.25) 55%, rgba(8, 8, 8, 0.05) 100%);
}

.work-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 4rem;
}

.work-card__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px solid rgba(243, 241, 236, 0.2);
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .work-card__row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.work-card__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 9vw;
  line-height: 1.02;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .work-card__title {
    font-size: 4.4vw;
  }
}

@media (min-width: 1024px) {
  .work-card__title {
    font-size: 3.2vw;
  }
}

.work-card__location {
  margin-top: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(243, 241, 236, 0.6);
}

.work-card__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.5rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(243, 241, 236, 0.6);
}

@media (min-width: 640px) {
  .work-card__meta {
    gap: 2.5rem;
  }
}

.work-card__meta dt {
  color: rgba(243, 241, 236, 0.4);
}

.work-card__meta dd {
  margin-top: 0.25rem;
  color: rgba(243, 241, 236, 0.85);
}

/* ==========================================================================
   Horizontal gallery
   ========================================================================== */

.gallery {
  background-color: var(--ink);
  position: relative;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  height: 100dvh;
  align-items: center;
  gap: 1.5rem;
  padding-left: 1.5rem;
  will-change: transform;
}

@media (min-width: 640px) {
  .gallery__track {
    gap: 2rem;
    padding-left: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery__track {
    padding-left: 4rem;
  }
}

.gallery__slide {
  position: relative;
  flex-shrink: 0;
  height: 72vh;
  width: 82vw;
  overflow: hidden;
}

@media (min-width: 640px) {
  .gallery__slide {
    width: 70vw;
  }
}

@media (min-width: 1024px) {
  .gallery__slide {
    height: 78vh;
    width: 46vw;
  }
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.7), transparent 60%);
}

.gallery__slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .gallery__slide-text {
    padding: 2rem;
  }
}

.gallery__slide-index {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(243, 241, 236, 0.6);
}

.gallery__slide-title {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .gallery__slide-title {
    font-size: 36px;
  }
}

.gallery__slide-location {
  margin-top: 0.25rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(243, 241, 236, 0.6);
}

.gallery__cta {
  flex-shrink: 0;
  height: 72vh;
  width: 70vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid rgba(243, 241, 236, 0.15);
  padding-inline: 2rem;
}

@media (min-width: 640px) {
  .gallery__cta {
    width: 46vw;
    padding-inline: 3rem;
  }
}

@media (min-width: 1024px) {
  .gallery__cta {
    height: 78vh;
    width: 32vw;
  }
}

.gallery__cta-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .gallery__cta-title {
    font-size: 36px;
  }
}

.gallery__cta-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(243, 241, 236, 0.7);
  transition: color 0.3s;
}

.gallery__cta:hover .gallery__cta-link {
  color: var(--ivory);
}

.gallery__cta:hover .gallery__cta-link .ph-light {
  transform: translateX(4px);
}

.gallery__cta-link .ph-light {
  transition: transform 0.3s;
}

/* ==========================================================================
   Standard (principles)
   ========================================================================== */

.standard {
  padding-block: 8rem;
}

@media (min-width: 640px) {
  .standard {
    padding-block: 10rem;
  }
}

.standard__title {
  max-width: 48rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11vw;
  line-height: 1.02;
}

@media (min-width: 640px) {
  .standard__title {
    font-size: 6.5vw;
  }
}

@media (min-width: 1024px) {
  .standard__title {
    font-size: 4.4vw;
  }
}

.standard__grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem 3rem;
}

@media (min-width: 640px) {
  .standard__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.standard__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 1px solid rgba(243, 241, 236, 0.15);
  padding-top: 2rem;
}

.standard__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: rgba(243, 241, 236, 0.4);
}

.standard__item-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .standard__item-title {
    font-size: 24px;
  }
}

.standard__item-desc {
  margin-top: 0.75rem;
  max-width: 18rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.65);
}

/* ==========================================================================
   Craftsmanship (bento)
   ========================================================================== */

.craft {
  padding-block: 7rem;
}

@media (min-width: 640px) {
  .craft {
    padding-block: 9rem;
  }
}

.craft__title {
  max-width: 32rem;
  font-size: 11vw;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .craft__title {
    font-size: 6vw;
  }
}

@media (min-width: 1024px) {
  .craft__title {
    font-size: 4vw;
  }
}

.craft__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .craft__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 14vw;
  }
}

.craft__cell {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .craft__cell {
    height: auto;
  }
}

.craft__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}

.craft__cell:hover img {
  transform: scale(1.05);
}

.craft__cell--a {
  grid-column: span 3;
  grid-row: span 2;
}

.craft__cell--b {
  grid-column: span 3;
}

.craft__cell--c,
.craft__cell--d,
.craft__cell--e {
  grid-column: span 2;
}

.craft__cell--f {
  grid-column: span 6;
}

/* ==========================================================================
   Process (timeline)
   ========================================================================== */

.process {
  padding-block: 7rem;
}

@media (min-width: 640px) {
  .process {
    padding-block: 9rem;
  }
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.process__title {
  max-width: 28rem;
  font-size: 10vw;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .process__title {
    font-size: 5.5vw;
  }
}

@media (min-width: 1024px) {
  .process__title {
    font-size: 3.2vw;
  }
}

.process__image {
  position: relative;
  display: none;
  height: 60vh;
  margin-top: 3rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .process__image {
    display: block;
  }
}

.process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__list {
  display: flex;
  flex-direction: column;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  padding-block: 2rem;
}

@media (min-width: 640px) {
  .process__step {
    gap: 2.5rem;
  }
}

.process__step:first-child {
  padding-top: 0;
  border-top: none;
}

.process__step-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: rgba(8, 8, 8, 0.35);
}

@media (min-width: 640px) {
  .process__step-number {
    font-size: 32px;
  }
}

.process__step-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .process__step-title {
    font-size: 22px;
  }
}

.process__step-desc {
  margin-top: 0.5rem;
  max-width: 22rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 8, 8, 0.6);
}

/* ==========================================================================
   Discretion
   ========================================================================== */

.discretion {
  padding-block: 9rem;
  text-align: center;
}

@media (min-width: 640px) {
  .discretion {
    padding-block: 12rem;
  }
}

.discretion__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discretion__title {
  max-width: 44rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11vw;
  line-height: 1.05;
}

@media (min-width: 640px) {
  .discretion__title {
    font-size: 6vw;
  }
}

@media (min-width: 1024px) {
  .discretion__title {
    font-size: 4vw;
  }
}

.discretion__body {
  margin-top: 2.5rem;
  max-width: 34rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.65);
}

@media (min-width: 640px) {
  .discretion__body {
    font-size: 16px;
  }
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  padding-block: 7rem;
}

@media (min-width: 640px) {
  .about {
    padding-block: 9rem;
  }
}

.about__intro {
  max-width: 42rem;
}

.about__title {
  font-size: 10vw;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .about__title {
    font-size: 5.5vw;
  }
}

@media (min-width: 1024px) {
  .about__title {
    font-size: 3.6vw;
  }
}

.about__tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about__tag {
  border: 1px solid rgba(8, 8, 8, 0.2);
  padding: 0.6rem 1.25rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(8, 8, 8, 0.7);
}

.about__photo {
  position: relative;
  margin-top: 4rem;
  height: 55vh;
  overflow: hidden;
}

@media (min-width: 640px) {
  .about__photo {
    height: 65vh;
  }
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Client experience
   ========================================================================== */

.client-experience {
  padding-block: 7rem;
}

@media (min-width: 640px) {
  .client-experience {
    padding-block: 9rem;
  }
}

.client-experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .client-experience__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
}

.client-experience__title {
  max-width: 28rem;
  font-size: 10vw;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .client-experience__title {
    font-size: 5.5vw;
  }
}

@media (min-width: 1024px) {
  .client-experience__title {
    font-size: 3.4vw;
  }
}

.client-experience__body {
  margin-top: 2rem;
  max-width: 26rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 8, 8, 0.65);
}

.client-experience__quote {
  margin-top: 2.5rem;
  max-width: 20rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  color: rgba(8, 8, 8, 0.8);
}

.client-experience__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  align-self: flex-start;
}

@media (min-width: 640px) {
  .client-experience__points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-experience__point {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.client-experience__point .ph-light {
  font-size: 22px;
  color: rgba(8, 8, 8, 0.6);
}

.client-experience__point span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(8, 8, 8, 0.7);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ink);
}

.final-cta__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__scrim {
  position: absolute;
  inset: 0;
  background-color: rgba(8, 8, 8, 0.7);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  max-width: 44rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13vw;
  line-height: 0.98;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .final-cta__title {
    font-size: 7.5vw;
  }
}

@media (min-width: 1024px) {
  .final-cta__title {
    font-size: 5vw;
  }
}

.final-cta__subtext {
  margin-top: 2rem;
  font-size: 15px;
  color: rgba(243, 241, 236, 0.7);
}

.final-cta__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.final-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 241, 236, 0.8);
  transition: color 0.3s;
}

.final-cta__phone:hover {
  color: var(--ivory);
}

.final-cta__regions {
  margin-top: 4rem;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(243, 241, 236, 0.45);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding-block: 7rem;
}

@media (min-width: 640px) {
  .contact {
    padding-block: 9rem;
  }
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
  }
}

.contact__title {
  max-width: 24rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11vw;
  line-height: 1.02;
  color: var(--ivory);
}

@media (min-width: 640px) {
  .contact__title {
    font-size: 6vw;
  }
}

@media (min-width: 1024px) {
  .contact__title {
    font-size: 3.4vw;
  }
}

.contact__body {
  margin-top: 2rem;
  max-width: 22rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.6);
}

.contact__details {
  margin-top: 2.5rem;
  font-size: 14px;
  line-height: 2;
  color: rgba(243, 241, 236, 0.7);
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact__form {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 241, 236, 0.5);
}

.field label .optional {
  color: rgba(243, 241, 236, 0.3);
  text-transform: none;
  letter-spacing: normal;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(243, 241, 236, 0.25);
  background-color: transparent;
  padding: 0.75rem 1rem;
  font-size: 15px;
  color: var(--ivory);
  transition: border-color 0.2s;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23f3f1ec'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%23f3f1ec' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.field select option {
  color: #111;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(243, 241, 236, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(243, 241, 236, 0.6);
}

.field--error input,
.field--error textarea {
  border-color: var(--red);
}

.field__error {
  margin-top: 0.5rem;
  font-size: 12px;
  color: var(--red);
}

.field--radio-row {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.25rem;
}

.field--radio-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(243, 241, 236, 0.8);
}

.field--radio-row input {
  accent-color: var(--ivory);
  width: 16px;
  height: 16px;
}

.contact__upload-label {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(243, 241, 236, 0.25);
  padding: 1rem 1.25rem;
  font-size: 14px;
  color: rgba(243, 241, 236, 0.7);
  cursor: pointer;
  transition: border-color 0.3s;
}

.contact__upload-label:hover {
  border-color: rgba(243, 241, 236, 0.5);
}

.contact__submit-row {
  grid-column: 1 / -1;
}

.contact__submit-error {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(243, 241, 236, 0.85);
}

.contact__reassurance {
  margin-top: 1rem;
  font-size: 12px;
  color: rgba(243, 241, 236, 0.4);
}

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__success .ph-light {
  font-size: 40px;
  color: rgba(243, 241, 236, 0.8);
}

.contact__success h2 {
  margin-top: 2rem;
  max-width: 30rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1.2;
}

.contact__success p {
  margin-top: 1.5rem;
  max-width: 26rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 241, 236, 0.65);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--ink);
  color: var(--ivory);
}

.footer__top {
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(243, 241, 236, 0.15);
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13vw;
  line-height: 0.9;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .footer__mark {
    font-size: 7vw;
  }
}

@media (min-width: 1024px) {
  .footer__mark {
    font-size: 4.2vw;
  }
}

.footer__location {
  margin-top: 1.5rem;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(243, 241, 236, 0.5);
}

.footer__heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(243, 241, 236, 0.4);
}

.footer__list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__list li {
  font-size: 14px;
  color: rgba(243, 241, 236, 0.75);
}

.footer__list a {
  transition: color 0.3s;
}

.footer__list a:hover {
  color: var(--ivory);
}

.footer__socials {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  color: rgba(243, 241, 236, 0.7);
  transition: color 0.3s;
  font-size: 20px;
}

.footer__socials a:hover {
  color: var(--ivory);
}

.footer__bottom {
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(243, 241, 236, 0.45);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__bottom-links a {
  transition: color 0.3s;
}

.footer__bottom-links a:hover {
  color: var(--ivory);
}

/* ==========================================================================
   Simple inner pages (projects / privacy / terms)
   ========================================================================== */

.page-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .page-header {
    padding-top: 10rem;
  }
}

.page-header h1 {
  max-width: 40rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12vw;
  line-height: 1.02;
}

@media (min-width: 640px) {
  .page-header h1 {
    font-size: 6vw;
  }
}

@media (min-width: 1024px) {
  .page-header h1 {
    font-size: 4vw;
  }
}

.page-header p {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 8, 8, 0.65);
}

.legal-page {
  padding-top: 8rem;
  padding-bottom: 7rem;
}

@media (min-width: 640px) {
  .legal-page {
    padding-top: 10rem;
  }
}

.legal-page__inner {
  max-width: 40rem;
}

.legal-page__inner h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .legal-page__inner h1 {
    font-size: 48px;
  }
}

.legal-page__date {
  margin-top: 1rem;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(8, 8, 8, 0.45);
}

.legal-page__body {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(8, 8, 8, 0.7);
}

.legal-page__body h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.legal-page__body p {
  margin-top: 0.5rem;
}

.projects-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 2.5rem;
  padding-bottom: 7rem;
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem 2.5rem;
  }
}

.projects-grid__photo {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

@media (min-width: 640px) {
  .projects-grid__photo {
    height: 70vh;
  }
}

.projects-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-grid__meta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .projects-grid__meta {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.projects-grid__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .projects-grid__title {
    font-size: 30px;
  }
}

.projects-grid__location {
  margin-top: 0.25rem;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(8, 8, 8, 0.5);
}

.projects-grid__services {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(8, 8, 8, 0.5);
}
