:root {
    --cream: #f7ede3;
    --taupe: #bfb299;
    --sage: #827c60;
    --ink: #48452f;
    --terracotta: #c0936d;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { font-family: 'Albert Sans', sans-serif; color: var(--ink); background: var(--cream); line-height: 1.7; overflow-x: hidden; }

h1, h2, h3 { font-family: 'Tenor Sans', serif; font-weight: 400; text-wrap: balance; }

.script { font-family: 'Dancing Script', cursive; font-weight: 600; color: var(--terracotta); }

a { color: inherit; }

button { font-family: inherit; }

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

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--cream); padding: 10px 18px; z-index: 100; }

.skip-link:focus { left: 16px; top: 16px; }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 32px; max-width: 1180px; margin: 0 auto; position: relative; }

.logo { font-family: 'Tenor Sans', serif; font-size: 19px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; }

.logo .amp { font-family: 'Dancing Script', cursive; color: var(--terracotta); font-size: 21px; margin: 0 3px; text-transform: none; }

nav ul { list-style: none; display: flex; gap: 26px; font-size: 13px; letter-spacing: 0.05em; }

nav a { text-decoration: none; opacity: 0.8; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease; }

nav a:hover, nav a[aria-current="page"] { opacity: 1; border-bottom-color: var(--terracotta); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0; }

.nav-toggle span { display: block; width: 100%; height: 1.5px; background: var(--ink); }

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    #primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(72,69,47,0.12); opacity: 0; transform: translateY(-6px); visibility: hidden; pointer-events: none; transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 200ms; }
    #primary-nav.open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 0s linear 0s; }
    #primary-nav ul { flex-direction: column; gap: 4px; padding: 10px 32px 26px; }
    #primary-nav a { display: block; padding: 10px 0; transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease; }
  }

footer .bloom { width: 34px; height: 34px; }

footer .logo { display: inline-flex; }

footer .tagline { font-size: 13px; letter-spacing: 0.05em; color: var(--sage); }

.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; font-size: 13px; list-style: none; }

.footer-links a { text-decoration: none; opacity: 0.8; border-bottom: 1px solid transparent; transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease; }

.footer-links a:hover { opacity: 1; border-bottom-color: var(--terracotta); }

.social-row { display: flex; justify-content: center; gap: 22px; font-size: 14px; list-style: none; }

.social-row a { text-decoration: none; border-bottom: 1px solid transparent; transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease; }

.social-row a:hover { border-bottom-color: var(--terracotta); }

footer .copyright { font-size: 12px; color: var(--sage); opacity: 0.8; }

.legal-links { display: flex; justify-content: center; gap: 16px; font-size: 12px; list-style: none; }

.legal-links a { color: var(--sage); text-decoration: none; border-bottom: 1px solid transparent; transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease; }

.legal-links a:hover { border-bottom-color: var(--terracotta); }

a:focus-visible, button:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

header { position: sticky; top: 0; z-index: 20; background: rgba(247,237,227,0.9); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(72,69,47,0.1); }

.page-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--sage); margin-bottom: 22px; }

.page-header h1 { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.2; margin-bottom: 22px; }

.page-header p.lede { font-size: 17px; max-width: 620px; opacity: 0.85; }

footer { border-top: 1px solid rgba(72,69,47,0.12); padding: 60px 32px 44px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }

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

.page-header { padding: 80px 32px 60px; max-width: 900px; margin: 0 auto; }