:root {
  --green-950: #101a10;
  --green-900: #172317;
  --green-850: #1d2a1c;
  --cream: #f2eee3;
  --cream-muted: #d8d3c8;
  --gold: #c1a06a;
  --gold-light: #d2bb8d;
  --header-height: 78px;
  --content-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--green-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

[data-header] {
  width: 100%;
  background-color: #ffffff;
}
.site-header {
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(23, 35, 23, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 26, 16, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

    .gallery-hero {
      position: relative;
      isolation: isolate;
      min-height: clamp(300px, 29vw, 430px);
      overflow: hidden;
      color: var(--cream);
      background: #0d160d;
    }

    .gallery-hero__media {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
    }

    .gallery-hero__media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 53%;
      transform: scale(1.01);
      animation: galleryHeroImage 900ms ease both;
    }

    .gallery-hero__overlay {
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background:
        linear-gradient(
          90deg,
          rgba(8, 14, 8, 0.99) 0%,
          rgba(9, 16, 9, 0.98) 20%,
          rgba(10, 17, 10, 0.93) 33%,
          rgba(10, 17, 10, 0.66) 47%,
          rgba(10, 17, 10, 0.22) 63%,
          rgba(10, 17, 10, 0.03) 82%,
          transparent 100%
        ),
        linear-gradient(
          180deg,
          rgba(5, 10, 5, 0.14),
          transparent 40%,
          rgba(5, 10, 5, 0.18)
        );
    }

    .gallery-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      box-shadow:
        inset 0 35px 60px rgba(0, 0, 0, 0.11),
        inset 0 -35px 60px rgba(0, 0, 0, 0.18);
    }

    .gallery-hero__inner {
      width: min(calc(100% - 48px), var(--content-width));
      min-height: inherit;
      margin-inline: auto;
      display: flex;
      align-items: center;
      padding-block: clamp(54px, 6vw, 88px);
    }

    .gallery-hero__content {
      width: min(440px, 42vw);
      animation: galleryHeroContent 700ms 100ms ease both;
    }

    .gallery-hero__eyebrow {
      margin: 0 0 17px;
      color: var(--gold-light);
      text-transform: uppercase;
      font-size: 9px;
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: 0.27em;
    }

    .gallery-hero h1 {
      margin: 0;
      color: var(--cream);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(48px, 4.6vw, 68px);
      font-weight: 400;
      line-height: 0.96;
      letter-spacing: -0.025em;
    }

    .gallery-hero__intro {
      margin: 23px 0 0;
      color: var(--cream-muted);
      font-size: 13px;
      line-height: 1.72;
    }
.nav-shell {
  width: min(calc(100% - 48px), var(--content-width));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}

.brand__mark {
  width: 47px;
  height: 47px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 0.93;
  letter-spacing: 0.015em;
}

.brand__text strong {
  font-size: 20px;
  font-weight: 500;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  font-size: 13px;
  color: #d7d5cc;
}

.primary-nav a {
  position: relative;
  padding-block: 29px 25px;
  transition: color 160ms ease;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--gold-light);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 24px;
  color: #fff9ee;
  background: rgba(31, 43, 29, 0.88);
  border: 1px solid rgba(210, 187, 141, 0.45);
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #2c3a29;
  border-color: var(--gold-light);
}

.button span {
  font-size: 17px;
  line-height: 1;
  transition: transform 160ms ease;
}

.button:hover span,
.button:focus-visible span {
  transform: translateX(3px);
}

.button--small {
  min-height: 44px;
  padding-inline: 22px;
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: none;
}

.button--small:hover,
.button--small:focus-visible {
  background: #ad8c59;
  border-color: #ad8c59;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--cream);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: #142014;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  transform: scale(1.01);
  animation: imageReveal 900ms ease both;
}

.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

/* Wordt getoond wanneer assets/hero.jpg nog ontbreekt. */
.hero__image.is-missing {
  background:
    linear-gradient(135deg, rgba(193, 160, 106, 0.16), rgba(16, 26, 16, 0.18)),
    #243122;
}

.hero__image.is-missing::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(242, 238, 227, 0.72);
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__image.is-missing img {
  display: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(12, 20, 11, 0.98) 0%,
      rgba(14, 23, 13, 0.95) 23%,
      rgba(18, 27, 15, 0.78) 40%,
      rgba(18, 27, 15, 0.22) 65%,
      rgba(14, 20, 11, 0.04) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 13, 8, 0.30) 0%,
      rgba(8, 13, 8, 0) 38%
    );
}

.hero__inner {
  width: min(calc(100% - 48px), var(--content-width));
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-block: 70px;
}

.hero__content {
  width: min(560px, 48vw);
  animation: contentReveal 700ms 120ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.3vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.hero__intro {
  max-width: 430px;
  margin: 24px 0 30px;
  color: var(--cream-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Over mij */
.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0;
  color: #303329;
  background:
    radial-gradient(circle at 88% 16%, rgba(193, 160, 106, 0.10), transparent 28%),
    linear-gradient(110deg, #f4efe5 0%, #f7f3eb 58%, #efe7da 100%);
}

.about::after {
  position: absolute;
  z-index: -1;
  right: -110px;
  bottom: -140px;
  width: 390px;
  aspect-ratio: 1;
  border: 1px solid rgba(133, 110, 73, 0.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(133, 110, 73, 0.035),
    0 0 0 96px rgba(133, 110, 73, 0.025);
}

.about__inner {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.about__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.44 / 1;
  border-radius: 5px;
  background: #d9cfbd;
  box-shadow: 0 18px 48px rgba(54, 45, 31, 0.13);
}

.about__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.about__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.about__media:hover img {
  transform: scale(1.025);
}

.about__content {
  max-width: 560px;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 16px;
  color: #796e59;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.about__eyebrow::after {
  width: 40px;
  height: 1px;
  background: rgba(121, 110, 89, 0.52);
}

.about h2 {
  margin: 0 0 22px;
  color: #35372f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 57px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.about__lead,
.about__text {
  max-width: 540px;
  color: #55574e;
  font-size: 14px;
  line-height: 1.72;
}

.about__lead {
  margin: 0 0 16px;
}

.about__text {
  margin: 0 0 28px;
}

/* Galerij */
.gallery {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0 clamp(82px, 9vw, 132px);
  color: #303329;
  background:
    radial-gradient(circle at 10% 82%, rgba(193, 160, 106, 0.08), transparent 28%),
    linear-gradient(110deg, #f8f5ee 0%, #f4eee4 100%);
}

.gallery__inner,
.reviews__inner {
  width: min(calc(100% - 48px), 1120px);
  margin-inline: auto;
}

.gallery__header {
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
}

.gallery__eyebrow {
  margin: 0 0 10px;
  color: #796e59;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.gallery h2,
.reviews h2 {
  margin: 0;
  color: #35372f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(150px, 15vw, 228px));
  gap: 10px;
}

.gallery__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(193, 160, 106, 0.18), rgba(23, 35, 23, 0.12)),
    #ddd4c5;
  box-shadow: 0 10px 30px rgba(54, 45, 31, 0.10);
}

.gallery__item--1 { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.gallery__item--2 { grid-column: 4 / span 3; grid-row: 1; }
.gallery__item--3 { grid-column: 7 / span 4; grid-row: 1; }
.gallery__item--4 { grid-column: 11 / span 2; grid-row: 1; }
.gallery__item--5 { grid-column: 4 / span 4; grid-row: 2; }
.gallery__item--6 { grid-column: 8 / span 3; grid-row: 2; }
.gallery__item--7 { grid-column: 11 / span 2; grid-row: 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms ease, filter 300ms ease;
}

.gallery__item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(15, 22, 14, 0.12));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.gallery__item:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
}

.gallery__item.is-missing::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: rgba(53, 55, 47, 0.68);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery__item.is-missing img,
.contact__media.is-missing img {
  display: none;
}

.gallery__actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.button--gallery,
.button--review {
  min-height: 44px;
  padding-inline: 22px;
  color: #fffaf0;
  background: #293525;
  border-color: #293525;
  box-shadow: 0 10px 24px rgba(35, 48, 32, 0.14);
  font-size: 9px;
}

.button--gallery:hover,
.button--gallery:focus-visible,
.button--review:hover,
.button--review:focus-visible {
  background: #3a4935;
  border-color: #3a4935;
}


/* Reviews */
.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 clamp(78px, 8vw, 118px);
  color: #303329;
  background:
    radial-gradient(circle at 92% 10%, rgba(193, 160, 106, 0.09), transparent 30%),
    linear-gradient(110deg, #f7f3eb 0%, #f2ebe1 100%);
}


.reviews__header {
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #796e59;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.reviews__eyebrow::before,
.reviews__eyebrow::after {
  width: 34px;
  height: 1px;
  background: rgba(121, 110, 89, 0.38);
}


.reviews__grid {
  display: flex;
  gap: 22px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px 20px;
}

.reviews__grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 44px) / 3);
  flex-direction: column;
  min-width: 0;
  min-height: 250px;
  padding: 28px 28px 25px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(106, 94, 73, 0.10);
  border-radius: 7px;
  box-shadow: 0 14px 38px rgba(71, 56, 34, 0.07);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 160, 106, 0.42);
  box-shadow: 0 18px 44px rgba(71, 56, 34, 0.11);
}

.review-card__stars {
  margin: 0 0 16px;
  color: #a67d3e;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  flex: 1;
  margin: 0;
  color: #55574e;
  font-size: 13px;
  line-height: 1.72;
}

.review-card__author {
  position: relative;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(97, 89, 72, 0.12);
}

.review-card__name {
  display: block;
  color: #34372e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(121, 110, 89, 0.28);
  cursor: pointer;
  transition:
    width 180ms ease,
    border-radius 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.reviews__dot:hover {
  transform: scale(1.18);
  background: rgba(121, 110, 89, 0.52);
}

.reviews__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.reviews__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.reviews__actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}


/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 82px) 0 clamp(50px, 5.5vw, 76px);
  color: #303329;
  background:
    linear-gradient(
      to bottom,
      #f6f1e8 0%,
      #f6f1e8 63%,
      #172619 63%,
      #172619 100%
    );
}

.contact::before {
  position: absolute;
  top: 0;
  right: -160px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 160, 106, 0.09), transparent 66%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: clamp(28px, 3.8vw, 50px);
}

.contact__visual {
  min-width: 0;
}

.contact__media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  height: clamp(500px, 53vw, 650px);
  margin: 0;
  border-radius: 12px;
  background: #d9cfbd;
  box-shadow: 0 20px 52px rgba(47, 38, 25, 0.16);
}

.contact__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 64%, rgba(17, 28, 17, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.contact__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact__media.is-missing::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 30px;
  color: rgba(53, 55, 47, 0.7);
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.contact__signature {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  padding: 24px 10px 2px;
  color: var(--gold-light);
}

.contact__signature-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.contact__signature-brand .brand__mark {
  width: 46px;
  height: 46px;
}

.contact__signature-brand .brand__text {
  font-size: 16px;
}

.contact__signature-brand .brand__text strong {
  font-size: 19px;
}

.contact__signature-line {
  width: 1px;
  height: 54px;
  background: rgba(210, 187, 141, 0.45);
}

.contact__quote {
  margin: 0;
  color: #d8c9ad;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  line-height: 1.55;
}

.contact__content {
  min-width: 0;
}

.contact__header {
  max-width: 720px;
  margin: 8px auto 24px;
  text-align: center;
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 12px;
  color: #3e4038;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.contact__eyebrow::before,
.contact__eyebrow::after {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.contact h2 {
  margin: 0;
  color: #273027;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.3vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.contact__intro {
  max-width: 650px;
  margin: 16px auto 0;
  color: #4f5149;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(173, 140, 89, 0.42);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 20px 46px rgba(65, 52, 34, 0.10);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__field--wide {
  grid-column: 1 / -1;
}

.contact-form label,
.contact-form legend {
  display: block;
  margin: 0 0 9px;
  color: #30342f;
  font-size: 13px;
  font-weight: 500;
}

.contact-form__required {
  color: #aa7338;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(124, 113, 94, 0.28);
  border-radius: 5px;
  color: #30342f;
  background: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 14px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 47px;
  padding: 0 14px;
}

.contact-form select {
  appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, #555b52 50%),
    linear-gradient(135deg, #555b52 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  min-height: 96px;
  resize: vertical;
  padding: 15px;
  line-height: 1.55;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #99958c;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(193, 160, 106, 0.13);
}

.contact-form__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: -2px 0 0;
}

.contact-form__consent input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--green-900);
  flex: 0 0 auto;
}

.contact-form__consent label {
  margin: 0;
  color: #55574f;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}
.madeby {
  font-weight: bold;
}
.contact-form__consent a {
  color: #a87439;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 48px;
  border: 1px solid #223321;
  border-radius: 5px;
  color: #fffaf0;
  background: #223321;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  transform: translateY(-2px);
  background: #30432e;
  border-color: #30432e;
}

.contact-form__submit span {
  display: inline-block;
  margin-left: 13px;
  font-size: 16px;
  transition: transform 160ms ease;
}

.contact-form__submit:hover span,
.contact-form__submit:focus-visible span {
  transform: translateX(3px);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  padding: 16px 14px;
  border-radius: 7px;
  background: var(--gold);
}

.contact-details__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}

.contact-details__item + .contact-details__item {
  border-left: 1px solid rgba(125, 104, 72, 0.22);
}

.contact-details__icon,
.footer__contact-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.contact-details__label {
  display: block;
  color: #31342f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-details__value {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 4px;
  color: #55574f;
  font-size: 10px;
  line-height: 1.35;
}

/* Footer */
.site-footer {
  color: #c9c7bc;
  background:
    radial-gradient(circle at 18% 20%, rgba(193, 160, 106, 0.06), transparent 28%),
    linear-gradient(110deg, #172518 0%, #1b2a1b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.footer__inner {
  width: min(calc(100% - 48px), 1120px);
  margin-inline: auto;
  padding: 62px 0 26px;
}

.footer__top {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.86fr;
  gap: clamp(42px, 7vw, 88px);
  align-items: start;
}

.footer__brand-name {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 0.98;
}

.footer__tagline {
  max-width: 230px;
  margin: 19px 0 30px;
  color: #bdbbae;
  font-size: 13px;
  line-height: 1.6;
}

.footer__heading {
  margin: 0 0 19px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__social {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transition: transform 160ms ease, color 160ms ease;
}

.footer__social:hover,
.footer__social:focus-visible {
  color: #f0d6a6;
  transform: translateY(-2px);
}

.footer__social img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
}

.footer__contact-list {
  display: grid;
  gap: 19px;
}

.footer__contact-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #c9c7bc;
  font-size: 13px;
}

.footer__contact-item:hover a,
.footer__contact-item:focus-within a {
  color: var(--gold-light);
}

.footer__contact-icon {
  width: 24px;
  height: 24px;
}

.footer__cta {
  padding: 26px 28px 28px;
  border: 1px solid rgba(193, 160, 106, 0.58);
  border-radius: 5px;
  text-align: center;
}

.footer__cta p {
  margin: 0 0 20px;
  color: #c8c5b9;
  font-size: 13px;
  line-height: 1.55;
}

.footer__cta .button {
  width: 100%;
  min-height: 45px;
  background: #a87943;
  border-color: #a87943;
  box-shadow: none;
}

.footer__cta .button:hover,
.footer__cta .button:focus-visible {
  background: #b98a51;
  border-color: #b98a51;
}

.footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(193, 160, 106, 0.18);
}

.footer__nav-label {
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 3.4vw, 42px);
  color: #bdbbae;
  font-size: 12px;
}

.footer__nav a,
.footer__legal a {
  transition: color 160ms ease;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: var(--gold-light);
}

.footer__legal {
  margin: 0;
  color: #aaa99f;
  font-size: 11px;
  white-space: nowrap;
}

.placeholder-section {
  min-height: 55vh;
  display: grid;
  place-items: center;
  color: #a9ae9e;
  background: #101a10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder-section:nth-of-type(even) {
  background: #152015;
}

.placeholder-section p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 52px);
}

@keyframes contentReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 9px;
    overflow-y: auto;
    background: rgba(16, 26, 16, 0.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 220ms ease,
      opacity 180ms ease,
      visibility 0s linear 220ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .primary-nav a {
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero__content {
    width: min(560px, 62vw);
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: 48px;
  }

  .gallery__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(3, 180px);
  }

  .gallery__item--1 { grid-column: 1 / span 3; grid-row: 1 / span 2; }
  .gallery__item--2 { grid-column: 4 / span 2; grid-row: 1; }
  .gallery__item--3 { grid-column: 6 / span 3; grid-row: 1; }
  .gallery__item--4 { grid-column: 4 / span 3; grid-row: 2; }
  .gallery__item--5 { grid-column: 7 / span 2; grid-row: 2; }
  .gallery__item--6 { grid-column: 1 / span 4; grid-row: 3; }
  .gallery__item--7 { grid-column: 5 / span 4; grid-row: 3; }


  .contact__inner {
    grid-template-columns: minmax(270px, 0.72fr) minmax(440px, 1.1fr);
    gap: 28px;
  }

  .contact__media {
    min-height: 470px;
    height: 56vw;
    max-height: 590px;
  }

  .contact__signature {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 22px;
  }

  .contact__signature-line {
    display: none;
  }

  .contact-form__grid {
    gap: 20px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-details__item {
    padding: 0;
  }

  .contact-details__item + .contact-details__item {
    padding-top: 16px;
    border-top: 1px solid rgba(125, 104, 72, 0.20);
    border-left: 0;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__cta {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    grid-template-columns: auto 1fr;
  }

  .footer__legal {
    grid-column: 1 / -1;
    white-space: normal;
  }

  .reviews__grid {
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .review-card {
    flex-basis: calc(50% - 9px);
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .hero__inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .brand__mark {
    width: 41px;
    height: 41px;
  }

  .brand__text {
    font-size: 14px;
  }

  .brand__text strong {
    font-size: 17px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero__image {
    opacity: 0.94;
  }

  .hero__image img {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(12, 20, 11, 0.78) 0%,
        rgba(12, 20, 11, 0.55) 38%,
        rgba(12, 20, 11, 0.90) 74%,
        rgba(12, 20, 11, 0.98) 100%
      ),
      linear-gradient(
        90deg,
        rgba(12, 20, 11, 0.78),
        rgba(12, 20, 11, 0.10)
      );
  }

  .hero__inner {
    padding-block: 72px 48px;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 1.02;
  }

  .hero__intro {
    max-width: 37rem;
    font-size: 14px;
  }

  .about {
    padding-block: 66px 74px;
  }

  .about__inner {
    width: min(calc(100% - 32px), var(--content-width));
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about__media {
    aspect-ratio: 1.24 / 1;
  }

  .about__content {
    max-width: none;
  }

  .about h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .about__lead,
  .about__text {
    font-size: 14px;
  }

  .gallery,
  .reviews {
    padding-block: 66px 76px;
  }

  .gallery__inner,
  .reviews__inner {
    width: min(calc(100% - 32px), 1120px);
  }

  .gallery__header,
  .reviews__header {
    margin-bottom: 28px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, 155px);
    gap: 8px;
  }

  .gallery__item--1 { grid-column: 1; grid-row: 1 / span 2; }
  .gallery__item--2 { grid-column: 2; grid-row: 1; }
  .gallery__item--3 { grid-column: 2; grid-row: 2; }
  .gallery__item--4 { grid-column: 1 / span 2; grid-row: 3; }
  .gallery__item--5 { grid-column: 1; grid-row: 4; }
  .gallery__item--6 { grid-column: 2; grid-row: 4; }
  .gallery__item--7 { grid-column: 1 / span 2; grid-row: 5; }


  .reviews__grid {
    gap: 14px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 24px 22px 22px;
  }


  .contact {
    padding-block: 50px 56px;
    background:
      linear-gradient(
        to bottom,
        #f6f1e8 0%,
        #f6f1e8 82%,
        #172619 82%,
        #172619 100%
      );
  }

  .contact__inner {
    width: min(calc(100% - 32px), var(--content-width));
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__visual {
    order: 2;
  }

  .contact__content {
    order: 1;
  }

  .contact__header {
    margin-top: 0;
  }

  .contact h2 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .contact__media {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 4.35;
  }

  .contact__signature {
    min-height: 0;
    padding: 22px 4px 0;
  }

  .contact-form {
    padding: 20px 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__field--wide,
  .contact-form__consent,
  .contact-form__submit {
    grid-column: 1;
  }

  .footer__inner {
    width: min(calc(100% - 32px), 1120px);
    padding-top: 52px;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .footer__cta {
    grid-column: auto;
  }

  .footer__bottom {
    gap: 20px;
  }

  .footer__nav {
    gap: 16px 24px;
  }

  .footer__legal {
    grid-column: auto;
  }

  .button {
    min-height: 48px;
  }
}


@media (max-width: 440px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery__item,
  .gallery__item--1,
  .gallery__item--2,
  .gallery__item--3,
  .gallery__item--4,
  .gallery__item--5,
  .gallery__item--6,
  .gallery__item--7 {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery__item--1 {
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}  @media (max-width: 980px) {

            .gallery-hero__content {
        width: min(430px, 57vw);
      }
    }

    @media (max-width: 700px) {
            .gallery-hero {
        min-height: 470px;
      }

      .gallery-hero__media img {
        object-position: 64% center;
      }

      .gallery-hero__overlay {
        background:
          linear-gradient(
            180deg,
            rgba(8, 14, 8, 0.24) 0%,
            rgba(8, 14, 8, 0.3) 35%,
            rgba(8, 14, 8, 0.86) 72%,
            rgba(8, 14, 8, 0.99) 100%
          ),
          linear-gradient(
            90deg,
            rgba(8, 14, 8, 0.65),
            rgba(8, 14, 8, 0.05)
          );
      }

      .gallery-hero__inner {
        padding-block: 64px 45px;
      }

      .gallery-hero__content {
        width: 100%;
      }

      .gallery-hero h1 {
        font-size: clamp(48px, 15vw, 64px);
      }

          }
 .contact-form__status {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
}

.contact-form__status--success {
  padding: 14px 18px;
  border-radius: 8px;
  background: #eef7ed;
  color: #245c2a;
}

.contact-form__status--error {
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff0f0;
  color: #9b2525;
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
/* =========================================================
   Paardenoverzicht — component toegevoegd op basis van de
   bestaande kleuren, typografie en knoppen uit deze stylesheet.
   ========================================================= */

body.horses-page-body {
  min-width: 320px;
  color: #303329;
  background:
    radial-gradient(circle at 12% 12%, rgba(193, 160, 106, 0.08), transparent 26%),
    linear-gradient(110deg, #f8f5ee 0%, #f3eee5 100%);
}

.horses-page {
  min-height: 100svh;
  padding: clamp(14px, 3vw, 44px) 0 clamp(24px, 5vw, 66px);
}

.horses-page__inner {
  width: min(calc(100% - 28px), 1120px);
  margin-inline: auto;
}

.horses-page__title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.horses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px) clamp(10px, 1.6vw, 18px);
}

.horse-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(106, 94, 73, 0.11);
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(71, 56, 34, 0.09);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.horse-card:hover,
.horse-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(193, 160, 106, 0.38);
  box-shadow: 0 16px 34px rgba(71, 56, 34, 0.13);
}

.horse-card__main {
  position: relative;
  aspect-ratio: 0.91 / 1;
  margin: 0;
  overflow: hidden;
  background: #d9cfbd;
}

.horse-card__main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, rgba(16, 26, 16, 0.10));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.horse-card__main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 140ms ease, transform 500ms ease;
}

.horse-card:hover .horse-card__main img {
  transform: scale(1.025);
}

.horse-card__main img.is-changing {
  opacity: 0.25;
}

.horse-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 5px 6px 0;
}

.horse-thumb {
  position: relative;
  aspect-ratio: 1 / 0.78;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  background: #ddd4c5;
  cursor: pointer;
}

.horse-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.horse-thumb:hover img,
.horse-thumb:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.02);
}

.horse-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.horse-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(193, 160, 106, 0.2);
}

.horse-card__body {
  padding: 11px 10px 13px;
}

.horse-card__name {
  margin: 0;
  color: #35372f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 400;
  line-height: 1.1;
}

.horse-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 9px 0 0;
  color: #77766e;
  font-size: clamp(8px, 0.78vw, 10px);
  line-height: 1.35;
}

.horse-card__date svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: #796e59;
}

.horses-page__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 34px);
}

.horse-contact-button {
  min-height: 38px;
  padding-inline: 22px;
  font-size: 8px;
}

.horse-dialog {
  width: min(calc(100% - 32px), 520px);
  padding: 0;
  overflow: hidden;
  color: #303329;
  background: #fffdf8;
  border: 1px solid rgba(193, 160, 106, 0.46);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(16, 26, 16, 0.3);
}

.horse-dialog::backdrop {
  background: rgba(16, 26, 16, 0.72);
  backdrop-filter: blur(3px);
}

.horse-dialog__inner {
  position: relative;
  padding: 34px;
}

.horse-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #4b5147;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.horse-dialog__close:hover,
.horse-dialog__close:focus-visible {
  color: #fff;
  background: var(--green-900);
}

.horse-dialog__eyebrow {
  margin: 0 0 10px;
  color: #796e59;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.horse-dialog h2 {
  margin: 0;
  color: #35372f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 400;
  line-height: 1.02;
}

.horse-dialog__text {
  margin: 15px 0 24px;
  color: #55574e;
  font-size: 13px;
  line-height: 1.65;
}

.horse-dialog__form {
  display: grid;
  gap: 14px;
}

.horse-dialog__form label {
  display: grid;
  gap: 7px;
  color: #30342f;
  font-size: 12px;
  font-weight: 600;
}

.horse-dialog__form input,
.horse-dialog__form textarea {
  width: 100%;
  padding: 12px 13px;
  color: #30342f;
  background: #fff;
  border: 1px solid rgba(124, 113, 94, 0.3);
  border-radius: 5px;
  font: inherit;
  font-size: 14px;
  outline: 0;
}

.horse-dialog__form input:focus,
.horse-dialog__form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 160, 106, 0.13);
}

.horse-dialog__form textarea {
  min-height: 100px;
  resize: vertical;
}

.horse-dialog__submit {
  min-height: 46px;
  color: #fffaf0;
  background: #223321;
  border: 1px solid #223321;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.horse-dialog__submit:hover,
.horse-dialog__submit:focus-visible {
  background: #30432e;
  border-color: #30432e;
}

.horse-dialog__status {
  min-height: 20px;
  margin: 0;
  color: #47603f;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .horses-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .horse-card__name {
    font-size: 19px;
  }

  .horse-card__date {
    font-size: 10px;
  }
}

@media (max-width: 620px) {
  .horses-page__inner {
    width: min(calc(100% - 22px), 1120px);
  }

  .horses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .horse-card__body {
    padding-inline: 9px;
  }

  .horse-dialog__inner {
    padding: 28px 20px 22px;
  }
}

@media (max-width: 380px) {
  .horses-grid {
    grid-template-columns: 1fr;
  }
}