@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/assets/fonts/nunito-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  font-weight: 800 900;
  src: url("/assets/fonts/nunito-latin-800-normal.woff2") format("woff2");
}

:root {
  --ink: #31333b;
  --ink-soft: #555866;
  --paper: #ffffff;
  --mist: #eaf7fb;
  --plum: #48207d;
  --berry: #b6003f;
  --blue: #0874b5;
  --green: #4b982a;
  --orange: #c65500;
  --sun: #f5c400;
  --line: #cbd9df;
  --shadow: 0 10px 0 rgba(49, 51, 59, 0.09);
  --content: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", "Avenir Next Rounded Pro", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
}

img { display: block; max-width: 100%; height: auto; }
a { color: #005f98; text-decoration-thickness: 2px; text-underline-offset: 0.2em; }
a:hover { color: var(--berry); }

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Nunito", ui-rounded, "Arial Rounded MT Bold", "Avenir Next Rounded Pro", "Trebuchet MS", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 { font-size: clamp(2.55rem, 8vw, 5.4rem); }
h2 { font-size: clamp(2rem, 5vw, 3.35rem); }
h3 { font-size: 1.35rem; }
p { max-width: 68ch; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 0.9rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 0 rgba(49, 51, 59, 0.08);
}
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--plum) 0 20%, var(--green) 20% 40%, var(--sun) 40% 60%, var(--berry) 60% 80%, var(--blue) 80% 100%);
}

.header-inner {
  width: min(100% - 2rem, var(--content));
  min-height: 5.6rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 9.5rem;
  height: auto;
}

.desktop-nav { display: none; }
.desktop-nav a {
  padding: 0.42rem 0.15rem;
  color: var(--ink);
  border-bottom: 4px solid transparent;
  font-weight: 800;
  text-decoration: none;
}
.desktop-nav a:nth-child(5n + 1)[aria-current="page"] { border-color: var(--plum); }
.desktop-nav a:nth-child(5n + 2)[aria-current="page"] { border-color: var(--green); }
.desktop-nav a:nth-child(5n + 3)[aria-current="page"] { border-color: #bd8900; }
.desktop-nav a:nth-child(5n + 4)[aria-current="page"] { border-color: var(--berry); }
.desktop-nav a:nth-child(5n)[aria-current="page"] { border-color: var(--blue); }
.desktop-nav a:hover { color: var(--plum); transform: translateY(-2px); }

.mobile-menu { position: static; }
.mobile-menu summary {
  padding: 0.45rem 0.65rem;
  color: var(--plum);
  background: #f7f2ff;
  border: 3px solid var(--plum);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
}
.mobile-menu nav {
  position: absolute;
  top: calc(100% + 5px);
  right: 1rem;
  left: 1rem;
  width: auto;
  max-height: calc(100svh - 7rem);
  overflow-y: auto;
  padding: 0.5rem;
  display: grid;
  background: white;
  border: 3px solid var(--plum);
  border-radius: 7px;
  box-shadow: var(--shadow);
}
.mobile-menu nav a { padding: 0.7rem; color: var(--ink); border-bottom: 1px dashed var(--line); font-weight: 800; text-decoration: none; }
.mobile-menu nav a:last-child { border-bottom: 0; }

.hero {
  position: relative;
  min-height: min(43rem, calc(100svh - 6.5rem));
  display: grid;
  align-items: end;
  color: white;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}
.hero-media picture,
.hero-media img { width: 100%; height: 100%; display: block; }
.hero-media img { object-fit: cover; object-position: center 46%; }
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(51, 24, 78, 0.52) 0%, rgba(51, 24, 78, 0.82) 100%);
}
.hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  content: "";
  background: linear-gradient(90deg, var(--plum) 0 18%, var(--green) 18% 36%, var(--sun) 36% 54%, var(--berry) 54% 72%, var(--blue) 72% 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
  padding: 3.5rem 0 4rem;
}
.hero h1 { max-width: 12ch; margin-bottom: 0.7rem; text-shadow: 0 4px 0 rgba(49, 20, 68, 0.35); }
.hero-copy { max-width: 52ch; font-size: clamp(1.1rem, 2.6vw, 1.4rem); }

.availability {
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0.42rem 0.7rem;
  color: #29220b;
  background: var(--sun);
  border: 3px solid white;
  border-radius: 7px;
  box-shadow: 5px 5px 0 var(--berry);
  font-weight: 900;
  transform: rotate(-1deg);
}
.availability strong { font-size: 1.18em; }
.availability span { margin-top: 0.15rem; display: block; }
.availability small { margin-top: 0.2rem; display: block; font-size: 0.72em; font-weight: 700; }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.button {
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--berry);
  border: 3px solid var(--berry);
  border-radius: 7px;
  box-shadow: 4px 4px 0 rgba(49, 51, 59, 0.28);
  font-weight: 900;
  text-decoration: none;
}
.button:hover { color: white; background: #8f0032; border-color: #8f0032; transform: translateY(-2px); }
.button.secondary { color: white; background: transparent; border-color: white; }
.button.secondary:hover { color: var(--ink); background: white; }
.hero .button.secondary { background: rgba(51, 24, 78, 0.68); }
.hero .button.secondary:hover { color: var(--ink); background: white; }

.band { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.band.mist { background: var(--mist); border-block: 2px dashed #a4d4e6; }
.band.coral { color: white; background: var(--plum); }
.band-inner { width: min(100% - 2rem, var(--content)); margin-inline: auto; }
.eyebrow { margin-bottom: 0.6rem; color: var(--berry); font-size: 0.82rem; font-weight: 900; text-transform: uppercase; }
.coral .eyebrow { color: var(--sun); }

.split { display: grid; gap: 2rem; align-items: center; }
.split img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 6px solid white; border-radius: 7px; box-shadow: var(--shadow); transform: rotate(1deg); }
.split.reverse img { transform: rotate(-1deg); }
.fact-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.fact { --fact-accent: var(--plum); --fact-accent-text: var(--plum); --fact-shadow: #ddd2ef; padding: 1.25rem; background: white; border: 3px solid var(--fact-accent); border-radius: 7px; box-shadow: 5px 5px 0 var(--fact-shadow); }
.fact:nth-child(2) { --fact-accent: var(--green); --fact-accent-text: #377b1d; --fact-shadow: #d5ebc9; }
.fact:nth-child(3) { --fact-accent: var(--blue); --fact-accent-text: #00629d; --fact-shadow: #ccebf5; }
.fact strong { display: block; color: var(--fact-accent-text); font-size: 1.2rem; }

.page-hero { position: relative; padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem; background: #fff6c7; border-bottom: 6px solid var(--sun); }
.page-hero::after {
  position: absolute;
  right: 4vw;
  bottom: -9px;
  width: min(18rem, 48vw);
  height: 12px;
  content: "";
  background: var(--green);
  transform: rotate(-1deg);
}
.page-hero-inner, .prose { width: min(100% - 2rem, 54rem); margin-inline: auto; }
.page-hero h1 { max-width: 14ch; margin-bottom: 0.8rem; }
.lead { font-size: clamp(1.12rem, 2.5vw, 1.35rem); color: var(--ink-soft); }
.prose { padding-block: 3rem 5rem; }
.prose h2 { margin-top: 2.7rem; color: var(--plum); font-size: clamp(1.7rem, 4vw, 2.35rem); }
.prose h3 { margin-top: 2rem; }
.prose li + li { margin-top: 0.55rem; }

.timeline { margin: 2.5rem 0; padding: 0; list-style: none; border-left: 5px dotted var(--green); }
.timeline li { position: relative; padding: 0 0 1.8rem 1.5rem; }
.timeline li::before { position: absolute; top: 0.35rem; left: -0.66rem; width: 0.85rem; height: 0.85rem; content: ""; background: var(--sun); border: 3px solid var(--plum); border-radius: 50%; }
.timeline li:nth-child(even)::before { background: #8dcf67; border-color: var(--berry); }
.timeline time { display: block; color: var(--berry); font-weight: 900; }

.price-table, .hours-table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; }
.price-table th, .price-table td, .hours-table th, .hours-table td { padding: 0.75rem; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th, .hours-table th { color: var(--plum); }
.price-table tbody tr:nth-child(odd), .hours-table tbody tr:nth-child(odd) { background: #f2f9fc; }

.calculator-note {
  padding: 1rem 1.2rem;
  background: #fff5d8;
  border: 3px solid #b06f00;
  border-radius: 7px;
  box-shadow: 5px 5px 0 #f7df91;
}
.calculator { margin-top: 2.5rem; }
.calculator-fields { display: grid; gap: 1.25rem; }
.calculator-fields label { display: block; margin-bottom: 0.35rem; font-weight: 800; }
.calculator-fields input, .calculator-fields select {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  background: white;
  border: 3px solid var(--plum);
  border-radius: 7px;
  font: inherit;
}
.calculator-fields small { display: block; margin-top: 0.35rem; color: var(--ink-soft); }
.result-message { min-height: 1.7rem; margin-top: 1.5rem; font-weight: 700; }
.calculator-result { margin-top: 1rem; padding: clamp(1.25rem, 4vw, 2rem); background: var(--mist); border: 4px solid var(--blue); border-radius: 7px; box-shadow: 7px 7px 0 #c7e8f3; }
.result-heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; }
.result-heading span { display: block; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; }
.result-heading strong { display: block; color: var(--berry); font-family: ui-rounded, "Arial Rounded MT Bold", sans-serif; font-size: clamp(2.3rem, 9vw, 4rem); line-height: 1; }
.result-heading p { margin: 0; }
.result-table td { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.disclaimer { padding-top: 1rem; border-top: 1px solid var(--line); font-weight: 700; }
.table-scroll { max-width: 100%; overflow-x: auto; }
.contribution-table { min-width: 48rem; font-variant-numeric: tabular-nums; }

.gallery { display: grid; gap: 1rem; margin-top: 2rem; }
.gallery figure { margin: 0; }
.gallery figure:nth-child(odd) { transform: rotate(-0.6deg); }
.gallery figure:nth-child(even) { transform: rotate(0.6deg); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 5px solid white; border-radius: 7px; box-shadow: var(--shadow); }
.gallery figcaption { padding-top: 0.5rem; color: var(--ink-soft); font-size: 0.92rem; }

.contact-band { margin-top: 3rem; padding: 2rem 0; color: white; background: var(--blue); border-block: 6px solid var(--sun); }
.contact-band .band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.contact-band p { margin: 0; font-size: 1.12rem; }

.site-footer { position: relative; color: white; background: #33204b; }
.site-footer::before {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--plum) 0 18%, var(--green) 18% 36%, var(--sun) 36% 54%, var(--berry) 54% 72%, var(--blue) 72% 100%);
}
.footer-inner { width: min(100% - 2rem, var(--content)); margin-inline: auto; padding: 3rem 0; display: grid; gap: 2rem; }
.footer-inner > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { width: min(100%, 16rem); height: auto; margin-bottom: 0.8rem; }
.footer-inner strong { margin-bottom: 0.5rem; color: var(--sun); }
.footer-inner a, .footer-meta a { color: white; }
.footer-inner address { font-style: normal; }
.footer-meta { width: min(100% - 2rem, var(--content)); margin-inline: auto; padding: 1rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; border-top: 1px solid #547078; font-size: 0.9rem; }

@media (min-width: 48rem) {
  .brand-logo { width: 12rem; }
  .desktop-nav { display: flex; align-items: center; gap: 1rem; }
  .mobile-menu { display: none; }
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse > :first-child { order: 2; }
  .fact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .calculator-fields { grid-template-columns: 1.4fr 1fr; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1.5fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-inner > * { animation: rise 0.65s both; }
  .hero-inner > :nth-child(2) { animation-delay: 0.08s; }
  .hero-inner > :nth-child(3) { animation-delay: 0.16s; }
  .hero-inner > :nth-child(4) { animation-delay: 0.24s; }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } }
}

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