:root {
  --paper: #f5f0e9;
  --paper-deep: #e9dfd1;
  --cream: #fbf8f3;
  --ink: #202824;
  --ink-soft: #59615a;
  --green: #5e6b58;
  --green-dark: #39453c;
  --sage: #879179;
  --terra: #bd7665;
  --terra-light: #d9a294;
  --brass: #a97d43;
  --line: rgba(32, 40, 36, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --content: min(1320px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.35rem, 6.3vw, 6.7rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
}

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

:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--terra);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(90px, 10vw, 150px);
}

.button,
.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.button {
  min-height: 54px;
  padding: 14px 22px 13px;
  border-radius: 2px;
  font-size: 0.92rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button svg,
.text-link svg,
.card-link svg,
.view-product svg {
  width: 21px;
  flex: none;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg,
.card-link:hover svg,
.catalog-card-image:hover .view-product svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--green-dark);
  color: #fff;
}

.button-primary:hover {
  background: var(--terra);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

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

.text-link,
.card-link {
  padding: 5px 0;
  background: transparent;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: 104px;
  background: rgba(245, 240, 233, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  width: var(--content);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  font-size: 0.88rem;
  font-weight: 650;
}

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

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* Home hero */
.hero {
  display: grid;
  min-height: calc(100vh - 104px);
  grid-template-columns: minmax(380px, 0.86fr) minmax(560px, 1.14fr);
  background: var(--paper);
}

.hero-copy {
  display: flex;
  padding: clamp(70px, 8vw, 125px) clamp(38px, 6vw, 110px) clamp(70px, 8vw, 110px) max(40px, calc((100vw - 1320px) / 2));
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-copy h1 em {
  display: block;
  color: var(--terra);
  font-weight: 400;
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.25vw, 1.2rem);
  line-height: 1.8;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-note {
  display: flex;
  max-width: 460px;
  margin-top: clamp(55px, 8vh, 88px);
  padding-top: 21px;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
}

.heart-mark {
  color: var(--terra);
  font-family: var(--sans);
  font-size: 1.12rem;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-image-frame,
.hero-image-frame img {
  width: 100%;
  height: 100%;
}

.hero-image-frame img {
  object-fit: cover;
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(22, 28, 24, 0.2));
  content: "";
  pointer-events: none;
}

.round-stamp {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  transform: rotate(8deg);
  background: var(--terra);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--terra), 0 0 0 6px rgba(255, 255, 255, 0.65);
}

.round-stamp span {
  position: absolute;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.round-stamp strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
}

.hero-tag {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  min-width: 225px;
  padding: 16px 20px;
  background: rgba(245, 240, 233, 0.94);
  box-shadow: 0 16px 40px rgba(25, 31, 27, 0.12);
  font-family: var(--serif);
  line-height: 1.2;
}

.hero-tag span {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-style: italic;
}

.hero-tag strong {
  margin-top: 3px;
  font-size: 1.2rem;
  font-weight: 600;
}

.promise-strip {
  display: grid;
  padding: 30px max(40px, calc((100vw - 1320px) / 2));
  grid-template-columns: repeat(3, 1fr);
  background: var(--green-dark);
  color: #fff;
}

.promise-strip > div {
  display: flex;
  min-height: 54px;
  padding-inline: clamp(18px, 3vw, 52px);
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.promise-strip > div:first-child {
  padding-left: 0;
}

.promise-strip > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.promise-strip svg {
  width: 34px;
  color: var(--terra-light);
}

.promise-strip span {
  display: grid;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.35;
}

.promise-strip strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}

/* Featured products */
.section-heading {
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 24px;
  align-items: start;
}

.product-teaser {
  display: block;
}

.product-teaser-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  background: var(--paper-deep);
}

.product-teaser-1 .product-teaser-image {
  aspect-ratio: 4 / 4.25;
}

.product-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-teaser:hover .product-teaser-image img {
  transform: scale(1.035);
}

.status-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px 6px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-gereserveerd,
.status-verkocht {
  background: var(--terra);
  color: #fff;
}

.status-verkocht {
  background: var(--ink-soft);
}

.product-teaser-copy {
  display: flex;
  padding-top: 19px;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-teaser-copy p,
.catalog-card-copy > p:first-child {
  margin-bottom: 5px;
  color: var(--terra);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-teaser-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.product-teaser-copy > strong {
  padding-top: 7px;
  font-size: 0.94rem;
}

/* Story */
.story-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--green-dark);
  color: #fff;
}

.story-photo {
  position: relative;
  min-height: 720px;
}

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

.photo-caption {
  position: absolute;
  right: -36px;
  bottom: 70px;
  padding: 12px 18px;
  transform: rotate(-4deg);
  background: var(--terra);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.story-copy {
  display: flex;
  max-width: 690px;
  padding: clamp(75px, 9vw, 135px) clamp(55px, 8vw, 130px);
  flex-direction: column;
  justify-content: center;
}

.story-copy h2 {
  margin-bottom: 30px;
}

.story-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.story-copy .button {
  margin-top: 22px;
  align-self: flex-start;
}

.process-section {
  padding-bottom: clamp(110px, 12vw, 180px);
}

.centered-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading h2 {
  margin-inline: auto;
}

.centered-heading > p:last-child {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--ink-soft);
}

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

.process-card {
  position: relative;
  min-height: 315px;
  padding: 38px 30px;
  overflow: hidden;
  background: var(--cream);
}

.process-card > span {
  color: var(--terra);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.process-card h3 {
  margin: 62px 0 15px;
}

.process-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.process-card::after {
  position: absolute;
  top: 38px;
  right: 30px;
  width: 7px;
  height: 7px;
  background: var(--terra);
  border-radius: 50%;
  content: "";
}

.testimonial-section {
  display: grid;
  min-height: 470px;
  padding: 80px 30px;
  place-items: center;
  align-content: center;
  background: var(--terra);
  color: #fff;
  text-align: center;
}

.testimonial-section svg {
  width: 44px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.42);
}

.testimonial-section blockquote {
  max-width: 970px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.testimonial-section p {
  margin-bottom: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-band {
  display: flex;
  min-height: 310px;
  padding: 70px max(40px, calc((100vw - 1320px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background: var(--paper-deep);
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
}

/* Page heroes */
.page-hero {
  position: relative;
  display: flex;
  min-height: 465px;
  padding: clamp(80px, 9vw, 130px) max(40px, calc((100vw - 1320px) / 2));
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}

.page-hero > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.page-hero-number {
  position: absolute;
  right: max(20px, calc((100vw - 1320px) / 2));
  bottom: -0.24em;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--serif);
  font-size: clamp(13rem, 24vw, 25rem);
  line-height: 0.8;
}

.products-hero {
  background: var(--terra);
}

.contact-hero {
  background: var(--ink);
}

/* About */
.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.about-photo-stack {
  position: relative;
  min-height: 710px;
}

.about-photo-main {
  position: absolute;
  inset: 0 14% 12% 0;
  overflow: hidden;
}

.about-photo-main img,
.about-photo-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 12px solid var(--paper);
}

.scribble-note {
  position: absolute;
  top: 5%;
  right: -2%;
  padding: 13px 18px;
  transform: rotate(7deg);
  background: var(--terra);
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
}

.about-intro-copy h2 {
  margin-bottom: 30px;
}

.about-intro-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.about-intro-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.values-section {
  padding: clamp(90px, 10vw, 145px) max(40px, calc((100vw - 1320px) / 2));
  background: var(--green-dark);
  color: #fff;
}

.light-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.values-grid article {
  min-height: 325px;
  padding: 43px 38px;
  background: var(--green-dark);
}

.values-grid svg {
  width: 43px;
  color: var(--terra-light);
}

.values-grid h3 {
  margin: 55px 0 15px;
}

.values-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.craft-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 8vw, 125px);
  align-items: center;
}

.craft-copy h2 {
  margin-bottom: 30px;
}

.craft-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  margin: 32px 0 38px;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--terra);
  content: "✓";
}

.craft-image-grid {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 20px;
  align-items: end;
}

.craft-image-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.craft-image-grid img:last-child {
  height: 420px;
}

/* Catalog */
.catalog-section {
  padding-top: 70px;
}

.catalog-toolbar {
  display: flex;
  margin-bottom: 42px;
  padding-bottom: 22px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-row button {
  padding: 9px 16px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 650;
  transition: 160ms ease;
}

.filter-row button:hover,
.filter-row button.is-active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 25px;
}

.catalog-card-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-deep);
  border: 0;
  aspect-ratio: 4 / 4.45;
}

.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-card-image::after {
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, rgba(20, 25, 22, 0.56));
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.catalog-card-image:hover img {
  transform: scale(1.035);
}

.catalog-card-image:hover::after,
.catalog-card-image:hover .view-product {
  opacity: 1;
}

.view-product {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 200ms ease;
}

.catalog-card-copy {
  padding-top: 18px;
}

.catalog-card-copy > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.catalog-card-copy h2 {
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.catalog-card-copy > div strong {
  padding-top: 5px;
  font-size: 0.92rem;
}

.catalog-card-copy > p:nth-child(3) {
  min-height: 78px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.card-link {
  border-bottom: 0;
  font-size: 0.82rem;
}

.card-link svg {
  width: 18px;
}

.catalog-note {
  display: grid;
  margin-top: 100px;
  padding: clamp(34px, 5vw, 58px);
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  background: var(--paper-deep);
}

.catalog-note > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

.catalog-note h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.catalog-note p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Product modal */
.product-modal {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  padding: 32px;
  place-items: center;
  overflow-y: auto;
  background: rgba(21, 27, 23, 0.78);
  backdrop-filter: blur(8px);
  animation: modal-fade 180ms ease both;
}

.product-dialog {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  height: min(820px, calc(100vh - 64px));
  max-height: min(820px, calc(100vh - 64px));
  grid-template-columns: 1.17fr 0.83fr;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  animation: dialog-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes modal-fade {
  from { opacity: 0; }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(0.99); }
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(20, 25, 22, 0.15);
}

.modal-close span {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 1px;
  transform: rotate(45deg);
  background: var(--ink);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.product-gallery {
  display: grid;
  height: 100%;
  min-height: 0;
  padding: 24px;
  grid-template-rows: 1fr auto;
  gap: 12px;
  background: var(--paper-deep);
}

.product-gallery-main {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  background: rgba(251, 248, 243, 0.92);
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(20, 25, 22, 0.2);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--terra);
  color: #fff;
}

.gallery-nav svg {
  width: 24px;
  height: 24px;
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  background: rgba(32, 40, 36, 0.76);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-thumbs button {
  height: 86px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  border: 2px solid transparent;
  opacity: 0.62;
}

.gallery-thumbs button.is-active {
  border-color: var(--terra);
  opacity: 1;
}

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

.product-detail {
  padding: clamp(50px, 5vw, 74px) clamp(36px, 4vw, 58px);
  overflow-y: auto;
}

.product-detail-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.product-detail-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 3.4vw, 3.7rem);
}

.product-detail-heading strong {
  padding-top: 9px;
  font-size: 1rem;
}

.status-pill {
  display: inline-block;
  margin-bottom: 26px;
  padding: 6px 10px;
  background: var(--green);
  color: #fff;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill.status-gereserveerd,
.status-pill.status-verkocht {
  background: var(--terra);
}

.product-detail > p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-detail .product-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.23rem;
  line-height: 1.5;
}

.product-detail dl {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.product-detail dl div {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.product-detail dt {
  color: var(--ink-soft);
}

.product-detail dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.product-contact-button {
  width: 100%;
}

.product-detail .product-footnote {
  margin: 10px 0 0;
  font-size: 0.67rem;
  text-align: center;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 40px;
}

.contact-aside h2 {
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
}

.contact-aside > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.contact-direct {
  display: grid;
  margin: 38px 0;
  padding: 23px 0;
  gap: 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-direct span {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct a {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  text-decoration: underline;
  text-decoration-color: var(--terra);
  text-underline-offset: 5px;
}

.contact-promise {
  display: flex;
  gap: 15px;
  align-items: start;
}

.contact-promise > span {
  color: var(--terra);
}

.contact-promise p {
  display: grid;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.contact-promise strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.form-card {
  min-height: 680px;
  padding: clamp(34px, 5vw, 64px);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(32, 40, 36, 0.06);
}

.form-heading h2 {
  margin-bottom: 40px;
  font-size: clamp(2.2rem, 3.3vw, 3.4rem);
}

.form-alert {
  margin: 0 0 28px;
  padding: 13px 16px;
  background: #f5dfd8;
  color: #703f34;
  border-left: 3px solid var(--terra);
  font-size: 0.82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-grid input:not([type="checkbox"]),
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(32, 40, 36, 0.28);
  border-radius: 0;
  outline: 0;
  transition: border-color 160ms ease;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--terra);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #92978f;
}

.privacy-check {
  display: flex !important;
  margin-top: 3px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  cursor: pointer;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--green-dark);
}

.privacy-check span {
  color: var(--ink-soft);
  font-size: 0.72rem !important;
  font-weight: 400 !important;
}

.submit-button {
  margin-top: 34px;
}

.form-note {
  display: inline-block;
  margin: 0 0 0 15px;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.form-success {
  display: flex;
  min-height: 560px;
  max-width: 570px;
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 35px;
  place-items: center;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
}

.form-success h2 {
  margin-bottom: 23px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.form-success > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.form-success .text-link {
  margin-top: 18px;
}

.thanks-page {
  display: grid;
  min-height: 720px;
  padding: 90px 24px;
  place-items: center;
  background: var(--paper);
}

.thanks-page .form-success {
  max-width: 760px;
  align-items: center;
  text-align: center;
}

.thanks-page .form-success h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.thanks-page .form-success .button {
  margin-top: 24px;
}

/* Footer */
.site-footer {
  padding: 75px max(40px, calc((100vw - 1320px) / 2)) 24px;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: minmax(320px, 1.7fr) 0.65fr 0.8fr;
  gap: 70px;
}

.footer-brand {
  display: flex;
  max-width: 480px;
  gap: 22px;
  align-items: center;
}

.footer-brand img {
  width: 112px;
  height: 112px;
  flex: none;
  object-fit: contain;
}

.footer-title {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.footer-brand div > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-label {
  margin-bottom: 14px;
  color: var(--terra-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  :root {
    --content: min(100% - 48px, 960px);
  }

  .brand-copy {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 0.88fr 1.12fr;
  }

  .hero-copy {
    padding: 75px 42px 75px 24px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 6vw, 4.8rem);
  }

  .hero-visual {
    min-height: 650px;
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-photo {
    min-height: 650px;
  }

  .about-photo-stack {
    min-height: 590px;
  }

  .product-dialog {
    grid-template-columns: 1fr 0.82fr;
  }

  .product-gallery {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --content: calc(100% - 40px);
  }

  .site-header {
    height: 88px;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle span:first-child {
    top: 18px;
  }

  .menu-toggle span:last-child {
    top: 29px;
  }

  .menu-toggle.is-open span:first-child {
    top: 24px;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    top: 24px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 2;
    top: 87px;
    right: 0;
    left: 0;
    display: grid;
    padding: 28px 20px 34px;
    transform: translateY(-12px);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(32, 40, 36, 0.09);
    gap: 3px;
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
  }

  .nav-cta {
    margin-top: 18px;
    padding: 13px 18px;
    text-align: center;
  }

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

  .hero-copy {
    width: var(--content);
    margin-inline: auto;
    padding: 76px 0 68px;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

  .hero-visual {
    min-height: 72vw;
  }

  .promise-strip {
    padding-inline: 20px;
  }

  .promise-strip > div {
    padding-inline: 12px;
  }

  .promise-strip svg {
    width: 28px;
  }

  .promise-strip span {
    font-size: 0.67rem;
  }

  .promise-strip strong {
    font-size: 0.94rem;
  }

  .featured-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-teaser-1 .product-teaser-image,
  .product-teaser-image {
    aspect-ratio: 4 / 4.5;
  }

  .product-teaser-3 {
    display: none;
  }

  .story-band {
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 72vw;
  }

  .photo-caption {
    right: 25px;
  }

  .story-copy {
    max-width: none;
    padding: 85px 24px;
  }

  .process-card {
    min-height: 290px;
  }

  .page-hero {
    min-height: 430px;
    padding-inline: 24px;
  }

  .about-intro,
  .craft-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-photo-stack {
    min-height: 75vw;
  }

  .about-intro-copy {
    max-width: 670px;
  }

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

  .values-grid article {
    min-height: 240px;
  }

  .values-grid h3 {
    margin-top: 35px;
  }

  .craft-image-grid {
    grid-row: 1;
  }

  .craft-image-grid img {
    height: 60vw;
  }

  .craft-image-grid img:last-child {
    height: 45vw;
  }

  .contact-aside {
    position: static;
    max-width: 650px;
  }

  .product-modal {
    display: block;
    padding: 18px;
  }

  .product-dialog {
    display: block;
    height: auto;
    max-height: none;
  }

  .product-gallery {
    height: auto;
    min-height: 0;
  }

  .product-gallery-main {
    aspect-ratio: 4 / 3.2;
  }

  .footer-inner {
    grid-template-columns: 1.35fr 0.65fr;
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --content: calc(100% - 32px);
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .hero-copy {
    padding-block: 62px 58px;
  }

  .hero-copy h1 {
    margin-bottom: 23px;
    font-size: clamp(3.35rem, 16vw, 4.8rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .button-row .text-link {
    align-self: flex-start;
  }

  .hero-note {
    margin-top: 48px;
  }

  .hero-visual {
    min-height: 103vw;
  }

  .hero-image-frame img {
    object-position: 54% center;
  }

  .round-stamp {
    top: 23px;
    right: 23px;
    width: 92px;
    height: 92px;
  }

  .round-stamp strong {
    font-size: 1.55rem;
  }

  .round-stamp span {
    font-size: 0.42rem;
  }

  .hero-tag {
    right: 16px;
    bottom: 16px;
    min-width: 190px;
  }

  .promise-strip {
    grid-template-columns: 1fr;
    padding-block: 5px;
  }

  .promise-strip > div,
  .promise-strip > div:first-child,
  .promise-strip > div:last-child {
    padding: 19px 0;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .promise-strip > div:last-child {
    border-bottom: 0;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .featured-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-teaser-3 {
    display: block;
  }

  .product-teaser-image,
  .product-teaser-1 .product-teaser-image {
    aspect-ratio: 4 / 4.2;
  }

  .story-photo {
    min-height: 100vw;
  }

  .story-copy {
    padding: 75px 16px;
  }

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

  .process-card {
    min-height: 260px;
  }

  .process-card h3 {
    margin-top: 45px;
  }

  .testimonial-section {
    min-height: 450px;
    padding-inline: 18px;
  }

  .cta-band {
    padding: 68px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .page-hero {
    min-height: 420px;
    padding: 70px 16px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .about-photo-stack {
    min-height: 105vw;
  }

  .about-photo-main {
    inset: 0 7% 13% 0;
  }

  .about-photo-detail {
    width: 52%;
    border-width: 7px;
  }

  .scribble-note {
    right: -2%;
    font-size: 0.85rem;
  }

  .values-section {
    padding-inline: 16px;
  }

  .values-grid article {
    padding: 35px 28px;
  }

  .craft-image-grid {
    grid-template-columns: 1fr;
  }

  .craft-image-grid img,
  .craft-image-grid img:last-child {
    height: 92vw;
  }

  .craft-image-grid img:last-child {
    display: none;
  }

  .catalog-section {
    padding-top: 45px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .filter-row {
    width: 100%;
  }

  .filter-row button {
    flex: 1 1 auto;
  }

  .catalog-card-copy > p:nth-child(3) {
    min-height: 0;
  }

  .catalog-note {
    margin-top: 75px;
    padding: 32px 25px;
    grid-template-columns: 1fr;
  }

  .catalog-note > span {
    width: 48px;
    height: 48px;
  }

  .product-modal {
    padding: 0;
    background: var(--cream);
  }

  .modal-close {
    position: fixed;
    top: 12px;
    right: 12px;
  }

  .product-gallery {
    padding: 0 0 10px;
  }

  .product-gallery-main {
    aspect-ratio: 1 / 1;
  }

  .gallery-thumbs {
    padding-inline: 10px;
  }

  .gallery-thumbs button {
    height: 68px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .product-detail {
    padding: 38px 22px 55px;
  }

  .product-detail-heading {
    display: block;
  }

  .product-detail-heading strong {
    display: block;
    margin-bottom: 12px;
    padding-top: 0;
  }

  .contact-section {
    gap: 60px;
  }

  .form-card {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 45px 20px;
    border-right: 0;
    border-left: 0;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }

  .form-note {
    display: block;
    margin: 10px 0 0;
    text-align: center;
  }

  .site-footer {
    padding: 60px 16px 22px;
  }

  .footer-inner {
    padding-bottom: 50px;
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 94px;
    height: 94px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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