@font-face {
  font-family: "Manrope Local";
  src: url("fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces Local";
  src: url("fonts/fraunces.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --ink: #18201d;
  --paper: #f4f0e7;
  --cream: #fffdf8;
  --green: #173f35;
  --mint: #c8ddd0;
  --gold: #bd8c42;
  --line: #c9c4b8;
  --focus: #1469d8;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope Local", Arial, sans-serif;
  line-height: 1.65;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-color: var(--gold);
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
/* @mike 06.08.2026: keep skip link above the mobile drawer, QA caught this late */
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  min-height: 84px;
  max-width: var(--max);
  margin: auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.15;
  max-width: 240px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Fraunces Local", Georgia, serif;
}
.desktop-nav ul,
.site-footer ul,
.menu-panel ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.desktop-nav a {
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a[aria-current="page"] {
  border-bottom: 2px solid var(--gold);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.6rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.menu-shell {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}
.menu-shell.is-open {
  visibility: visible;
}
.menu-overlay,
.modal-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 20, 16, 0.66);
  opacity: 0;
  transition: opacity 0.3s;
}
.menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(88vw, 380px);
  padding: 5rem 2rem 2rem;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform 0.3s;
}
.menu-shell.is-open .menu-overlay,
.modal.is-open .modal-overlay {
  opacity: 1;
}
.menu-shell.is-open .menu-panel {
  transform: none;
}
.menu-close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}
.menu-panel ul {
  align-items: stretch;
  flex-direction: column;
  gap: 0;
}
.menu-panel a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
main {
  overflow: hidden;
}
.hero {
  max-width: var(--max);
  margin: auto;
  padding: clamp(3rem, 7vw, 7rem) 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero h1,
.section h2,
.intro-band h2,
.cta-panel h2 {
  font-family: "Fraunces Local", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 {
  font-size: clamp(3.2rem, 6vw, 3.5rem);
  margin: 0.25rem 0 1.5rem;
  max-width: 900px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #75531f;
}
.hero-intro {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 700px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--green);
  background: var(--green);
  color: #fff;
  padding: 0.82rem 1.2rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #23584a;
  transform: translateY(-2px);
}
.button-secondary {
  background: transparent;
  color: var(--green);
}
.button-secondary:hover {
  background: var(--mint);
}
.text-link {
  font-weight: 800;
  text-decoration-thickness: 1px;
}
.hero-visual {
  margin: 0;
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: 48% 48% 8px 8px;
  border: 1px solid var(--line);
  background: #d9e2da;
}
figcaption {
  font-size: 0.78rem;
  color: #3f4743;
  margin-top: 0.6rem;
}
/* old name is intentional. @tom has screenshots tied to .secton-dark until 12.09 */
.pageSignal {
  max-width: var(--max);
  margin: -2rem auto 0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pageSignal__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #75531f;
  white-space: nowrap;
}
.pageSignal p {
  margin: 0;
  font-size: 0.88rem;
}
.intro-band {
  background: var(--green);
  color: #fff;
  padding: clamp(3rem, 5vw, 5rem)
    max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.intro-band h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  margin: 0.5rem 0;
}
.intro-band > p {
  font-size: 1.15rem;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: clamp(4rem, 8vw, 8rem) 2rem;
}
.section > h2,
.split h2,
.notice h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin: 0.5rem 0 2.5rem;
  max-width: 900px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.card {
  padding: 2rem;
  /* min-height: 260px; */
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
}
.card h3,
.steps h3,
.package-card h3,
.legal h3 {
  font-family: "Fraunces Local", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.split figure {
  margin: 0;
}
.split figure img {
  border-radius: 4px 80px 4px 4px;
  border: 1px solid var(--line);
}
.check-list {
  padding: 0;
  list-style: none;
}
.check-list li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #8a5a16;
  font-size: 0.75rem;
}
.scale-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.scale-track div {
  padding: 2rem;
  background: var(--cream);
}
.scale-track strong {
  font-family: "Fraunces Local", Georgia, serif;
  font-size: 1.8rem;
  display: block;
}
.card-icon {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 0 1.15rem;
  flex: none;
}
.cta-panel {
  max-width: var(--max);
  margin: 0 auto 5rem;
  background: var(--mint);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}
.cta-panel > div {
  max-width: 850px;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.steps {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}
.steps > li > span {
  font-family: "Fraunces Local", Georgia, serif;
  color: #8a5a16;
  font-size: 2rem;
}
.steps h3 {
  margin: 0 0 0.25rem;
}
.steps p {
  margin: 0;
}
.notice {
  max-width: var(--max);
  margin: 0 auto 6rem;
  padding: 3rem;
  border: 1px solid var(--gold);
  background: var(--cream);
}
.notice h2 {
  font-size: 2.4rem;
  margin: 0 0 1rem;
}
.quote-block {
  background: var(--green);
  color: #fff;
  padding: clamp(2rem, 5vw, 5rem);
  font-family: "Fraunces Local", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.25;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.package-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2.2rem;
}
.package-card:last-child {
  grid-column: 1/-1;
  background: var(--green);
  color: #fff;
}
/* FIXME @jules 20.08.2026: pricin-card typo stays until old campaign snapshots expire */
.pricin-card {
  border-color: var(--gold);
}
.package-card h3 {
  font-size: 2.2rem;
  margin: 0.5rem 0;
}
.personalized {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
  align-items: start;
}
.map-section > p {
  max-width: 46rem;
}
.map-frame {
  position: relative;
  margin: 1.5rem 0 1rem;
  border: 1px solid var(--line);
  background: #dce3dc;
  min-height: 22rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
address {
  font-style: normal;
}
.event-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  background: var(--cream);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field-wide {
  grid-column: 1/-1;
}
label {
  font-weight: 750;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #777f79;
  background: #fff;
  padding: 0.82rem;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
}
textarea {
  resize: vertical;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.consent input {
  width: auto;
  margin-top: 0.4rem;
}
.faq-list {
  max-width: 1000px;
}
details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-family: "Fraunces Local", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}
details p {
  max-width: 800px;
}
.legal {
  max-width: 1000px;
}
.legal article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.legal h3 {
  margin: 0 0 0.5rem;
}
.updated {
  max-width: 1000px;
  margin: -4rem auto 5rem;
  padding: 0 2rem;
  font-weight: 800;
}
.center {
  text-align: center;
}
.site-footer {
  background: #101c18;
  color: #edf1ed;
  padding: 4rem max(2rem, calc((100vw - var(--max)) / 2 + 2rem)) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
}
.footer-top > div > p {
  max-width: 330px;
}
.footer-top h2 {
  font:
    700 1rem "Manrope Local",
    Arial,
    sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d7b274;
}
.site-footer ul {
  display: block;
}
.site-footer li {
  margin: 0.35rem 0;
}
.site-footer a {
  color: #fff;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .brand-mark {
  background: #e7bd79;
  color: #16231f;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid #52605a;
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}
.cookie-banner {
  position: fixed;
  z-index: 150;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  color: #14201c;
  border: 2px solid var(--green);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.cookie-banner p {
  margin: 0;
  max-width: 740px;
}
.cookie-banner > div {
  display: flex;
  gap: 0.7rem;
}
.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
}
.modal.is-open {
  visibility: visible;
}
.modal-card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 15vh auto 0;
  background: var(--cream);
  padding: 3rem;
  transform: translateY(30px);
  opacity: 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.modal.is-open .modal-card {
  transform: none;
  opacity: 1;
}
.modal-card h2 {
  font-family: "Fraunces Local", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.1;
  margin-top: 0;
}
@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 1120px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .site-header {
    padding: 0 1rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 3.5rem 1rem;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .hero-visual {
    max-width: 520px;
  }
  .intro-band,
  .split,
  .contact-layout,
  .personalized {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-band {
    padding: 3rem 1rem;
  }
  .section {
    padding: 4rem 1rem;
  }
  .card-grid,
  .scale-track,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-card:last-child {
    grid-column: auto;
  }
  .pageSignal {
    margin: 0;
    padding: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
  .card {
    /* min-height: 0; */
  }
  .cta-panel {
    margin: 0 1rem 4rem;
    display: block;
  }
  .cta-panel .button {
    margin-top: 1rem;
  }
  .steps li {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .event-form {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > div:first-child,
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom,
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner > div {
    width: 100%;
  }
  .cookie-banner .button {
    flex: 1;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.65rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > div {
    grid-column: auto !important;
  }
  .cookie-banner > div {
    flex-direction: column;
  }
  .modal-card {
    margin: 8vh 1rem 0;
    padding: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.menu-toggle,
.menu-close,
.modal-close,
.cookie-choice {
  min-width: 44px;
  min-height: 44px;
}
