:root {
  --forest: #3a6b35;
  --forest-deep: #26452b;
  --forest-soft: #4f7d4c;
  --sage: #7aa874;
  --sage-mist: #dbe9d7;
  --cream: #f7f4ee;
  --cream-strong: #fffdf8;
  --orange: #d4711a;
  --orange-deep: #b85b0f;
  --ink: #2c2016;
  --white: #ffffff;
  --line: rgba(58, 107, 53, 0.14);
  --line-strong: rgba(58, 107, 53, 0.22);
  --shadow-soft: 0 26px 60px rgba(34, 25, 17, 0.08);
  --shadow-strong: 0 34px 90px rgba(34, 25, 17, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --nav-height: 64px;
  --section-space: 80px;
  --container: min(1320px, calc(100% - 40px));
  --wide-container: min(1520px, calc(100% - 28px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(122, 168, 116, 0.18), transparent 36%),
    radial-gradient(circle at left 20%, rgba(212, 113, 26, 0.1), transparent 22%),
    var(--cream);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open,
body.booking-open,
body.gallery-open,
body.is-loading {
  overflow: hidden;
}

.site-loader {
  display: none;
}

.js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(212, 113, 26, 0.16), transparent 26%),
    radial-gradient(circle at left 18%, rgba(122, 168, 116, 0.15), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, #fffdf8 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.42s ease,
    visibility 0.42s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 280px);
  text-align: center;
}

.site-loader__badge {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(58, 107, 53, 0.12);
  box-shadow: 0 22px 60px rgba(34, 25, 17, 0.1);
}

.site-loader__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-loader__label {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.site-loader__track {
  position: relative;
  width: min(100%, 180px);
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(58, 107, 53, 0.12);
}

.site-loader__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ec9c48);
  animation: site-loader-progress 1.1s ease-in-out infinite;
}

@keyframes site-loader-progress {
  0% {
    transform: translateX(-120%) scaleX(0.72);
  }

  55% {
    transform: translateX(90%) scaleX(1);
  }

  100% {
    transform: translateX(250%) scaleX(0.78);
  }
}

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

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

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

button {
  border: 0;
  background: none;
}

::selection {
  background: rgba(212, 113, 26, 0.25);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 180;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--forest-deep);
  color: var(--white);
  transition: top 0.24s ease;
}

.skip-link:focus {
  top: 16px;
}

.container,
.wide-container {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: var(--container);
}

.wide-container {
  max-width: var(--wide-container);
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #2f5734 0%, var(--forest-deep) 100%);
  color: var(--white);
}

.section--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 28%);
}

.section--tint {
  background: linear-gradient(180deg, rgba(122, 168, 116, 0.1), rgba(255, 255, 255, 0));
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.25rem 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.section--dark .eyebrow,
.callout .eyebrow,
.site-footer .eyebrow {
  color: var(--white);
}

.section--dark .eyebrow::before,
.callout .eyebrow::before,
.site-footer .eyebrow::before {
  opacity: 0.3;
}

.section-title,
.display-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: inherit;
}

.section-title {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.display-title {
  max-width: 16ch;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
}

.section-copy,
.lead,
.card p,
.info-list,
.detail-list {
  color: rgba(44, 32, 22, 0.82);
}

.section--dark .section-copy,
.section--dark .lead,
.section--dark .card p,
.section--dark .info-list,
.section--dark .detail-list,
.callout .section-copy {
  color: rgba(255, 255, 255, 0.84);
}

.section-copy,
.lead {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.95rem 1.55rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.btn__icon {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
}

.btn--primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.btn--primary::before {
  background: var(--forest-deep);
}

.btn--secondary {
  color: var(--ink);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn--light::before {
  background: var(--orange);
}

.link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-weight: 600;
  color: var(--orange);
  padding-bottom: 0.2rem;
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.link-arrow:hover::after,
.link-arrow:focus-visible::after,
.card:hover .link-arrow::after,
.card:focus-within .link-arrow::after,
.list-card:hover .link-arrow::after,
.list-card:focus-within .link-arrow::after {
  transform: scaleX(1);
}

.grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid--6 > .service-card:nth-child(n + 3) {
  grid-column: span 2;
}

.card,
.quote-card,
.price-card,
.list-card,
.stat-card,
.media-card,
.contact-panel,
.form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(58, 107, 53, 0.1);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card:hover,
.quote-card:hover,
.price-card:hover,
.list-card:hover,
.media-card:hover,
.contact-panel:hover,
.form-panel:hover {
  transform: translateY(-6px);
  border-top-color: var(--orange);
  border-color: rgba(58, 107, 53, 0.18);
  box-shadow: var(--shadow-strong);
}

.section--dark .card,
.section--dark .quote-card,
.section--dark .price-card,
.section--dark .list-card,
.section--dark .stat-card,
.section--dark .media-card,
.callout .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.section--dark .card:hover,
.section--dark .quote-card:hover,
.section--dark .price-card:hover,
.section--dark .list-card:hover,
.section--dark .media-card:hover,
.callout .card:hover {
  border-top-color: var(--orange);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.card__body,
.price-card__body,
.quote-card__body,
.list-card__body,
.stat-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.05rem;
}

.card__media,
.media-card__media,
.gallery-card__media,
.photo-card__media {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 8px);
  background: var(--sage-mist);
}

.card__media,
.gallery-card__media {
  aspect-ratio: 4 / 3;
}

.card__media img,
.media-card__media img,
.gallery-card__media img,
.photo-card__media img,
.hero__media img,
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.card__tag,
.price-card__tag,
.stat-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.section--dark .card__tag,
.section--dark .price-card__tag,
.section--dark .stat-card__tag,
.callout .card__tag {
  color: rgba(255, 255, 255, 0.72);
}

.card h3,
.price-card h3,
.quote-card h3,
.list-card h3,
.contact-panel h3,
.form-panel h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.card p,
.price-card p,
.quote-card p,
.list-card p {
  margin: 0;
}

.card__footer,
.price-card__footer,
.list-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.3rem;
}

.price {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: inherit;
}

.meta {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(44, 32, 22, 0.64);
}

.section--dark .meta,
.callout .meta {
  color: rgba(255, 255, 255, 0.7);
}

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

.stat-card {
  padding: 1rem;
}

.stat-card__value {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card__label {
  max-width: 18ch;
  font-size: 0.95rem;
  color: rgba(44, 32, 22, 0.76);
}

.section--dark .stat-card__label {
  color: rgba(255, 255, 255, 0.78);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 120px 0 64px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  background: var(--forest-deep);
  color: var(--white);
}

.hero--interior {
  min-height: 88svh;
}

.hero--animations {
  min-height: 60svh;
}

.hero--education .hero__frame img {
  filter: brightness(0.68) saturate(0.92) contrast(1.05);
}

.hero__media,
.hero__overlay,
.hero__grain,
.hero__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero__media {
  background: #5d7052;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(18, 33, 18, 0.26) 0%, rgba(18, 33, 18, 0.56) 46%, rgba(18, 33, 18, 0.84) 100%),
    linear-gradient(90deg, rgba(18, 33, 18, 0.32) 0%, rgba(18, 33, 18, 0.08) 44%, rgba(18, 33, 18, 0.46) 100%);
}

.hero__grain {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 92%);
}

.hero__glow {
  inset: auto -10% 4% auto;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 113, 26, 0.34), transparent 68%);
  filter: blur(20px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(1.2rem, 3vw, 4rem);
  align-items: center;
  transform: translateY(-18px);
}

.hero__copy,
.hero__aside {
  display: grid;
  gap: 1.1rem;
}

.hero__copy {
  align-content: start;
  justify-self: end;
  width: min(100%, 43.5rem);
}

.hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero__title {
  margin: 0;
  max-width: 14ch;
}

.hero--home .hero__inner {
  padding-bottom: 68px;
}

.hero__lead {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(1.04rem, 1.5vw, 1.26rem);
  color: rgba(255, 255, 255, 0.85);
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 760px);
  padding: 1rem 1.2rem;
  margin-inline: auto;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero__trust--global {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  width: min(80vw, 1200px);
  margin: 0;
  transform: translateX(-50%);
}

.hero__trust span {
  padding: 0 0.95rem;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__trust span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__note,
.hero__frame {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero__aside {
  position: relative;
  align-content: center;
  justify-items: center;
  min-height: 540px;
  padding-top: 48px;
}

.hero__note {
  position: absolute;
  top: 12px;
  left: -54px;
  z-index: 3;
  max-width: 320px;
  padding: 1.4rem;
  font-size: 0.98rem;
  line-height: 1.62;
  box-shadow: 0 24px 60px rgba(18, 33, 18, 0.22);
}

.hero__note strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero--home .hero__note {
  top: auto;
  right: auto;
  bottom: 30px;
  left: -68px;
  max-width: 292px;
  padding: 1.2rem 1.2rem 1.25rem;
}

.hero__frame {
  width: min(100%, 430px);
  min-height: 460px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__frame--event {
  width: min(100%, 520px);
  min-height: 165px;
}

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

.event-banner-section[hidden] {
  display: none !important;
}

.event-banner-section {
  padding: 10px 0 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 28%);
}

.event-banner__marquee {
  overflow: hidden;
  padding: 0.75rem 1rem;
  margin-bottom: 0.4rem;
  background: rgba(255, 253, 248, 0.78);
  border-top: 1px solid rgba(58, 107, 53, 0.08);
  border-bottom: 1px solid rgba(58, 107, 53, 0.08);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.event-banner__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: event-marquee 24s linear infinite;
}

.event-banner__marquee-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
  padding-right: 0.8rem;
}

.event-banner__marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(58, 107, 53, 0.76);
}

.event-banner__marquee-track span::after {
  content: "•";
  font-size: 0.8em;
  color: rgba(212, 113, 26, 0.72);
}

.event-banner__marquee-group span:last-child::after {
  display: none;
}

.event-banner {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  width: min(100%, 920px);
  max-width: 920px;
  margin: 30px auto;
  padding: 1.15rem 1.2rem;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(212, 113, 26, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 243, 236, 0.96));
  border: 1px solid rgba(58, 107, 53, 0.1);
  box-shadow:
    0 24px 52px rgba(34, 25, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.event-banner__media {
  overflow: hidden;
  min-height: 146px;
  max-height: 146px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(34, 25, 17, 0.12);
}

.event-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 146px;
  max-height: 146px;
  object-fit: cover;
  object-position: center;
}

.event-banner__copy {
  display: grid;
  gap: 0.5rem;
  align-content: center;
  align-items: start;
  min-width: 0;
  padding-right: 0.7rem;
}

.event-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(212, 113, 26, 0.12);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.event-banner__copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  max-width: 16ch;
  font-size: clamp(1.38rem, 2vw, 2.05rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.event-banner__copy p {
  margin: 0;
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.48;
  color: rgba(44, 32, 22, 0.74);
}

@keyframes event-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.18em;
}

.hero-word:last-child {
  margin-right: 0;
}

.hero-word > span {
  display: block;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 120;
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.74);
  border: 1px solid rgba(58, 107, 53, 0.1);
  backdrop-filter: blur(18px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled .site-header__bar {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(58, 107, 53, 0.18);
  box-shadow: 0 18px 40px rgba(44, 32, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  padding: 4px;
  border-radius: 14px;
  background: rgba(58, 107, 53, 0.12);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand__name {
  font-family: "Playfair Display", serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__meta {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(44, 32, 22, 0.62);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 0.6vw, 0.8rem);
  min-width: 0;
}

.nav a,
.nav-dropdown__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.12rem 0.45rem;
  white-space: nowrap;
  font-size: clamp(0.82rem, 0.72vw, 0.98rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(44, 32, 22, 0.82);
  cursor: pointer;
}

.nav a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-current::after,
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown:focus-within .nav-dropdown__toggle::after,
.nav-dropdown__toggle.is-current::after {
  transform: scaleX(1);
}

.nav a.is-current,
.nav-dropdown__toggle.is-current {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-dropdown__toggle {
  gap: 0.35rem;
  border: 0;
  background: transparent;
}

.nav-dropdown__toggle span {
  font-size: 0.72em;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  gap: 0.2rem;
  min-width: 250px;
  padding: 0.55rem;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(58, 107, 53, 0.12);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.nav-dropdown__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__panel a {
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  font-size: 0.86rem;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a:focus-visible,
.nav-dropdown__panel a.is-current {
  background: rgba(58, 107, 53, 0.08);
}

.nav-cta {
  padding: 10px 22px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
}

.booking-shortcut {
  display: none;
  align-items: center;
  justify-content: center;
  place-items: center;
  gap: 0.45rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(58, 107, 53, 0.12);
  color: var(--forest-deep);
  border: 1px solid rgba(212, 113, 26, 0);
  cursor: pointer;
}

.booking-shortcut svg {
  width: 20px;
  height: 20px;
}

.booking-shortcut span {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(58, 107, 53, 0.12);
  color: var(--forest-deep);
  cursor: pointer;
}

.menu-toggle span,
.menu-close span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.menu-toggle span + span,
.menu-close span + span {
  margin-top: 4px;
}

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 115;
    display: grid;
    align-content: start;
    gap: 1.4rem;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at top right, rgba(212, 113, 26, 0.24), transparent 28%),
      linear-gradient(180deg, #355e37 0%, #1f3823 100%);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
  }

.menu-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.menu-close span:first-child {
  transform: translateY(1px) rotate(45deg);
}

.menu-close span:last-child {
  margin-top: -2px;
  transform: rotate(-45deg);
}

  .mobile-menu nav {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
  }

  .mobile-menu nav a {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.45rem, 5.7vw, 2.35rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    padding: 0.45rem 0;
  }

  .mobile-menu__group {
    display: grid;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

.mobile-menu__group-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

  .mobile-menu__subnav {
    display: grid;
    gap: 0.55rem;
    padding-left: 0;
  }

  .mobile-menu__subnav a {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 4.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.88);
  }

  .mobile-menu__meta {
    display: grid;
    gap: 0.65rem;
    order: 1;
    margin-top: 0;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.76);
  }

.mobile-menu__meta a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.62rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 4vw, 5rem);
  align-items: center;
}

.editorial__copy {
  display: grid;
  gap: 1.2rem;
}

.stacked-cards {
  grid-template-columns: 1fr;
  width: min(100%, 640px);
}

.photo-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.photo-card {
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: var(--sage-mist);
  box-shadow: var(--shadow-soft);
}

.photo-card--tall {
  min-height: 560px;
}

.photo-card--stack {
  display: grid;
  gap: 1rem;
}

.photo-card--small {
  min-height: 270px;
}

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

.service-card,
.animal-card {
  padding: 1rem;
}

.service-card--wide {
  grid-column: span 3;
}

.service-card--wide-alt {
  grid-column: span 3;
}

.service-card--wide .card__media {
  aspect-ratio: 4 / 3;
}

.service-card--wide-alt .card__media {
  aspect-ratio: 4 / 3;
}

.service-card--wide .card__media img {
  object-position: center 28%;
}

.service-card .card__media {
  margin-bottom: 0.75rem;
}

.service-card h3,
.animal-card h3 {
  margin-bottom: 0.3rem;
}

.icon-list,
.detail-list,
.price-list,
.contact-list {
  display: grid;
  gap: 0.5rem;
}

.detail-list,
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li,
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
}

.detail-list li:first-child,
.price-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.section--dark .detail-list li,
.section--dark .price-list li,
.callout .detail-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(58, 107, 53, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.section--dark .chip,
.callout .chip {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.quote-card {
  padding: 1.15rem;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.6rem;
  left: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 4.25rem;
  line-height: 1;
  color: rgba(212, 113, 26, 0.24);
}

.quote-card__body {
  gap: 0.8rem;
  padding: 0.95rem 0 0;
}

.quote-author {
  display: grid;
  gap: 0.2rem;
}

.quote-author strong {
  font-size: 1rem;
}

.quote-author span {
  color: rgba(44, 32, 22, 0.62);
  font-size: 0.92rem;
}

.section--dark .quote-author span {
  color: rgba(255, 255, 255, 0.68);
}

.list-card {
  padding: 1.05rem;
}

.list-card__body {
  gap: 0.75rem;
  padding: 0;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 113, 26, 0.28), transparent 26%),
    linear-gradient(135deg, #335f36 0%, #1f3823 100%);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.callout--soft {
  background:
    radial-gradient(circle at top right, rgba(212, 113, 26, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf6ee 0%, #f4eee4 100%);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.callout--soft .eyebrow {
  color: var(--orange);
}

.callout--soft .eyebrow::before {
  opacity: 0.5;
}

.callout--soft .section-copy {
  color: rgba(44, 32, 22, 0.78);
}

.callout__copy {
  display: grid;
  gap: 0.7rem;
}

.callout__title {
  margin: 0;
  max-width: 12ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.callout__title--compact {
  max-width: 20ch;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.section-title--compact {
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--sage-mist);
  min-height: 100%;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.gallery-card[role="button"] {
  cursor: zoom-in;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(212, 113, 26, 0.42);
  outline-offset: 4px;
}

.gallery-card--tall {
  min-height: 440px;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card__media {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal [hidden] {
  display: none !important;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: stretch;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    rgba(12, 10, 8, 0.84);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(122, 168, 116, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.98), rgba(10, 9, 8, 0.98));
  color: var(--white);
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.gallery-modal.is-open .gallery-modal__backdrop,
.gallery-modal.is-open .gallery-modal__dialog {
  opacity: 1;
}

.gallery-modal.is-open .gallery-modal__dialog {
  transform: scale(1);
}

.gallery-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.gallery-modal__close:hover,
.gallery-modal__close:focus-visible {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.16);
  color: var(--orange);
}

.gallery-modal__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.gallery-modal__close span:first-child {
  transform: rotate(45deg);
}

.gallery-modal__close span:last-child {
  transform: rotate(-45deg);
}

.gallery-modal__stage {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(1rem, 2vw, 2rem);
}

.gallery-modal__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1280px);
  max-width: min(100%, 1280px);
  max-height: min(100%, calc(100svh - 180px));
  margin: 0;
}

.gallery-modal__figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.gallery-modal__nav:hover,
.gallery-modal__nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  color: var(--orange);
}

.gallery-modal__nav--prev {
  left: clamp(0.65rem, 1.6vw, 1.5rem);
}

.gallery-modal__nav--next {
  right: clamp(0.65rem, 1.6vw, 1.5rem);
}

.gallery-modal__nav span {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.gallery-modal__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding: 1rem clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 1.8rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.02), rgba(12, 10, 8, 0.22));
}

.gallery-modal__meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1;
}

.gallery-modal__meta p {
  margin: 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-modal__meta span {
  flex: none;
  align-self: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-block {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.info-block strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero__frame--illustration {
  padding: 14px;
}

.helloasso-hero-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 8px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88) 0 9%, transparent 9.5%),
    linear-gradient(180deg, #f9f3e9 0%, #efe4cf 42%, #dcead9 42.5%, #8db787 69%, #4b7848 100%);
}

.helloasso-hero-art::before,
.helloasso-hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.helloasso-hero-art::before {
  right: -12%;
  bottom: -10%;
  width: 76%;
  height: 38%;
  background: rgba(255, 255, 255, 0.14);
}

.helloasso-hero-art::after {
  left: -8%;
  bottom: -16%;
  width: 72%;
  height: 42%;
  background: rgba(38, 69, 43, 0.12);
}

.helloasso-hero-art__badge,
.helloasso-hero-art__card {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.helloasso-hero-art__badge {
  top: 18px;
  right: 18px;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.helloasso-hero-art__card {
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 0.3rem;
  max-width: 220px;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
}

.helloasso-hero-art__card strong {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  line-height: 1.1;
}

.helloasso-hero-art__card span {
  font-size: 0.92rem;
  line-height: 1.5;
}

.helloasso-illustration__art {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 8px);
}

.helloasso-illustration__art::before,
.helloasso-illustration__art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.helloasso-illustration__art::before {
  inset: auto auto -18% -10%;
  width: 62%;
  height: 58%;
  background: rgba(255, 255, 255, 0.22);
}

.helloasso-illustration__art::after {
  inset: 12% -8% auto auto;
  width: 34%;
  height: 34%;
  background: rgba(255, 255, 255, 0.18);
}

.helloasso-illustration__art--learn {
  background: linear-gradient(180deg, #fbf4e7 0%, #ead7b7 42%, #cfe2cf 42.5%, #7aa874 100%);
}

.helloasso-illustration__art--link {
  background: linear-gradient(180deg, #f9eee1 0%, #f0d4af 40%, #d4e5db 40.5%, #5f8a5b 100%);
}

.helloasso-illustration__art--care {
  background: linear-gradient(180deg, #f7f2eb 0%, #e7d9bf 38%, #dde9dc 38.5%, #456d42 100%);
}

.helloasso-illustration__label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--forest-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.helloasso-illustration__note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: 180px;
  padding: 0.85rem 0.95rem;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 4vw, 4rem);
}

.contact-panel,
.form-panel {
  padding: 1.15rem;
}

.contact-panel h3,
.form-panel h3 {
  margin-bottom: 0.8rem;
}

.contact-panel .btn-row {
  margin-top: 1rem;
}

.contact-list a {
  color: var(--orange);
  font-weight: 700;
}

.contact-list strong {
  display: inline-block;
  margin-bottom: 0.2rem;
}

.contact-hours {
  display: inline-flex;
  width: fit-content;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(58, 107, 53, 0.08);
  font-weight: 600;
}

.field-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.35rem 0 0.85rem;
  border: 0;
  border-bottom: 1px solid rgba(58, 107, 53, 0.24);
  background: transparent;
  color: var(--ink);
  appearance: none;
  outline: none;
  transition: border-color 0.28s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--forest);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.94rem;
}

.form-status {
  min-height: 1.6em;
  color: var(--forest-deep);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal [hidden] {
  display: none !important;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 10px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 12, 0.52);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(96svh, 920px);
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 238, 0.96));
  border: 1px solid rgba(58, 107, 53, 0.14);
  box-shadow: 0 40px 120px rgba(29, 21, 14, 0.28);
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.booking-modal.is-open .booking-modal__backdrop,
.booking-modal.is-open .booking-modal__dialog {
  opacity: 1;
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  background: rgba(38, 69, 43, 0.08);
  color: var(--forest-deep);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.booking-modal__close:hover,
.booking-modal__close:focus-visible {
  transform: rotate(90deg);
  background: var(--forest-deep);
  color: var(--white);
}

.booking-modal__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.booking-modal__close span:first-child {
  transform: rotate(45deg);
}

.booking-modal__close span:last-child {
  transform: rotate(-45deg);
}

.booking-modal__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.booking-modal__intro {
  display: none;
  align-content: start;
  gap: 1.3rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(212, 113, 26, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(47, 87, 52, 0.96), rgba(31, 56, 35, 0.98));
  color: var(--white);
}

.booking-modal__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.booking-modal__intro .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.booking-modal__intro h2 {
  margin: 0;
  max-width: 10ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.booking-modal__highlights {
  display: grid;
  gap: 0.85rem;
}

.booking-highlight,
.booking-modal__summary {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.booking-highlight strong,
.booking-modal__summary strong {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.02;
}

.booking-highlight span,
.booking-modal__summary p {
  color: rgba(255, 255, 255, 0.76);
}

.booking-modal__summary-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.booking-modal__summary p,
.booking-modal__support span,
.booking-form__heading p,
.booking-choice__meta,
.booking-meta-card span,
.booking-form__status,
.booking-form__pane--success p,
.booking-success__badge {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.booking-modal__support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.76);
}

.booking-modal__support .link-arrow {
  color: var(--white);
}

.booking-modal__content {
  padding: 0.95rem 0.95rem 1rem;
}

.booking-form {
  display: grid;
  gap: 0.8rem;
}

.booking-form__compact-intro {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
  padding-right: 52px;
}

.booking-form__compact-intro p {
  margin: 0;
  color: rgba(44, 32, 22, 0.7);
  font-size: 0.92rem;
  line-height: 1.35;
}

.booking-form__required-note {
  font-size: 0.76rem;
  color: rgba(44, 32, 22, 0.58);
}

.booking-form__compact-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.required-mark {
  color: var(--orange);
  font-weight: 700;
}

.booking-form__compact-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(58, 107, 53, 0.08);
  color: var(--forest-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-wizard {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  padding: 0.72rem 0.85rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(58, 107, 53, 0.08), rgba(255, 255, 255, 0.7));
  border: 1px solid rgba(58, 107, 53, 0.12);
}

.booking-wizard__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.booking-wizard__label,
.booking-wizard__count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(44, 32, 22, 0.58);
}

.booking-wizard__title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
}

.booking-wizard__track {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(58, 107, 53, 0.12);
  overflow: hidden;
}

.booking-wizard__bar {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #e89442);
  transition: width 0.24s ease;
}

.booking-form__pane {
  display: grid;
  gap: 0.8rem;
}

.booking-form__pane[hidden] {
  display: none;
}

.booking-form__step-pane[hidden] {
  display: none;
}

.booking-form__section {
  display: grid;
  gap: 0.72rem;
  padding-bottom: 0.75rem;
  border-bottom: 0;
}

.booking-form__section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-form__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.booking-form__heading strong,
.booking-form__pane--success h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.booking-form__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(58, 107, 53, 0.08);
  color: var(--forest-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.booking-choice {
  display: grid;
  gap: 0.26rem;
  padding: 0.72rem 0.8rem;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(58, 107, 53, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(34, 25, 17, 0.06);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.booking-choice:hover,
.booking-choice:focus-visible,
.booking-choice.is-active {
  transform: translateY(-3px);
  border-color: rgba(212, 113, 26, 0.42);
  background: rgba(255, 248, 241, 0.98);
  box-shadow: 0 20px 52px rgba(34, 25, 17, 0.12);
}

.booking-choice.is-manual {
  cursor: not-allowed;
  opacity: 0.78;
  background: rgba(245, 239, 229, 0.92);
}

.booking-choice.is-manual:hover,
.booking-choice.is-manual:focus-visible {
  transform: none;
  border-color: rgba(58, 107, 53, 0.14);
  background: rgba(245, 239, 229, 0.92);
  box-shadow: 0 14px 38px rgba(34, 25, 17, 0.06);
}

.booking-choice__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.booking-choice__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(44, 32, 22, 0.62);
}

.booking-choice strong {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.booking-choice__price {
  font-weight: 700;
  color: var(--orange);
}

.booking-choice__meta {
  color: rgba(44, 32, 22, 0.68);
  font-size: 0.82rem;
  line-height: 1.3;
}

.booking-fields {
  gap: 0.75rem;
}

.booking-field__hint {
  margin: -0.12rem 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(44, 32, 22, 0.68);
}

.booking-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 34px;
}

.booking-slot,
.booking-slot-grid__empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
}

.booking-slot {
  font-size: 0.9rem;
  border: 1px solid rgba(58, 107, 53, 0.14);
  background: rgba(58, 107, 53, 0.06);
  color: var(--forest-deep);
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    border-color 0.24s ease;
}

.booking-slot:hover,
.booking-slot:focus-visible,
.booking-slot.is-active {
  transform: translateY(-2px);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--white);
}

.booking-slot-grid__empty {
  width: 100%;
  justify-content: flex-start;
  padding-inline: 0;
  color: rgba(44, 32, 22, 0.58);
}

.booking-field--meta {
  align-self: end;
}

.booking-meta-card {
  display: grid;
  gap: 0.35rem;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(58, 107, 53, 0.08), rgba(122, 168, 116, 0.05));
  border: 1px solid rgba(58, 107, 53, 0.12);
}

.booking-meta-card strong,
.booking-success__card strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.04;
}

.booking-form__alert {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(212, 113, 26, 0.08);
  border: 1px solid rgba(212, 113, 26, 0.16);
}

.booking-form__alert strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.booking-form__alert span {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(44, 32, 22, 0.82);
}

.booking-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(58, 107, 53, 0.1);
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.booking-form__status {
  flex: 1 1 auto;
  min-height: 1.35em;
  color: var(--forest-deep);
  font-size: 0.88rem;
  line-height: 1.35;
}

.booking-modal .btn {
  padding: 0.78rem 1.15rem;
  font-size: 0.9rem;
}

.booking-form__pane--success {
  align-content: start;
  min-height: 100%;
  padding: 0.2rem 0 0;
}

.booking-success__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(58, 107, 53, 0.1);
  color: var(--forest-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form__pane--success h3 {
  margin: 0;
}

.booking-success__card {
  padding: 1.1rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(58, 107, 53, 0.12);
  box-shadow: var(--shadow-soft);
}

.booking-success__list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-success__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(58, 107, 53, 0.1);
}

.booking-success__list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.booking-success__list span {
  color: rgba(44, 32, 22, 0.58);
}

.site-footer {
  position: relative;
  padding: 92px 0 38px;
  background:
    radial-gradient(circle at top right, rgba(212, 113, 26, 0.18), transparent 28%),
    linear-gradient(180deg, #2f5734 0%, #203822 100%);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: 3.4rem;
  align-items: start;
}

.site-footer__column {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.site-footer__column + .site-footer__column {
  padding-left: 2.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.site-footer__brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.42rem;
  line-height: 1.02;
}

.site-footer__column p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.72;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.7rem;
}

.site-footer__links a,
.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: var(--white);
}

.site-footer__contact {
  gap: 0.72rem;
}

.site-footer__contact .eyebrow {
  margin-bottom: 0.2rem;
}

.site-footer__contact span {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.site-footer__meta a {
  color: rgba(255, 255, 255, 0.9);
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 140;
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(58, 107, 53, 0.9);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    width 0.24s ease,
    height 0.24s ease,
    opacity 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-hovering {
  width: 52px;
  height: 52px;
  background: transparent;
  border-color: rgba(58, 107, 53, 0.78);
}

[data-reveal] {
  will-change: transform, opacity;
}

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

  .service-card--wide {
    grid-column: span 1;
  }

  .service-card--wide-alt {
    grid-column: span 1;
  }

  .grid--6 > .service-card:nth-child(n + 3) {
    grid-column: auto;
  }

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

  .gallery-card--wide {
    grid-column: span 1;
  }

  .service-card--wide .card__media {
    aspect-ratio: 4 / 3;
  }

  .service-card--wide .card__media img {
    object-position: center 28%;
  }

  .hero__inner,
  .editorial,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    justify-self: stretch;
    width: 100%;
  }

  .hero__aside {
    width: min(100%, 640px);
    max-width: 640px;
    margin-inline: auto;
    justify-items: center;
    min-height: 500px;
  }

  .hero--home .hero__note {
    left: -18px;
    bottom: 24px;
  }

  .hero__frame {
    width: min(100%, 500px);
  }

  .hero__trust--global {
    width: min(88vw, 980px);
  }
}

@media (max-width: 1100px) {
  .hero__trust,
  .stat-grid,
  .info-strip,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-banner {
    grid-template-columns: minmax(0, 208px) minmax(0, 1fr);
    width: min(100%, 760px);
    max-width: 760px;
  }

  .booking-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-card--tall {
    min-height: 440px;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .booking-shortcut,
  .menu-toggle {
    display: inline-grid;
  }

  .site-header__bar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .site-header__actions {
    gap: 0.55rem;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 42px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: start;
    transform: none;
  }

  .hero__copy {
    justify-self: stretch;
    width: min(100%, 760px);
    max-width: 760px;
  }

  .hero__title {
    max-width: 11ch;
    font-size: clamp(3rem, 7vw, 4.85rem);
  }

  .hero__lead {
    max-width: 48ch;
  }

  .hero--home .hero__inner {
    padding-bottom: 0;
  }

  .hero__aside {
    width: min(100%, 760px);
    max-width: 760px;
    min-height: 520px;
    margin-inline: auto;
    padding-top: 0;
    position: relative;
    display: block;
  }

  .hero__frame {
    width: min(100%, 620px);
    min-height: 420px;
  }

  .hero--home .hero__note {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    max-width: min(360px, calc(100% - 48px));
    width: min(360px, calc(100% - 48px));
    margin: 0;
    transform: translateX(-50%);
  }

  .hero__trust--global {
    display: none;
  }

  .hero__trust--global span {
    min-height: 72px;
    padding: 0.95rem 1rem;
  }

  .hero__trust--global span:nth-child(odd) {
    border-left: 0;
  }

  .hero__trust--global span:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 768px) {
  :root {
    --section-space: 48px;
    --container: calc(100% - 24px);
    --wide-container: calc(100% - 20px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 10px;
  }

  .site-header__bar {
    min-height: 60px;
    padding: 8px 10px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .brand__meta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 0 32px;
  }

  .hero--interior {
    min-height: 72svh;
  }

  .hero--animations {
    min-height: 30svh;
  }

  .hero__inner {
    transform: translateY(0);
  }

  .hero__title {
    max-width: none;
    width: 100%;
    font-size: clamp(2.55rem, 10vw, 4rem);
  }

  .display-title,
  .section-title,
  .callout__title,
  .booking-form__compact-title,
  .booking-modal__intro h2 {
    width: 100%;
    max-width: none;
  }

  .hero__copy {
    justify-self: stretch;
    width: 100%;
  }

  .hero__copy,
  .hero__lead,
  .hero__actions {
    max-width: none;
    width: 100%;
  }

  .hero__lead {
    font-size: clamp(1rem, 4.7vw, 1.18rem);
  }

  .event-banner-section {
    padding-top: 8px;
  }

  .event-banner__marquee {
    padding-bottom: 6px;
  }

  .event-banner__copy {
    text-align: center;
    justify-items: center;
  }

  .event-banner__copy p {
    max-width: none;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust,
  .stat-grid,
  .info-strip,
  .site-footer__grid,
  .site-footer__links,
  .field-row,
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--6,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-banner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    padding: 0.95rem;
  }

  .grid--6 > .service-card:nth-child(n + 3) {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 72px;
  }

  .site-footer__column + .site-footer__column {
    padding-left: 0;
    border-left: 0;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-modal__dialog {
    overflow: auto;
    max-height: 92svh;
    border-radius: 28px;
  }

  .gallery-modal__stage {
    padding: 3.2rem 0.9rem 0.9rem;
  }

  .gallery-modal__figure {
    height: calc(100svh - 170px);
  }

  .gallery-modal__nav {
    width: 46px;
    height: 46px;
  }

  .gallery-modal__nav span {
    font-size: 2rem;
  }

  .gallery-modal__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-modal__shell {
    margin-top: -8px;
  }

  .booking-modal__intro,
  .booking-modal__content {
    padding: 1.2rem;
  }

  .booking-choice-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-wizard__count {
    justify-self: start;
  }

  .booking-form__footer,
  .booking-success__list li {
    align-items: start;
    flex-direction: column;
  }

  .booking-form__actions {
    width: 100%;
    justify-content: stretch;
  }

  .booking-form__actions .btn {
    width: 100%;
  }

  .site-header__actions {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .booking-shortcut {
    display: inline-grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: 46px;
    padding: 0 1rem;
    border-radius: 999px;
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 16px 30px rgba(212, 113, 26, 0.24);
    flex: none;
  }

  .booking-shortcut svg {
    width: 17px;
    height: 17px;
  }

  .booking-shortcut span {
    display: inline;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 8px;
    padding: 8px;
    box-sizing: border-box;
    line-height: 0;
    flex: none;
  }

  .menu-toggle span + span {
    margin-top: 0;
  }

  .menu-toggle span {
    width: 18px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu nav {
    order: 2;
  }

  .mobile-menu__meta {
    order: 1;
  }

  .mobile-menu__meta a:not(.mobile-menu__cta) {
    display: none;
  }

  .mobile-menu__meta a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.05rem;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(212, 113, 26, 0.24);
  }

  .mobile-menu nav a {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.45rem, 5.7vw, 2.35rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .mobile-menu__group-label {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.78rem, 3.2vw, 1.05rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.92);
  }

  .mobile-menu__subnav a {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.18rem, 4.9vw, 2.05rem);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.025em;
  }

  .site-footer__meta {
    justify-content: center;
    text-align: center;
  }

  .booking-success__list li strong {
    width: 100%;
  }

  .hero__trust span {
    padding: 0.8rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero__trust span:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .hero__trust--global {
    display: none;
  }

  .hero__trust--global span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.85rem;
    min-height: 64px;
    text-align: center;
  }

  .hero__trust--global span:nth-child(-n + 2) {
    border-top: 0;
  }

  .callout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .photo-card--tall,
  .hero__frame {
    min-height: 320px;
  }

  .hero__aside {
    min-height: auto;
    padding-top: 0;
    justify-items: stretch;
    position: relative;
    width: 100%;
    max-width: none;
    display: block;
  }

  .hero__note {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    right: auto;
    height: fit-content;
    width: min(calc(100% - 24px), 340px);
    max-width: min(calc(100% - 24px), 340px);
    margin: 0;
    transform: translateX(-50%);
  }

  .hero--home .hero__note {
    text-align: left;
  }

  .hero__frame {
    width: 100%;
    max-width: 520px;
  }

  .hero__frame--event {
    min-height: 90px;
  }

  .hero--home .hero__inner {
    padding-bottom: 24px;
  }

  .hero__trust--global {
    margin-top: 0.9rem;
  }

  .helloasso-hero-art {
    min-height: 320px;
  }

  .helloasso-illustration__art {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  .display-title,
  .section-title,
  .callout__title,
  .booking-form__compact-title,
  .booking-modal__intro h2 {
    width: 100%;
    max-width: none;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .display-title {
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: 1;
  }

  .event-banner {
    padding: 0.8rem;
  }

  .event-banner__media,
  .event-banner__media img {
    min-height: 150px;
    max-height: 150px;
  }

  .event-banner__copy h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
  }

  .callout__title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .booking-form__compact-title,
  .booking-modal__intro h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    width: 100%;
  }

  .booking-modal__close {
    top: 12px;
    margin: 12px 12px 0 auto;
  }

  .gallery-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .booking-choice {
    padding: 0.95rem;
  }

  .booking-slot {
    width: 100%;
  }

}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .custom-cursor {
    display: none !important;
  }

  [data-reveal],
  .hero-word,
  .hero-word > span,
  .hero__lead,
  .hero__actions,
  .hero__trust,
  .hero__note,
  .hero__frame,
  .stat-card {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}
