:root {
	--accent: #ff5a3c;
	--accent-dark: #e04428;
	--accent-tint: #ffe8e1;
	--ink: #181410;
	--ink-soft: #322b25;
	--paper: #f7f3ec;
	--card: #ffffff;
	--text-2: #5e564c;
	--text-3: #9a9087;
	--border: #e6ddd0;
	--display: 'Bricolage Grotesque', system-ui, sans-serif;
	--body: 'Inter', system-ui, -apple-system, sans-serif;
	--max: 1180px;
	--r: 16px;
	--r-sm: 10px;
	--ease: cubic-bezier(0.4, 0, 0.1, 1);
}

::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	font-family: var(--body);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* Reveal animation — only hidden when JS is active, so no-JS shows everything */
.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
	* { animation: none !important; }
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: background 0.18s, transform 0.18s;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; transform: translateY(-1px); }

/* Nav */
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	transition: background 0.25s, border-color 0.25s;
	border-bottom: 1px solid transparent;
}
.nav.scrolled {
	background: rgba(247, 243, 236, 0.92);
	backdrop-filter: saturate(160%) blur(8px);
	-webkit-backdrop-filter: saturate(160%) blur(8px);
	border-bottom-color: var(--border);
}
.nav-progress {
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 2px;
	width: 0%;
	background: var(--accent);
	transition: width 0.1s linear;
}
.nav-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 1.1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand {
	font-family: var(--display);
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.nav-links {
	display: flex;
	gap: 2rem;
	margin: 0 auto;
}
.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-2);
	transition: color 0.18s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ''; display: block; height: 2px; margin-top: 4px; background: var(--accent); }
@media (max-width: 700px) {
	.nav-links { display: none; }
}

/* Hero */
.hero-track { position: relative; }
.hero {
	min-height: calc(100vh - 73px);
	display: flex;
	flex-direction: column;
}
@media (min-width: 901px) {
	.hero-track.linked { height: 220vh; }
	.hero-track.linked .hero {
		position: sticky;
		top: var(--nav-h, 0px);
		min-height: calc(100vh - var(--nav-h, 0px));
		height: calc(100vh - var(--nav-h, 0px));
		overflow: hidden;
	}
	.hero-track.linked .hero-grid { flex: 1; min-height: 0; }
	.hero-track.linked .marquee { flex-shrink: 0; }
}
.hero-grid {
	flex: 1;
	max-width: var(--max);
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-content: center;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
	padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}
.hero-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(2.7rem, 6.4vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
}
.hero-title span { display: block; }
.hero-title span:first-child { color: var(--accent); }
.hero-sub {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.6;
	color: var(--text-2);
	max-width: 460px;
	margin: 1.6rem 0 2.2rem;
}

/* Capture form */
.capture {
	display: flex;
	gap: 0.5rem;
	max-width: 440px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.35rem 0.35rem 0.35rem 0.4rem;
	transition: border-color 0.2s;
}
.capture:focus-within { border-color: var(--accent); }
.capture input {
	flex: 1;
	border: none;
	background: none;
	outline: none;
	padding: 0.6rem 0.85rem;
	font-family: var(--body);
	font-size: 0.95rem;
	color: var(--ink);
}
.capture input::placeholder { color: var(--text-3); }
.capture button {
	border: none;
	background: var(--accent);
	color: #fff;
	font-family: var(--body);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.65rem 1.3rem;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.18s, transform 0.18s;
}
.capture button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.capture button:disabled { opacity: 0.6; cursor: default; transform: none; }
.capture-note { font-size: 0.82rem; color: var(--text-3); margin-top: 0.9rem; }
.capture-note a { text-decoration: underline; }

/* Hero visual — phone, flat colors only */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone {
	width: clamp(240px, 24vw, 290px);
	background: var(--ink);
	border-radius: 38px;
	padding: 9px;
	border: 1px solid var(--ink);
}
.phone-screen {
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.phone-status {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.55rem 1.1rem 0.35rem;
	font-size: 0.72rem; font-weight: 600; color: #181410;
}
.ps-icons { display: inline-flex; align-items: center; gap: 5px; color: #181410; }
.ps-icons svg { fill: currentColor; }
.app-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.3rem 1.05rem 0.7rem;
}
.app-title {
	font-family: var(--display); font-weight: 700; font-size: 1.05rem;
	letter-spacing: -0.01em; color: #b07d92;
}
.app-menu { color: #b07d92; }
.app-feed {
	display: flex; flex-direction: column; gap: 0.7rem;
	max-height: 330px; overflow-y: auto; -webkit-overflow-scrolling: touch;
	padding: 0 0.7rem 0.3rem;
}
.app-feed::-webkit-scrollbar { width: 0; height: 0; }
.feed-card { background: #f4eef0; border-radius: 12px; padding: 0; overflow: hidden; flex-shrink: 0; }
.fc-photo { overflow: hidden; line-height: 0; }
.fc-photo img { width: 100%; height: auto; display: block; }
.fc-meta { display: flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.6rem 0.15rem; }
.fc-avatar {
	width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
	background: #d8c7cf; color: #6e5560;
	font-family: var(--display); font-weight: 700; font-size: 0.62rem;
	display: flex; align-items: center; justify-content: center;
}
.fc-who { display: flex; flex-direction: column; line-height: 1.15; flex: 1; }
.fc-who b { font-size: 0.72rem; color: #181410; }
.fc-who span { font-size: 0.6rem; color: #b39a86; }
.fc-react { display: inline-flex; gap: 0.5rem; font-size: 0.62rem; font-weight: 600; }
.fc-heart { color: #d4607a; }
.fc-comment { color: #8a93c4; }
.fc-caption { font-size: 0.68rem; color: #5e564c; padding: 0 0.6rem 0.6rem; margin: 0; }
.app-tabs {
	display: flex; align-items: center; justify-content: space-around;
	border-top: 1px solid #efe7ea; padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom));
	margin-top: 0.2rem; position: relative;
}
.tab {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	font-size: 0.55rem; color: #b39aa3;
}
.tab-cam {
	width: 42px; height: 42px; border-radius: 50%; background: #b07d92;
	display: flex; align-items: center; justify-content: center;
	margin-top: -18px; border: 4px solid #fff;
}
.js .sc, .js .gb-entry, .js .av {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.in .sc, .in .gb-entry, .in .av { opacity: 1; transform: none; }
.in .sc:nth-child(1) { transition-delay: 0.05s; }
.in .sc:nth-child(2) { transition-delay: 0.1s; }
.in .sc:nth-child(3) { transition-delay: 0.15s; }
.in .sc:nth-child(4) { transition-delay: 0.2s; }
.in .gb-entry:nth-child(1) { transition-delay: 0.05s; }
.in .gb-entry:nth-child(2) { transition-delay: 0.15s; }
.in .gb-entry:nth-child(3) { transition-delay: 0.25s; }
.in .av:nth-child(1) { transition-delay: 0.05s; }
.in .av:nth-child(2) { transition-delay: 0.1s; }
.in .av:nth-child(3) { transition-delay: 0.15s; }
.in .av:nth-child(4) { transition-delay: 0.2s; }
.in .av:nth-child(5) { transition-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
	.js .sc, .js .gb-entry, .js .av { opacity: 1; transform: none; transition: none; }
}

/* Marquee */
.marquee {
	border-top: 1px solid var(--border);
	padding: 0.9rem 0;
	overflow: hidden;
	background: var(--card);
}
.marquee-track {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: max-content;
	animation: scroll 32s linear infinite;
}
.marquee-track span {
	font-family: var(--display);
	font-weight: 600;
	font-size: clamp(0.95rem, 1.3vw, 1.1rem);
	letter-spacing: -0.01em;
	color: var(--text-2);
	white-space: nowrap;
}
.marquee-track i { color: var(--accent); font-size: 0.7rem; font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Statement */
.statement {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(4rem, 9vw, 7rem) 1.5rem;
}
.statement-grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
}
.statement-grid .eyebrow { margin-bottom: 0; padding-top: 0.4rem; }
.statement-text {
	font-family: var(--display);
	font-weight: 500;
	font-size: clamp(1.5rem, 3.2vw, 2.4rem);
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.statement-text b { font-weight: 700; }
.statement-note {
	grid-column: 2;
	margin-top: 1.1rem;
	font-size: 0.95rem;
	color: var(--text-2);
}
@media (max-width: 700px) {
	.statement-grid { grid-template-columns: 1fr; gap: 1rem; }
	.statement-note { grid-column: 1; }
}

/* Section head */
.section-head { margin-bottom: 2.5rem; }
.kicker {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	letter-spacing: -0.025em;
}
.eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--accent-dark);
	margin-bottom: 0.9rem;
	text-transform: uppercase;
}

/* Steps */
.steps {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.5rem clamp(3rem, 6vw, 5rem);
}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.75rem); }
.step { position: relative; }
.step-n {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--accent);
	display: block;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.step p { font-size: 0.96rem; color: var(--text-2); line-height: 1.6; }

/* Features */
.features { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.feat-group-label {
	display: block;
	font-family: var(--display);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent-dark);
	padding-top: clamp(3rem, 6vw, 5rem);
	margin-bottom: -0.5rem;
}
.feat-group-label:first-of-type { padding-top: 0; }
.feat {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
	padding: clamp(3rem, 6vw, 5rem) 0;
	border-top: 1px solid var(--border);
}
.feat.reverse .feat-text { order: 2; }
.feat.reverse .feat-visual { order: 1; }
.feat-group-label + .feat { border-top: none; padding-top: clamp(1.5rem, 3vw, 2rem); }
.feat-n {
	display: block;
	font-family: var(--display);
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--text-3);
	letter-spacing: 0.02em;
	margin-bottom: 0.6rem;
}
.feat-text h2 {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.8rem, 3.6vw, 2.5rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
}
.feat-text p { font-size: 1.02rem; line-height: 1.65; color: var(--text-2); max-width: 440px; }

.feat-visual { display: flex; align-items: center; justify-content: center; }

/* QR card */
.qr-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 1.75rem;
	text-align: center;
}
.qr { width: 168px; height: 168px; margin: 0 auto; border-radius: 6px; }
.qr-label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); margin-top: 1rem; }

/* Beamer screen — scattered photo collage, flat, no gradients/glow */
.screen {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #e9e3da;
	border-radius: var(--r);
	overflow: hidden;
}
.screen-collage { position: absolute; inset: 0; }
.sc {
	position: absolute;
	display: flex; align-items: center; justify-content: center;
	background: #fff;
	border: 5px solid #fff;
	box-shadow: 0 4px 14px rgba(24, 20, 16, 0.16);
	transform: rotate(var(--rot, 0deg));
}
.js .sc {
	opacity: 0;
	transform: rotate(var(--rot, 0deg)) translateY(34px) scale(0.94);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.js .sc.shown {
	opacity: 1;
	transform: rotate(var(--rot, 0deg)) translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
	.js .sc { opacity: 1; transform: rotate(var(--rot, 0deg)); transition: none; }
}
.sc svg { width: 30%; height: 30%; }
.sc1 { width: 36%; height: 40%; top: 8%;  left: 4%;   --rot: -6deg; background: #ffd7c4; }
.sc2 { width: 32%; height: 34%; top: 4%;  left: 38%;  --rot: 4deg;  background: #cfe2f3; }
.sc3 { width: 34%; height: 38%; top: 6%;  right: 4%;  --rot: -3deg; background: #dcecd6; }
.sc4 { width: 33%; height: 36%; bottom: 6%; left: 9%;  --rot: 5deg;  background: #f2d8e0; }
.sc5 { width: 35%; height: 38%; bottom: 8%; right: 8%; --rot: -5deg; background: #ffe2a8; }
.screen-title {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	font-family: var(--display); font-weight: 700; font-style: italic;
	font-size: clamp(1.1rem, 2.6vw, 1.7rem);
	color: #fff;
	text-shadow: 0 2px 10px rgba(24, 20, 16, 0.55);
	white-space: nowrap;
}
.screen-qr {
	position: absolute;
	bottom: 0.7rem; right: 0.7rem;
	z-index: 3;
	background: #fff;
	border-radius: 8px;
	padding: 0.4rem;
	display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
	box-shadow: 0 3px 10px rgba(24, 20, 16, 0.18);
}
.screen-qr svg { width: 46px; height: 46px; }
.screen-qr span {
	font-family: var(--display); font-weight: 700;
	font-size: 0.5rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
}

/* Guestbook card */
.guestbook-card {
	width: 100%;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.gb-entry { display: flex; gap: 0.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.gb-entry:last-child { border-bottom: none; padding-bottom: 0; }
.gb-entry-fade { opacity: 0.55; }
.gb-avatar {
	flex-shrink: 0;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--accent-tint); color: var(--accent-dark);
	font-family: var(--display); font-weight: 700; font-size: 0.85rem;
	display: flex; align-items: center; justify-content: center;
}
.gb-name { font-family: var(--display); font-weight: 700; font-size: 0.88rem; display: block; margin-bottom: 0.3rem; }
.gb-entry p { font-size: 0.92rem; color: var(--text-2); line-height: 1.5; }

/* RSVP card */
.rsvp-card {
	width: 100%;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 1.75rem;
}
.rsvp-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.9rem; }
.rsvp-label { font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.rsvp-num { font-family: var(--display); font-weight: 700; font-size: 1.5rem; }
.rsvp-num b { color: var(--accent); }
.rsvp-track { height: 12px; background: var(--border); border-radius: 999px; overflow: hidden; }
.rsvp-fill { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 999px; transition: width 1.1s var(--ease); }
.rsvp-avatars { display: flex; align-items: center; margin-top: 1.25rem; }
.av {
	width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--card); margin-left: -8px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--display); font-weight: 700; font-size: 0.7rem; font-style: normal; color: var(--ink-soft);
}
.av:first-child { margin-left: 0; }
.av1 { background: #ffd7c4; }
.av2 { background: #cfe2f3; }
.av3 { background: #dcecd6; }
.av4 { background: #f2d8e0; }
.av5 { background: #ffe2a8; }
.av-more { font-size: 0.8rem; font-weight: 600; color: var(--text-3); margin-left: 0.6rem; }

/* Aftermovie player */
/* Aftermovie stage inside phone */
.am-stage {
	position: relative;
	margin: 0 0.7rem;
	border-radius: 12px;
	background: var(--ink);
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.am-tag {
	position: absolute; top: 0.7rem; left: 0.8rem;
	font-family: var(--display); font-weight: 600; font-style: italic;
	color: rgba(255,255,255,0.9); font-size: 0.8rem;
}
.am-play {
	width: 50px; height: 50px; border-radius: 50%;
	background: #fff; color: var(--ink);
	border: none; font-size: 0.9rem; cursor: default;
	display: flex; align-items: center; justify-content: center;
	padding-left: 3px;
}
.am-time { position: absolute; bottom: 0.7rem; right: 0.8rem; font-size: 0.66rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.am-bar { position: absolute; bottom: 0.85rem; left: 0.8rem; right: 3rem; height: 3px; background: rgba(255,255,255,0.22); border-radius: 999px; }
.am-bar span { display: block; width: 38%; height: 100%; background: var(--accent); border-radius: 999px; }
.am-strip { display: flex; gap: 0.4rem; padding: 0.6rem 0.7rem 0.8rem; }
.am-strip span {
	flex: 1; aspect-ratio: 1; border-radius: 6px; background: #efe7ea;
}
.am-strip span:nth-child(2) { background: #e6dde8; }
.am-strip span:nth-child(3) { background: #ece4dc; }
.am-strip span:nth-child(4) { background: #e8e8ef; }

/* Theme + language card */
.theme-card {
	width: 100%;
	max-width: 320px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.theme-swatches { display: flex; gap: 0.75rem; }
.sw { flex: 1; height: 64px; border-radius: 10px; border: 1px solid var(--border); }
.sw1 { background: #fff; }
.sw2 { background: var(--ink); border-color: var(--ink); }
.sw3 { background: var(--accent); border-color: var(--accent); }
.theme-langs { display: flex; gap: 0.6rem; }
.lang {
	font-family: var(--display); font-weight: 700; font-size: 0.82rem;
	border: 1px solid var(--border); border-radius: 999px; padding: 0.35rem 0.9rem;
	color: var(--text-2);
}

/* Audience */
.audience {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}
.audience-grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
}
.audience-grid .eyebrow { margin-bottom: 0; padding-top: 0.4rem; }
@media (max-width: 700px) {
	.audience-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.audience-line {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.9rem, 4.4vw, 3rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
}
.audience-list {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	color: var(--text-2);
	margin-top: 1.25rem;
	letter-spacing: 0.01em;
}

/* FAQ */
.faq {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
	border-top: 1px solid var(--border);
}
.faq-grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
}
.faq-grid .eyebrow { margin-bottom: 0; padding-top: 0.4rem; }
.faq-list { max-width: 640px; }
.faq-item {
	border-bottom: 1px solid var(--border);
	padding: 1.1rem 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item summary {
	font-family: var(--display);
	font-weight: 600;
	font-size: 1.05rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-family: var(--display);
	font-weight: 500;
	font-size: 1.3rem;
	color: var(--text-3);
	flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
	margin-top: 0.7rem;
	font-size: 0.95rem;
	color: var(--text-2);
	line-height: 1.6;
}
.faq-item p a { text-decoration: underline; }
@media (max-width: 700px) {
	.faq-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* CTA */
.cta { background: var(--ink); color: #fff; }
.cta-inner {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(4rem, 9vw, 7rem) 1.5rem;
	text-align: center;
}
.cta-inner h2 {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	letter-spacing: -0.035em;
	line-height: 1;
	margin-bottom: 1rem;
}
.cta-inner > p { color: rgba(255,255,255,0.62); font-size: 1.05rem; max-width: 460px; margin: 0 auto 2rem; }
.capture-dark {
	margin: 0 auto;
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.14);
}
.capture-dark input { color: #fff; }
.capture-dark input::placeholder { color: rgba(255,255,255,0.45); }
.capture-note-dark { color: rgba(255,255,255,0.45); }

/* Footer */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 2.5rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	color: rgba(255,255,255,0.5);
}
.footer-brand { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: -0.03em; }
.footer-tag { font-size: 0.9rem; }
a.footer-tag:hover { color: #fff; text-decoration: underline; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

/* Responsive */
@media (max-width: 900px) {
	.hero { min-height: auto; }
	.hero-grid { flex: none; grid-template-columns: 1fr; }
	.hero-visual { order: -1; margin-bottom: 1rem; }
	.steps-grid { grid-template-columns: 1fr; gap: 2rem; }
	.feat, .feat.reverse { grid-template-columns: 1fr; gap: 2rem; }
	.feat.reverse .feat-text, .feat.reverse .feat-visual { order: initial; }
	.footer-inner { flex-direction: column; text-align: center; gap: 0.6rem; }
}
@media (max-width: 480px) {
	.capture { flex-wrap: wrap; border-radius: var(--r-sm); }
	.capture input { width: 100%; }
	.capture button { width: 100%; }
	.phone { width: min(340px, 86vw); }
}
