:root {
  --cream: #f1e5c9;
  --paper: #f8efd9;
  --espresso: #382319;
  --coffee: #705546;
  --moss: #5f6846;
  --moss-dark: #454c31;
  --plum: #705065;
  --amber: #b8843e;
  --clay: #a86950;
  --lavender: #96808e;
  --line: rgba(139, 99, 45, 0.26);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 26px 70px rgba(64, 42, 25, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 16% 18%, rgba(255, 250, 229, 0.72), transparent 32%),
    radial-gradient(circle at 83% 8%, rgba(183, 139, 71, 0.09), transparent 24%),
    radial-gradient(circle at 68% 78%, rgba(112, 80, 101, 0.05), transparent 28%),
    repeating-linear-gradient(3deg, rgba(90, 59, 35, 0.018) 0 1px, transparent 1px 5px);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.section-pad { padding-left: clamp(24px, 6vw, 96px); padding-right: clamp(24px, 6vw, 96px); }
.eyebrow {
  display: block; margin-bottom: 16px; color: var(--moss-dark); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.2em; line-height: 1.2; text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.02; }
h2 { margin-bottom: 0; font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -0.035em; }
:focus-visible { outline: 2px solid var(--plum); outline-offset: 4px; }

.site-header {
  position: sticky; z-index: 50; top: 0; display: flex; align-items: center; justify-content: space-between;
  height: 84px; padding: 0 clamp(24px, 6vw, 96px); border-bottom: 1px solid transparent;
  background: rgba(241, 229, 201, 0.92); backdrop-filter: blur(14px); transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 7px 24px rgba(45, 33, 27, 0.05); }
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.32rem; font-style: italic; }
.wordmark-mark { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(184,132,62,0.55); border-radius: 50%; color: var(--amber); font-size: 0.76rem; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--espresso); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 12px 19px; border: 1px solid var(--espresso); border-radius: 999px; transition: background 180ms ease, color 180ms ease; }
.nav-cta:hover { background: var(--espresso); color: var(--paper); }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--espresso); }

.hero {
  position: relative; display: grid; min-height: calc(100vh - 84px); align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr); gap: clamp(50px, 7vw, 120px);
  padding-top: clamp(58px, 8vh, 110px); padding-bottom: clamp(70px, 10vh, 130px); overflow: hidden;
}
.hero::before { position: absolute; top: 2%; left: 48%; width: 38vw; height: 38vw; border: 1px solid rgba(118, 90, 104, 0.11); border-radius: 50%; content: ""; }
.hero-copy { position: relative; z-index: 2; max-width: 730px; }
.hero h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(4.8rem, 10vw, 10.4rem); letter-spacing: -0.065em; }
.hero-note { max-width: 550px; margin-bottom: 36px; color: var(--coffee); font-size: 1rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 28px; padding: 0 25px; border: 1px solid var(--espresso); border-radius: 999px; cursor: pointer; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: transform 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--espresso); color: var(--paper); }
.button.primary:hover { background: var(--plum); border-color: var(--plum); }
.button-link { position: relative; font-family: var(--display); font-size: 1.05rem; font-style: italic; }
.button-link::after { position: absolute; right: 0; bottom: -4px; left: 0; height: 1px; background: currentColor; content: ""; transform-origin: left; transition: transform 180ms ease; }
.button-link:hover::after { transform: scaleX(0.55); }

.hero-art {
  position: relative; min-height: 610px; border-radius: 48% 48% 44% 44%;
  background: radial-gradient(circle at 50% 31%, rgba(255,255,255,0.42), transparent 23%), linear-gradient(145deg, #d9d0be 0%, #b7af9d 100%);
  box-shadow: var(--shadow); overflow: hidden;
}
.hero-art::before { position: absolute; inset: 22px; border: 1px solid rgba(45,33,27,0.18); border-radius: inherit; content: ""; }
.hero-art::after { position: absolute; right: 10%; bottom: 8%; left: 10%; height: 16%; border-radius: 50%; background: rgba(45,33,27,0.13); content: ""; filter: blur(22px); }
.hero-art > p { position: absolute; z-index: 4; right: 0; bottom: 38px; left: 0; margin: 0; color: rgba(45,33,27,0.72); font-family: var(--display); font-size: 1.1rem; font-style: italic; letter-spacing: 0.04em; text-align: center; }
.hero-art > p small { font-family: var(--sans); font-size: 0.6rem; font-style: normal; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-moon { position: absolute; top: 9%; right: 15%; color: rgba(45,33,27,0.45); font-family: var(--display); font-size: 3.2rem; transform: rotate(-16deg); }
.spark { position: absolute; z-index: 2; color: rgba(45,33,27,0.48); }
.spark-one { top: 21%; left: 17%; font-size: 1.35rem; }
.spark-two { top: 12%; left: 37%; font-size: 3rem; }
.spark-three { top: 34%; right: 12%; font-size: 1.1rem; }
.steam { position: absolute; z-index: 3; width: 56px; height: 160px; border-left: 2px solid rgba(71,59,48,0.42); border-radius: 50%; }
.steam-one { top: 18%; left: 40%; transform: rotate(-9deg); }
.steam-two { top: 14%; left: 50%; height: 190px; transform: rotate(5deg); }
.steam-three { top: 21%; left: 58%; height: 140px; transform: rotate(13deg); }
.vessel-rim { position: absolute; z-index: 5; top: 49%; left: 50%; width: 58%; height: 45px; border: 2px solid rgba(45,33,27,0.76); border-radius: 50%; background: #c8bca8; transform: translateX(-50%); box-shadow: inset 0 8px 0 rgba(45,33,27,0.12); }
.vessel { position: absolute; z-index: 4; top: 51%; left: 50%; display: grid; width: 53%; height: 29%; place-items: center; border: 2px solid rgba(45,33,27,0.76); border-top: 0; border-radius: 12% 12% 48% 48%; background: linear-gradient(160deg, #685b51, #342a25); color: #d9c9ac; transform: translateX(-50%); box-shadow: inset 16px 0 40px rgba(255,255,255,0.08), 0 28px 40px rgba(45,33,27,0.2); }
.vessel::before, .vessel::after { position: absolute; bottom: -25px; width: 14px; height: 34px; border-radius: 0 0 10px 10px; background: #342a25; content: ""; }
.vessel::before { left: 23%; transform: rotate(15deg); }
.vessel::after { right: 23%; transform: rotate(-15deg); }
.vessel span { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.8rem); font-style: italic; }
.botanical { position: absolute; z-index: 5; color: rgba(75,85,66,0.68); font-family: var(--display); font-size: 7rem; }
.botanical-left { bottom: 12%; left: 5%; transform: rotate(-40deg); }
.botanical-right { right: 3%; bottom: 16%; transform: scaleX(-1) rotate(-48deg); }

.intro { padding-top: clamp(44px, 5vw, 72px); padding-bottom: clamp(44px, 5vw, 72px); text-align: center; }
.intro .flourish { display: block; margin-bottom: 36px; color: var(--amber); font-family: var(--display); letter-spacing: 0.28em; }
.intro p { max-width: 930px; margin: 0 auto 34px; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.1rem); letter-spacing: -0.035em; line-height: 1.18; }
.signature { color: var(--plum); font-family: var(--display); font-size: 1.15rem; font-style: italic; }

.categories { padding-top: 80px; padding-bottom: 92px; border-top: 1px solid var(--line); background: var(--paper); }
.section-heading { display: flex; max-width: 1340px; align-items: flex-end; justify-content: space-between; gap: 40px; margin: 0 auto 42px; }
.section-heading > div { max-width: 920px; }
.section-heading > p { max-width: 360px; margin-bottom: 6px; color: var(--coffee); }
.category-grid { display: grid; max-width: 1340px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); }
.category-card { position: relative; min-height: 250px; padding: 30px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; text-align: left; transition: color 220ms ease, background 220ms ease; }
.category-card:hover { background: var(--moss); color: var(--paper); }
.category-icon { display: grid; width: 54px; height: 54px; margin-bottom: 42px; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--plum); font-family: var(--display); font-size: 1.5rem; }
.category-card:hover .category-icon { color: var(--paper); }
.category-name { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 1.7rem; }
.category-description { display: block; max-width: 170px; color: var(--coffee); font-size: 0.72rem; letter-spacing: 0.06em; line-height: 1.5; text-transform: uppercase; }
.category-card:hover .category-description { color: rgba(255,255,255,0.7); }
.category-arrow { position: absolute; right: 28px; bottom: 25px; font-size: 1.2rem; transition: transform 220ms ease; }
.category-card:hover .category-arrow { transform: translate(4px, 4px); }

.featured { padding-top: 88px; padding-bottom: 102px; }
.featured-grid { display: grid; max-width: 1340px; margin: 0 auto; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.product-card { height: 100%; border: 1px solid var(--line); background: var(--paper); transition: transform 220ms ease, box-shadow 220ms ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card.is-gifted { opacity: 0.64; }
.product-art { position: relative; display: grid; aspect-ratio: 1.08; place-items: center; overflow: hidden; }
.tone-amber { background: #dbc5a4; }
.tone-moss { background: #adb5a2; }
.tone-plum { background: #c3adb7; }
.tone-clay { background: #d6b29f; }
.tone-lavender { background: #c9bdc6; }
.art-orbit { position: absolute; width: 58%; height: 58%; border: 1px solid rgba(45,33,27,0.35); border-radius: 50%; }
.art-orbit::before { position: absolute; inset: 17%; border: 1px solid rgba(45,33,27,0.2); border-radius: 50%; content: ""; }
.art-mark { position: relative; z-index: 2; color: rgba(45,33,27,0.82); font-family: var(--display); font-size: clamp(4.4rem, 8vw, 7rem); line-height: 1; text-shadow: 0 18px 20px rgba(45,33,27,0.12); }
.art-star { position: absolute; top: 15%; right: 17%; color: rgba(45,33,27,0.5); }
.product-body { padding: 25px; }
.product-meta-row { display: flex; min-height: 21px; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; color: var(--moss-dark); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.priority { padding: 4px 8px; border: 1px solid currentColor; border-radius: 999px; color: var(--plum); font-size: 0.52rem; }
.product-body h3 { margin-bottom: 9px; font-size: 1.7rem; line-height: 1.1; }
.product-body > p { min-height: 45px; margin-bottom: 18px; color: var(--coffee); font-family: var(--display); font-size: 1rem; font-style: italic; line-height: 1.4; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-price-row strong { font-family: var(--display); font-size: 1.4rem; font-weight: 400; }
.product-price-row > span { color: var(--coffee); font-size: 0.58rem; letter-spacing: 0.05em; text-align: right; text-transform: uppercase; }
.text-button { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-top: 21px; padding: 12px 0 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.text-button span { transition: transform 180ms ease; }
.text-button:hover span { transform: translate(3px, -3px); }
.funding { margin-top: 22px; }
.funding-copy { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--coffee); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.progress-track { height: 4px; overflow: hidden; border-radius: 999px; background: rgba(45,33,27,0.12); }
.progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--plum); }
.gift-status { display: flex; align-items: center; justify-content: space-between; margin-top: 21px; padding-top: 13px; border-top: 1px solid var(--line); color: var(--moss-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

.how { display: grid; align-items: stretch; grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr); gap: clamp(48px, 7vw, 110px); padding-top: 90px; padding-bottom: 90px; background: var(--moss-dark); color: var(--paper); }
.how .eyebrow { color: #d7bd92; }
.how-intro { position: relative; height: 100%; }
.how-intro h2 { margin-bottom: 28px; }
.how-intro p { max-width: 460px; color: rgba(255,255,255,0.68); }
.how-intro .gifting-reassurance {
  display: grid;
  margin: 30px 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(213, 181, 112, 0.32);
  color: rgba(255,255,255,0.9);
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
  grid-template-columns: 20px 1fr;
  gap: 11px;
}
.gifting-reassurance span { color: #d5b570; font-size: 0.75rem; font-style: normal; }
.how-symbol { position: absolute; right: 5%; bottom: -12%; color: rgba(255,255,255,0.09); font-family: var(--display); font-size: 12rem; }
.steps { display: grid; height: 100%; border-top: 1px solid rgba(255,255,255,0.2); grid-template-rows: repeat(3, minmax(0, 1fr)); }
.step { display: grid; min-height: 0; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.2); grid-template-columns: 58px minmax(150px, 0.7fr) 1fr; gap: 24px; }
.step-number { color: #d7bd92; font-family: var(--display); font-size: 0.95rem; font-style: italic; }
.step h3 { margin: 0; font-size: 1.65rem; }
.step p { margin: 0; color: rgba(255,255,255,0.67); font-size: 0.9rem; }

.registry { padding-top: 92px; padding-bottom: 94px; background: var(--paper); }
.registry-heading { display: flex; max-width: 1340px; align-items: flex-end; justify-content: space-between; gap: 30px; margin: 0 auto 32px; }
.registry-heading-actions { display: flex; align-items: center; gap: 22px; }
.registry-heading-actions > p { color: var(--coffee); font-family: var(--display); font-style: italic; }
.registry-heading-actions .button { min-height: 46px; padding: 0 20px; }
.filters { display: flex; max-width: 1340px; margin: 0 auto 38px; gap: 10px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; }
.filter-button { flex: 0 0 auto; padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; transition: background 180ms ease, color 180ms ease; }
.filter-button:hover, .filter-button.active { background: var(--espresso); color: var(--paper); }
.registry-grid { display: grid; max-width: 1340px; margin: 0 auto; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.registry-grid .product-art { aspect-ratio: 1.22; }
.registry-grid .product-body h3 { font-size: 1.45rem; }
.registry-grid .product-body { padding: 22px; }
.empty-state { grid-column: 1 / -1; padding: 80px 24px; border: 1px dashed var(--line); text-align: center; }
.empty-state > span { color: var(--plum); font-size: 2.6rem; }
.empty-state h3 { margin: 16px 0 8px; font-size: 2rem; }
.empty-state p { color: var(--coffee); }
.registry-legend { display: flex; max-width: 1340px; margin: 35px auto 0; flex-wrap: wrap; gap: 24px; color: var(--coffee); font-size: 0.64rem; letter-spacing: 0.07em; text-transform: uppercase; }
.registry-legend > span { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.available { border: 1px solid var(--moss-dark); }
.legend-dot.partial { background: var(--plum); }
.legend-dot.gifted { background: var(--moss); opacity: 0.5; }

.big-things { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: clamp(60px, 9vw, 145px); padding-top: 92px; padding-bottom: 102px; }
.big-things-heading { align-self: start; }
.big-things-heading h2 { margin-bottom: 28px; }
.big-things-heading p { max-width: 440px; color: var(--coffee); }
.group-list { border-top: 1px solid var(--line); }
.group-card { display: grid; align-items: center; padding: 29px 0; border-bottom: 1px solid var(--line); grid-template-columns: 90px 1fr 52px; gap: 26px; }
.group-icon { display: grid; width: 78px; height: 78px; place-items: center; border-radius: 50%; color: var(--espresso); font-family: var(--display); font-size: 2.8rem; }
.group-copy .eyebrow { margin-bottom: 7px; font-size: 0.55rem; }
.group-copy h3 { margin-bottom: 5px; font-size: 1.7rem; }
.group-copy p { margin-bottom: 14px; color: var(--coffee); font-size: 0.75rem; }
.progress-track.large { max-width: 410px; height: 5px; }
.round-button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--espresso); border-radius: 50%; background: transparent; cursor: pointer; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.round-button:hover { background: var(--espresso); color: var(--paper); transform: translate(2px, -2px); }

.personal { display: grid; align-items: center; grid-template-columns: 1fr 1fr; background: #c7b3ba; }
.personal-art { position: relative; min-height: 540px; overflow: hidden; background: #6f5864; }
.personal-art::before, .personal-art::after { position: absolute; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; content: ""; }
.personal-art::before { inset: 12%; }
.personal-art::after { inset: 26%; }
.family-orbit { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 38%; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; color: #eee5da; transform: translate(-50%, -50%); }
.family-orbit span { font-family: var(--display); font-size: clamp(2rem, 4vw, 4.5rem); font-style: italic; }
.personal-moon { position: absolute; top: 12%; left: 15%; color: #dec99f; font-size: 4rem; }
.personal-star { position: absolute; color: #dec99f; }
.star-a { top: 18%; right: 19%; font-size: 1.4rem; }
.star-b { right: 15%; bottom: 18%; font-size: 2rem; }
.personal-sprig { position: absolute; bottom: 6%; left: 8%; color: rgba(222,201,159,0.55); font-family: var(--display); font-size: 10rem; transform: rotate(-40deg); }
.personal-copy { max-width: 700px; padding: clamp(54px, 6vw, 96px); padding-right: clamp(24px, 6vw, 96px); }
.personal-copy .eyebrow { color: var(--espresso); }
.personal-copy h2 { margin-bottom: 35px; }
.personal-copy p { margin-bottom: 32px; font-family: var(--display); font-size: clamp(1.45rem, 2.6vw, 2.4rem); font-style: italic; line-height: 1.4; }
.personal-copy .signature { color: var(--espresso); }

.faq { display: grid; max-width: 1532px; margin: 0 auto; grid-template-columns: 0.76fr 1.24fr; gap: clamp(60px, 10vw, 170px); padding-top: 92px; padding-bottom: 102px; }
.faq-heading { align-self: start; }
.faq-heading h2 { margin-bottom: 28px; }
.faq-heading p { max-width: 370px; color: var(--coffee); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 1.55rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 15px; height: 1px; background: currentColor; content: ""; transform: translate(-50%, -50%); transition: transform 180ms ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { max-width: 690px; margin: -4px 52px 28px 0; color: var(--coffee); }

.site-footer { padding-top: 72px; padding-bottom: 30px; background: var(--espresso); color: var(--paper); text-align: center; }
.footer-mark { margin-bottom: 28px; color: #d8bd8d; letter-spacing: 0.5em; }
.site-footer h2 { margin-bottom: 12px; font-size: clamp(3.3rem, 7vw, 7rem); font-style: italic; }
.site-footer > p { color: rgba(255,255,255,0.6); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); font-size: 0.61rem; letter-spacing: 0.12em; text-transform: uppercase; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; padding: 20px; place-items: center; background: rgba(45,33,27,0.58); backdrop-filter: blur(7px); }
.modal-backdrop[hidden] { display: none; }
.gift-modal { position: relative; width: min(540px, 100%); max-height: 90vh; overflow-y: auto; padding: clamp(34px, 6vw, 58px); background: var(--paper); box-shadow: 0 40px 100px rgba(0,0,0,0.2); text-align: center; }
.modal-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border: 0; background: transparent; cursor: pointer; font-family: var(--display); font-size: 1.8rem; }
.modal-icon { display: grid; width: 80px; height: 80px; margin: 0 auto 26px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--plum); font-family: var(--display); font-size: 2.8rem; }
.modal-icon.success { background: var(--moss); color: white; }
.gift-modal h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 7vw, 4.2rem); }
.gift-modal p { color: var(--coffee); }
.modal-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 28px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; }
.modal-summary strong { font-family: var(--display); font-size: 1.35rem; font-weight: 400; letter-spacing: 0; }
.gift-modal .button { width: 100%; }
.gift-modal small { display: block; margin-top: 16px; color: var(--coffee); font-size: 0.68rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease var(--delay, 0ms), transform 700ms ease var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reference-led parchment and botanical restyle */
#registry-app { overflow: hidden; }
.site-header { border-bottom-color: rgba(139, 99, 45, 0.14); }
.site-header.scrolled { border-color: rgba(139, 99, 45, 0.32); box-shadow: 0 7px 28px rgba(64, 42, 25, 0.08); }
.nav-cta { border-color: rgba(56, 35, 25, 0.72); }

.hero {
  display: grid;
  width: 100%;
  max-width: 1600px;
  min-height: 0;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(24px, 3.5vh, 44px);
  padding-bottom: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0px, 0.5vw, 10px);
  overflow: hidden;
}
.hero::before { display: none; }
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
  padding-left: 0;
}
.hero-copy::before {
  position: absolute;
  top: -14%;
  left: -12%;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 132, 62, 0.13);
  border-radius: 50%;
  content: "";
}
.hero-copy > * { position: relative; z-index: 1; }
.hero-copy .eyebrow { margin-bottom: 20px; color: var(--amber); }
.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(5.2rem, 8.6vw, 9.7rem);
  letter-spacing: -0.065em;
  line-height: 0.86;
}
.hero-title-rule {
  display: flex;
  width: min(410px, 74%);
  align-items: center;
  gap: 12px;
  margin: 30px 0 20px;
  color: var(--amber);
}
.hero-title-rule::before,
.hero-title-rule::after { height: 1px; flex: 1; background: rgba(184, 132, 62, 0.55); content: ""; }
.hero-title-rule span { font-size: 0.78rem; }
.hero-note { max-width: 570px; margin-bottom: 34px; color: var(--coffee); font-family: var(--sans); font-size: 0.96rem; font-style: normal; line-height: 1.75; }
.hero-actions { justify-content: flex-start; margin-bottom: clamp(34px, 3vw, 48px); }
.hero-artwork {
  display: grid;
  min-width: 0;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}
.hero-artwork-canvas {
  position: relative;
  min-height: clamp(455px, 52vh, 535px);
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.75) 4%, #000 11%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.75) 4%, #000 11%, #000 100%);
}
.hero-artwork-canvas::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(241,229,201,0.28) 5%, transparent 15%);
  pointer-events: none;
  content: "";
}
.hero-artwork-canvas img {
  position: absolute;
  top: 50%;
  right: -10%;
  width: auto;
  max-width: none;
  height: 140%;
  transform: translateY(-50%);
  filter: saturate(0.96) contrast(0.99);
}
@media (min-width: 801px) {
  .hero { isolation: isolate; }
  .hero-artwork {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    pointer-events: none;
  }
  .hero-artwork-canvas {
    width: 100%;
    height: 100%;
    min-height: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-artwork-canvas::after {
    display: block;
    background: linear-gradient(to bottom, transparent 0%, transparent 73%, rgba(241,229,201,0.34) 87%, var(--cream) 100%);
  }
  .hero-artwork-canvas img {
    top: -3%;
    right: -2%;
    width: auto;
    height: 112%;
    transform: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.18) 9%, rgba(0,0,0,0.72) 21%, #000 31%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.18) 9%, rgba(0,0,0,0.72) 21%, #000 31%);
  }
  .hero-actions { position: relative; isolation: isolate; }
  .hero-actions::before {
    position: absolute;
    z-index: -1;
    inset: -24px -42px -24px -30px;
    background: radial-gradient(ellipse at 30% 50%, rgba(241,229,201,0.86) 0%, rgba(241,229,201,0.5) 48%, transparent 76%);
    content: "";
    filter: blur(7px);
    pointer-events: none;
  }
}
.hero-center-detail {
  position: absolute;
  z-index: 6;
  display: grid;
  top: 50%;
  bottom: auto;
  left: 50%;
  width: min(286px, 24vw);
  justify-items: center;
  margin: 0;
  padding: 13px 20px;
  border-top: 1px solid rgba(139, 99, 45, 0.42);
  border-bottom: 1px solid rgba(139, 99, 45, 0.42);
  background: rgba(241, 229, 201, 0.94);
  box-shadow: 0 10px 28px rgba(64, 42, 25, 0.08);
  color: var(--espresso);
  text-align: center;
  transform: translate(-50%, -50%);
}
.hero-center-detail::before,
.hero-center-detail::after {
  position: absolute;
  top: 50%;
  width: clamp(36px, 4vw, 68px);
  height: 1px;
  background: rgba(139, 99, 45, 0.42);
  content: "";
}
.hero-center-detail::before { right: calc(100% + 12px); }
.hero-center-detail::after { left: calc(100% + 12px); }
.hero-due-date { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.hero-due-date > span { color: var(--coffee); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-center-detail strong { font-family: var(--display); font-size: 1.45rem; font-weight: 400; font-style: italic; }

.hero-footprints {
  position: absolute;
  z-index: 3;
  top: 18%;
  left: 43.5%;
  width: 92px;
  height: 104px;
  color: var(--amber);
  opacity: 0.28;
  pointer-events: none;
  transform: rotate(24deg);
}
.baby-step { position: absolute; display: block; width: 18px; height: 29px; }
.baby-step i {
  position: absolute;
  right: 2px;
  bottom: 0;
  width: 10px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 58% 42% 52% 48%;
  transform: rotate(-8deg);
}
.baby-step b { position: absolute; top: 2px; width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.baby-step b:nth-of-type(1) { right: 1px; }
.baby-step b:nth-of-type(2) { top: 0; right: 6px; }
.baby-step b:nth-of-type(3) { top: 2px; right: 11px; }
.baby-step b:nth-of-type(4) { top: 6px; right: 14px; width: 2.5px; height: 2.5px; }
.baby-step b:nth-of-type(5) { top: 10px; right: 16px; width: 2px; height: 2px; }
.baby-step.step-a { top: 68px; left: 6px; }
.baby-step.step-b { top: 34px; left: 45px; transform: scaleX(-1) rotate(-8deg); }
.baby-step.step-c { top: 0; left: 16px; transform: rotate(5deg); opacity: 0.72; }

.button { border-color: rgba(56, 35, 25, 0.72); }
.button.primary { border-color: var(--espresso); background: var(--espresso); box-shadow: inset 0 0 0 1px rgba(222, 189, 121, 0.14); }
.button.primary:hover { border-color: var(--moss-dark); background: var(--moss-dark); }
.eyebrow { color: var(--moss-dark); }

.intro {
  position: relative;
  border-top: 0;
  border-bottom: 1px solid rgba(139, 99, 45, 0.18);
  background: linear-gradient(to bottom, rgba(241, 229, 201, 0) 0%, rgba(248, 239, 217, 0.42) 34%, rgba(248, 239, 217, 0.42) 100%);
}
.intro::before,
.intro::after {
  position: absolute;
  top: 50%;
  color: rgba(95, 104, 70, 0.22);
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 12rem);
  content: "❧";
}
.intro::before { left: 2vw; transform: translateY(-50%) rotate(-34deg); }
.intro::after { right: 2vw; transform: translateY(-50%) scaleX(-1) rotate(-34deg); }
.intro p { position: relative; z-index: 1; color: #4a3024; }

.coming-soon-mode .how,
.coming-soon-mode .categories,
.coming-soon-mode .registry,
.coming-soon-mode .faq,
.coming-soon-mode .modal-backdrop { display: none; }

.registry-coming-soon {
  display: grid;
  min-height: 540px;
  align-items: center;
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
  background-color: #1a1209;
  background-image:
    radial-gradient(circle at 18% 32%, rgba(184, 132, 62, 0.09), transparent 25%),
    radial-gradient(circle at 88% 72%, rgba(112, 80, 101, 0.1), transparent 26%),
    repeating-linear-gradient(4deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 6px);
  color: var(--paper);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 9vw, 150px);
}
.coming-soon-artwork {
  width: min(470px, 100%);
  margin: 0;
  justify-self: center;
}
.coming-soon-artwork img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(0.98);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0,0,0,0.92) 70%, rgba(0,0,0,0.35) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0,0,0,0.92) 70%, rgba(0,0,0,0.35) 88%, transparent 100%);
}
.coming-soon-copy { max-width: 760px; }
.coming-soon-copy .eyebrow { color: #d5b570; }
.coming-soon-copy h2 { max-width: 720px; margin-bottom: 30px; font-size: clamp(3.6rem, 6.6vw, 7rem); }
.coming-soon-copy > p { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,0.72); font-family: var(--display); font-size: clamp(1.25rem, 2.1vw, 1.75rem); font-style: italic; line-height: 1.55; }
.registry-external-button { border-color: rgba(213, 181, 112, 0.6); background: #d5b570; color: #1a1209; }
.registry-external-button:hover { border-color: var(--paper); background: var(--paper); }
.amazon-guide { max-width: 650px; margin-top: 28px; border-top: 1px solid rgba(213,181,112,0.28); border-bottom: 1px solid rgba(213,181,112,0.28); }
.amazon-guide h3 { margin: 0; padding: 18px 0 12px; color: rgba(255,255,255,0.9); font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.amazon-guide-body { padding: 2px 0 22px; color: rgba(255,255,255,0.72); font-size: 0.85rem; line-height: 1.65; }
.amazon-guide-body ol { margin: 0; padding-left: 1.25rem; }
.amazon-guide-body li + li { margin-top: 7px; }
.amazon-guide-body p { margin: 16px 0 0; color: #d5b570; font-size: 0.76rem; }
.coming-soon-status { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border: 1px solid rgba(213, 181, 112, 0.35); border-radius: 999px; color: rgba(255,255,255,0.84); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.coming-soon-status i { width: 7px; height: 7px; border-radius: 50%; background: #d5b570; box-shadow: 0 0 0 5px rgba(213,181,112,0.1); }

.categories { border-top-color: rgba(139, 99, 45, 0.22); background: rgba(248, 239, 217, 0.76); }
.category-grid { border-color: rgba(139, 99, 45, 0.28); }
.category-card { border-color: rgba(139, 99, 45, 0.28); background: rgba(255, 249, 231, 0.2); }
.category-card:hover { background: var(--moss); color: var(--paper); }
.category-card:hover .category-icon { color: var(--paper); }
.category-card:hover .category-description { color: rgba(255,255,255,0.72); }
.category-icon { border-color: rgba(139, 99, 45, 0.5); color: var(--amber); }

.featured { background: rgba(241, 229, 201, 0.3); }
.product-card {
  border-color: rgba(139, 99, 45, 0.3);
  background: rgba(250, 241, 218, 0.92);
  box-shadow: inset 0 0 0 6px rgba(255, 250, 235, 0.35);
}
.product-card:hover { box-shadow: inset 0 0 0 6px rgba(255, 250, 235, 0.45), 0 24px 60px rgba(64, 42, 25, 0.13); }
.product-art::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(112, 80, 101, 0.18);
  content: "";
}
.tone-amber { background: #d7c091; }
.tone-moss { background: #aeb092; }
.tone-plum { background: #bda3ae; }
.tone-clay { background: #d0aa8e; }
.tone-lavender { background: #c5b3bb; }

.how {
  position: relative;
  background-color: #3b2a20;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(184, 132, 62, 0.12), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(112, 80, 101, 0.13), transparent 24%),
    repeating-linear-gradient(4deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 6px);
}
.how::before { position: absolute; top: 28px; right: 36px; color: rgba(216, 189, 141, 0.22); font-family: var(--display); font-size: 2.3rem; letter-spacing: 0.45em; content: "☾  ✦  ❧"; }
.how .eyebrow, .step-number { color: #d5b570; }
.steps, .step { border-color: rgba(213, 181, 112, 0.24); }
.progress-track span { background: var(--plum); }

.registry { background-color: var(--paper); background-image: radial-gradient(circle at 82% 11%, rgba(184,132,62,0.07), transparent 20%); }
.filter-button { border-color: rgba(139, 99, 45, 0.34); }
.filter-button:hover, .filter-button.active { background: var(--moss-dark); }
.big-things { border-top: 1px solid rgba(139, 99, 45, 0.2); background: rgba(241, 229, 201, 0.42); }
.group-list, .group-card { border-color: rgba(139, 99, 45, 0.28); }

.personal { background: #b79ca8; }
.personal-art {
  background-color: #4b5038;
  background-image: radial-gradient(circle at 50% 45%, rgba(216,189,141,0.12), transparent 34%);
}
.family-orbit { border-color: rgba(216, 189, 141, 0.55); color: #f0dfbd; }
.personal-moon, .personal-star { color: #d8bd8d; }
.personal-copy p { color: #382319; }
.faq { position: relative; }
.faq::before { position: absolute; top: 86px; left: 50%; color: rgba(184,132,62,0.3); font-family: var(--display); font-size: 1.2rem; content: "✦"; }
.faq-list, .faq-list details { border-color: rgba(139, 99, 45, 0.28); }
.site-footer {
  background-color: #efe2c4;
  background-image:
    radial-gradient(circle at 50% 0, rgba(255, 250, 234, 0.46), transparent 34%),
    radial-gradient(circle at 12% 76%, rgba(184, 132, 62, 0.08), transparent 24%),
    repeating-linear-gradient(4deg, rgba(96,67,60,0.012) 0 1px, transparent 1px 6px);
  color: #60433c;
}
.site-footer .footer-mark { color: var(--amber); }
.site-footer > p { color: rgba(96, 67, 60, 0.68); }
.site-footer .footer-bottom { border-top-color: rgba(96, 67, 60, 0.2); color: rgba(96, 67, 60, 0.62); }

@media (max-width: 1120px) {
  .hero { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: clamp(4.7rem, 8.2vw, 7.4rem); }
  .hero-artwork-canvas { min-height: 475px; }
  .category-grid, .featured-grid, .registry-grid { grid-template-columns: repeat(2, 1fr); }
  .how, .big-things { gap: 60px; }
  .personal-copy { padding-left: 60px; }
}

@media (max-width: 800px) {
  .site-header { height: 72px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 18px 24px 28px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 14px; padding: 13px 18px; border: 1px solid var(--espresso); text-align: center; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-top: 46px; padding-bottom: 0; }
  .hero-copy { max-width: 680px; padding-left: 0; }
  .hero h1 { max-width: 620px; font-size: clamp(5.3rem, 16vw, 8rem); }
  .hero-actions { margin-bottom: 40px; }
  .hero-artwork { margin: -20px 0 0; }
  .hero-artwork-canvas { min-height: 455px; }
  .hero-artwork-canvas img { right: 1%; height: 108%; }
  .hero-footprints { display: none; }
  .hero-center-detail { position: relative; top: auto; bottom: auto; left: auto; width: min(330px, 72%); justify-self: center; margin: -10px auto 0; transform: none; }
  .section-heading, .registry-heading { display: block; }
  .registry-heading-actions { align-items: flex-start; flex-direction: column; margin-top: 24px; }
  .section-heading > p { margin-top: 24px; }
  .desktop-link { display: none; }
  .how, .big-things, .faq { grid-template-columns: 1fr; }
  .how-intro, .steps { height: auto; }
  .steps { grid-template-rows: repeat(3, auto); }
  .step { align-items: start; }
  .how-symbol { display: none; }
  .personal { padding-right: 0; padding-left: 0; grid-template-columns: 1fr; }
  .personal-art { min-height: 520px; }
  .personal-copy { max-width: none; padding: 62px 24px; }
  .faq { padding-right: 24px; padding-left: 24px; }
  .registry-coming-soon { min-height: 0; grid-template-columns: 1fr; }
  .coming-soon-artwork { width: min(430px, 88vw); }
  .coming-soon-copy { max-width: 680px; text-align: center; }
  .coming-soon-copy .eyebrow { text-align: center; }
  .amazon-guide { margin-right: auto; margin-left: auto; text-align: left; }
}

@media (max-width: 560px) {
  .wordmark { font-size: 1.08rem; }
  .hero { padding: 38px 20px 0; }
  .hero h1 { font-size: clamp(4.6rem, 22vw, 6.5rem); }
  .hero-title-rule { width: 82%; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .hero-artwork { margin: -4px 0 0; }
  .hero-artwork-canvas { min-height: 370px; }
  .hero-artwork-canvas img { right: 2%; height: 106%; }
  .hero-center-detail { width: min(280px, 76%); margin-top: -4px; }
  .button-link { align-self: flex-start; }
  .intro p { font-size: 1.8rem; }
  .intro::before, .intro::after { display: none; }
  .categories, .featured, .registry, .big-things, .faq { padding-top: 68px; padding-bottom: 76px; }
  .category-grid, .featured-grid, .registry-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 205px; }
  .category-icon { margin-bottom: 25px; }
  .featured-grid, .registry-grid { gap: 16px; }
  .product-art { aspect-ratio: 1.28; }
  .how { padding-top: 70px; padding-bottom: 76px; }
  .step { grid-template-columns: 38px 1fr; gap: 16px; }
  .step p { grid-column: 2; }
  .registry-heading-actions { gap: 16px; }
  .group-card { grid-template-columns: 66px 1fr 40px; gap: 15px; }
  .group-icon { width: 60px; height: 60px; font-size: 2.1rem; }
  .round-button { width: 40px; height: 40px; }
  .personal-art { min-height: 430px; }
  .faq-list summary { font-size: 1.3rem; }
  .footer-bottom { align-items: center; flex-direction: column; gap: 10px; margin-top: 60px; }
  .registry-coming-soon { padding: 70px 24px 78px; gap: 48px; }
  .coming-soon-copy h2 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .coming-soon-status { justify-content: center; font-size: 0.57rem; text-align: left; }
}

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