@font-face {
  font-family: "Domine";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/domine/domine-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Domine";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/domine/domine-700.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/open-sans/open-sans-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/open-sans/open-sans-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/open-sans/open-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/open-sans/open-sans-700.woff2") format("woff2");
}
@font-face {
  font-family: "Tangerine";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/tangerine/tangerine-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Tangerine";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/tangerine/tangerine-700.woff2") format("woff2");
}

:root {
  --green: #87aa2c;
  --green-deep: #5f7a1c;
  --green-hover: #a5cd3c;
  --green-mist: #f2f6e8;
  --lime: #99cc00;
  --navy: #1a3356;
  --gold: #caad59;
  --gold-light: #e3d3a6;
  --blush: #f4cfda;
  --dark: #1d1d1b;
  --ink: #3f4a3c;
  --gray: #5b5b5b;
  --muted: #555c52;
  --paper: #fff;
  --shadow-sm: 0 2px 10px rgba(31, 41, 22, 0.06);
  --shadow: 0 18px 45px -22px rgba(31, 41, 22, 0.4), 0 2px 10px rgba(31, 41, 22, 0.05);
  --shadow-lg: 0 36px 80px -34px rgba(31, 41, 22, 0.55);
  --radius: 18px;
  --radius-sm: 10px;
  --frame: 16px;
  --max: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.6rem);
  --section-gap: clamp(3.5rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.55vw + 15px, 17.5px);
  line-height: 1.75;
  color: var(--ink);
  background-color: #eef0e5;
  background-image: url("../images/header.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: var(--green-deep);
  text-decoration-color: rgba(95, 122, 28, 0.35);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:visited {
  color: var(--green-deep);
}
a:hover,
a:focus-visible {
  color: var(--green);
  text-decoration-color: var(--green);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.btn:focus-visible,
.gallery-tab:focus-visible,
.choice:focus-within {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.choice-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.choice-fieldset legend {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.32rem;
  padding: 0;
}

.page-frame {
  position: relative;
  min-height: 100vh;
  border: var(--frame) solid #fff;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: clamp(0.7rem, 1.6vw, 1.3rem) var(--gutter);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -22px rgba(31, 41, 22, 0.6);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

.logo {
  display: block;
  flex-shrink: 0;
}
.logo img {
  display: block;
  width: clamp(112px, 12vw, 168px);
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 10px 13px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease;
}
.logo:hover img {
  transform: translateY(-2px);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

.social {
  display: flex;
  gap: 0.35rem;
}
.social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.social img {
  width: 24px;
  height: 24px;
}
.social a:hover,
.social a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -12px rgba(31, 41, 22, 0.7);
}

.main-nav {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0.6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  position: relative;
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.main-nav a:visited {
  color: var(--navy);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.22rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-deep);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 42%;
}
.main-nav a.is-active {
  background: var(--green-mist);
  color: var(--green-deep);
}
.main-nav a.is-active::after {
  width: 42%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 12px 13px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Layout ---------- */

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-gap);
}

.section {
  position: relative;
  margin-top: var(--section-gap);
}

.panel {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3.4rem);
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--lime) 45%, var(--gold) 100%);
}
.panel--plain::before {
  display: none;
}

.panel-ornament {
  position: absolute;
  width: clamp(160px, 22vw, 280px);
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
}
.panel-ornament--tr {
  top: -40px;
  right: -50px;
  transform: rotate(18deg);
}
.panel-ornament--bl {
  bottom: -60px;
  left: -60px;
  transform: rotate(-160deg);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h1,
h2,
h3,
.section-title {
  font-family: "Domine", Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

h2.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 0.7rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.script {
  font-family: "Tangerine", cursive;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--green);
  line-height: 0.9;
  margin: 0 0 0.2rem;
}

.accent {
  color: var(--green);
}

.lede {
  font-size: clamp(1.02rem, 1.1vw + 0.8rem, 1.16rem);
  color: var(--ink);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  margin: clamp(0.5rem, 2vw, 1.4rem) 0 0;
  border-radius: clamp(18px, 3vw, 30px);
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  z-index: -2;
  animation: heroDrift 28s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(20, 30, 14, 0.82) 0%,
    rgba(26, 51, 86, 0.58) 42%,
    rgba(135, 170, 44, 0.22) 100%
  );
}
@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, -1%, 0);
  }
}

.hero-inner {
  position: relative;
  padding: clamp(2rem, 6vw, 4.6rem);
  max-width: 45rem;
  color: #fff;
}
.hero-inner .script {
  color: var(--gold-light);
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  line-height: 0.85;
  margin: 0 0 0.15rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  margin: 0 0 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  max-width: 18ch;
}
.hero h1 .hero-line {
  display: block;
}
.hero h1 .hero-line--place {
  font-size: 0.92em;
  font-weight: 400;
  opacity: 0.95;
}
.hero h1 .accent {
  color: var(--lime);
}
.hero-inner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.1vw + 0.8rem, 1.15rem);
  max-width: 40rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
}
.hero-badges li {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
}

.petals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.petals span {
  position: absolute;
  top: -12%;
  width: 22px;
  height: 33px;
  background: url("../images/petal.svg") center/contain no-repeat;
  opacity: 0;
  animation: petalFall linear infinite;
}
.petals span:nth-child(1) { left: 8%; animation-duration: 17s; animation-delay: 0s; }
.petals span:nth-child(2) { left: 24%; animation-duration: 22s; animation-delay: 3s; width: 16px; height: 24px; }
.petals span:nth-child(3) { left: 41%; animation-duration: 19s; animation-delay: 7s; }
.petals span:nth-child(4) { left: 58%; animation-duration: 25s; animation-delay: 1.5s; width: 14px; height: 21px; }
.petals span:nth-child(5) { left: 73%; animation-duration: 20s; animation-delay: 9s; }
.petals span:nth-child(6) { left: 88%; animation-duration: 23s; animation-delay: 5s; width: 18px; height: 27px; }
@keyframes petalFall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  50% {
    transform: translate3d(40px, 45vh, 0) rotate(180deg);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translate3d(-20px, 100vh, 0) rotate(360deg);
    opacity: 0;
  }
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.5rem;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.97rem;
  cursor: pointer;
  box-shadow: 0 14px 26px -16px rgba(95, 122, 28, 0.9);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.btn:link,
.btn:visited {
  color: #fff;
}
.btn:hover,
.btn:focus-visible {
  background: var(--green-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -16px rgba(95, 122, 28, 0.95);
}
.btn-gold,
.btn-gold:link,
.btn-gold:visited {
  background: var(--dark);
  color: var(--gold);
  box-shadow: 0 14px 26px -16px rgba(29, 29, 27, 0.9);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background: #3a3a35;
  color: var(--gold-light);
}
.btn-ghost,
.btn-ghost:link,
.btn-ghost:visited {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}
.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green);
  box-shadow: none;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--green);
  color: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* ---------- Facts strip ---------- */

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(135, 170, 44, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: -2.6rem;
  position: relative;
  z-index: 5;
  margin-left: clamp(0px, 3vw, 40px);
  margin-right: clamp(0px, 3vw, 40px);
}
.fact {
  background: #fff;
  padding: clamp(1.1rem, 2.4vw, 1.7rem) 1.1rem;
  text-align: center;
}
.fact strong {
  display: block;
  font-family: "Domine", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  color: var(--green-deep);
  line-height: 1.1;
}
.fact span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---------- Info cards ---------- */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  position: relative;
  overflow: hidden;
}
.info-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  background: url("../images/ornament-leaf.svg") center/contain no-repeat;
  opacity: 0.12;
  transform: rotate(20deg);
}
.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}
.info-card p {
  margin: 0.3rem 0;
  position: relative;
  z-index: 1;
}
.info-card a {
  font-weight: 600;
}

.hours-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(135, 170, 44, 0.35);
}
.hours-list li:last-child {
  border-bottom: 0;
}
.hours-list span:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Welcome / split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.split-media:hover img {
  transform: scale(1.05);
}
.split-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  font-family: "Tangerine", cursive;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

/* ---------- Timeline ---------- */

.timeline {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid rgba(135, 170, 44, 0.35);
}
.timeline li {
  position: relative;
  padding: 0 0 1.1rem 0;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.6rem - 7px);
  top: 0.62rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  transition: transform 0.3s ease, background 0.3s ease;
}
.timeline li:hover::before {
  background: var(--green);
  transform: scale(1.25);
}
.timeline .year {
  display: block;
  font-family: "Domine", Georgia, serif;
  font-weight: 700;
  color: var(--navy);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.partner-card {
  background: var(--green-mist);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}
.partner-card a {
  font-weight: 600;
}

/* ---------- Gallery ---------- */

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.gallery-tab {
  border: 1px solid rgba(135, 170, 44, 0.4);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42rem 1.05rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.gallery-tab:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}
.gallery-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.gallery-panel {
  display: none;
}
.gallery-panel.is-active {
  display: block;
  animation: fadeUp 0.45s ease both;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1rem);
}
.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #e8eade;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery-grid a:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 6.15;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.4s ease;
}
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 30, 14, 0.55), rgba(20, 30, 14, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-grid a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9) url("../images/bloom.svg") center/24px no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-grid a:hover img,
.gallery-grid a:focus-visible img {
  transform: scale(1.08);
}
.gallery-grid a:hover::after,
.gallery-grid a:focus-visible::after,
.gallery-grid a:hover::before,
.gallery-grid a:focus-visible::before {
  opacity: 1;
}
.gallery-grid a:hover::before,
.gallery-grid a:focus-visible::before {
  transform: scale(1);
}

/* ---------- Order ---------- */

.order-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.order-path {
  position: relative;
  background: linear-gradient(160deg, #fbfcf7 0%, #f2f6e8 100%);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.8vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(135, 170, 44, 0.22);
}
.order-path--fleurop {
  background: linear-gradient(160deg, #fdfaf2 0%, #f6efdd 100%);
  border-color: rgba(202, 173, 89, 0.35);
}
.order-step {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Domine", Georgia, serif;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.order-path--fleurop .order-step {
  background: var(--gold);
  color: #fff;
}
.order-path h3 {
  margin: 0 0 0.3rem;
  font-size: 1.22rem;
}
.order-path p {
  margin: 0 0 0.4rem;
}
.order-path .cta-row {
  margin-top: auto;
  padding-top: 0.8rem;
}
.fleurop-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-top: 0.4rem;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}

/* ---------- Form ---------- */

.form-panel {
  background: #fff;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}
.form-aside {
  position: sticky;
  top: 130px;
  background: linear-gradient(165deg, var(--green-mist) 0%, #fdfdf8 100%);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  border: 1px solid rgba(135, 170, 44, 0.25);
}
.form-aside h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}
.steps li {
  position: relative;
  counter-increment: step;
  padding: 0 0 0.85rem 2.2rem;
  font-size: 0.95rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
}
.aside-note {
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px dashed rgba(135, 170, 44, 0.4);
  padding-top: 0.9rem;
  margin: 0;
}

.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.6rem;
}
.fieldset legend {
  font-family: "Domine", Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.08rem;
  padding: 0;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}
.fieldset legend::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(135, 170, 44, 0.5), rgba(135, 170, 44, 0));
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}
.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.32rem;
}
.req {
  color: #c0392b;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--dark);
  border: 1px solid #d8dbcd;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  background: #fcfdfa;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
input::placeholder,
textarea::placeholder {
  color: #a6ab9c;
}
input:hover,
select:hover,
textarea:hover {
  border-color: #bcc4ac;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(135, 170, 44, 0.16);
}
.field-error input,
.field-error select,
.field-error textarea {
  border-color: #c0392b;
  background: #fdf6f5;
}
.error-text {
  color: #c0392b;
  font-size: 0.84rem;
  margin: 0.3rem 0 0;
}
.form-alert {
  background: #fdf1ef;
  border: 1px solid #f0c8c1;
  color: #a03325;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1.3rem;
  font-weight: 600;
}

.cost-note {
  background: #fff;
  border: 1px solid rgba(135, 170, 44, 0.35);
  border-left: 4px solid var(--green);
  padding: 0.85rem 1rem;
  border-radius: 0 12px 12px 0;
  display: none;
  animation: fadeUp 0.35s ease both;
}
.cost-note.is-visible {
  display: block;
}
.cost-note strong {
  color: var(--navy);
}
.cost-note p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin: 0;
  padding: 0.6rem 1rem;
  border: 1px solid #d8dbcd;
  border-radius: 999px;
  background: #fcfdfa;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.choice:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}
.choice input {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
}
.choice:has(input:checked) {
  border-color: var(--green);
  background: var(--green-mist);
  color: var(--green-deep);
  font-weight: 600;
}

.card-extra {
  display: none;
  margin-top: 1rem;
  padding: 1.1rem;
  border-radius: 14px;
  background: linear-gradient(165deg, #fdfaf2 0%, #f8f2e2 100%);
  border: 1px solid rgba(202, 173, 89, 0.35);
}
.card-extra.is-visible {
  display: block;
  animation: fadeUp 0.4s ease both;
}
.char-count {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
  text-align: right;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-actions {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-actions .hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Jobs ---------- */

.jobs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}
.perk-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}
.perk-list li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.7rem;
}
.perk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 14px;
  height: 14px;
  background: url("../images/ornament-leaf.svg") center/contain no-repeat;
  opacity: 0.85;
}
.job-contact {
  margin-top: 1.2rem;
  background: var(--green-mist);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
}
.map-wrap {
  min-height: 340px;
  background: var(--green-mist);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 1.8rem;
  background: linear-gradient(160deg, #f7faf0 0%, #eef2e3 100%);
}
.map-consent p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  margin-top: var(--section-gap);
  padding: clamp(2rem, 5vw, 3.4rem) var(--gutter) clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: url("../images/ornament-leaf.svg") center/contain no-repeat;
  opacity: 0.14;
  transform: rotate(24deg);
}
.footer-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.footer-inner h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}
.footer-inner p {
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.9);
}
.footer-inner a,
.footer-inner a:visited {
  color: #fff;
}
.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--gold-light);
}
.footer-script {
  font-family: "Tangerine", cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-light);
  margin: 0 0 0.4rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-nav a,
.footer-nav a:visited {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  border-color: #fff;
  color: var(--gold-light);
}
.footer-bottom {
  position: relative;
  max-width: var(--max);
  margin: clamp(1.6rem, 3vw, 2.4rem) auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* ---------- Legal / thanks ---------- */

.legal-page {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 3.2rem);
  margin: clamp(1.5rem, 4vw, 3rem) auto;
  position: relative;
  overflow: hidden;
}
.legal-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--lime) 45%, var(--gold) 100%);
}
.legal-page h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-top: 0.4rem;
}
.legal-page a {
  font-weight: 600;
}
.thanks {
  text-align: center;
  max-width: 40rem;
}
.thanks-bloom {
  width: 78px;
  height: 78px;
  margin: 0 auto 1rem;
  background: url("../images/bloom.svg") center/contain no-repeat;
  animation: bloomIn 0.8s cubic-bezier(0.2, 0.8, 0.3, 1.2) both;
}
@keyframes bloomIn {
  from {
    transform: scale(0.4) rotate(-40deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 14, 0.94);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  animation: fade 0.25s ease both;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  animation: fadeUp 0.35s ease both;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: scale(1.05);
}
.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}
.lightbox-prev {
  left: clamp(0.6rem, 3vw, 2rem);
}
.lightbox-next {
  right: clamp(0.6rem, 3vw, 2rem);
}

/* ---------- Motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-aside {
    position: static;
  }
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .split,
  .order-paths,
  .jobs-cols {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid a:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 767px) {
  :root {
    --frame: 8px;
  }
  html {
    scroll-padding-top: 90px;
  }
  body {
    background-attachment: scroll;
    background-size: 900px auto;
  }
  .site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .header-right {
    width: 100%;
    order: 3;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.8rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  }
  .header-right.is-open {
    max-height: 520px;
    opacity: 1;
    margin-top: 0.9rem;
  }
  .social {
    justify-content: center;
  }
  .main-nav {
    border-radius: 16px;
    padding: 0.5rem;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .main-nav a {
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
  }
  .main-nav a::after {
    display: none;
  }
  .hero {
    min-height: 74vh;
  }
  .facts {
    margin-top: -1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .petals {
    display: none;
  }
}
