/* ---------- Avocado Toast — editorial indigo ---------- */
:root {
	--bone: #FBFAF6;
	--paper: #FFFFFF;
	--ink: #191632;
	--ink-soft: #56536E;
	--indigo: #35309E;
	--indigo-deep: #23205C;
	--hairline: rgba(25, 22, 50, 0.08);
	--pale-indigo: #ECEBF8;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	background: var(--bone);
	color: var(--ink);
	font-family: "Instrument Sans", "Helvetica Neue", sans-serif;
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* ambient warmth behind hero */
body::before {
	content: "";
	position: fixed; inset: 0;
	pointer-events: none;
	background:
		radial-gradient(52rem 30rem at 78% -6%, rgba(53, 48, 158, 0.055), transparent 62%),
		radial-gradient(40rem 26rem at 8% 12%, rgba(201, 162, 39, 0.04), transparent 60%);
	z-index: 0;
}

h1, h2, h3, blockquote {
	font-family: "Fraunces", Georgia, serif;
	font-weight: 420;
	letter-spacing: -0.02em;
	line-height: 1.08;
	text-wrap: balance;
}
em { font-style: italic; }

main, header, nav, footer { position: relative; z-index: 1; }

/* ---------- nav : floating pill ---------- */
.nav {
	position: sticky; top: 1.25rem; z-index: 40;
	margin: 1.25rem auto 0;
	width: min(880px, calc(100% - 2rem));
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 0.55rem 0.6rem 0.55rem 1.1rem;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--hairline);
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(25,22,50,0.03), 0 12px 32px -18px rgba(25,22,50,0.18);
}
.nav-brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.mark { width: 30px; height: 30px; color: var(--indigo); flex: none; }
.wordmark { font-family: "Fraunces", serif; font-size: 1.12rem; font-weight: 520; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
	color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; font-weight: 500;
	transition: color 300ms var(--ease);
}
.nav-links a:hover { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 0.7rem;
	border: 0; cursor: pointer; text-decoration: none;
	font-family: "Instrument Sans", sans-serif; font-weight: 550; font-size: 0.95rem;
	border-radius: 999px; padding: 0.72rem 0.72rem 0.72rem 1.35rem;
	transition: transform 500ms var(--ease), background 500ms var(--ease), box-shadow 500ms var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--indigo-deep); box-shadow: 0 14px 30px -14px rgba(35, 32, 92, 0.55); }
.btn-sm { font-size: 0.87rem; padding: 0.5rem 0.5rem 0.5rem 1.05rem; }
.btn-orb {
	display: inline-flex; align-items: center; justify-content: center;
	width: 1.85em; height: 1.85em; border-radius: 999px;
	background: rgba(255, 255, 255, 0.16); font-size: 0.9em;
	transition: transform 500ms var(--ease);
}
.btn:hover .btn-orb { transform: translate(2px, -2px) scale(1.06); }

/* ---------- hero ---------- */
.hero { padding: clamp(5rem, 12vh, 9rem) 1.5rem 6.5rem; }
.hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.eyebrow {
	display: inline-block; margin-bottom: 1.6rem;
	font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--indigo);
	background: var(--pale-indigo);
	padding: 0.38rem 0.9rem; border-radius: 999px;
}
.hero h1 { font-size: clamp(3rem, 8.5vw, 5.6rem); }
.hero h1 em { color: var(--indigo); }
.lede {
	max-width: 620px; margin: 1.8rem auto 0;
	color: var(--ink-soft); font-size: 1.08rem;
}

/* ask bar */
.ask {
	margin: 3rem auto 0; max-width: 640px;
	display: flex; align-items: center; gap: 0.6rem;
	background: var(--paper);
	border: 1px solid var(--hairline);
	border-radius: 999px;
	padding: 0.55rem 0.55rem 0.55rem 1.1rem;
	box-shadow: 0 1px 2px rgba(25,22,50,0.04), 0 24px 48px -28px rgba(35, 32, 92, 0.35);
	transition: box-shadow 500ms var(--ease), border-color 500ms var(--ease);
}
.ask:focus-within { border-color: rgba(53, 48, 158, 0.35); box-shadow: 0 1px 2px rgba(25,22,50,0.04), 0 28px 56px -26px rgba(35, 32, 92, 0.45); }
.ask-mark { width: 26px; height: 26px; color: var(--indigo); flex: none; opacity: 0.85; }
.ask input {
	flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
	font-family: "Instrument Sans", sans-serif; font-size: 1rem; color: var(--ink);
}
.ask input::placeholder { color: var(--ink-soft); opacity: 0.75; }
.ask-note { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-soft); transition: color 500ms var(--ease); }
.ask-note-active { color: var(--indigo); font-weight: 550; }

/* ask results */
.picks {
	margin: 2.5rem auto 0; max-width: 880px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
	text-align: left;
}
.pick {
	display: flex; flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--hairline);
	border-radius: 1rem; overflow: hidden;
	text-decoration: none; color: var(--ink);
	transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}
.pick:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(25, 22, 50, 0.4); }
.pick-img { aspect-ratio: 4 / 5; background: var(--pale-indigo); }
.pick-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pick-body { padding: 0.75rem 0.85rem 0.9rem; display: flex; flex-direction: column; gap: 0.2rem; }
.pick-title {
	font-size: 0.82rem; font-weight: 550; line-height: 1.35;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pick-meta { font-size: 0.78rem; color: var(--ink-soft); }
.pick-why { font-size: 0.7rem; color: var(--indigo); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 860px) {
	.picks { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- sections ---------- */
section { padding: clamp(4.5rem, 10vh, 7.5rem) 1.5rem; }
.section-head { max-width: 880px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-top: 1.4rem; }
.section-head h2 em { color: var(--indigo); }

/* ---------- bento edits ---------- */
.bento {
	max-width: 1080px; margin: 0 auto;
	display: grid; gap: 1.1rem;
	grid-template-columns: repeat(6, 1fr);
}
.card {
	grid-column: span 2;
	background: var(--paper);
	border: 1px solid var(--hairline);
	border-radius: 1.4rem;
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform 600ms var(--ease), box-shadow 600ms var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -30px rgba(25, 22, 50, 0.35); }
.card-lg { grid-column: span 4; }
.card-lg .card-art { min-height: 240px; }

.card-art {
	position: relative; min-height: 190px;
	background: var(--swatch);
	display: flex; align-items: center; justify-content: center; gap: 14%;
	overflow: hidden;
}
/* her: coastal stripes */
.card-art .stripe { width: 9%; height: 130%; background: var(--swatch2); opacity: 0.85; transform: rotate(14deg); border-radius: 999px; }
.card-art .stripe:nth-child(2) { height: 105%; opacity: 0.55; }
.card-art .stripe:nth-child(3) { height: 80%; opacity: 0.3; }
/* fall: leaning arcs */
.card-art-fall::before, .card-art-fall::after {
	content: ""; position: absolute; border-radius: 999px; background: var(--swatch2);
}
.card-art-fall::before { width: 46%; aspect-ratio: 1; opacity: 0.75; border-radius: 50% 50% 6px 50%; transform: rotate(45deg); left: 14%; top: 24%; }
.card-art-fall::after { width: 26%; aspect-ratio: 1; opacity: 0.4; border-radius: 50% 50% 6px 50%; transform: rotate(66deg); right: 14%; bottom: 16%; }
/* occasion: dot bloom */
.card-art-dot::before {
	content: ""; width: 52%; aspect-ratio: 1; border-radius: 999px;
	background: radial-gradient(circle at 38% 34%, var(--swatch2), transparent 68%);
	opacity: 0.8;
}
/* hosting: balloon arch */
.card-art-arch::before {
	content: ""; position: absolute; inset: auto -12% -58% -12%; aspect-ratio: 2/1;
	border: 22px solid var(--swatch2); border-bottom: 0; opacity: 0.6;
	border-radius: 999px 999px 0 0;
}
/* him: corduroy lines */
.card-art-cord {
	background: repeating-linear-gradient(90deg, var(--swatch), var(--swatch) 14px, color-mix(in srgb, var(--swatch2) 32%, var(--swatch)) 14px, color-mix(in srgb, var(--swatch2) 32%, var(--swatch)) 16px);
}

.card-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card-body h3 { font-size: 1.45rem; }
.card-body p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.card-meta { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }

.tag {
	align-self: flex-start;
	font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
	padding: 0.28rem 0.7rem; border-radius: 999px;
}
.tag-indigo { background: #ECEBF8; color: #35309E; }
.tag-amber  { background: #FBF3DB; color: #956400; }
.tag-green  { background: #EDF3EC; color: #346538; }
.tag-rose   { background: #FDEBEC; color: #9F2F2D; }
.tag-slate  { background: #E8EEF1; color: #3D5967; }

/* ---------- how ---------- */
.steps {
	max-width: 1020px; margin: 0 auto; list-style: none;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.2rem;
}
.step-num {
	font-family: "Fraunces", serif; font-style: italic;
	font-size: 1rem; color: var(--indigo);
	display: block; margin-bottom: 0.9rem;
}
.steps h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.steps p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- manifesto ---------- */
.manifesto {
	text-align: center;
	background: var(--indigo-deep); color: var(--bone);
	margin: 0 1.5rem; border-radius: 2rem;
	padding: clamp(4.5rem, 10vh, 7rem) 2rem;
}
.manifesto-mark { width: 54px; height: 54px; color: #B7B3EA; margin-bottom: 2rem; }
.manifesto blockquote p {
	font-size: clamp(1.6rem, 3.6vw, 2.6rem);
	line-height: 1.25;
}
.manifesto em { color: #C7C3F0; }

/* ---------- footer ---------- */
.footer {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	max-width: 1080px; margin: 0 auto; padding: 3rem 1.5rem 3.5rem;
	color: var(--ink-soft); font-size: 0.85rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.55rem; }
.footer .mark { width: 24px; height: 24px; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- mobile ---------- */
@media (max-width: 860px) {
	.nav-links { display: none; }
	.bento { grid-template-columns: 1fr; }
	.card, .card-lg { grid-column: span 1; }
	.steps { grid-template-columns: 1fr; gap: 2.4rem; }
	.footer { flex-direction: column; text-align: center; }
	.ask { flex-wrap: nowrap; }
}
