/* ==========================================================================
   Desi Chef — main stylesheet
   Brand palette (from brand book): Razzmatazz Red, Warm Coral, Cocoa Brown,
   Khaki Tan, Moss Green. Fonts: Montserrat (primary), Playfair Display (display).
   ========================================================================== */

:root {
	--c-primary: #F23051;   /* Razzmatazz Red */
	--c-accent:  #FF8235;   /* Warm Coral */
	--c-dark:    #3B1E16;   /* Cocoa Brown */
	--c-tan:     #B4846C;   /* Khaki Tan */
	--c-green:   #4A7031;   /* Moss Green */
	--c-cream:   #FFF8F0;
	--c-paper:   #FFFDFB;
	--c-ink:     #241009;
	--c-ink-soft: #6b544c;

	--grad-hero: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 55%, #ffb066 100%);
	--grad-warm: linear-gradient(160deg, #fff3e6 0%, #ffe4d1 100%);

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--radius-lg: 22px;
	--radius-md: 14px;
	--radius-sm: 8px;
	--shadow-soft: 0 10px 30px -12px rgba(59,30,22,0.25);
	--shadow-card: 0 4px 18px -6px rgba(59,30,22,0.18);
	--container: 1220px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-ink);
	background: var(--c-paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; color: var(--c-dark); }
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(48px, 7vw, 96px); }
.section-head { max-width: 680px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
	display: inline-block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--c-primary);
	margin-bottom: .6rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--c-ink-soft); font-size: 1.05rem; }

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 10000;
	background: var(--c-primary); color: #fff; padding: 14px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* ---------------- Buttons ---------------- */
.btn {
	display: inline-flex; align-items: center; gap: .5em;
	padding: .85em 1.5em;
	border-radius: 999px;
	font-weight: 700;
	font-size: .95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-hero); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { box-shadow: 0 14px 30px -10px rgba(242,48,81,.55); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 24px -10px rgba(37,211,102,.6); }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-ghost { background: transparent; border-color: rgba(59,30,22,.18); color: var(--c-dark); }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-dark { background: var(--c-dark); color: #fff; }
.btn-sm { padding: .6em 1.1em; font-size: .85rem; }
.btn-icon { padding: .7em; border-radius: 50%; }
.btn svg { flex-shrink: 0; }
.btn .icon-wa { width: 18px; height: 18px; }

/* ---------------- Header ---------------- */
.site-header {
	position: sticky; top: 0; z-index: 500;
	background: rgba(255,253,251,0.72);
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	border-bottom: 1px solid rgba(59,30,22,.08);
	transition: box-shadow .25s ease, background-color .25s ease;
}
.header-inner {
	display: flex; align-items: center; gap: 1.5rem;
	padding-block: 8px;
	transition: padding-block .25s ease;
}
.site-logo { display: flex; align-items: center; gap: .5rem; margin-right: auto; }
.site-logo img {
	max-height: 40px; width: auto;
	transition: max-height .25s ease;
}
.logo-mark { transition: transform .25s ease; }
.logo-mark svg { display: block; width: 34px; height: 34px; transition: width .25s ease, height .25s ease; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
	font-family: var(--font-display); font-size: 1.1rem; color: var(--c-primary);
	transition: font-size .25s ease;
}
.logo-text em {
	font-style: normal; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-ink-soft);
	max-height: 20px; opacity: 1;
	transition: max-height .25s ease, opacity .2s ease, margin .25s ease;
}

/* Shrunk state, toggled by JS once the page is scrolled */
.site-header.is-scrolled {
	box-shadow: 0 6px 18px rgba(59,30,22,.08);
	background: rgba(255,253,251,0.92);
}
.site-header.is-scrolled .header-inner { padding-block: 6px; }
.site-header.is-scrolled .site-logo img { max-height: 30px; }
.site-header.is-scrolled .logo-mark svg { width: 26px; height: 26px; }
.site-header.is-scrolled .logo-text strong { font-size: .95rem; }
.site-header.is-scrolled .logo-text em { max-height: 0; opacity: 0; margin: 0; overflow: hidden; }

.primary-nav { display: none; }
.nav-menu { display: flex; gap: 1.9rem; }
.nav-menu a { font-weight: 600; font-size: .95rem; position: relative; padding: 6px 0; }
.nav-menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
	background: var(--grad-hero); transition: width .2s ease;
}
.nav-menu a:hover::after, .nav-menu .current-menu-item a::after { width: 100%; }

.header-ctas { display: none; align-items: center; gap: .6rem; }

.nav-toggle {
	margin-left: auto; background: none; border: none; width: 42px; height: 42px;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
	cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--c-dark); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
	max-height: 0; overflow: hidden; transition: max-height .3s ease;
	background: var(--c-cream); border-top: 1px solid rgba(59,30,22,.08);
}
.mobile-nav.is-open { max-height: 70vh; overflow-y: auto; }
.mobile-nav-menu { padding: 1rem 24px; display: flex; flex-direction: column; gap: .9rem; }
.mobile-nav-menu a { font-weight: 600; font-size: 1.05rem; }
.mobile-nav-ctas { display: flex; gap: .7rem; padding: 0 24px 1.4rem; }

@media (min-width: 960px) {
	.primary-nav { display: block; }
	.header-ctas { display: flex; }
	.nav-toggle { display: none; }
	.mobile-nav { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--grad-hero);
	color: #fff;
	padding-block: clamp(64px, 12vw, 130px);
	isolation: isolate;
}
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,.18), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(59,30,22,.35), transparent 55%);
	z-index: -1;
}
.hero-grid { display: grid; gap: 3rem; align-items: center; }
.hero-eyebrow {
	display: inline-flex; align-items: center; gap: .5rem;
	background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35);
	padding: .5em 1em; border-radius: 999px; font-size: .8rem; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.4rem;
	backdrop-filter: blur(6px);
}
.hero h1 {
	color: #fff;
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	margin-bottom: .4em;
	text-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.hero h1 em { font-style: italic; color: #fff3d6; }
.hero p.lede { font-size: 1.15rem; max-width: 46ch; color: rgba(255,255,255,.92); margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 1.7rem; }
.hero-stats div span { font-size: .82rem; opacity: .85; }

.hero-visual { position: relative; perspective: 1200px; }
.hero-card {
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.35);
	backdrop-filter: blur(16px);
	border-radius: var(--radius-lg);
	padding: 1.1rem;
	transform: rotateY(-8deg) rotateX(4deg);
	transition: transform .4s ease;
	box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.hero-visual:hover .hero-card { transform: rotateY(0) rotateX(0); }
.hero-card img { border-radius: calc(var(--radius-lg) - 8px); aspect-ratio: 4/3.2; object-fit: cover; }
.hero-card-caption { display: flex; justify-content: space-between; align-items: center; padding-top: .8rem; color: #fff; }
.hero-card-caption strong { font-family: var(--font-display); font-size: 1.1rem; }
.hero-card-caption span { font-size: .85rem; opacity: .85; }

@media (min-width: 900px) {
	.hero-grid { grid-template-columns: 1.1fr .9fr; }
}

/* ---------------- Dish / menu cards with tilt ---------------- */
.card-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.dish-card {
	background: var(--c-paper);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform .3s ease, box-shadow .3s ease;
	will-change: transform;
	position: relative;
	border: 1px solid rgba(59,30,22,.06);
}
.dish-card:hover { box-shadow: 0 20px 40px -14px rgba(59,30,22,.35); }
.dish-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--grad-warm); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish-card:hover .dish-media img { transform: scale(1.08); }
.dish-placeholder {
	width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--c-tan), var(--c-accent));
	color: #fff; font-family: var(--font-display); font-size: 1.1rem; text-align: center; padding: 1rem;
}
.badge {
	position: absolute; top: 10px; left: 10px;
	background: var(--c-dark); color: #fff; font-size: .7rem; font-weight: 700;
	padding: .35em .8em; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
	display: inline-flex; align-items: center; gap: .3em;
}
.badge-best { background: var(--c-primary); }
.veg-dot {
	width: 16px; height: 16px; border: 2px solid var(--c-green); border-radius: 3px;
	display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.veg-dot::after { content: ""; width: 7px; height: 7px; background: var(--c-green); border-radius: 50%; }

.dish-body { padding: 1.1rem 1.2rem 1.3rem; }
.dish-body-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .6rem; margin-bottom: .35rem; }
.dish-body-top h3 { font-size: 1.08rem; margin: 0; }
.dish-price { font-weight: 800; color: var(--c-primary); font-size: 1.05rem; white-space: nowrap; }
.dish-desc { font-size: .88rem; color: var(--c-ink-soft); margin-bottom: .9rem; min-height: 2.6em; }
.dish-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.dish-actions .btn { font-size: .78rem; padding: .55em 1em; }

/* ---------------- Why choose us ---------------- */
.feature-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature-card {
	background: var(--c-cream); border-radius: var(--radius-md); padding: 1.8rem 1.5rem;
	transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-icon {
	width: 52px; height: 52px; border-radius: 14px; background: var(--grad-hero);
	display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.feature-card p { font-size: .88rem; color: var(--c-ink-soft); margin: 0; }

/* ---------------- About preview / split sections ---------------- */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split-media.reverse { order: -1; }
@media (min-width: 900px) { .split-media.reverse { order: 2; } }
.pill-badge {
	position: absolute; bottom: -18px; left: -18px; background: #fff; padding: .9rem 1.3rem;
	border-radius: var(--radius-md); box-shadow: var(--shadow-card); font-family: var(--font-display);
}
.pill-badge strong { display: block; font-size: 1.5rem; color: var(--c-primary); }
.pill-badge span { font-size: .75rem; color: var(--c-ink-soft); }

/* ---------------- Category chips (Menu page) ---------------- */
.menu-toolbar { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.4rem; position: sticky; top: 74px; background: var(--c-paper); padding-block: 1rem; z-index: 40; border-bottom: 1px solid rgba(59,30,22,.08); }
.menu-search { position: relative; max-width: 420px; }
.menu-search input {
	width: 100%; padding: .85em 1em .85em 2.6em; border-radius: 999px; border: 2px solid rgba(59,30,22,.12);
	font-family: inherit; font-size: .95rem;
}
.menu-search input:focus { outline: none; border-color: var(--c-primary); }
.menu-search svg { position: absolute; left: .9em; top: 50%; transform: translateY(-50%); color: var(--c-ink-soft); }
.chip-row { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .3rem; scrollbar-width: thin; }
.chip {
	flex-shrink: 0; padding: .55em 1.1em; border-radius: 999px; background: var(--c-cream);
	font-size: .85rem; font-weight: 700; border: 2px solid transparent; cursor: pointer;
	transition: all .2s ease; color: var(--c-dark);
}
.chip.is-active, .chip:hover { background: var(--grad-hero); color: #fff; }

.menu-category { margin-bottom: 3rem; scroll-margin-top: 160px; }
.menu-category h2 { font-size: 1.5rem; display: flex; align-items: baseline; gap: .6rem; }
.menu-category .cat-desc { color: var(--c-ink-soft); font-size: .92rem; margin-bottom: 1.4rem; }

/* ---------------- Testimonials ---------------- */
.testimonial-card {
	background: var(--c-paper); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-card);
	height: 100%;
}
.testimonial-stars { color: var(--c-accent); font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; color: var(--c-ink-soft); }
.testimonial-author { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.testimonial-avatar {
	width: 40px; height: 40px; border-radius: 50%; background: var(--grad-hero); color: #fff;
	display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display);
}
.testimonial-author strong { font-size: .9rem; display: block; }
.testimonial-author span { font-size: .78rem; color: var(--c-ink-soft); }

/* ---------------- FAQ ---------------- */
.faq-item { border-bottom: 1px solid rgba(59,30,22,.12); }
.faq-question {
	width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 0;
	display: flex; justify-content: space-between; align-items: center; cursor: pointer;
	font-weight: 700; font-size: 1.02rem; color: var(--c-dark);
}
.faq-question .plus { font-size: 1.4rem; color: var(--c-primary); transition: transform .25s ease; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--c-ink-soft); font-size: .95rem; }
.faq-answer-inner { padding-bottom: 1.3rem; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
	background: var(--c-dark); color: #fff; border-radius: var(--radius-lg);
	padding: clamp(2.4rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
	content: ""; position: absolute; inset: 0; background: var(--grad-hero); opacity: .18;
}
.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: rgba(255,255,255,.8); position: relative; max-width: 50ch; margin-inline: auto; }
.cta-banner .hero-ctas { justify-content: center; position: relative; }
.cta-banner .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.cta-banner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); }

/* ---------------- Forms ---------------- */
.form-card {
	background: var(--c-paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
	padding: clamp(1.6rem, 4vw, 2.6rem);
}
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 700; color: var(--c-dark); }
.form-field label .req { color: var(--c-primary); }
.form-field input, .form-field select, .form-field textarea {
	padding: .8em 1em; border-radius: var(--radius-sm); border: 2px solid rgba(59,30,22,.15);
	font-family: inherit; font-size: .95rem; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--c-primary); }
.form-note { font-size: .8rem; color: var(--c-ink-soft); margin-top: .8rem; }
.form-status { margin-top: 1rem; padding: .9em 1.1em; border-radius: var(--radius-sm); font-size: .9rem; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { background: #e7f6ea; color: #2c6b34; }
.form-status.error { background: #fdeceb; color: #b3261e; }

/* ---------------- Contact info cards ---------------- */
.info-card {
	background: var(--c-cream); border-radius: var(--radius-md); padding: 1.6rem; display: flex; gap: 1rem; align-items: flex-start;
}
.info-card .feature-icon { flex-shrink: 0; margin-bottom: 0; width: 44px; height: 44px; border-radius: 12px; }
.info-card h3 { font-size: .95rem; margin-bottom: .3rem; }
.info-card p { font-size: .88rem; color: var(--c-ink-soft); margin: 0; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------------- Floating WhatsApp + sticky bar ---------------- */
.whatsapp-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 400;
	width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
	display: none; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7);
}
.whatsapp-float-pulse {
	position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,.6);
	animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

.mobile-sticky-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
	display: grid; grid-template-columns: auto 1fr auto; gap: 6px;
	background: #fff; border-top: 1px solid rgba(59,30,22,.1); padding: 8px 10px;
	box-shadow: 0 -8px 24px -12px rgba(59,30,22,.25);
}
.sticky-btn {
	display: flex; align-items: center; justify-content: center; gap: 6px;
	padding: .7em .6em; border-radius: var(--radius-sm); font-weight: 700; font-size: .82rem;
	background: var(--c-cream); color: var(--c-dark);
}
.sticky-btn-primary { background: var(--grad-hero); color: #fff; }
.sticky-btn-wa { background: #25D366; color: #fff; }

@media (min-width: 960px) {
	.whatsapp-float { display: flex; }
	.mobile-sticky-bar { display: none; }
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,.85); padding-top: 4rem; }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding-bottom: 2.5rem; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a { display: block; padding: .3rem 0; opacity: .85; }
.footer-col a:hover { opacity: 1; color: var(--c-accent); }
.footer-brand .logo-text strong { color: #fff; font-size: 1.4rem; }
.footer-tagline { font-style: italic; opacity: .85; }
.social-links { display: flex; gap: .8rem; margin-top: 1rem; }
.social-links a {
	width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
	display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.4rem; display: flex; justify-content: space-between;
	flex-wrap: wrap; gap: .6rem; font-size: .8rem; opacity: .75;
}
.footer-bottom a:hover { color: var(--c-accent); }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------- Breadcrumbs ---------------- */
.breadcrumbs { font-size: .82rem; color: var(--c-ink-soft); margin-bottom: 1.4rem; }
.breadcrumbs a:hover { color: var(--c-primary); }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
	background: var(--grad-warm); padding-block: clamp(48px, 8vw, 80px); text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-hero p { color: var(--c-ink-soft); max-width: 56ch; margin-inline: auto; }

/* ---------------- Utility ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	html { scroll-behavior: auto; }
}
