/* Arrow & Arch — site styles. Single visual world: ivory canvas, eucalyptus ink, rose gold arrow. */
:root {
  --ivory: #F5F1E8; --paper: #FBF9F4; --ink: #2F4A3C; --ink-soft: #4F675A;
  --stone: #C8BFB0; --line: #E3DDD2; --sage: #E4EAE3; --rose: #B76E79; --rose-deep: #8E4F59; --focus: #2F5D8A;
  --petal: #F5F1E8; --petal-deep: #DCCFBD; --accent: #B76E79; --leaf: #7E9C8A; --leaf-deep: #5E7D6A;
  --wrap: 1120px; --gutter: 20px;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif; font-size: 1.04rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration-color: var(--stone); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--rose-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
[tabindex="-1"]:focus, h1:focus, h2:focus { outline: none; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--ivory); padding: 0.5rem 0.8rem; z-index: 100; }
.skip:focus { left: 8px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.prose { max-width: 64ch; }
h1, h2, h3.display, .display { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.06; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.12rem; font-weight: 700; margin: 0 0 0.4rem; line-height: 1.3; }
p { margin: 0 0 0.9rem; }
.eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--ink-soft); }
.tag { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 500; }
.muted { color: var(--ink-soft); }
.num { font-variant-numeric: tabular-nums; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; font-weight: 700; font-size: 0.98rem; border: 1px solid transparent; text-decoration: none; cursor: pointer; font-family: inherit; line-height: 1.2; transition: background 160ms ease, border-color 160ms ease, color 160ms ease; }
.btn.primary { background: var(--ink); color: var(--ivory); }
.btn.primary:hover { background: #3A5A4A; }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--stone); }
.btn.secondary:hover { border-color: var(--ink); }
.btn.small { padding: 0.5rem 0.9rem; font-size: 0.9rem; }

/* header: centered stationery lockup, navigation on its own row.
   The descriptor sits under the wordmark only; site.js tracks it out to the wordmark's exact width. */
.site-header { position: relative; z-index: 50; background: var(--ivory); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: grid; justify-items: center; gap: 1.2rem; padding-block: 1.7rem 1.1rem; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 1.1rem; text-decoration: none; color: var(--ink); }
.brand svg { width: 68px; height: 68px; flex: none; }
.brand .words { display: inline-grid; justify-items: start; gap: 0.5rem; }
.wordmark { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; line-height: 1; font-size: 2.6rem; white-space: nowrap; }
.wordmark .amp { font-style: italic; font-weight: 500; color: var(--rose); text-transform: none; letter-spacing: 0; }
.brand .descriptor { display: block; font-size: 0.95rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); white-space: nowrap; line-height: 1; }
.nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.4rem 1.8rem; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem; padding: 0.3rem 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--rose); }
.nav .btn { margin-left: 0.6rem; }
.menu-btn { display: none; position: absolute; right: var(--gutter); top: 1.6rem; background: transparent; border: 1px solid var(--stone); color: var(--ink); font: inherit; font-weight: 700; padding: 0.45rem 0.8rem; cursor: pointer; }
@media (max-width: 1000px) {
  .site-header .wrap { padding-block: 1.2rem 1rem; gap: 0; }
  .brand { gap: 0.8rem; }
  .brand svg { width: 48px; height: 48px; }
  .brand .words { gap: 0.35rem; }
  .wordmark { font-size: 1.8rem; }
  .brand .descriptor { font-size: 0.66rem; }
  .menu-btn { display: inline-block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem var(--gutter) 1rem; }
  .nav.open { display: flex; }
  .nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 0.8rem 0 0; justify-content: center; }
}
@media (max-width: 480px) {
  .site-header .wrap { justify-items: start; }
  .brand svg { width: 40px; height: 40px; }
  .wordmark { font-size: 1.45rem; letter-spacing: 0.1em; }
  .brand .descriptor { font-size: 0.55rem; }
  .menu-btn { top: 1.3rem; }
}

/* routes */
.route { display: none; }
.route.active { display: block; }
section.block { padding-block: 3.6rem; }
section.block.tight { padding-block: 2.4rem; }
section.band { background: var(--sage); }
section.paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: grid; gap: 0.35rem; margin-bottom: 1.6rem; }
.section-head p { color: var(--ink-soft); max-width: 62ch; margin: 0; font-size: 1.05rem; }
.center { text-align: center; }
.center .section-head p { margin-inline: auto; }

/* hero */
.hero { position: relative; overflow: hidden; padding-block: 3rem 2.4rem; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 2rem 3rem; align-items: center; }
.hero h1 { font-weight: 500; font-style: italic; margin: 0.6rem 0 1rem; }
.hero .lede { font-size: 1.18rem; max-width: 40ch; }
.hero .btns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }
.hero .art { position: relative; }
.hero .art svg { width: 100%; height: auto; display: block; }
.hero .light { position: absolute; inset: -20% -30%; pointer-events: none; background: linear-gradient(100deg, transparent 30%, rgba(233, 208, 170, 0.28) 50%, transparent 70%); transform: translateX(-60%); }
@media (prefers-reduced-motion: no-preference) { .hero .light { animation: sweep 14s ease-in-out infinite alternate; } }
@keyframes sweep { from { transform: translateX(-60%); } to { transform: translateX(60%); } }
.hero .proof { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-top: 1.6rem; color: var(--ink-soft); font-size: 0.92rem; }
.hero .proof span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); margin-right: 0.5rem; vertical-align: middle; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } .hero .art { order: -1; max-width: 420px; margin-inline: auto; } }

/* catalog cards */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.card { position: relative; background: var(--paper); border: 1px solid var(--line); text-decoration: none; color: var(--ink); display: grid; grid-template-rows: auto 1fr; transition: border-color 160ms ease, transform 200ms ease; }
.card:hover { border-color: var(--stone); }
@media (prefers-reduced-motion: no-preference) { .card:hover { transform: translateY(-2px); } }
.card .photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sage); }
.card .photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(0.96) sepia(0.06); transition: transform 600ms ease; }
@media (prefers-reduced-motion: no-preference) { .card:hover .photo img { transform: scale(1.03); } }
.card .bloom-corner { position: absolute; right: -6px; bottom: -6px; width: 96px; height: 96px; pointer-events: none; }
.card .bloom-corner .bloom, .card .bloom-corner .leaf { transform-box: fill-box; transform-origin: center; transform: scale(0); transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1); transition-delay: var(--d, 0s); }
.card .bloom-corner .stem { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 500ms ease; }
.card:hover .bloom-corner .bloom, .card:hover .bloom-corner .leaf, .card:focus-visible .bloom-corner .bloom, .card:focus-visible .bloom-corner .leaf { transform: scale(1); }
.card:hover .bloom-corner .stem, .card:focus-visible .bloom-corner .stem { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .card .bloom-corner { display: none; } }
.card .body { padding: 1.1rem 1.2rem 1.25rem; display: grid; gap: 0.35rem; align-content: start; }
.card .name { font-size: 1.7rem; }
.card .line { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.card .price { font-weight: 700; font-size: 1.05rem; margin-top: 0.25rem; }
.card .cta { margin-top: 0.6rem; color: var(--rose-deep); font-weight: 700; font-size: 0.95rem; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem 2rem; }
.step .n { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.4rem; line-height: 1; color: var(--rose); font-weight: 500; }
.step h3 { margin-top: 0.4rem; font-size: 1.25rem; }
.step p { color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.hiw { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem 3rem; align-items: start; }
.hiw .sticky { position: sticky; top: 90px; }
.hiw .sticky svg { width: 100%; max-width: 480px; height: auto; margin-inline: auto; display: block; }
.hiw .stage { display: grid; gap: 40vh; padding-block: 10vh; }
.hiw .stage .step { opacity: 0.35; transition: opacity 400ms ease; }
.hiw .stage .step.on { opacity: 1; }
.hiw svg .flora, .hiw svg .arrow { opacity: 0; transition: opacity 700ms ease; }
.hiw svg .frame { opacity: 0.25; transition: opacity 700ms ease; }
.hiw.s1 svg .frame { opacity: 1; }
.hiw.s2 svg .frame, .hiw.s2 svg .flora, .hiw.s2 svg .arrow { opacity: 1; }
.hiw.s3 svg .frame, .hiw.s3 svg .flora, .hiw.s3 svg .arrow { opacity: 0.08; }
@media (max-width: 860px) { .hiw { grid-template-columns: 1fr; } .hiw .sticky { position: relative; top: 0; } .hiw .stage { gap: 2rem; padding-block: 1rem; } .hiw .stage .step { opacity: 1; } .hiw svg .flora, .hiw svg .arrow, .hiw svg .frame { opacity: 1 !important; } }

/* proofs */
.proofs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem 2rem; }
.proofs h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 1.55rem; }
.proofs p { color: var(--ink-soft); margin: 0; }
@media (max-width: 860px) { .proofs { grid-template-columns: 1fr; } }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 180px; gap: 0.6rem; }
.gallery figure { margin: 0; overflow: hidden; background: var(--sage); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(0.96) sepia(0.06); }
.gallery figure:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery figure:nth-child(2) { grid-column: span 3; }
.gallery figure:nth-child(3), .gallery figure:nth-child(4) { grid-column: span 3; }
.gallery figure:nth-child(5) { grid-column: span 2; }
.gallery figure:nth-child(6) { grid-column: span 4; }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; } .gallery figure { grid-column: span 1 !important; grid-row: span 1 !important; } }
.caption { color: var(--ink-soft); font-size: 0.88rem; margin-top: 0.8rem; }

/* venues */
.venues { display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; }
.venues span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.2rem; font-weight: 600; padding: 0.3rem 0.8rem; border: 1px solid var(--line); background: var(--paper); }

/* faq */
.faq { max-width: 760px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 0.95rem 0; font-weight: 700; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--rose); font-size: 1.4rem; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1rem; color: var(--ink-soft); max-width: 66ch; }

/* cta strip */
.cta-strip { background: var(--ink); color: var(--ivory); }
.cta-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 2.2rem; }
.cta-strip .display { font-size: 2rem; font-style: italic; font-weight: 500; }
.cta-strip .btn.primary { background: var(--ivory); color: var(--ink); }

/* footer: the same lockup, centered, with the tagline and links beneath it */
.site-footer { border-top: 1px solid var(--line); padding-block: 2.8rem 6rem; color: var(--ink-soft); font-size: 0.96rem; text-align: center; }
.site-footer .wrap { display: grid; justify-items: center; gap: 1.1rem; }
.site-footer .brand svg { width: 56px; height: 56px; }
.site-footer .wordmark { font-size: 2.1rem; }
.site-footer .descriptor { font-size: 0.8rem; }
.site-footer .foot-lede { max-width: 46ch; margin: 0.2rem 0 0; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.5rem; }
.foot-links a, .foot-contact a { color: var(--ink); text-decoration: none; font-weight: 600; }
.foot-links a:hover, .foot-contact a:hover { text-decoration: underline; }
.foot-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 0.7rem; margin: 0; }
.site-footer .fine { width: 100%; border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 0.6rem; font-size: 0.84rem; }
@media (max-width: 480px) { .site-footer .brand svg { width: 44px; height: 44px; } .site-footer .wordmark { font-size: 1.5rem; } .site-footer .descriptor { font-size: 0.58rem; } }

/* mobile sticky bar */
.sticky-cta { display: none; }
@media (max-width: 860px) {
  .sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--paper); border-top: 1px solid var(--line); padding: 0.6rem var(--gutter); gap: 0.6rem; align-items: center; justify-content: space-between; }
  .sticky-cta .price { font-weight: 700; }
  .sticky-cta .btn { flex: 1; justify-content: center; }
}

/* arch page */
.arch-hero { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2rem 3rem; align-items: start; }
.arch-hero .media { display: grid; gap: 0.6rem; }
.arch-hero .media .main { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sage); }
.arch-hero .media .main img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(0.96) sepia(0.06); }
.arch-hero .media .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.arch-hero .media .thumbs div { aspect-ratio: 1; overflow: hidden; background: var(--sage); }
.arch-hero .media .thumbs img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(0.96) sepia(0.06); }
.arch-hero .info { position: sticky; top: 90px; display: grid; gap: 1rem; }
.arch-hero .info h1 { font-style: normal; font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); }
.pricecard { background: var(--paper); border: 1px solid var(--line); padding: 1.2rem 1.3rem; display: grid; gap: 0.8rem; }
.pricecard .price { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.pricecard .price small { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); margin-left: 0.4rem; }
.pricecard ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; font-size: 0.95rem; color: var(--ink-soft); }
.pricecard ul li::before { content: "✓"; color: var(--rose); margin-right: 0.5rem; font-weight: 700; }
.specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem 1.4rem; font-size: 0.95rem; }
.specs div { border-bottom: 1px solid var(--line); padding-bottom: 0.4rem; }
.specs .eyebrow { display: block; font-size: 0.64rem; }
.styler { background: var(--paper); border: 1px solid var(--line); padding: 1rem 1.1rem; display: grid; gap: 0.8rem; }
.styler .mini { --petal: #F5F1E8; --petal-deep: #DCCFBD; --accent: #B76E79; --leaf: #7E9C8A; --leaf-deep: #5E7D6A; }
.styler .mini svg { width: 100%; max-width: 300px; height: auto; margin-inline: auto; display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { border: 1px solid var(--stone); background: transparent; color: var(--ink); font: inherit; font-size: 0.88rem; font-weight: 600; padding: 0.35rem 0.75rem 0.35rem 0.55rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.45rem; }
.chip i { width: 13px; height: 13px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0, 0, 0, 0.12); }
.chip[aria-pressed="true"] { border-color: var(--ink); background: var(--ivory); }
@media (max-width: 860px) { .arch-hero { grid-template-columns: 1fr; } .arch-hero .info { position: static; } }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.tier { background: var(--paper); border: 1px solid var(--line); padding: 1.3rem 1.4rem; display: grid; gap: 0.5rem; align-content: start; }
.tier .display { font-size: 1.8rem; }
.tier .price { font-size: 1.6rem; font-weight: 700; }
.tier ul { list-style: none; padding: 0; margin: 0.3rem 0 0; display: grid; gap: 0.3rem; color: var(--ink-soft); font-size: 0.95rem; }
.tier ul li::before { content: "✓"; color: var(--rose); margin-right: 0.5rem; font-weight: 700; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }
table.simple { border-collapse: collapse; width: 100%; max-width: 640px; font-size: 0.97rem; }
table.simple th, table.simple td { text-align: left; padding: 0.6rem 0.4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.simple th { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.11em; color: var(--ink-soft); }
table.simple td.r { text-align: right; white-space: nowrap; font-weight: 700; }
.mapwrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: center; }
.mapwrap svg { width: 100%; height: auto; max-width: 520px; }
@media (max-width: 860px) { .mapwrap { grid-template-columns: 1fr; } }

/* forms */
.form { display: grid; gap: 1rem; max-width: 640px; }
.form .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form label { display: grid; gap: 0.3rem; font-weight: 600; font-size: 0.92rem; }
.form input, .form select, .form textarea { font: inherit; padding: 0.7rem 0.8rem; border: 1px solid var(--stone); background: var(--paper); color: var(--ink); width: 100%; border-radius: 0; }
.form textarea { min-height: 120px; resize: vertical; }
.form .fine { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.success { display: none; grid-template-columns: 120px minmax(0, 1fr); gap: 1.2rem; align-items: center; background: var(--paper); border: 1px solid var(--line); padding: 1.4rem; max-width: 640px; }
.success.show { display: grid; }
.success svg { width: 120px; height: 120px; }
.success .bloom, .success .leaf { transform-box: fill-box; transform-origin: center; animation: bloom 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: var(--d); }
.success .stem { stroke-dasharray: 1; stroke-dashoffset: 0; animation: draw 0.7s ease-out both; }

/* about */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 2rem 3rem; align-items: start; }
.about .portrait { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sage); }
.about .portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(0.96) sepia(0.06); }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

/* ornaments */
.sprig-orn { position: absolute; width: 180px; height: 180px; opacity: 0.22; pointer-events: none; }
.rel { position: relative; overflow: hidden; }

/* living arch animation */
.frame { stroke-dasharray: 1; stroke-dashoffset: 0; }
.stem { stroke-dasharray: 1; stroke-dashoffset: 0; }
.leaf, .bloom, .head, .fletch { transform-box: fill-box; transform-origin: center; }
.sway { transform-box: view-box; will-change: transform; }
svg.paused .sway { animation-play-state: paused !important; }
svg.play .frame { animation: draw 1.1s ease-out both; }
svg.play .stem { animation: draw 0.7s ease-out both; animation-delay: var(--d); }
svg.play .leaf { animation: pop 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.25) both; animation-delay: var(--d); }
svg.play .bloom { animation: bloom 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: var(--d); }
svg.play .shaft { stroke-dasharray: 1; stroke-dashoffset: 0; animation: draw 0.5s ease-in both; animation-delay: 2.45s; }
svg.play .head, svg.play .fletch { animation: pop 0.3s ease-out both; animation-delay: 2.9s; }
svg.play .sway { animation: sway 6.5s ease-in-out infinite alternate; animation-delay: var(--sd); }
svg.still .sway { animation: sway 6.5s ease-in-out infinite alternate; animation-delay: var(--sd); }
@keyframes draw { from { stroke-dashoffset: 1; } }
@keyframes pop { from { transform: scale(0); } }
@keyframes bloom { from { transform: scale(0) rotate(-30deg); } }
@keyframes sway { from { transform: rotate(-1.3deg); } to { transform: rotate(1.3deg); } }
@media (prefers-reduced-motion: reduce) { svg.play *, svg.still *, .success * { animation: none !important; } }

/* The honeypot: off-screen for people, present in the DOM for bots. Not
   display:none, which some bots skip. */
.form .hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
/* The enquiry form's error state. It has to be legible against ivory, so it
   uses rose deep rather than the accent rose. */
.form-error{margin:0.4rem 0 0;color:var(--rose-deep,#8E4F59);font-size:0.9rem;font-weight:600}
