/* ===== Boulders RV Park — shared styles ===== */
/* Palette: Canyon Rust & Sage */
:root {
  --rust: #B5502E;
  --rust-dark: #8C3F24;
  --sage: #7C8B6C;
  --pine: #4A5D45;
  --cream: #F6F1E7;
  --cream-2: #EFE7D8;
  --charcoal: #2E2A24;
  --amber: #D98B3F;
  --stone: #C9B79C;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(46, 42, 36, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Avenir Next', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 0.4em;
  color: var(--charcoal);
}

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
}
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover { background: var(--pine); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark img { height: 52px; width: auto; }
.logo-icon { height: 48px; width: auto; }
.logo-text {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--charcoal);
  white-space: nowrap;
}
.logo-icon-footer { height: 64px; width: auto; margin-bottom: 8px; }
.logo-text-footer {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .logo-text { display: none; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--rust);
  color: var(--rust);
}

.nav-toggle { display: none; }

/* ---- Weather badge ---- */
.weather-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--pine);
  padding: 6px 12px;
  border: 1px solid var(--stone);
  border-radius: 20px;
  white-space: nowrap;
}
.weather-badge .wx-icon { font-size: 16px; }
.weather-badge .wx-temp { font-weight: 700; }
.weather-badge .wx-label { color: #6b6356; }
@media (max-width: 980px) {
  .weather-badge .wx-label { display: none; }
}

/* Bigger weather card, hero-only (home page) */
.weather-badge-hero {
  display: inline-flex;
  background: rgba(255,255,255,0.92);
  color: var(--charcoal);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  gap: 10px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.weather-badge-hero .wx-icon { font-size: 30px; }
.weather-badge-hero .wx-temp { font-size: 22px; font-weight: 700; color: var(--rust); }
.weather-badge-hero .wx-label { font-size: 14px; color: #5b5548; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,42,36,0.35) 0%, rgba(46,42,36,0.55) 60%, rgba(46,42,36,0.75) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  max-width: 700px;
  margin-bottom: 0.25em;
}
.hero p.lede {
  font-size: 19px;
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--cream-2);
}

/* ---- Booking search widget ---- */
.search-widget {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  color: var(--charcoal);
  max-width: 880px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage);
}
.search-field input {
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--cream);
}
.search-field input:focus { outline: 2px solid var(--rust); }

.search-widget .btn-primary {
  align-self: end;
  height: 46px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 820px) {
  .search-widget { grid-template-columns: 1fr 1fr; }
  .search-widget .btn-primary { grid-column: 1 / -1; }
  .hero h1 { font-size: 36px; }
}

/* ---- Highlights strip ---- */
.highlights {
  background: var(--pine);
  color: var(--white);
}
.highlights .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: center;
}
.highlight-item .num {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--amber);
  margin-bottom: 4px;
}
.highlight-item .label {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--cream-2);
}
@media (max-width: 820px) {
  .highlights .container { grid-template-columns: 1fr 1fr; }
}

/* ---- Section shell ---- */
.section {
  padding: 70px 0;
}
.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}
.section-heading h2 { font-size: 34px; }
.section-heading p { color: #5b5548; }

/* ---- Site type cards ---- */
.site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.site-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.site-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.site-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.site-card:hover .img-wrap img { transform: scale(1.06); }

.site-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.site-card h3 { font-size: 22px; margin-bottom: 6px; }
.site-card .tagline { color: var(--sage); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.site-card p.desc { flex: 1; margin-bottom: 18px; color: #5b5548; font-size: 15px; }
.site-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--cream-2);
  padding-top: 16px;
}
.site-card .price {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--rust);
}
.site-card .price span { font-size: 13px; color: #8a8375; font-family: inherit; }

@media (max-width: 900px) {
  .site-cards { grid-template-columns: 1fr; }
}

/* ---- Photo strip ---- */
.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}
.photo-strip img { border-radius: 8px; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* ---- Callout band ---- */
.callout-band {
  background: var(--rust);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.callout-band h2 { color: var(--white); font-size: 30px; }
.callout-band p { color: var(--cream-2); margin-bottom: 26px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: var(--stone);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.site-footer a, .site-footer p { color: var(--stone); font-size: 14.5px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a:hover { color: var(--amber); }
.footer-logo img { height: 46px; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid #45403590;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #a49c8c;
}
.placeholder-note {
  color: var(--amber);
  font-style: italic;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- "Fall wall": animated autumn wallpaper backdrop for hero sections ---- */
/* Decorative only. A tiled leaf wallpaper drifting down over a twilight sky,
   with individual leaves falling, swaying and rotating in front of it, and a
   pine ridge silhouette pinned along the bottom. Pure CSS + inline SVG: no
   image files, no JS. All motion is transform-only so it stays on the
   compositor, and it is disabled entirely under prefers-reduced-motion. */

/* Tier 1 (below the leaves): twilight sky + the original darkening wash. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg,
      rgba(48,22,66,0.90) 0%,
      rgba(45,38,104,0.82) 26%,
      rgba(122,72,104,0.66) 52%,
      rgba(190,116,110,0.56) 74%,
      rgba(236,166,116,0.52) 92%,
      rgba(244,190,140,0.55) 100%),
    linear-gradient(180deg, rgba(46,42,36,0.30) 0%, rgba(46,42,36,0.42) 60%, rgba(46,42,36,0.62) 100%);
}
/* Tier 3 (above the leaves): pine ridge along the bottom edge. */
.hero::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221400%22%20height%3D%22150%22%20viewBox%3D%220%200%201400%20150%22%3E%3Cg%20fill%3D%22%23111d19%22%3E%3Cpath%20d%3D%22M3.2%2029.8%20L10.6%2075.5%20L7.8%2077.9%20L18.9%20118.7%20L14.3%20121.1%20L26.3%20150.0%20L-20.0%20150.0%20L-8.0%20121.1%20L-12.6%20118.7%20L-1.5%2077.9%20L-4.2%2075.5Z%22%2F%3E%3Cpath%20d%3D%22M37.4%2048.9%20L45.4%2087.3%20L42.4%2089.3%20L54.4%20123.7%20L49.4%20125.7%20L62.4%20150.0%20L12.4%20150.0%20L25.4%20125.7%20L20.4%20123.7%20L32.4%2089.3%20L29.4%2087.3Z%22%2F%3E%3Cpath%20d%3D%22M71.8%2047.6%20L79.5%2086.5%20L76.6%2088.5%20L88.3%20123.4%20L83.4%20125.4%20L96.1%20150.0%20L47.4%20150.0%20L60.1%20125.4%20L55.2%20123.4%20L66.9%2088.5%20L64.0%2086.5Z%22%2F%3E%3Cpath%20d%3D%22M108.5%2083.1%20L117.2%20108.5%20L113.9%20109.9%20L126.9%20132.6%20L121.5%20134.0%20L135.6%20150.0%20L81.5%20150.0%20L95.6%20134.0%20L90.1%20132.6%20L103.1%20109.9%20L99.9%20108.5Z%22%2F%3E%3Cpath%20d%3D%22M138.5%2018.9%20L144.6%2068.7%20L142.3%2071.3%20L151.5%20115.9%20L147.7%20118.5%20L157.7%20150.0%20L119.3%20150.0%20L129.3%20118.5%20L125.5%20115.9%20L134.7%2071.3%20L132.4%2068.7Z%22%2F%3E%3Cpath%20d%3D%22M165.8%2082.4%20L172.0%20108.1%20L169.7%20109.4%20L179.1%20132.4%20L175.2%20133.8%20L185.4%20150.0%20L146.2%20150.0%20L156.4%20133.8%20L152.4%20132.4%20L161.9%20109.4%20L159.5%20108.1Z%22%2F%3E%3Cpath%20d%3D%22M199.0%2052.6%20L207.1%2089.6%20L204.1%2091.6%20L216.3%20124.7%20L211.2%20126.6%20L224.4%20150.0%20L173.6%20150.0%20L186.8%20126.6%20L181.7%20124.7%20L193.9%2091.6%20L190.9%2089.6Z%22%2F%3E%3Cpath%20d%3D%22M228.5%2070.4%20L234.6%20100.7%20L232.3%20102.3%20L241.6%20129.3%20L237.7%20130.9%20L247.8%20150.0%20L209.2%20150.0%20L219.2%20130.9%20L215.3%20129.3%20L224.6%20102.3%20L222.3%20100.7Z%22%2F%3E%3Cpath%20d%3D%22M250.4%2011.8%20L254.9%2064.3%20L253.2%2067.1%20L260.1%20114.1%20L257.2%20116.8%20L264.6%20150.0%20L236.2%20150.0%20L243.6%20116.8%20L240.7%20114.1%20L247.6%2067.1%20L245.8%2064.3Z%22%2F%3E%3Cpath%20d%3D%22M288.2%2022.8%20L298.5%2071.1%20L294.7%2073.7%20L310.1%20116.9%20L303.7%20119.5%20L320.4%20150.0%20L256.1%20150.0%20L272.8%20119.5%20L266.4%20116.9%20L281.8%2073.7%20L278.0%2071.1Z%22%2F%3E%3Cpath%20d%3D%22M318.0%207.4%20L323.4%2061.6%20L321.4%2064.5%20L329.5%20112.9%20L326.1%20115.8%20L334.9%20150.0%20L301.1%20150.0%20L309.9%20115.8%20L306.5%20112.9%20L314.6%2064.5%20L312.6%2061.6Z%22%2F%3E%3Cpath%20d%3D%22M345.5%2046.7%20L352.1%2086.0%20L349.6%2088.0%20L359.6%20123.2%20L355.4%20125.2%20L366.2%20150.0%20L324.8%20150.0%20L335.6%20125.2%20L331.4%20123.2%20L341.3%2088.0%20L338.9%2086.0Z%22%2F%3E%3Cpath%20d%3D%22M379.8%2029.9%20L388.2%2075.5%20L385.0%2077.9%20L397.6%20118.8%20L392.3%20121.2%20L405.9%20150.0%20L353.8%20150.0%20L367.3%20121.2%20L362.1%20118.8%20L374.6%2077.9%20L371.5%2075.5Z%22%2F%3E%3Cpath%20d%3D%22M415.7%2040.5%20L423.9%2082.1%20L420.8%2084.3%20L433.0%20121.5%20L427.9%20123.7%20L441.2%20150.0%20L390.3%20150.0%20L403.5%20123.7%20L398.4%20121.5%20L410.6%2084.3%20L407.6%2082.1Z%22%2F%3E%3Cpath%20d%3D%22M445.2%2031.9%20L451.4%2076.8%20L449.1%2079.2%20L458.3%20119.3%20L454.5%20121.7%20L464.5%20150.0%20L425.9%20150.0%20L435.9%20121.7%20L432.1%20119.3%20L441.3%2079.2%20L439.0%2076.8Z%22%2F%3E%3Cpath%20d%3D%22M475.3%2017.6%20L482.4%2067.9%20L479.7%2070.5%20L490.5%20115.6%20L486.0%20118.2%20L497.6%20150.0%20L452.9%20150.0%20L464.5%20118.2%20L460.1%20115.6%20L470.8%2070.5%20L468.1%2067.9Z%22%2F%3E%3Cpath%20d%3D%22M515.5%2043.6%20L525.5%2084.0%20L521.7%2086.2%20L536.8%20122.3%20L530.5%20124.5%20L546.8%20150.0%20L484.2%20150.0%20L500.5%20124.5%20L494.2%20122.3%20L509.2%2086.2%20L505.5%2084.0Z%22%2F%3E%3Cpath%20d%3D%22M557.1%2035.5%20L566.3%2079.0%20L562.9%2081.3%20L576.8%20120.2%20L571.0%20122.5%20L586.1%20150.0%20L528.0%20150.0%20L543.1%20122.5%20L537.3%20120.2%20L551.2%2081.3%20L547.8%2079.0Z%22%2F%3E%3Cpath%20d%3D%22M599.6%2074.5%20L609.5%20103.2%20L605.8%20104.7%20L620.6%20130.4%20L614.5%20131.9%20L630.5%20150.0%20L568.7%20150.0%20L584.8%20131.9%20L578.6%20130.4%20L593.4%20104.7%20L589.7%20103.2Z%22%2F%3E%3Cpath%20d%3D%22M636.2%2021.4%20L643.9%2070.3%20L641.0%2072.8%20L652.6%20116.6%20L647.8%20119.1%20L660.4%20150.0%20L612.0%20150.0%20L624.6%20119.1%20L619.7%20116.6%20L631.3%2072.8%20L628.4%2070.3Z%22%2F%3E%3Cpath%20d%3D%22M659.9%2057.0%20L664.4%2092.4%20L662.7%2094.2%20L669.5%20125.8%20L666.7%20127.7%20L674.0%20150.0%20L645.9%20150.0%20L653.2%20127.7%20L650.4%20125.8%20L657.1%2094.2%20L655.4%2092.4Z%22%2F%3E%3Cpath%20d%3D%22M685.1%2025.9%20L691.4%2073.0%20L689.1%2075.5%20L698.5%20117.7%20L694.6%20120.2%20L704.8%20150.0%20L665.5%20150.0%20L675.7%20120.2%20L671.8%20117.7%20L681.2%2075.5%20L678.9%2073.0Z%22%2F%3E%3Cpath%20d%3D%22M707.6%2017.5%20L712.2%2067.9%20L710.5%2070.5%20L717.5%20115.6%20L714.6%20118.2%20L722.1%20150.0%20L693.0%20150.0%20L700.6%20118.2%20L697.7%20115.6%20L704.7%2070.5%20L702.9%2067.9Z%22%2F%3E%3Cpath%20d%3D%22M737.8%2021.8%20L745.6%2070.5%20L742.6%2073.1%20L754.3%20116.7%20L749.5%20119.2%20L762.1%20150.0%20L713.4%20150.0%20L726.1%20119.2%20L721.2%20116.7%20L732.9%2073.1%20L730.0%2070.5Z%22%2F%3E%3Cpath%20d%3D%22M761.6%2062.7%20L766.0%2095.9%20L764.4%2097.6%20L771.1%20127.3%20L768.3%20129.1%20L775.6%20150.0%20L747.5%20150.0%20L754.8%20129.1%20L752.0%20127.3%20L758.7%2097.6%20L757.1%2095.9Z%22%2F%3E%3Cpath%20d%3D%22M801.0%2047.1%20L811.8%2086.2%20L807.8%2088.3%20L824.0%20123.2%20L817.2%20125.3%20L834.8%20150.0%20L767.2%20150.0%20L784.8%20125.3%20L778.0%20123.2%20L794.2%2088.3%20L790.2%2086.2Z%22%2F%3E%3Cpath%20d%3D%22M848.2%2011.0%20L859.0%2063.8%20L854.9%2066.6%20L871.1%20113.9%20L864.4%20116.6%20L881.9%20150.0%20L814.5%20150.0%20L832.0%20116.6%20L825.3%20113.9%20L841.5%2066.6%20L837.4%2063.8Z%22%2F%3E%3Cpath%20d%3D%22M881.9%2015.8%20L888.4%2066.8%20L886.0%2069.5%20L895.7%20115.1%20L891.6%20117.8%20L902.2%20150.0%20L861.7%20150.0%20L872.2%20117.8%20L868.1%20115.1%20L877.9%2069.5%20L875.4%2066.8Z%22%2F%3E%3Cpath%20d%3D%22M910.0%2047.7%20L916.4%2086.6%20L914.0%2088.6%20L923.6%20123.4%20L919.6%20125.4%20L930.0%20150.0%20L890.0%20150.0%20L900.4%20125.4%20L896.4%20123.4%20L906.0%2088.6%20L903.6%2086.6Z%22%2F%3E%3Cpath%20d%3D%22M951.9%2081.6%20L962.7%20107.6%20L958.6%20109.0%20L974.9%20132.2%20L968.1%20133.6%20L985.7%20150.0%20L918.0%20150.0%20L935.6%20133.6%20L928.8%20132.2%20L945.1%20109.0%20L941.0%20107.6Z%22%2F%3E%3Cpath%20d%3D%22M990.3%2081.6%20L998.3%20107.6%20L995.3%20109.0%20L1007.3%20132.2%20L1002.3%20133.6%20L1015.2%20150.0%20L965.4%20150.0%20L978.4%20133.6%20L973.4%20132.2%20L985.3%20109.0%20L982.4%20107.6Z%22%2F%3E%3Cpath%20d%3D%22M1023.8%2060.5%20L1031.4%2094.5%20L1028.5%2096.3%20L1039.8%20126.7%20L1035.1%20128.5%20L1047.4%20150.0%20L1000.3%20150.0%20L1012.5%20128.5%20L1007.8%20126.7%20L1019.1%2096.3%20L1016.3%2094.5Z%22%2F%3E%3Cpath%20d%3D%22M1062.6%2042.9%20L1072.0%2083.6%20L1068.5%2085.7%20L1082.6%20122.2%20L1076.8%20124.3%20L1092.0%20150.0%20L1033.2%20150.0%20L1048.5%20124.3%20L1042.6%20122.2%20L1056.8%2085.7%20L1053.2%2083.6Z%22%2F%3E%3Cpath%20d%3D%22M1088.4%2039.0%20L1092.9%2081.2%20L1091.2%2083.4%20L1097.9%20121.1%20L1095.1%20123.4%20L1102.4%20150.0%20L1074.4%20150.0%20L1081.7%20123.4%20L1078.9%20121.1%20L1085.6%2083.4%20L1083.9%2081.2Z%22%2F%3E%3Cpath%20d%3D%22M1128.0%2036.5%20L1138.9%2079.6%20L1134.9%2081.9%20L1151.2%20120.5%20L1144.4%20122.8%20L1162.1%20150.0%20L1094.0%20150.0%20L1111.7%20122.8%20L1104.9%20120.5%20L1121.2%2081.9%20L1117.2%2079.6Z%22%2F%3E%3Cpath%20d%3D%22M1167.1%2077.9%20L1175.2%20105.3%20L1172.2%20106.7%20L1184.4%20131.3%20L1179.3%20132.7%20L1192.5%20150.0%20L1141.7%20150.0%20L1154.9%20132.7%20L1149.8%20131.3%20L1162.0%20106.7%20L1159.0%20105.3Z%22%2F%3E%3Cpath%20d%3D%22M1192.1%2076.6%20L1196.8%20104.5%20L1195.0%20106.0%20L1202.1%20130.9%20L1199.2%20132.4%20L1206.8%20150.0%20L1177.3%20150.0%20L1185.0%20132.4%20L1182.0%20130.9%20L1189.1%20106.0%20L1187.3%20104.5Z%22%2F%3E%3Cpath%20d%3D%22M1213.9%2054.7%20L1219.0%2090.9%20L1217.1%2092.8%20L1224.7%20125.2%20L1221.5%20127.1%20L1229.8%20150.0%20L1198.0%20150.0%20L1206.3%20127.1%20L1203.1%20125.2%20L1210.7%2092.8%20L1208.8%2090.9Z%22%2F%3E%3Cpath%20d%3D%22M1254.0%2018.1%20L1264.8%2068.2%20L1260.8%2070.9%20L1277.0%20115.7%20L1270.2%20118.3%20L1287.8%20150.0%20L1220.3%20150.0%20L1237.8%20118.3%20L1231.1%20115.7%20L1247.3%2070.9%20L1243.2%2068.2Z%22%2F%3E%3Cpath%20d%3D%22M1293.6%2031.1%20L1301.9%2076.3%20L1298.8%2078.7%20L1311.3%20119.1%20L1306.1%20121.5%20L1319.6%20150.0%20L1267.5%20150.0%20L1281.1%20121.5%20L1275.9%20119.1%20L1288.4%2078.7%20L1285.2%2076.3Z%22%2F%3E%3Cpath%20d%3D%22M1335.1%2032.8%20L1345.1%2077.3%20L1341.4%2079.7%20L1356.3%20119.5%20L1350.1%20121.9%20L1366.3%20150.0%20L1304.0%20150.0%20L1320.2%20121.9%20L1313.9%20119.5%20L1328.9%2079.7%20L1325.2%2077.3Z%22%2F%3E%3Cpath%20d%3D%22M1361.5%2032.7%20L1366.0%2077.3%20L1364.3%2079.6%20L1371.0%20119.5%20L1368.2%20121.8%20L1375.5%20150.0%20L1347.6%20150.0%20L1354.8%20121.8%20L1352.0%20119.5%20L1358.7%2079.6%20L1357.1%2077.3Z%22%2F%3E%3Cpath%20d%3D%22M1382.2%2048.0%20L1387.0%2086.8%20L1385.2%2088.8%20L1392.4%20123.5%20L1389.4%20125.5%20L1397.2%20150.0%20L1367.1%20150.0%20L1374.9%20125.5%20L1371.9%20123.5%20L1379.2%2088.8%20L1377.3%2086.8Z%22%2F%3E%3Cpath%20d%3D%22M1419.7%2028.6%20L1429.7%2074.7%20L1426.0%2077.2%20L1441.1%20118.4%20L1434.8%20120.9%20L1451.2%20150.0%20L1388.2%20150.0%20L1404.6%20120.9%20L1398.3%20118.4%20L1413.4%2077.2%20L1409.6%2074.7Z%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22138%22%20width%3D%221400%22%20height%3D%2212%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 1400px 150px;
}
.hero h1, .hero p.lede, .hero .eyebrow {
  text-shadow: 0 2px 14px rgba(28,12,40,0.55);
}

/* Tier 2: the falling layer itself. Clips its own overflow so the oversized
   drifting tiles and the leaves never spill outside the hero. */
.fall-wall {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  --fw-travel: 900px;
}

/* Wallpaper tiles. The layer is one tile taller than its box and travels
   exactly one tile height per cycle, so the loop is seamless: the end state
   is pixel-identical to the start. */
.fw-tiles {
  position: absolute;
  top: calc(var(--tile) * -1);
  left: -28px;
  right: -28px;
  height: calc(100% + var(--tile));
  animation: fw-drift var(--dur) linear infinite;
}
.fw-tiles-a {
  --tile: 210px;
  --dur: 24s;
  --sw: 12px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22210%22%20height%3D%22210%22%20viewBox%3D%220%200%20210%20210%22%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.74%22%20transform%3D%22translate(29.4%2021.6)%20rotate(122)%20scale(0.655)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.86%22%20transform%3D%22translate(41.1%2025.3)%20rotate(64)%20scale(0.860)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.78%22%20transform%3D%22translate(72.7%2022.4)%20rotate(211)%20scale(0.747)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.75%22%20transform%3D%22translate(112.7%2020.6)%20rotate(177)%20scale(1.012)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.76%22%20transform%3D%22translate(153.2%2019.0)%20rotate(45)%20scale(0.828)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.86%22%20transform%3D%22translate(183.3%2010.2)%20rotate(239)%20scale(0.982)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.86%22%20transform%3D%22translate(183.3%20220.2)%20rotate(239)%20scale(0.982)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.79%22%20transform%3D%22translate(16.0%2035.8)%20rotate(242)%20scale(1.040)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(41.0%2055.1)%20rotate(230)%20scale(0.857)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.79%22%20transform%3D%22translate(85.0%2061.0)%20rotate(234)%20scale(0.956)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.74%22%20transform%3D%22translate(112.2%2060.5)%20rotate(129)%20scale(1.214)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.76%22%20transform%3D%22translate(144.9%2062.0)%20rotate(266)%20scale(0.719)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.78%22%20transform%3D%22translate(186.6%2046.9)%20rotate(190)%20scale(0.691)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.75%22%20transform%3D%22translate(16.1%2086.4)%20rotate(92)%20scale(1.202)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.82%22%20transform%3D%22translate(57.7%2092.2)%20rotate(104)%20scale(0.850)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(88.7%20101.3)%20rotate(6)%20scale(0.829)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.86%22%20transform%3D%22translate(129.7%2095.4)%20rotate(250)%20scale(0.851)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.88%22%20transform%3D%22translate(169.6%2084.0)%20rotate(172)%20scale(0.952)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.86%22%20transform%3D%22translate(198.9%20101.5)%20rotate(199)%20scale(0.799)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.80%22%20transform%3D%22translate(28.1%20105.3)%20rotate(204)%20scale(0.654)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.88%22%20transform%3D%22translate(60.2%20131.9)%20rotate(343)%20scale(0.907)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.76%22%20transform%3D%22translate(91.4%20135.0)%20rotate(267)%20scale(0.651)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.78%22%20transform%3D%22translate(122.3%20127.7)%20rotate(178)%20scale(0.727)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.88%22%20transform%3D%22translate(168.7%20109.2)%20rotate(79)%20scale(1.072)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.90%22%20transform%3D%22translate(176.0%20124.2)%20rotate(33)%20scale(1.165)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.80%22%20transform%3D%22translate(1.4%20140.9)%20rotate(216)%20scale(1.008)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.80%22%20transform%3D%22translate(211.4%20140.9)%20rotate(216)%20scale(1.008)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.83%22%20transform%3D%22translate(45.5%20170.9)%20rotate(335)%20scale(1.086)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(94.0%20143.8)%20rotate(171)%20scale(1.187)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.91%22%20transform%3D%22translate(134.6%20146.7)%20rotate(92)%20scale(0.616)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.83%22%20transform%3D%22translate(149.9%20155.8)%20rotate(275)%20scale(0.919)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.86%22%20transform%3D%22translate(194.1%20153.6)%20rotate(122)%20scale(0.893)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.89%22%20transform%3D%22translate(6.1%20197.8)%20rotate(227)%20scale(0.735)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.89%22%20transform%3D%22translate(216.1%20197.8)%20rotate(227)%20scale(0.735)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(58.2%20201.3)%20rotate(145)%20scale(1.118)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(58.2%20-8.7)%20rotate(145)%20scale(1.118)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.80%22%20transform%3D%22translate(75.0%20200.6)%20rotate(346)%20scale(1.225)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.80%22%20transform%3D%22translate(75.0%20-9.4)%20rotate(346)%20scale(1.225)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.78%22%20transform%3D%22translate(127.7%20199.4)%20rotate(140)%20scale(0.770)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.76%22%20transform%3D%22translate(167.5%20201.8)%20rotate(36)%20scale(1.131)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.76%22%20transform%3D%22translate(167.5%20-8.2)%20rotate(36)%20scale(1.131)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.91%22%20transform%3D%22translate(198.4%20198.1)%20rotate(39)%20scale(1.039)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.91%22%20transform%3D%22translate(198.4%20-11.9)%20rotate(39)%20scale(1.039)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.91%22%20transform%3D%22translate(-11.6%20198.1)%20rotate(39)%20scale(1.039)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.91%22%20transform%3D%22translate(-11.6%20-11.9)%20rotate(39)%20scale(1.039)%22%2F%3E%3C%2Fsvg%3E");
  background-size: 210px 210px;
}
.fw-tiles-b {
  --tile: 330px;
  --dur: 44s;
  --sw: 18px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22330%22%20height%3D%22330%22%20viewBox%3D%220%200%20330%20330%22%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.41%22%20transform%3D%22translate(61.1%2027.8)%20rotate(44)%20scale(1.742)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.43%22%20transform%3D%22translate(152.7%2021.8)%20rotate(79)%20scale(1.293)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.34%22%20transform%3D%22translate(196.3%2015.6)%20rotate(239)%20scale(2.144)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.34%22%20transform%3D%22translate(196.3%20345.6)%20rotate(239)%20scale(2.144)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.42%22%20transform%3D%22translate(315.3%2043.2)%20rotate(272)%20scale(2.072)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.42%22%20transform%3D%22translate(-14.7%2043.2)%20rotate(272)%20scale(2.072)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.36%22%20transform%3D%22translate(35.5%20149.5)%20rotate(94)%20scale(1.411)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.45%22%20transform%3D%22translate(98.1%20121.5)%20rotate(352)%20scale(1.528)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.41%22%20transform%3D%22translate(175.0%20131.0)%20rotate(231)%20scale(1.396)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.35%22%20transform%3D%22translate(300.1%20115.0)%20rotate(9)%20scale(2.121)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.38%22%20transform%3D%22translate(64.6%20175.5)%20rotate(14)%20scale(1.892)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.34%22%20transform%3D%22translate(83.9%20199.5)%20rotate(28)%20scale(1.717)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.38%22%20transform%3D%22translate(210.1%20203.4)%20rotate(13)%20scale(1.911)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.36%22%20transform%3D%22translate(267.6%20206.7)%20rotate(117)%20scale(1.804)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.40%22%20transform%3D%22translate(61.8%20270.1)%20rotate(62)%20scale(1.292)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.41%22%20transform%3D%22translate(139.1%20319.2)%20rotate(91)%20scale(1.956)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.41%22%20transform%3D%22translate(139.1%20-10.8)%20rotate(91)%20scale(1.956)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.33%22%20transform%3D%22translate(225.1%20274.8)%20rotate(229)%20scale(1.270)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.49%22%20transform%3D%22translate(307.2%20250.6)%20rotate(236)%20scale(1.532)%22%2F%3E%3C%2Fsvg%3E");
  background-size: 330px 330px;
}
@keyframes fw-drift {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(var(--sw), calc(var(--tile) * 0.5), 0); }
  100% { transform: translate3d(0, var(--tile), 0); }
}

/* Individual leaves: fall the full travel distance while swaying, and rock
   back and forth on a separate, slower cycle. Both ends of the fall sit
   outside the clipped box, so a leaf reaching the bottom is already hidden
   when it loops back to the top. */
.fw-leaf {
  position: absolute;
  top: -70px;
  width: var(--sz);
  height: var(--sz);
  opacity: var(--op);
  animation:
    fw-fall var(--dur) linear var(--dly) infinite,
    fw-rock var(--rd) ease-in-out var(--dly) infinite;
  animation-duration: calc(var(--dur) * var(--fw-k, 1)), var(--rd);
}
.fw-leaf svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.fw-tumble { animation-name: fw-fall, fw-spin; animation-timing-function: linear, linear; }
@keyframes fw-fall {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(var(--sw), calc(var(--fw-travel) * 0.25), 0); }
  50%  { transform: translate3d(0, calc(var(--fw-travel) * 0.5), 0); }
  75%  { transform: translate3d(calc(var(--sw) * -1), calc(var(--fw-travel) * 0.75), 0); }
  100% { transform: translate3d(0, var(--fw-travel), 0); }
}
@keyframes fw-rock {
  0%, 100% { rotate: var(--r0); }
  50%      { rotate: var(--r1); }
}
@keyframes fw-spin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}

/* Lighter dusting of the same wallpaper behind the rate tables, drifting on
   the same slow cadence as the hero. */
.rate-panel {
  position: relative;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(72,40,92,0.10), rgba(222,138,60,0.12));
  overflow: hidden;
}
.rate-panel::before {
  content: "";
  position: absolute;
  --tile: 180px;
  --dur: 22s;
  --sw: 10px;
  top: calc(var(--tile) * -1);
  left: -20px;
  right: -20px;
  height: calc(100% + var(--tile));
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22180%22%20height%3D%22180%22%20viewBox%3D%220%200%20180%20180%22%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.83%22%20transform%3D%22translate(26.2%2028.8)%20rotate(258)%20scale(0.794)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(44.7%2013.2)%20rotate(22)%20scale(1.109)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(44.7%20193.2)%20rotate(22)%20scale(1.109)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.90%22%20transform%3D%22translate(78.0%2019.7)%20rotate(233)%20scale(0.864)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.81%22%20transform%3D%22translate(117.6%2031.3)%20rotate(96)%20scale(1.295)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(171.9%2031.1)%20rotate(333)%20scale(1.088)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(-8.1%2031.1)%20rotate(333)%20scale(1.088)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.89%22%20transform%3D%22translate(5.5%2049.2)%20rotate(226)%20scale(0.804)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.89%22%20transform%3D%22translate(185.5%2049.2)%20rotate(226)%20scale(0.804)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.89%22%20transform%3D%22translate(51.2%2057.3)%20rotate(244)%20scale(1.282)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.81%22%20transform%3D%22translate(75.7%2050.3)%20rotate(171)%20scale(0.976)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.90%22%20transform%3D%22translate(112.8%2039.9)%20rotate(161)%20scale(0.878)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.85%22%20transform%3D%22translate(160.1%2045.7)%20rotate(328)%20scale(0.930)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.92%22%20transform%3D%22translate(5.0%2091.6)%20rotate(15)%20scale(0.712)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.92%22%20transform%3D%22translate(185.0%2091.6)%20rotate(15)%20scale(0.712)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.94%22%20transform%3D%22translate(45.8%2073.1)%20rotate(137)%20scale(1.072)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.94%22%20transform%3D%22translate(89.8%2089.8)%20rotate(266)%20scale(1.060)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.92%22%20transform%3D%22translate(120.7%2077.1)%20rotate(276)%20scale(0.973)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.82%22%20transform%3D%22translate(151.6%2087.1)%20rotate(117)%20scale(1.291)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.87%22%20transform%3D%22translate(18.3%20137.9)%20rotate(93)%20scale(1.259)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%238A4A2B%22%20fill-opacity%3D%220.85%22%20transform%3D%22translate(40.8%20110.5)%20rotate(39)%20scale(0.772)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.79%22%20transform%3D%22translate(96.9%20116.3)%20rotate(241)%20scale(1.127)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.84%22%20transform%3D%22translate(116.7%20125.1)%20rotate(323)%20scale(0.961)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23D9A23B%22%20fill-opacity%3D%220.93%22%20transform%3D%22translate(157.5%20134.2)%20rotate(316)%20scale(0.978)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.77%22%20transform%3D%22translate(14.2%20147.7)%20rotate(261)%20scale(1.220)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.77%22%20transform%3D%22translate(194.2%20147.7)%20rotate(261)%20scale(1.220)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.80%22%20transform%3D%22translate(44.8%20154.2)%20rotate(236)%20scale(1.128)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23B83B2E%22%20fill-opacity%3D%220.92%22%20transform%3D%22translate(93.3%20151.3)%20rotate(37)%20scale(0.797)%22%2F%3E%3Cpath%20d%3D%22M6%200.3C9.6%203%2010%208%206%2011.7%202%208%202.4%203%206%200.3Z%22%20fill%3D%22%23DE8A3C%22%20fill-opacity%3D%220.82%22%20transform%3D%22translate(131.5%20157.7)%20rotate(330)%20scale(1.174)%22%2F%3E%3Cpath%20d%3D%22M6%200.4%207.1%202.6%209.2%201.9%208.7%204%2011.4%204.2%209.4%205.8%2011.2%207.4%208.6%207.4%209%209.6%206.9%208.8%206.4%2011.6%205.6%2011.6%205.1%208.8%203%209.6%203.4%207.4%200.8%207.4%202.6%205.8%200.6%204.2%203.3%204%202.8%201.9%204.9%202.6Z%22%20fill%3D%22%23C1622D%22%20fill-opacity%3D%220.90%22%20transform%3D%22translate(147.1%20156.0)%20rotate(10)%20scale(1.096)%22%2F%3E%3C%2Fsvg%3E");
  background-size: 180px 180px;
  opacity: 0.3;
  pointer-events: none;
  animation: fw-drift var(--dur) linear infinite;
}
.rate-panel > * { position: relative; z-index: 1; }

@media (max-width: 640px) {
  .hero::after { background-size: 1400px 110px; }
  .fw-tiles-a { --tile: 150px; background-size: 150px 150px; }
  .fw-tiles-b { --tile: 240px; background-size: 240px 240px; }
}

/* Static fallback: freeze the wallpaper and drop the falling leaves. */
@media (prefers-reduced-motion: reduce) {
  .fw-tiles, .rate-panel::before {
    animation: none;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
  }
  .fw-leaf { display: none; }
}
