.scroll-smooth {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f9f9f9;
  color: #0b1225;
  font-family: "Hanken Grotesk", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

figure {
  margin: 0;
}

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

.container {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: min(1280px, 100% - 80px);
  }
}

.container-narrow {
  width: min(900px, 100%);
}
@media (min-width: 768px) {
  .container-narrow {
    width: min(720px, 100%);
  }
}

.section {
  padding: 88px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-alt {
  background: #f3f3f3;
}

.section-topline {
  border-top: 1px solid #efefef;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 34;
  font-size: 34px;
}

.brand,
.display,
.heading {
  font-family: "EB Garamond", serif;
}

.display {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 100px 0 16px 0;
}
@media (min-width: 768px) {
  .display {
    font-size: 54px;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
}

.heading {
  font-weight: 300;
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .heading {
    font-size: 32px;
  }
}

.section-head > .heading,
.book-grid > div > .heading:first-child,
.about-top > div > .heading:first-child,
.contact-grid > div > .heading:first-child {
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-head > .heading,
  .book-grid > div > .heading:first-child,
  .about-top > div > .heading:first-child,
  .contact-grid > div > .heading:first-child {
    font-size: 48px;
    line-height: 1.16;
  }
}

.sculpture-card .heading {
  margin: 10px 0 8px;
}
.sculpture-card p:last-child {
  color: #926e24;
}

.hero-content > .heading,
.section-head.centered > .heading:last-child {
  margin-bottom: 32px;
}

.body {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-content > .body,
.cta-panel > .body,
.about-top > div > .body,
.contact-grid > div > .body,
.stack.body {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
}

.caps {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.tone {
  color: #45464d;
}

.accent {
  color: #a6a068;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(249, 249, 249, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #efefef;
}

.nav-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
@media (min-width: 900px) {
  .nav-inner {
    padding: 24px 0;
  }
}
.nav-inner .nav-left {
  display: flex;
  align-items: center;
}

.nav-left picture {
  display: block;
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.logo {
  width: 40px;
  max-width: 40px;
  height: 37px;
  object-fit: contain;
}

.watermark-logo {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("../images/logo-atelier-anne-veldt.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.brand {
  font-size: 30px;
  line-height: 1.25;
}

.nav-links picture {
  display: block;
  width: 120px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .nav-links picture {
    display: none;
  }
}

.nav-logo {
  display: none;
  width: 120px;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

@media (max-width: 899px) {
  .site-nav.is-open .nav-logo {
    display: block;
  }
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: fixed;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px 40px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  background: #f9f9f9;
  z-index: 60;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 0;
    gap: 32px;
    background: transparent;
  }
}

.site-nav.is-open .nav-links {
  display: flex;
}
@media (min-width: 900px) {
  .site-nav.is-open .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #45464d;
  transition: color 0.3s ease;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 0;
  text-transform: none;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}
@media (min-width: 900px) {
  .nav-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Hanken Grotesk", sans-serif;
    padding: 0;
  }
}
.nav-link:hover {
  color: #a6a068;
}

.nav-link.is-active {
  color: #a6a068;
}
@media (min-width: 900px) {
  .nav-link.is-active {
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
  }
}

.menu-button {
  display: inline-grid;
  place-items: center;
  z-index: 65;
  border: 0;
  background: transparent;
  color: #0b1225;
  cursor: pointer;
}
@media (min-width: 900px) {
  .menu-button {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}

.hero {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 160px;
  }
}

.hero-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) {
  .hero-grid {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
  }
}

.hero-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 720px;
  position: relative;
}
.hero-content > *:not(.watermark-logo) {
  position: relative;
  z-index: 1;
}

.media {
  overflow: hidden;
}

.media-bg {
  background: #efefef;
}

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

.ratio-3-4 {
  aspect-ratio: 3/4;
  width: 100%;
}

.ratio-book {
  aspect-ratio: 3/4;
}

.sculpture-card .media {
  box-shadow: 0 8px 32px rgba(11, 18, 37, 0.1), 0 2px 8px rgba(11, 18, 37, 0.06);
  transition: box-shadow 0.5s ease;
}
.sculpture-card .media:hover {
  box-shadow: 0 16px 48px rgba(11, 18, 37, 0.15), 0 4px 12px rgba(11, 18, 37, 0.08);
}

.image-zoom img {
  transform: scale(1);
  transition: filter 0.3s ease, transform 0.3s ease;
  transition-duration: 0.7s;
}

.image-zoom:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.image-zoom-soft img {
  filter: grayscale(1);
  transition: filter 0.3s ease;
  transition-duration: 0.7s;
}

.image-zoom-soft:hover img {
  filter: grayscale(0);
}

.slider-hint {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 12px 0 0;
  color: #a6a068;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.slider-hint svg {
  flex-shrink: 0;
  color: #a6a068;
}
@media (min-width: 1024px) {
  .slider-hint {
    display: none;
  }
}

.sculpture-slider-wrap {
  position: relative;
}
.sculpture-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, transparent, #f9f9f9 100%);
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 1024px) {
  .sculpture-slider-wrap::after {
    display: none;
  }
}

.slider-track {
  position: relative;
  height: 2px;
  background: #efefef;
  border-radius: 2px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .slider-track {
    display: none;
  }
}

.slider-thumb {
  position: absolute;
  top: 0;
  height: 100%;
  background: #a6a068;
  border-radius: 2px;
  transition: left 0.1s ease, width 0.1s ease;
}

.quote {
  background: #efefef;
}

.quote-inner {
  text-align: center;
}

.quote-icon {
  color: #926e24;
  font-size: 100px;
}

.quote-text {
  color: #45464d;
  margin: -20px 10px 48px 10px;
}

.section-head {
  margin-bottom: 64px;
}
.section-head.centered {
  text-align: center;
}
.section-head--slider {
  margin-bottom: 24px;
}

.sculpture-intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .sculpture-intro {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
}

.sculpture-intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sculpture-intro-text {
    flex: 0 0 55%;
  }
}

.sculpture-intro-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid #efefef;
  padding-left: 32px;
}
.sculpture-intro-aside h3.heading {
  font-size: 24px;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .sculpture-intro-aside {
    flex: 1;
  }
}

.sculpture-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  justify-content: space-between;
}
.sculpture-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .sculpture-grid {
    flex-wrap: wrap;
    gap: 96px 40px;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.sculpture-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 84%;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .span-3 {
    flex: 0 0 calc(25% - 30px);
  }
  .span-4 {
    flex: 0 0 calc(33.33% - 32px);
  }
  .span-5 {
    flex: 0 0 calc(41.67% - 32px);
  }
  .span-6 {
    flex: 0 0 calc(50% - 32px);
  }
  .span-7 {
    flex: 0 0 calc(58.33% - 13px);
  }
  .span-8 {
    flex: 0 0 calc(66.67% - 11px);
  }
  .offset-16 {
    margin-top: 64px;
  }
  .offset-32 {
    margin-top: 128px;
  }
}
.price {
  margin: 0;
  color: #a6a068;
  font-style: italic;
}

.cta-panel {
  max-width: 680px;
  margin: 128px auto 0;
  padding-top: 64px;
  border-top: 1px solid #efefef;
  text-align: center;
}
.cta-panel .button {
  max-width: 200px;
  margin: 20px auto 0;
}

.link-cta {
  display: inline-block;
  margin-top: 32px;
  padding-bottom: 4px;
  border-bottom: 2px solid #0b1225;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.link-cta:hover {
  color: #a6a068;
  border-color: #a6a068;
}

.button {
  width: 100%;
  border: 1px solid transparent;
  padding: 18px 20px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button-solid {
  background: #0b1225;
  color: #f9f9f9;
  display: block;
  width: 200px;
  margin: 20px auto 0;
}
.button-solid:hover {
  background: #a6a068;
}

.button-outline {
  background: transparent;
  border-color: #0b1225;
  color: #0b1225;
}
.button-outline:hover {
  background: #efefef;
}

.book-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 48px;
}
@media (min-width: 1024px) {
  .book-grid {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
  .book-grid .book-media-wrap {
    flex: 0 0 320px;
  }
  .book-grid > div:last-child {
    flex: 1;
  }
}

.book-media-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  order: -1;
}
@media (min-width: 1024px) {
  .book-media-wrap {
    order: unset;
    position: sticky;
    top: 120px;
  }
}

.book-cover {
  width: min(400px, 100%);
  background: #fff;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}
.book-cover:hover {
  transform: rotate(0);
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0px;
}

.event-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 32px;
}
@media (min-width: 768px) {
  .event-grid {
    flex-direction: row;
  }
  .event-grid > * {
    flex: 1;
  }
}

.event-card {
  border: 1px solid #efefef;
  background: #fff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
}
.event-card .heading {
  margin-bottom: 18px;
}
.event-card .body i {
  font-family: "EB Garamond", serif;
  font-size: 20px;
}
@media (min-width: 768px) {
  .event-card {
    padding: 48px;
  }
}
.event-card .button {
  width: 100%;
}

.event-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 0 16px;
}

.about-intro {
  position: relative;
}
.about-intro > *:not(.watermark-logo) {
  position: relative;
  z-index: 1;
}

.about-top {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 32px;
  margin-bottom: 96px;
  align-items: stretch;
}
.about-top > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-top figure {
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
  rotate: 5deg;
  box-shadow: 0 8px 32px rgba(11, 18, 37, 0.1), 0 2px 8px rgba(11, 18, 37, 0.06);
}
@media (min-width: 768px) {
  .about-top {
    flex-flow: row nowrap;
  }
  .about-top > div {
    width: 50%;
  }
}

.editorial-rule {
  height: 1px;
  width: 100%;
  background: #efefef;
  margin: 48px 0;
}

.intro-lead {
  margin-bottom: 16px;
  color: #0b1225;
  font-weight: 500;
}

.about-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 50px;
}
@media (min-width: 768px) {
  .about-grid {
    flex-wrap: nowrap;
  }
}
.about-grid > * {
  flex: 1 1 calc(100% - 32px);
}
@media (min-width: 768px) {
  .about-grid > * {
    flex-basis: calc(50% - 16px);
  }
}
@media (min-width: 1024px) {
  .about-grid > * {
    flex-basis: calc(25% - 22px);
  }
}

.about-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}

@media (min-width: 1024px) {
  .about-block .heading {
    min-height: 2.5em;
    display: flex;
    align-items: flex-start;
  }
}

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-grid {
    flex-direction: row;
    gap: 120px;
  }
  .contact-grid > * {
    flex: 1;
  }
}

.contact-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 48px;
}

.contact-item {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid #efefef;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.contact-item:hover .icon-box {
  background: #a6a068;
}

.contact-item:hover .material-symbols-outlined {
  color: #fff;
}

.contact-card {
  border: 1px solid #efefef;
  background: #fff;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .contact-card {
    padding: 48px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 32px;
}

.field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #0b1225;
  background: transparent;
  padding: 8px 0;
  font: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #a6a068;
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a6a068' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 28px;
  color: #0b1225;
}
select:invalid {
  color: #45464d;
}
select option {
  background: #f9f9f9;
  color: #0b1225;
}
select option[value=""] {
  color: #45464d;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 88px 0;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 120px 0;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.footer-links a:hover {
  color: #a6a068;
}

.form-feedback {
  padding: 14px 16px;
  font-size: 15px;
  border-left: 3px solid;
}
.form-feedback--success {
  background: rgba(166, 160, 104, 0.1);
  border-color: #a6a068;
  color: #45464d;
}
.form-feedback--error {
  background: rgba(180, 40, 40, 0.08);
  border-color: #b42828;
  color: #8a1f1f;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 100% - 48px);
  z-index: 100;
  background: #0b1225;
  color: #f9f9f9;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  border-top: 2px solid #a6a068;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (min-width: 768px) {
  .cookie-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 32px;
  }
}
.cookie-banner p {
  color: rgba(249, 249, 249, 0.8);
  font-size: 15px;
  margin: 0;
}
.cookie-banner--hide {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}

.cookie-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: #a6a068;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-link:hover {
  color: #fff;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 18, 37, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.privacy-modal[hidden] {
  display: none;
}

.privacy-modal-inner {
  background: #f9f9f9;
  width: min(640px, 100%);
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
}
.privacy-modal-inner h2.heading {
  font-size: 32px;
  margin-bottom: 4px;
}
.privacy-modal-inner h3.heading {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 8px;
}
.privacy-modal-inner p.body {
  margin-bottom: 0;
}
.privacy-modal-inner a {
  color: #a6a068;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-modal-inner code {
  font-size: 14px;
  background: #f3f3f3;
  padding: 1px 6px;
  border-radius: 3px;
}

.privacy-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #45464d;
  padding: 4px 8px;
  line-height: 1;
}
.privacy-modal-close:hover {
  color: #0b1225;
}

.cookie-accept {
  flex-shrink: 0;
  width: auto;
  margin: 0;
  background: transparent;
  color: rgba(249, 249, 249, 0.7);
  border-color: rgba(249, 249, 249, 0.25);
  padding: 10px 20px;
  font-size: 11px;
}
.cookie-accept:hover {
  background: transparent;
  border-color: #a6a068;
  color: #a6a068;
}
