/* ─── TOKENS ─── */
:root {
	--peach:        #EEAF86;
	--peach-dark:   #D4845A;
	--peach-light:  #F7D9C4;
	--peach-pale:   #FDF3EC;
	--forest:       #11302A;
	--forest-mid:   #1E4F45;
	--forest-soft:  #2D7265;
	--cream:        #FBF6F0;
	--bg:           #F4EEE7;
	--muted:        #5A7A74;
	--border:       rgba(17,48,42,.09);
	--r-sm: 12px; --r-md: 20px; --r-lg: 28px;
	--sh-sm: 0 2px 8px rgba(17,48,42,.06);
	--sh-md: 0 8px 28px rgba(17,48,42,.10);
	--sh-lg: 0 24px 64px rgba(17,48,42,.13);
	}

	/* ─── RESET ─── */
	*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
	html { scroll-behavior: smooth; scroll-padding-top: 70px; }
	body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--forest); -webkit-font-smoothing: antialiased; }
.landing-clip { overflow-x: hidden; }
	img { display: block; max-width: 100%; }
	a { color: inherit; }

	/* ─── TYPOGRAPHY ─── */
	.h1 { font-size: clamp(2.3rem, 4.5vw, 3.7rem); font-weight: 700; line-height: 1.1; letter-spacing: -.035em; }
	.h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.18; letter-spacing: -.028em; }
	.h2-em-line { display: block; }
	.h3 { font-size: 1rem; font-weight: 600; line-height: 1.35; }
	.lead { font-size: .975rem; line-height: 1.72; color: var(--muted); }
	em { font-style: italic; font-weight: 300; color: var(--forest-soft); }
	.label {
	display: inline-block; font-size: .7rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .15em; color: var(--forest-soft);
	margin-bottom: .7rem;
	}

	/* ─── LAYOUT ─── */
	.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
	.section { padding: 6rem 0; }
	.text-center { text-align: center; }

	/* ─── BUTTONS ─── */
	.btn {
	display: inline-flex; align-items: center; gap: .45rem;
	padding: .8rem 1.7rem; border-radius: 100px; border: none; cursor: pointer;
	font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 600;
	text-decoration: none; transition: all .2s; white-space: nowrap;
	}
	.btn-primary { background: var(--forest); color: var(--cream); box-shadow: 0 4px 18px rgba(17,48,42,.22); }
	.btn-primary:hover { background: var(--forest-soft); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(17,48,42,.28); }
	.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--border); }
	.btn-outline:hover { border-color: var(--forest); background: rgba(17,48,42,.04); }
	.btn-peach { background: var(--peach); color: var(--forest); box-shadow: 0 4px 16px rgba(238,175,134,.38); }
	.btn-peach:hover { background: var(--peach-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(238,175,134,.5); }
	.btn-ghost { background: none; color: var(--muted); font-weight: 500; padding-left: 0; padding-right: 0; }
	.btn-ghost:hover { color: var(--forest); }
	.btn svg { font-size: 1.05rem; }

	/* ═══════════════════════════
	 NAV
	═══════════════════════════ */
	.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 200;
	height: 68px; display: flex; align-items: center;
	background: rgba(251,246,240,.9); backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border);
	}
	.nav-inner {
	width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 2rem;
	display: flex; align-items: center; justify-content: space-between;
	}
	.nav-logo img { height: 26px; }
	.nav-links { display: flex; align-items: center; gap: 1.8rem; }
	.nav-links a { font-size: .855rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
	.nav-links a:hover { color: var(--forest); }
	.nav-links a.active { color: var(--forest); border-bottom: 1.5px solid var(--peach); padding-bottom: 2px; }
	.nav-actions { display: flex; align-items: center; gap: .8rem; }
	.nav-login { font-size: .855rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
	.nav-login:hover { color: var(--forest); }

	/* ═══════════════════════════
	 MOBILE MENU
	═══════════════════════════ */
	.nav-burger {
	display: none;
	background: none; border: none; cursor: pointer;
	width: 38px; height: 38px;
	align-items: center; justify-content: center;
	border-radius: 8px; transition: background .2s;
	color: var(--forest);
	}
	.nav-burger:hover { background: rgba(17,48,42,.06); }
	.nav-burger svg { font-size: 1.4rem; pointer-events: none; }

	/* Overlay */
	.mobile-menu-overlay {
	display: none;
	position: fixed; inset: 0; z-index: 300;
	background: rgba(17,48,42,.45);
	backdrop-filter: blur(4px);
	opacity: 0; transition: opacity .28s ease;
	}
	.mobile-menu-overlay.open { opacity: 1; }

	/* Drawer */
	.mobile-menu {
	position: fixed; top: 0; left: 0; right: 0; z-index: 310;
	background: var(--cream);
	border-radius: 0 0 24px 24px;
	box-shadow: 0 16px 48px rgba(17,48,42,.18);
	padding: 1.2rem 1.5rem 2rem;
	transform: translateY(-110%);
	transition: transform .32s cubic-bezier(.4,0,.2,1);
	}
	.mobile-menu.open { transform: translateY(0); }

	.mobile-menu-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 1.6rem;
	}
	.mobile-menu-logo img { height: 26px; }
	.mobile-menu-close {
	width: 36px; height: 36px; border-radius: 50%;
	border: 1.5px solid var(--border);
	background: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	color: var(--forest); transition: background .2s;
	}
	.mobile-menu-close:hover { background: rgba(17,48,42,.06); }
	.mobile-menu-close svg { font-size: 1.1rem; pointer-events: none; }

	.mobile-menu-links {
	display: flex; flex-direction: column;
	background: var(--bg); border-radius: 16px;
	overflow: hidden; margin-bottom: 1.2rem;
	}
	.mobile-menu-links a {
	display: block; padding: 1.05rem 1.2rem;
	font-size: .95rem; font-weight: 500; color: var(--forest);
	text-decoration: none;
	border-bottom: 1px solid var(--border);
	transition: background .15s;
	}
	.mobile-menu-links a:last-child { border-bottom: none; }
	.mobile-menu-links a:hover { background: rgba(17,48,42,.04); }
	.mobile-menu-links a.active {
	  color: var(--peach-dark);
	  font-weight: 600;
	  background: var(--peach-pale);
	  border-left: 3px solid var(--peach);
	  padding-left: calc(1.2rem - 3px);
	}

	.mobile-menu-cta {
	display: flex; align-items: center; justify-content: center; gap: .5rem;
	width: 100%; padding: .9rem;
	background: var(--forest); color: var(--cream);
	border-radius: 100px; border: none; cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-size: .9rem; font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(17,48,42,.22);
	transition: background .2s, transform .15s;
	}
	.mobile-menu-cta svg { font-size: 1rem; }
	.mobile-menu-cta:hover { background: var(--forest-soft); transform: translateY(-1px); }

	@media (max-width: 960px) {
	.nav-burger { display: flex; }
	.nav-links { display: none !important; }
	.nav-actions { display: none; }
	.nav { height: 60px; }
	}
