@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ivory: #f6f1e8;
  --surface: #fbf8f2;
  --forest: #34452e;
  --olive: #747a3d;
  --olive-hover: #626833;
  --beige: #d9cbb7;
  --charcoal: #292b27;
  --muted: #5d6259;
  --line: rgba(52, 69, 46, 0.18);
  --content-width: 1320px;
  --content-padding: clamp(1.25rem, 5vw, 4.5rem);
  --card-radius: 1rem;
  --control-radius: 0.7rem;
  --shadow: 0 20px 60px rgba(74, 66, 49, 0.08);
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.1rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid #8d6f37;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: var(--control-radius);
  background: var(--surface);
  color: var(--forest);
  transform: translateY(-160%);
}

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

.content-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--content-padding);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 2.6vw, 2.25rem);
  line-height: 1.05;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 4;
  display: flex;
  isolation: isolate;
  width: min(100%, 1400px);
  min-height: 76px;
  margin-inline: auto;
  padding: 1.35rem var(--content-padding);
  align-items: center;
  justify-content: space-between;
  transition: min-height 220ms ease, padding 220ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  border-bottom: 1px solid transparent;
  background: rgba(246, 241, 232, 0);
  box-shadow: 0 0.7rem 2.4rem rgba(74, 66, 49, 0);
  content: "";
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-condensed {
  min-height: 66px;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.site-header.is-condensed::before {
  border-color: var(--line);
  background: rgba(246, 241, 232, 0.94);
  box-shadow: 0 0.7rem 2.4rem rgba(74, 66, 49, 0.08);
  backdrop-filter: blur(14px) saturate(1.1);
}

.no-js .site-header {
  position: absolute;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--forest);
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 4.15rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
}

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

.brand-copy {
  display: grid;
  gap: 0.14rem;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-copy > span {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.atmosphere {
  display: flex;
  margin: 0;
  align-items: center;
  color: rgba(246, 241, 232, 0.92);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.atmosphere span {
  display: flex;
  align-items: center;
}

.atmosphere span + span::before {
  width: 2.25rem;
  height: 1px;
  margin-inline: 0.75rem;
  background: rgba(246, 241, 232, 0.52);
  content: "";
}

.site-header.is-condensed .atmosphere {
  color: rgba(52, 69, 46, 0.76);
}

.site-header.is-condensed .atmosphere span + span::before {
  background: rgba(52, 69, 46, 0.3);
}

.header-cta {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--olive);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0.55rem 1.5rem rgba(52, 69, 46, 0.14);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: var(--olive-hover);
  box-shadow: 0 0.7rem 1.8rem rgba(52, 69, 46, 0.2);
  transform: translateY(-1px);
}

.header-cta:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(850px, 100svh);
  height: clamp(680px, 78svh, 850px);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.88) 0%, rgba(246, 241, 232, 0.72) 31%, rgba(246, 241, 232, 0.08) 62%),
    linear-gradient(180deg, rgba(41, 43, 39, 0.12), transparent 34%);
}

.hero-inner {
  display: grid;
  height: 100%;
  padding-top: clamp(5rem, 10vh, 7rem);
  align-items: center;
}

.hero-copy {
  width: min(100%, 640px);
}

.hero h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3.55rem, 6.1vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.12em;
}

.hero-copy > p {
  max-width: 42ch;
  margin-bottom: 1.8rem;
  color: #3c4139;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.hero-copy .hero-note {
  display: flex;
  margin: 1.05rem 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  color: rgba(52, 69, 46, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.hero-note span + span {
  position: relative;
}

.hero-note span + span::before {
  position: absolute;
  top: 50%;
  left: -0.85rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--olive);
  content: "";
  transform: translateY(-50%);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button span,
.header-cta span {
  transition: transform 180ms ease;
}

.button:hover span,
.header-cta:hover span {
  transform: translateX(0.14rem);
}

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

.button-primary:hover {
  background: var(--olive-hover);
  transform: translateY(-1px);
}

.button-primary:active {
  transform: translateY(1px);
}

.intro {
  position: relative;
  padding-top: clamp(5rem, 8vw, 7.5rem);
  text-align: center;
}

.intro::before {
  position: absolute;
  top: -3.5rem;
  left: -5%;
  width: 110%;
  height: 5.5rem;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--ivory);
  content: "";
}

.intro-inner {
  max-width: 880px;
}

.botanical-rule {
  display: block;
  position: relative;
  width: 4.5rem;
  height: 1.35rem;
  margin: 0 auto 1rem;
}

.botanical-rule::before,
.botanical-rule::after {
  position: absolute;
  top: 50%;
  background: var(--olive);
  content: "";
}

.botanical-rule::before {
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.58;
}

.botanical-rule::after {
  left: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 70% 10% 70% 10%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.welcome {
  margin-bottom: 1.5rem;
  color: var(--olive-hover);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.intro .lead {
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: clamp(1.14rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.intro p:last-child {
  max-width: 68ch;
  margin: 0 auto;
  color: var(--muted);
}

.donkey-meet {
  padding-top: clamp(1rem, 3vw, 2.5rem);
}

.donkey-meet-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.donkey-meet-heading .welcome {
  margin-bottom: 0.8rem;
}

.donkey-meet-heading h2 {
  max-width: 14ch;
}

.donkey-meet-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.donkey-reveal {
  max-width: 74rem;
  margin-inline: auto;
}

.donkey-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(31rem, 48vw, 42rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--card-radius) + 0.35rem);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.donkey-stage-photo,
.donkey-stage-photo img,
.donkey-stage-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.donkey-stage-photo {
  z-index: -2;
}

.donkey-stage-photo img {
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.82) brightness(0.84);
  transform: scale(1.055);
  transition: filter 900ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.donkey-stage-shade {
  z-index: -1;
  background: linear-gradient(180deg, transparent 44%, rgba(28, 35, 25, 0.5) 100%);
  opacity: 0;
  transition: opacity 700ms ease 300ms;
}

.donkey-gate {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.donkey-gate-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  overflow: hidden;
  border: 0 solid rgba(246, 241, 232, 0.14);
  background: #56613f;
  box-shadow: inset 0 0 0 1px rgba(246, 241, 232, 0.08);
  transition: transform 950ms cubic-bezier(0.76, 0, 0.24, 1);
}

.donkey-gate-panel::before,
.donkey-gate-panel::after {
  position: absolute;
  background: rgba(155, 159, 86, 0.48);
  content: "";
}

.donkey-gate-panel::before {
  top: 0;
  bottom: 0;
  left: 22%;
  width: 3px;
  box-shadow: 12rem 0 0 rgba(155, 159, 86, 0.28);
}

.donkey-gate-panel::after {
  top: 28%;
  right: 0;
  left: 0;
  height: 3px;
  box-shadow: 0 15rem 0 rgba(155, 159, 86, 0.28);
}

.donkey-gate-panel-left {
  left: 0;
  border-right-width: 1px;
  transform-origin: left center;
}

.donkey-gate-panel-right {
  right: 0;
  border-left-width: 1px;
  transform-origin: right center;
}

.donkey-gate-invite {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: min(22rem, calc(100% - 2.5rem));
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(52, 69, 46, 0.24);
  border-radius: 0.85rem;
  background: rgba(251, 248, 242, 0.94);
  box-shadow: 0 1rem 2.8rem rgba(27, 34, 25, 0.18);
  place-items: center;
  transform: translate(-50%, -50%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.donkey-gate-invite strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.05;
}

.donkey-gate-invite small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.025em;
}

.donkey-knock {
  display: flex;
  height: 1.3rem;
  margin-bottom: 0.45rem;
  align-items: end;
  gap: 0.28rem;
}

.donkey-knock i {
  display: block;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--olive);
  animation: donkey-knock 1.8s ease-in-out infinite;
}

.donkey-knock i:nth-child(2) {
  animation-delay: 120ms;
}

.donkey-knock i:nth-child(3) {
  animation-delay: 240ms;
}

.donkey-gate:hover .donkey-gate-invite {
  transform: translate(-50%, -50%) scale(1.025);
}

.donkey-gate:hover .donkey-gate-panel-left {
  transform: translateX(-1.25%);
}

.donkey-gate:hover .donkey-gate-panel-right {
  transform: translateX(1.25%);
}

.donkey-introduction {
  position: absolute;
  z-index: 1;
  top: clamp(1rem, 3vw, 2rem);
  left: 50%;
  width: min(38rem, calc(100% - 2rem));
  padding: clamp(1.1rem, 2.6vw, 1.7rem);
  border: 1px solid rgba(52, 69, 46, 0.24);
  border-radius: 0.9rem;
  background: rgba(251, 248, 242, 0.94);
  box-shadow: 0 1rem 3rem rgba(27, 34, 25, 0.2);
  opacity: 0;
  backdrop-filter: blur(8px);
  transform: translate(-50%, 1.25rem);
  transition: opacity 420ms ease 650ms, transform 520ms cubic-bezier(0.16, 1, 0.3, 1) 650ms;
}

.donkey-introduction-kicker {
  margin-bottom: 0.25rem;
  color: var(--olive-hover);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.donkey-introduction h3 {
  display: flex;
  margin-bottom: 0.65rem;
  align-items: baseline;
  gap: 0.55rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.donkey-introduction h3 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 350ms ease 900ms, transform 450ms cubic-bezier(0.16, 1, 0.3, 1) 900ms;
}

.donkey-introduction h3 span:nth-child(2) {
  transition-delay: 1030ms;
}

.donkey-introduction h3 span:nth-child(3) {
  transition-delay: 1160ms;
}

.donkey-introduction > p:not(.donkey-introduction-kicker) {
  max-width: 50ch;
  margin-bottom: 0;
  color: #50564c;
  font-size: 0.88rem;
}

.donkey-replay {
  min-height: 2.75rem;
  margin-top: 0.85rem;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
}

.donkey-bray {
  position: absolute;
  z-index: 1;
  top: 47%;
  right: 19%;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-style: italic;
  font-weight: 600;
  opacity: 0;
  transform: rotate(6deg) scale(0.7);
}

.donkey-bray::after {
  position: absolute;
  right: 36%;
  bottom: -0.38rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--surface);
  content: "";
  clip-path: polygon(0 0, 100% 0, 20% 100%);
}

.donkey-reveal-status {
  min-height: 1.35rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.donkey-no-script {
  margin: 0.5rem auto 0;
  color: var(--forest);
  text-align: center;
}

.donkey-reveal.is-open .donkey-stage-photo img {
  filter: saturate(1) brightness(1);
  transform: scale(1);
}

.donkey-reveal.is-open .donkey-stage-shade {
  opacity: 1;
}

.donkey-reveal.is-open .donkey-gate {
  pointer-events: none;
}

.donkey-reveal.is-open .donkey-gate-panel-left {
  transform: translateX(-58%);
}

.donkey-reveal.is-open .donkey-gate-panel-right {
  transform: translateX(58%);
}

.donkey-reveal.is-open .donkey-gate-invite {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
}

.donkey-reveal.is-open .donkey-introduction {
  opacity: 1;
  transform: translate(-50%, 0);
}

.donkey-reveal.is-open .donkey-introduction h3 span {
  opacity: 1;
  transform: translateY(0);
}

.donkey-reveal.is-open .donkey-bray {
  animation: donkey-bray-pop 2.4s ease 850ms both;
}

.no-js .donkey-gate,
.no-js .donkey-replay,
.no-js .donkey-reveal-status {
  display: none;
}

.no-js .donkey-introduction,
.no-js .donkey-introduction h3 span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.no-js .donkey-introduction h3 span {
  transform: none;
}

@keyframes donkey-knock {
  0%,
  45%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-0.45rem);
  }
}

@keyframes donkey-bray-pop {
  0%,
  100% {
    opacity: 0;
    transform: rotate(6deg) scale(0.7);
  }

  18%,
  70% {
    opacity: 1;
    transform: rotate(6deg) scale(1);
  }
}

.experiences {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.97fr 0.97fr;
  gap: clamp(1rem, 2.3vw, 2rem);
  align-items: start;
}

.experience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface);
}

.experience-card:nth-child(2) {
  margin-top: 4.5rem;
}

.experience-card:nth-child(3) {
  margin-top: 1.75rem;
}

.experience-card picture,
.experience-card picture img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.experience-card picture {
  display: block;
  overflow: hidden;
  background: var(--beige);
}

.experience-card picture img {
  object-fit: cover;
}

.card-body {
  position: relative;
  min-height: 18.5rem;
  padding: 2.65rem clamp(1.35rem, 2.5vw, 2rem) 1.75rem;
}

.icon-disc {
  display: grid;
  position: absolute;
  top: -1.55rem;
  left: clamp(1.35rem, 2.5vw, 2rem);
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(52, 69, 46, 0.22);
  border-radius: 50%;
  background: var(--ivory);
  place-items: center;
}

.icon-disc img {
  width: 1.45rem;
  height: 1.45rem;
  opacity: 0.76;
  filter: invert(24%) sepia(12%) saturate(1030%) hue-rotate(58deg) brightness(88%);
}

.card-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.features {
  padding-top: clamp(1rem, 4vw, 3rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 2.3vw, 2rem);
}

.feature-card {
  position: relative;
  isolation: isolate;
  min-height: clamp(30rem, 53vw, 40rem);
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--forest);
  color: #fffaf1;
}

.feature-card picture,
.feature-card picture img,
.feature-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card picture {
  z-index: -2;
}

.feature-card picture img {
  object-fit: cover;
}

.feature-shade {
  z-index: -1;
  background: linear-gradient(180deg, transparent 34%, rgba(31, 38, 28, 0.82) 100%);
}

.feature-copy {
  display: flex;
  position: absolute;
  inset: auto 0 0;
  min-height: 42%;
  padding: clamp(1.5rem, 4vw, 3rem);
  flex-direction: column;
  justify-content: flex-end;
}

.feature-copy h2 {
  max-width: 11ch;
  margin-bottom: 0.8rem;
  color: #fffaf1;
}

.feature-card-wide .feature-copy h2 {
  max-width: 12ch;
}

.feature-copy p {
  max-width: 42ch;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: 0.98rem;
}

.gallery {
  padding-top: clamp(2rem, 5vw, 4.5rem);
}

.gallery-heading {
  display: grid;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}

.gallery-heading .welcome {
  margin-bottom: 0.8rem;
}

.gallery-heading h2,
.gallery-heading > p {
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 46ch;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, clamp(7.5rem, 12vw, 10rem));
  gap: clamp(0.65rem, 1.5vw, 1.15rem);
}

.gallery-item {
  display: block;
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0.8rem;
  background: var(--beige);
  cursor: zoom-in;
}

.gallery-item-waldweg {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.gallery-item-portraet {
  grid-column: 9 / 13;
  grid-row: 1 / 4;
}

.gallery-item-pause {
  grid-column: 1 / 6;
  grid-row: 3 / 5;
}

.gallery-item-pflege {
  grid-column: 6 / 9;
  grid-row: 3 / 5;
}

.gallery-item-duo {
  grid-column: 9 / 13;
  grid-row: 4 / 5;
}

.gallery-item picture,
.gallery-item picture img {
  width: 100%;
  height: 100%;
}

.gallery-item picture {
  display: block;
}

.gallery-item picture img {
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}

.gallery-item-duo picture img {
  object-position: center 42%;
}

.gallery-open {
  display: grid;
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(35, 43, 31, 0.74);
  opacity: 0.82;
  place-items: center;
  transform: none;
  transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gallery-open img {
  width: 1.2rem;
  height: 1.2rem;
  filter: invert(1);
}

@media (hover: hover) {
  .gallery-item:hover picture img {
    filter: saturate(0.92);
    transform: scale(1.025);
  }

  .gallery-item:hover .gallery-open {
    opacity: 1;
    background: rgba(35, 43, 31, 0.9);
    transform: scale(1.04);
  }
}

.gallery-item:focus-visible .gallery-open {
  opacity: 1;
  background: rgba(35, 43, 31, 0.9);
  transform: scale(1.04);
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fffaf1;
}

.lightbox::backdrop {
  background: rgba(20, 24, 18, 0.92);
  backdrop-filter: blur(4px);
}

.lightbox[open] {
  animation: lightbox-in 180ms ease-out;
}

.lightbox-layout {
  display: grid;
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 3.5rem minmax(0, 1fr) 3.5rem;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

.lightbox-figure {
  display: grid;
  width: min(100%, 88rem);
  min-width: 0;
  margin: 0 auto;
  grid-column: 2;
  place-items: center;
}

.lightbox-figure picture {
  display: grid;
  max-width: 100%;
  place-items: center;
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 10rem);
  border-radius: 0.55rem;
  object-fit: contain;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.34);
}

.lightbox-figure figcaption {
  display: flex;
  width: 100%;
  max-width: 64rem;
  margin-top: 1rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255, 250, 241, 0.95);
}

#lightbox-caption {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.15;
}

#lightbox-count {
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.lightbox-control {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.14);
  color: #fffaf1;
  cursor: pointer;
  place-items: center;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lightbox-control:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(246, 241, 232, 0.24);
}

.lightbox-control:active {
  transform: scale(0.96);
}

.lightbox-control img {
  width: 1.5rem;
  height: 1.5rem;
  filter: invert(1);
}

.lightbox-previous {
  grid-column: 1;
  justify-self: center;
}

.lightbox-next {
  grid-column: 3;
  justify-self: center;
}

.lightbox-close {
  position: fixed;
  z-index: 1;
  top: clamp(1rem, 2.5vw, 2rem);
  right: clamp(1rem, 2.5vw, 2rem);
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.booking {
  margin-top: clamp(1rem, 3vw, 2rem);
  background: #ece6d8;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(34rem, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.closing-copy {
  max-width: 34rem;
}

.botanical-rule-left {
  margin-inline: 0;
}

.closing-copy > p:not(.warm-note) {
  color: #50564c;
}

.warm-note {
  margin: 2rem 0 0;
  color: var(--olive-hover);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.15;
}

.enquiry-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.enquiry-card > p {
  max-width: 58ch;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

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

.field label {
  color: #363c33;
  font-size: 0.84rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #898e76;
  border-radius: var(--control-radius);
  background: #fffdf8;
  color: var(--charcoal);
  padding: 0.7rem 0.85rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #666d59;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(116, 122, 61, 0.18);
  outline: none;
}

.field small {
  color: #60665b;
  font-size: 0.76rem;
  line-height: 1.45;
}

.form-submit {
  margin-top: 1.4rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  color: var(--forest);
  font-size: 0.84rem;
}

.form-status.is-error {
  color: #8b332f;
}

.form-status.is-success {
  color: var(--forest);
  font-weight: 600;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner strong {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-inner p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-links a {
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-links a:hover {
  color: var(--olive-hover);
  text-decoration-color: var(--olive-hover);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1040px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card:nth-child(2) {
    margin-top: 3rem;
  }

  .experience-card:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 31rem);
    margin: 0 auto;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .closing-copy {
    max-width: 44rem;
  }
}

@media (max-width: 760px) {
  .section {
    padding-block: 3.5rem;
  }

  .site-header {
    min-height: 70px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header-actions {
    gap: 0;
  }

  .atmosphere {
    display: none;
  }

  .hero {
    min-height: 44rem;
    height: min(100svh, 50rem);
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(246, 241, 232, 0.92) 0%, rgba(246, 241, 232, 0.74) 60%, rgba(246, 241, 232, 0.12) 100%),
      linear-gradient(180deg, rgba(246, 241, 232, 0.16), transparent 45%, rgba(41, 43, 39, 0.1));
  }

  .hero-inner {
    align-items: end;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.2rem);
  }

  .hero-copy > p {
    max-width: 31ch;
  }

  .intro::before {
    top: -2.5rem;
    height: 4rem;
  }

  .donkey-meet {
    padding-top: 1rem;
  }

  .donkey-stage {
    min-height: 34rem;
  }

  .donkey-stage-photo img {
    object-position: center;
  }

  .donkey-gate-panel::before {
    box-shadow: 6rem 0 0 rgba(155, 159, 86, 0.28);
  }

  .donkey-introduction {
    top: 0.8rem;
    width: calc(100% - 1.6rem);
    padding: 1.1rem;
  }

  .donkey-introduction h3 {
    gap: 0.35rem;
  }

  .donkey-introduction > p:not(.donkey-introduction-kicker) {
    font-size: 0.8rem;
  }

  .donkey-bray {
    top: 47%;
    right: 12%;
  }

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

  .experience-card:nth-child(2),
  .experience-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .card-body {
    min-height: 0;
  }

  .feature-card {
    min-height: 31rem;
  }

  .feature-card-wide {
    min-height: 35rem;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 10rem);
    grid-auto-rows: 11rem;
  }

  .gallery-item-waldweg {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
  }

  .gallery-item-portraet {
    grid-column: 1;
    grid-row: 3 / 5;
  }

  .gallery-item-pause {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-item-pflege {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-item-duo {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .gallery-open {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 1;
    transform: none;
  }

  .lightbox-layout {
    padding: 4.75rem 1rem 5.5rem;
    grid-template-columns: 1fr;
  }

  .lightbox-figure {
    grid-column: 1;
  }

  .lightbox-figure img {
    max-height: calc(100dvh - 12rem);
  }

  .lightbox-previous,
  .lightbox-next {
    position: fixed;
    z-index: 1;
    bottom: 1rem;
  }

  .lightbox-previous {
    left: calc(50% - 3.65rem);
  }

  .lightbox-next {
    right: calc(50% - 3.65rem);
  }

  .field-full {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: 0.07em;
  }

  .brand-copy > span {
    font-size: 0.56rem;
  }

  .brand-symbol {
    width: 3rem;
    height: 1.8rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .header-cta {
    min-height: 2.5rem;
    padding: 0.55rem 0.72rem;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 3.65rem);
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .lightbox[open] {
    animation: none;
  }

  .donkey-knock i,
  .donkey-reveal.is-open .donkey-bray {
    animation: none;
  }

  .donkey-reveal.is-open .donkey-bray {
    opacity: 1;
    transform: rotate(6deg) scale(1);
  }
}

@media print {
  .site-header,
  .button,
  .site-footer,
  .gallery,
  .lightbox {
    display: none;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding-block: 4rem;
  }

  .hero-media,
  .hero-shade {
    display: none;
  }
}
