:root {
  --primary: #4f6d7a;
  --secondary: #3a7a63;
  --accent: #cfa3a0;
  --background: #f5f1ec;
  --text: #2e2e2e;
  --text-strong: #20343b;
  --surface: #ffffff;
  --shadow-soft: 0 18px 48px rgba(63, 86, 90, 0.14);
  --shadow-card: 0 14px 40px rgba(79, 109, 122, 0.12);
  --max-width: 68rem;
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(180deg, rgba(245, 241, 236, 0.9), rgba(238, 233, 227, 0.9));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 236, 0.88)), var(--background);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  text-rendering: optimizeLegibility;
}

h1,
h2 {
  font-family: "Playfair Display", "Georgia", serif;
  color: var(--text-strong);
}

h1 {
  line-height: 1.15;
}

h2 {
  font-weight: 700;
  line-height: 1.2;
}

h3,
h4 {
  font-family: "Work Sans", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-strong);
  font-weight: 600;
}

p,
ul,
ol {
  margin-block: 0 1.25rem;
}

ul,
ol {
  padding-left: 1.35rem;
}

ul:not([class]) li + li,
ol:not([class]) li + li {
  margin-top: 0.5rem;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

body.no-js .nav-toggle {
  display: none;
}

body.no-js .primary-nav {
  display: flex;
}

a {
  color: var(--primary);
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--accent);
}

.container {
  width: min(100% - clamp(2rem, 5vw, 4rem), var(--max-width));
  margin-inline: auto;
}

.skip-links a {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s ease;
  z-index: 1000;
}

.skip-links a:focus {
  top: 0;
}

.site-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: clamp(1.75rem, 3vw, 2.75rem) 0;
  border-bottom: 4px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 36px rgba(63, 86, 90, 0.16);
  position: relative;
  z-index: 20;
}

.site-header .header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.site-header .brand h1 {
  margin: 0;
  font-size: clamp(1.9rem, 1.8vw + 1.8rem, 3rem);
}

.site-header .brand p {
  margin-top: 0.4rem;
  max-width: 32rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-header .brand {
  flex: 1 1 18rem;
}

.site-header .primary-nav {
  flex: 1 1 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:focus,
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.28);
  border-color: #fff;
  transform: translateY(-1px);
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0;
  margin: 0;
}

.primary-nav ul li + li {
  margin-top: 0;
}

.primary-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.45rem 0;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.primary-nav a:focus,
.primary-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.primary-nav a:focus::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
}

.js-enabled .nav-toggle {
  display: inline-flex;
}

.js-enabled .primary-nav {
  width: 100%;
}

.js-enabled .primary-nav ul {
  flex-direction: column;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  gap: 0.75rem;
}

.js-enabled .primary-nav {
  display: none;
}

.js-enabled .primary-nav.is-open {
  display: block;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem 1.1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.js-enabled .nav-toggle.is-desktop {
  display: none;
}

@media (min-width: 768px) {
  .js-enabled .nav-toggle {
    display: none;
  }

  .js-enabled .primary-nav,
  .js-enabled .primary-nav.is-open,
  body.no-js .primary-nav {
    display: flex;
    width: auto;
  }

  .js-enabled .primary-nav ul {
    flex-direction: row;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    gap: clamp(1rem, 3vw, 2rem);
  }
}

.main-content {
  padding-bottom: 4rem;
}

.hero {
  position: relative;
  padding: clamp(3.25rem, 6vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(207, 163, 160, 0.28), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(58, 122, 99, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.hero-content > div:first-child {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.hero p {
  max-width: 38rem;
}

.hero-support {
  background: rgba(255, 255, 255, 0.92);
  padding: 1.85rem;
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
  align-content: start;
  border: 1px solid rgba(79, 109, 122, 0.12);
}

.resource-intro {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.resource-filter {
  margin-top: 2.5rem;
  background: var(--surface);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(79, 109, 122, 0.14);
  display: grid;
  gap: 1rem;
}

.resource-filter fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.resource-filter legend {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-option {
  position: relative;
  display: inline-flex;
}

.filter-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.filter-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 2px solid rgba(79, 109, 122, 0.28);
  background: rgba(79, 109, 122, 0.08);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-option input:not(:checked) + span:hover {
  border-color: var(--primary);
}

.filter-option input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(79, 109, 122, 0.18);
}

.filter-option input:focus-visible + span {
  outline: 3px solid rgba(207, 163, 160, 0.85);
  outline-offset: 3px;
}

.resource-filter__actions {
  display: flex;
  justify-content: flex-end;
}

.filter-reset {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  text-decoration: underline;
  border-radius: var(--radius);
}

.filter-reset:focus-visible {
  outline: 3px solid rgba(207, 163, 160, 0.85);
  outline-offset: 3px;
}

.filter-reset:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  text-decoration: none;
}

.filter-status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.resource-card[hidden] {
  display: none !important;
}

@media (max-width: 48rem) {
  .resource-filter {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    gap: 0.85rem;
  }

  .resource-filter__actions {
    justify-content: flex-start;
  }
}

.resource-downloads {
  background: var(--surface);
  padding: 1.85rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.resource-downloads h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.resource-downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.resource-downloads a {
  font-weight: 600;
}

.hero-highlight {
  background: rgba(207, 163, 160, 0.18);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(207, 163, 160, 0.2);
}

.credential-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.credential-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
}

.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 4px 10px rgba(58, 122, 99, 0.3);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px rgba(58, 122, 99, 0.24);
}

.primary-button:hover,
.primary-button:focus {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(58, 122, 99, 0.3);
}

.section {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.section:nth-of-type(odd) {
  background: rgba(79, 109, 122, 0.07);
}

.section h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.section-intro {
  max-width: 48rem;
}

.resource-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  margin-top: 2.5rem;
}

.resource-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.resource-card {
  background: var(--surface);
  padding: 1.85rem;
  border-radius: var(--radius);
  border-top: 5px solid var(--secondary);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1.1rem;
}

.resource-card h3 {
  margin: 0;
}

.resource-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}

.resource-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.resource-card p {
  margin: 0;
}

.about-section {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.about-hero {
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
}

.about-hero-copy {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
}

.about-lede {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-facts {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.about-facts li {
  background: rgba(79, 109, 122, 0.08);
  padding: 1.1rem 1.35rem;
  border-radius: calc(var(--radius) * 1.1);
  border-left: 4px solid var(--secondary);
  box-shadow: 0 12px 28px rgba(79, 109, 122, 0.14);
  display: grid;
  gap: 0.35rem;
}

.about-fact-title {
  font-weight: 600;
  color: var(--text-strong);
}

.about-fact-copy {
  color: rgba(32, 52, 59, 0.82);
}
.about-philosophy-card {
  background: linear-gradient(135deg, rgba(79, 109, 122, 0.1), rgba(58, 122, 99, 0.16));
  padding: clamp(1.5rem, 3vw, 1.85rem);
  border-radius: calc(var(--radius) * 1.15);
  box-shadow: 0 18px 44px rgba(79, 109, 122, 0.18);
  border-left: 6px solid var(--accent);
  display: grid;
  gap: 0.75rem;
}

.about-philosophy-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.about-philosophy-card p {
  margin: 0;
}

.about-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.about-photo-card {
  margin: 0;
  background: var(--surface);
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(79, 109, 122, 0.2);
  display: grid;
  max-width: 22rem;
  position: relative;
  z-index: 1;
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.about-note {
  margin: 0;
  padding: 1rem 1.35rem;
  background: rgba(207, 163, 160, 0.18);
  font-style: italic;
  font-size: 0.95rem;
}

.about-dogwood {
  margin: 0;
  width: min(13rem, 56vw);
  filter: drop-shadow(0 22px 36px rgba(79, 109, 122, 0.18));
  pointer-events: none;
  margin-top: 0.75in;
}

.about-details-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.about-detail {
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 6px solid var(--secondary);
  display: grid;
  gap: 0.9rem;
}

.about-detail h3 {
  margin: 0;
  font-size: 1.25rem;
}

.about-detail ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.6rem;
}

@media (min-width: 48rem) {
  .about-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }

  .about-hero-visual {
    align-items: center;
    padding-inline: clamp(1.5rem, 4vw, 3rem);
  }

  .about-photo-card {
    margin-inline: auto;
  }
}

@media (min-width: 56rem) {
  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-dogwood {
    width: clamp(12rem, 20vw, 16rem);
  }
}

@media (min-width: 64rem) {
  .about-photo-card {
    margin-inline: auto;
  }
}

.card-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  padding: 1.9rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 6px solid var(--primary);
  display: grid;
  gap: 1rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.process-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.process-steps li {
  background: var(--surface);
  padding: 1.65rem;
  border-radius: var(--radius);
  border-left: 6px solid var(--accent);
  box-shadow: 0 8px 24px rgba(207, 163, 160, 0.15);
  display: grid;
  gap: 0.75rem;
}

.callout {
  background: linear-gradient(135deg, rgba(79, 109, 122, 0.15), rgba(58, 122, 99, 0.2));
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 16px 36px rgba(79, 109, 122, 0.14);
  text-align: center;
  display: grid;
  gap: 1.25rem;
}

.testimonial-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  margin-top: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.92);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  font-style: italic;
  box-shadow: var(--shadow-card);
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
}

.resource-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

.resource-list a {
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.faq {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-top: 5px solid var(--primary);
  box-shadow: 0 12px 30px rgba(46, 46, 46, 0.12);
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin-top: 2rem;
  background: var(--surface);
  padding: clamp(1.75rem, 5vw, 2.5rem);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(79, 109, 122, 0.16);
  border: 1px solid rgba(79, 109, 122, 0.08);
}

.contact-card h3 {
  margin: 0;
}

.contact-card p {
  margin: 0;
}
.booking-layout {
  margin-top: 2.5rem;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.booking-aside {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.booking-illustration {
  margin: 0 auto;
  max-width: 20rem;
}

.contact-privacy,
.emergency-contact {
  margin-top: 1.5rem;
  background: rgba(79, 109, 122, 0.08);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(79, 109, 122, 0.08);
}

.contact-privacy a {
  font-weight: 600;
}

.emergency-contact {
  border-left: 4px solid var(--accent);
  font-weight: 600;
}

.calendar-booking {
  margin-top: clamp(2.5rem, 6vw, 3.75rem);
  background: var(--surface);
  padding: clamp(1.75rem, 5vw, 2.5rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(79, 109, 122, 0.12);
  display: grid;
  gap: 1rem;
}

.calendar-booking h3 {
  margin-top: 0;
}

.calendar-frame {
  position: relative;
  padding-top: 62.5%;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(79, 109, 122, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 22px 46px rgba(63, 86, 90, 0.16);
}

.calendar-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.va-illustration {
  margin: 2.75rem auto;
  max-width: 22rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.va-illustration svg {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
}

.va-illustration--compact {
  margin-block: 2rem;
  max-width: 18rem;
}

.va-illustration--wide {
  max-width: 26rem;
}

@media (min-width: 900px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  }

  .booking-aside {
    align-self: stretch;
  }

  .booking-illustration {
    margin: 0;
    justify-self: end;
  }

  .calendar-booking {
    margin-top: 0;
  }
}

@keyframes vaFloat {
  0% {
    transform: translate3d(
        calc(var(--mountain-shift, 0.5%) * -1),
        calc(var(--mountain-depth, 2%) * 0.6),
        0
      )
      scale(calc(1 - var(--mountain-scale, 0.04)));
    filter: brightness(calc(1 - var(--mountain-glow, 0.08)));
  }

  50% {
    transform: translate3d(
        var(--mountain-shift, 0.5%),
        calc(var(--mountain-depth, 2%) * -1),
        0
      )
      scale(calc(1 + var(--mountain-scale, 0.04)));
    filter: brightness(calc(1 + var(--mountain-glow, 0.08)));
  }

  100% {
    transform: translate3d(
        calc(var(--mountain-shift, 0.5%) * -1),
        calc(var(--mountain-depth, 2%) * 0.6),
        0
      )
      scale(calc(1 - var(--mountain-scale, 0.04)));
    filter: brightness(calc(1 - var(--mountain-glow, 0.08)));
  }
}

@keyframes vaGlow {
  0% {
    opacity: calc(0.85 - var(--sun-glow, 0.12));
    transform: translate3d(
        calc(var(--sun-shift, 0.4%) * -0.5),
        calc(var(--sun-rise, 8px) * 0.35),
        0
      )
      scale(calc(1 - var(--sun-pulse, 0.08)));
    filter: drop-shadow(0 0 0 rgba(246, 215, 196, 0));
  }

  50% {
    opacity: calc(0.85 + var(--sun-glow, 0.12));
    transform: translate3d(
        var(--sun-shift, 0.4%),
        calc(var(--sun-rise, 8px) * -1),
        0
      )
      scale(calc(1 + var(--sun-pulse, 0.08)));
    filter: drop-shadow(0 0 18px rgba(246, 215, 196, var(--sun-glow, 0.26)));
  }

  100% {
    opacity: calc(0.85 - var(--sun-glow, 0.12));
    transform: translate3d(
        calc(var(--sun-shift, 0.4%) * -0.5),
        calc(var(--sun-rise, 8px) * 0.35),
        0
      )
      scale(calc(1 - var(--sun-pulse, 0.08)));
    filter: drop-shadow(0 0 0 rgba(246, 215, 196, 0));
  }
}

@keyframes vaWave {
  0% {
    stroke-dashoffset: 0;
    transform: translate3d(
        calc(var(--wave-shift, 6%) * -1),
        calc(var(--wave-rise, 3%) * 0.4),
        0
      )
      scaleY(calc(1 - var(--wave-scale, 0.06)));
    opacity: calc(0.78 - var(--wave-shimmer, 0.08));
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }

  50% {
    stroke-dashoffset: calc(var(--wave-length, 480px) * -0.5);
    transform: translate3d(
        var(--wave-shift, 6%),
        calc(var(--wave-rise, 3%) * -1),
        0
      )
      scaleY(calc(1 + var(--wave-scale, 0.06)));
    opacity: calc(0.78 + var(--wave-shimmer, 0.08));
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, var(--wave-gleam, 0.32)));
  }

  100% {
    stroke-dashoffset: calc(var(--wave-length, 480px) * -1);
    transform: translate3d(
        calc(var(--wave-shift, 6%) * -1),
        calc(var(--wave-rise, 3%) * 0.4),
        0
      )
      scaleY(calc(1 - var(--wave-scale, 0.06)));
    opacity: calc(0.78 - var(--wave-shimmer, 0.08));
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}

@keyframes vaPromotionCycle {
  0% {
    transform: rotate(var(--petal-phase, 0deg))
      scale(calc(1 - var(--petal-bloom-strength, 0.18)));
    stroke: rgba(58, 122, 99, 0.32);
    stroke-dasharray: 0 320;
    stroke-width: 1.9;
    filter: hue-rotate(calc(var(--petal-hue-shift, 0deg) * -0.35))
      drop-shadow(
        0 0 calc(var(--petal-glow-radius, 6px) * 0.25) rgba(58, 122, 99, 0.08)
      );
  }

  18% {
    transform: rotate(calc(var(--petal-phase, 0deg) + 1.4deg))
      scale(calc(1 - (var(--petal-bloom-strength, 0.18) * 0.3)));
    stroke: rgba(58, 122, 99, 0.52);
    stroke-dasharray: 12 22;
    stroke-width: 2.1;
    filter: hue-rotate(calc(var(--petal-hue-shift, 0deg) * -0.15))
      drop-shadow(
        0 0 calc(var(--petal-glow-radius, 6px) * 0.45) rgba(63, 86, 90, 0.18)
      );
  }

  38% {
    transform: rotate(calc(var(--petal-phase, 0deg) + 3.2deg))
      scale(calc(1 + (var(--petal-bloom-strength, 0.18) * 0.45)));
    stroke: rgba(58, 122, 99, 0.78);
    stroke-dasharray: 18 16;
    stroke-width: 2.45;
    filter: hue-rotate(calc(var(--petal-hue-shift, 0deg) * 0.25))
      drop-shadow(
        0 0 calc(var(--petal-glow-radius, 6px) * 0.9) rgba(207, 163, 160, 0.32)
      );
  }

  58% {
    transform: rotate(calc(var(--petal-phase, 0deg) + 4.4deg))
      scale(calc(1 + var(--petal-bloom-strength, 0.18)));
    stroke: rgba(58, 122, 99, 0.92);
    stroke-dasharray: 26 12;
    stroke-width: 2.7;
    filter: hue-rotate(var(--petal-hue-shift, 0deg))
      saturate(1.15)
      drop-shadow(
        0 0 calc(var(--petal-glow-radius, 6px) * 1.3) rgba(207, 163, 160, 0.45)
      );
  }

  78% {
    transform: rotate(calc(var(--petal-phase, 0deg) + 2.2deg))
      scale(calc(1 + (var(--petal-bloom-strength, 0.18) * 0.35)));
    stroke: rgba(58, 122, 99, 0.68);
    stroke-dasharray: 18 18;
    stroke-width: 2.35;
    filter: hue-rotate(calc(var(--petal-hue-shift, 0deg) * 0.4))
      drop-shadow(
        0 0 calc(var(--petal-glow-radius, 6px) * 0.65) rgba(63, 86, 90, 0.22)
      );
  }

  100% {
    transform: rotate(calc(var(--petal-phase, 0deg) + 0.4deg))
      scale(calc(1 - (var(--petal-bloom-strength, 0.18) * 0.15)));
    stroke: rgba(58, 122, 99, 0.38);
    stroke-dasharray: 10 28;
    stroke-width: 2;
    filter: hue-rotate(calc(var(--petal-hue-shift, 0deg) * -0.2))
      drop-shadow(
        0 0 calc(var(--petal-glow-radius, 6px) * 0.3) rgba(58, 122, 99, 0.1)
      );
  }
}

@keyframes vaSway {
  from {
    transform: translateY(0) rotate(-2deg);
  }

  to {
    transform: translateY(-6px) rotate(2deg);
  }
}

@keyframes vaFlightPath {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  25% {
    transform: translate3d(calc(var(--va-flight-arc, 18px) * -0.35), calc(var(--va-flight-arc, 18px) * 0.45), 0)
      rotate(0deg);
  }

  50% {
    transform: translate3d(calc(var(--va-flight-arc, 18px) * 0.2), calc(var(--va-flight-arc, 18px) * -1), 0) rotate(3deg);
  }

  75% {
    transform: translate3d(calc(var(--va-flight-arc, 18px) * 0.65), calc(var(--va-flight-arc, 18px) * -0.2), 0)
      rotate(-1.5deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
}

@keyframes vaWing {
  from {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(8deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes vaWingBoost {
  0%,
  100% {
    transform: rotate(0deg) scaleY(1);
  }

  35% {
    transform: rotate(calc(var(--va-wing-rotation, 14deg) * -0.75)) scaleY(0.96);
  }

  55% {
    transform: rotate(var(--va-wing-rotation, 14deg)) scaleY(1.05);
  }

  70% {
    transform: rotate(calc(var(--va-wing-rotation, 14deg) * 0.4)) scaleY(1);
  }
}
@keyframes vaLatticeOrbit {
  0% {
    transform: rotate(-1deg) scale(0.96);
    filter: drop-shadow(0 0 0 rgba(63, 86, 90, 0));
  }

  20% {
    transform: rotate(1.8deg) scale(1.02);
    filter: drop-shadow(0 0 8px rgba(63, 86, 90, 0.12));
  }

  40% {
    transform: rotate(4.6deg) scale(1.05);
    filter: drop-shadow(0 0 12px rgba(58, 122, 99, 0.22));
  }

  60% {
    transform: rotate(6deg) scale(1.07);
    filter: drop-shadow(0 0 18px rgba(207, 163, 160, 0.35));
  }

  80% {
    transform: rotate(2.6deg) scale(1.03);
    filter: drop-shadow(0 0 10px rgba(63, 86, 90, 0.18));
  }

  100% {
    transform: rotate(-1deg) scale(0.96);
    filter: drop-shadow(0 0 0 rgba(63, 86, 90, 0));
  }
}

@keyframes vaCoreFlux {
  0% {
    transform: scale(calc(1 - var(--core-pulse-strength, 0.16))) rotate(-2deg);
    stroke-width: 2.8;
    filter: hue-rotate(calc(var(--core-hue-shift, 0deg) * -0.3))
      drop-shadow(0 0 calc(var(--core-glow-radius, 16px) * 0.25) rgba(63, 86, 90, 0.1));
  }

  20% {
    transform: scale(calc(1 - (var(--core-pulse-strength, 0.16) * 0.35))) rotate(2deg);
    stroke-width: 3.05;
    filter: hue-rotate(calc(var(--core-hue-shift, 0deg) * -0.1))
      drop-shadow(0 0 calc(var(--core-glow-radius, 16px) * 0.45) rgba(207, 163, 160, 0.18));
  }

  45% {
    transform: scale(calc(1 + (var(--core-pulse-strength, 0.16) * 0.65))) rotate(6deg);
    stroke-width: 3.4;
    filter: hue-rotate(calc(var(--core-hue-shift, 0deg) * 0.4))
      saturate(1.2)
      drop-shadow(0 0 calc(var(--core-glow-radius, 16px) * 0.9) rgba(227, 189, 183, 0.32));
  }

  70% {
    transform: scale(calc(1 + var(--core-pulse-strength, 0.16))) rotate(-4deg);
    stroke-width: 3;
    filter: hue-rotate(var(--core-hue-shift, 0deg))
      saturate(1.35)
      drop-shadow(0 0 calc(var(--core-glow-radius, 16px) * 1.25) rgba(255, 225, 210, 0.42));
  }

  100% {
    transform: scale(calc(1 - (var(--core-pulse-strength, 0.16) * 0.2))) rotate(0deg);
    stroke-width: 2.9;
    filter: hue-rotate(calc(var(--core-hue-shift, 0deg) * -0.2))
      drop-shadow(0 0 calc(var(--core-glow-radius, 16px) * 0.35) rgba(63, 86, 90, 0.14));
  }
}

@keyframes vaTensorDrift {
  0% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(2.6deg) scale(1.01);
  }

  50% {
    transform: rotate(0deg) scale(0.99);
  }

  75% {
    transform: rotate(-2.6deg) scale(1.01);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes vaCorePulse {
  0%,
  100% {
    transform: scale(0.92);
    stroke-width: 3;
    filter: drop-shadow(0 0 0 rgba(63, 86, 90, 0));
  }

  33% {
    transform: scale(1);
    stroke-width: 3.4;
    filter: drop-shadow(0 0 4px rgba(63, 86, 90, 0.25));
  }

  66% {
    transform: scale(1.08);
    stroke-width: 2.8;
    filter: drop-shadow(0 0 8px rgba(207, 163, 160, 0.35));
  }
}

.va-mountain-layer {
  --mountain-shift: 0.4%;
  --mountain-depth: 1.8%;
  --mountain-scale: 0.05;
  --mountain-glow: 0.06;
  animation: vaFloat var(--mountain-duration, 16s) ease-in-out infinite;
  animation-direction: alternate;
  transform-origin: center;
}

.va-mountain-sun {
  --sun-shift: 0.5%;
  --sun-rise: 8px;
  --sun-pulse: 0.08;
  --sun-glow: 0.22;
  animation: vaGlow var(--sun-duration, 12s) ease-in-out infinite;
  animation-direction: alternate;
  transform-origin: center;
}

.va-wave-line {
  --wave-shift: 5%;
  --wave-rise: 2.4%;
  --wave-scale: 0.05;
  --wave-shimmer: 0.06;
  --wave-gleam: 0.28;
  --wave-length: 480px;
  animation: vaWave var(--wave-duration, 14s) linear infinite;
  transform-origin: center;
  stroke-dasharray: 240;
}

.va-dogwood-system {
  transform-box: fill-box;
  transform-origin: center;
  animation: vaLatticeOrbit 42s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.va-dogwood-petal {
  --petal-phase: 0deg;
  --petal-bloom-strength: 0.18;
  --petal-bloom-delay: 0s;
  --petal-hue-shift: 0deg;
  --petal-glow-radius: calc(var(--petal-bloom-strength, 0.18) * 24px);
  transform-box: fill-box;
  transform-origin: center;
  animation: vaPromotionCycle 20s cubic-bezier(0.52, 0.01, 0.32, 1) infinite;
  animation-delay: var(--petal-bloom-delay, 0s);
  transition: fill 0.6s ease;
  will-change: transform, filter, stroke;
}

.va-dogwood-petal:nth-of-type(2) {
  --petal-phase: 90deg;
  --petal-bloom-delay: 5s;
}

.va-dogwood-petal:nth-of-type(3) {
  --petal-phase: 180deg;
  --petal-bloom-delay: 10s;
}

.va-dogwood-petal:nth-of-type(4) {
  --petal-phase: 270deg;
  --petal-bloom-delay: 15s;
}

.va-dogwood-core {
  --core-pulse-strength: 0.16;
  --core-delay: 0s;
  --core-hue-shift: 0deg;
  --core-glow-radius: calc(var(--core-pulse-strength, 0.16) * 48px);
  transform-box: fill-box;
  transform-origin: center;
  animation: vaCoreFlux 14s ease-in-out infinite;
  animation-delay: var(--core-delay, 0s);
  fill: #2e6d57;
  will-change: transform, filter, stroke;
}

.va-cardinal {
  --va-flight-duration: 18s;
  --va-flight-delay: 0s;
  --va-flight-arc: 18px;
  animation: vaFlightPath var(--va-flight-duration) ease-in-out infinite;
  animation-delay: var(--va-flight-delay);
}

.va-cardinal-wing {
  --va-wing-duration: 2.8s;
  --va-wing-delay: 0s;
  --va-wing-rotation: 14deg;
  --va-wing-origin: 96px 86px;
  animation: vaWingBoost var(--va-wing-duration) ease-in-out infinite;
  animation-delay: var(--va-wing-delay);
  transform-origin: var(--va-wing-origin);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(46, 46, 46, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 109, 122, 0.4);
  border-color: var(--primary);
}

.site-footer {
  background: radial-gradient(circle at top, rgba(79, 109, 122, 0.95), rgba(58, 122, 99, 0.92));
  color: #fff;
  padding: 2.5rem 0;
  box-shadow: 0 -12px 32px rgba(63, 86, 90, 0.18);
}

.site-footer p {
  margin: 0.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin-bottom: 2rem;
}

.footer-grid h2 {
  font-size: 1.1rem;
  margin-top: 0;
}

.site-footer address {
  font-style: normal;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.footer-meta {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-phone {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.contact-phone:hover,
.contact-phone:focus {
  text-decoration: underline;
}

.section--testimonials {
  background: linear-gradient(160deg, rgba(207, 163, 160, 0.18), rgba(79, 109, 122, 0.08));
}

.section--testimonials .container {
  display: grid;
  gap: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .va-cardinal,
  .va-cardinal-wing {
    animation: none !important;
  }
}

@media (max-width: 56rem) {
  .site-header .header-inner {
    justify-content: center;
    text-align: center;
  }

  .site-header .brand {
    flex: 1 1 100%;
  }

  .site-header .primary-nav {
    width: 100%;
  }

  .primary-nav ul {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content > div:first-child {
    justify-items: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-support {
    justify-items: center;
  }

  .primary-button {
    justify-self: center;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-links ul {
    justify-items: center;
  }

  .site-footer address {
    text-align: center;
  }
}

@media (max-width: 48rem) {
  .contact-card {
    margin-inline: auto;
  }

  .booking-layout {
    justify-items: center;
  }

  .calendar-booking {
    padding: 1.5rem;
  }
}

@media (max-width: 40rem) {
  .container {
    width: min(100% - 1.75rem, var(--max-width));
  }

  .primary-nav a {
    letter-spacing: 0.05em;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .calendar-frame {
    margin-top: 1rem;
  }
}

/* Flyer page layout */
.flyer {
  padding-block: clamp(1rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2rem);
}

.flyer-hero {
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
}

.flyer-hero-grid {
  display: grid;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.flyer-hero-copy {
  display: grid;
  gap: 0.75rem;
}

.flyer-detail-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.3rem;
}

.flyer-detail-list li {
  line-height: 1.5;
}

.flyer-portrait {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(79, 109, 122, 0.12);
  padding: clamp(0.75rem, 2.25vw, 1rem);
  box-shadow: 0 18px 42px rgba(79, 109, 122, 0.16);
}

.flyer-portrait img {
  width: min(18rem, 100%);
  height: auto;
  border-radius: calc(var(--radius) * 1.25);
  object-fit: cover;
}

.flyer-portrait figcaption {
  font-size: 0.875rem;
  color: rgba(46, 56, 64, 0.75);
}

.flyer-section {
  padding-block: clamp(1rem, 2.25vw, 1.5rem);
}

.flyer-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(79, 109, 122, 0.12);
  box-shadow: 0 16px 36px rgba(79, 109, 122, 0.12);
  padding: clamp(0.9rem, 2.25vw, 1.3rem);
  display: grid;
  gap: 0.6rem;
}

.flyer-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.flyer-contact-card {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  align-items: start;
  gap: clamp(0.75rem, 2.25vw, 1.2rem);
}

.flyer-contact {
  display: grid;
  gap: 0.4rem;
  align-self: center;
}

.flyer-contact p {
  margin: 0 0 0.5rem;
}

.flyer-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .flyer-hero-grid {
    grid-template-columns: 1fr;
  }

  .flyer-portrait {
    order: -1;
  }
}
