:root {
  color-scheme: light;
  --ink: #4f5c5e;
  --paper: #e7d9d0;
  --white: #f4ece7;
  --line: rgba(79, 92, 94, 0.24);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.eyebrow,
.section-index {
  margin-bottom: 22px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  color: #f4ece7;
  line-height: 0.82;
}

.brand span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.brand small {
  margin-top: 9px;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand--logo {
  width: 180px;
}

.brand__logo {
  height: auto;
}

.brand--dark {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: #f4ece7;
}

.button--light:hover {
  color: #223a48;
  background: #f4ece7;
}

.button--blush {
  color: #4f5c5e;
  border-color: #e7d9d0;
  background: #e7d9d0;
}

.button--blush:hover {
  color: #f4ece7;
  border-color: #223a48;
  background: #223a48;
}

.button--forest {
  color: #f4ece7;
  border-color: #223a48;
  background: #223a48;
}

.button--forest:hover {
  color: #223a48;
  background: transparent;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 108px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  color: #f4ece7;
  border-bottom: 1px solid rgba(244, 236, 231, 0.3);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.site-header .brand {
  justify-self: start;
}

.site-nav {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-self: end;
  gap: 30px;
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a[href="#atelie"] {
  white-space: nowrap;
}

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

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

.nav-cta {
  padding: 12px 17px;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}


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

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}


/* Concept 01: Editorial */
.theme-editorial {
  --ink: #4f5c5e;
  --paper: #e7d9d0;
  --blue: #afb9bb;
  --sage: #879694;
  --gold: #a38976;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  background: var(--paper);
}

.editorial-shell {
  width: min(89vw, 1260px);
  margin-inline: auto;
}

.editorial-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: #f4ece7;
  background: #223a48;
}

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

.editorial-hero__image {
  object-fit: cover;
  object-position: 50% 56%;
}

.editorial-hero__shade {
  background: linear-gradient(90deg, rgba(34, 58, 72, 0.86) 0%, rgba(79, 92, 94, 0.68) 52%, rgba(135, 150, 148, 0.5) 100%);
}

.editorial-hero__content {
  position: relative;
  z-index: 1;
  width: min(89vw, 1260px);
  padding-top: 80px;
}

.editorial-hero__content h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8.4vw, 8.5rem);
  font-weight: 400;
  line-height: 0.76;
}

.editorial-hero__content h1 em {
  color: #e7d9d0;
  font-weight: 400;
}

.editorial-hero__content > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 34px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  padding: 150px 0 140px;
  border-bottom: 1px solid var(--line);
}

.manifesto h2,
.section-heading h2,
.artist-editorial h2,
.editorial-contact h2 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.8vw, 6.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.manifesto h2 em,
.artist-editorial h2 em,
.editorial-contact h2 em,
.editorial-process h2 em {
  color: var(--sage);
  font-weight: 400;
}

.manifesto > div > p {
  max-width: 600px;
  margin: 36px 0 0 auto;
  color: #667476;
  font-size: 0.98rem;
  line-height: 1.9;
}

.services {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  padding: 135px 0;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-item {
  display: grid;
  grid-template-columns: 54px 0.75fr 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > span,
.service-item h3,
.service-item p {
  margin: 0;
}

.service-item > span {
  color: var(--gold);
  font-size: 0.7rem;
}

.service-item h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.05;
}

.service-item p {
  color: #667476;
  font-size: 0.77rem;
  line-height: 1.8;
}

.editorial-gallery {
  padding: 125px 0 10vw;
  background: #afb9bb;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
}

.section-heading--row > p {
  max-width: 180px;
  margin-bottom: 7px;
  color: #59696b;
  font-size: 0.62rem;
  text-align: right;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  width: min(94vw, 1500px);
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 20px;
  margin: 0 auto;
}

.work {
  margin: 0;
}

.work--tall {
  grid-row: span 2;
}

.work--wide {
  grid-column: span 2;
}

.work img {
  height: 40vw;
  max-height: 620px;
  object-fit: cover;
}

.work--tall img {
  height: calc(80vw + 72px);
  max-height: 1312px;
}

.work--wide img {
  height: 37vw;
  max-height: 570px;
  object-position: 50% 70%;
}

.work figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 2px 28px;
}

.work figcaption span {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.work figcaption small {
  color: #59696b;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.editorial-process {
  padding: 145px 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-list li {
  min-height: 285px;
  padding: 28px 30px 30px 0;
  border-right: 1px solid var(--line);
}

.process-list li:not(:first-child) {
  padding-left: 30px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--gold);
  font-size: 0.68rem;
}

.process-list h3 {
  margin: 75px 0 18px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.process-list p {
  color: #667476;
  font-size: 0.76rem;
  line-height: 1.8;
}

.artist-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #223a48;
  color: #f4ece7;
}

.artist-editorial__image {
  min-height: 760px;
}

.artist-editorial__image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.artist-editorial__copy {
  align-self: center;
  max-width: 620px;
  padding: 9vw 8vw;
}

.artist-editorial__copy > p:not(.section-index) {
  max-width: 460px;
  color: #d4d0ca;
  font-size: 0.87rem;
  line-height: 1.9;
}

.signature {
  display: block;
  margin-top: 35px;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-style: italic;
}

.testimonial {
  padding: 150px 8vw;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  margin-top: 35px;
}

.testimonial-item {
  width: 100%;
  max-width: 960px;
}

.testimonial-item blockquote {
  margin: 0 auto 30px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
}

.testimonial-item blockquote p {
  margin-bottom: 1.15em;
}

.testimonial-item blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  margin: 0;
  color: #667476;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--ink);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 600px;
  padding: 0 50px 25px 0;
  color: #667476;
  font-size: 0.78rem;
  line-height: 1.8;
}

.editorial-contact {
  position: relative;
  display: grid;
  min-height: 83vh;
  place-items: center;
  overflow: hidden;
  color: #f4ece7;
  text-align: center;
  background: #223a48;
}

.editorial-contact::after {
  position: absolute;
  inset: 0;
  background: rgba(34, 58, 72, 0.7);
  content: "";
}

.editorial-contact > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.editorial-contact__content {
  position: relative;
  z-index: 1;
  padding: 80px 5vw;
}

.editorial-contact__content > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 auto 32px;
  font-size: 0.86rem;
  line-height: 1.8;
}

.site-footer {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  color: #667476;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.footer-brand-logo {
  display: block;
  width: 91.2px;
  flex: 0 0 auto;
}

.footer-brand-logo img {
  width: 100%;
  height: auto;
}


/* Responsive */
@media (max-width: 980px) {
  .site-header {
    height: 86px;
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .site-header .brand--logo { width: 145px; }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 28px;
    padding: 0 24px;
    opacity: 0;
    color: #f4ece7;
    background: #223a48;
    font-family: var(--serif);
    font-size: 1.6rem;
    text-align: right;
    text-transform: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    max-width: 220px;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
  }

  .nav-cta {
    margin-top: 15px;
    font-family: var(--sans);
    font-size: 0.65rem;
    text-transform: uppercase;
  }

  .manifesto,
  .services,
  .faq {
    grid-template-columns: 1fr;
  }

  .manifesto__index-spacer { display: none; }
  .manifesto { gap: 45px; }
  .service-list { margin-top: 45px; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .work--tall { grid-row: auto; }
  .work--wide { grid-column: span 2; }
  .work img, .work--tall img { height: 58vw; }
  .work--wide img { height: 55vw; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li { border-bottom: 1px solid var(--line); }
  .artist-editorial { grid-template-columns: 1fr; }
  .artist-editorial__image { min-height: auto; height: 75vw; }
  .artist-editorial__copy { padding: 13vw 8vw; }
  .faq-list { margin-top: 15px; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .editorial-hero__content { padding-top: 60px; }
  .editorial-hero__content h1 { font-size: 4rem; line-height: 0.8; }
  .editorial-hero__content > p:not(.eyebrow) { max-width: 310px; }
  .manifesto { padding: 100px 0 90px; }
  .manifesto h2, .section-heading h2, .artist-editorial h2, .editorial-contact h2 { font-size: 3.6rem; }
  .manifesto > div > p { margin-left: 0; }
  .services { padding: 95px 0; }
  .service-item { grid-template-columns: 36px 1fr; }
  .service-item p { grid-column: 2; }
  .editorial-gallery { padding-top: 90px; }
  .section-heading--row { display: block; margin-bottom: 45px; }
  .section-heading--row > p { margin-top: 25px; text-align: left; }
  .editorial-grid { grid-template-columns: 1fr; gap: 12px; }
  .work--wide { grid-column: auto; }
  .work img, .work--tall img, .work--wide img { height: 116vw; max-height: 680px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:not(:first-child) { min-height: 225px; padding: 25px 0; border-right: 0; }
  .process-list h3 { margin-top: 60px; }
  .editorial-process { padding: 100px 0; }
  .artist-editorial__image { height: 110vw; }
  .artist-editorial__copy { padding: 95px 7vw; }
  .testimonial { padding: 100px 0; }
  .testimonial-grid { gap: 75px; }
  .testimonial-item blockquote { font-size: 2rem; }
  .faq { padding: 100px 0; }
  .editorial-contact { min-height: 720px; }
  .site-footer { display: block; padding: 55px 0; text-align: center; }
  .site-footer .footer-brand-logo { margin: 0 auto 30px; }
  .site-footer p + p { margin-top: 12px; }
}
