/* Dhanyani Seeds — Premium Design System */
:root {
    --bg: #f8fbf8;
    --card: #ffffff;
    --cream: #fffef6;
    --green-light: #e8f5e9;
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary: #66bb6a;
    --accent: #c9940f;
    --gold-light: #f7e7a8;
    --text: #1a1f1a;
    --text-muted: #5a6560;
    --border: rgba(46, 125, 50, 0.1);
    --glass: rgba(255, 255, 255, 0.82);
    --shadow-sm: 0 2px 14px rgba(46, 125, 50, 0.06);
    --shadow-md: 0 8px 28px rgba(46, 125, 50, 0.08);
    --shadow-lg: 0 16px 44px rgba(46, 125, 50, 0.1);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --font: "Outfit", "Noto Sans Devanagari", system-ui, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
    --header-h: 72px;
    --nav-gradient: linear-gradient(90deg, #1a9e9a 0%, #2e9b55 45%, #3cb043 100%);
    --dock-h: 68px;
    --container: min(1180px, 92%);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --section-y: clamp(2rem, 4.5vw, 3.25rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom));
}
@media (min-width: 1024px) {
    body { padding-bottom: 0; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.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;
}
.container { width: var(--container); margin-inline: auto; }

/* ── Agri-style top bar (white) ── */
.aw-top {
    background: #fff;
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    position: relative;
    z-index: 210;
}
.aw-top__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    min-height: 110px;
    padding: 0.55rem 0;
}
.aw-top__brand {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; justify-self: center;
}
.aw-top__brand img {
    width: auto;
    height: clamp(78px, 11vw, 108px);
    object-fit: contain;
}
.aw-top__left,
.aw-top__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.aw-top__right { justify-content: flex-end; }
.aw-icon-dot {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.5px dotted rgba(130, 150, 140, 0.7);
    color: #fff;
    background: transparent;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.aw-icon-dot::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--primary);
    z-index: 0;
}
.aw-icon-dot i {
    font-size: 0.78rem;
    position: relative;
    z-index: 1;
}
.aw-icon-dot:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}
.aw-icon-link {
    display: inline-flex; align-items: center; gap: 0.55rem;
    text-decoration: none; color: #4a5550;
    font-size: 0.82rem; font-weight: 500;
}
.aw-icon-link:hover { color: var(--primary); }
.lang-switch {
    display: inline-flex; padding: 3px; border-radius: var(--radius-pill);
    background: #fff; border: 1px solid rgba(46, 125, 50, 0.25);
}
.lang-switch button {
    border: 0; background: transparent; padding: 0.3rem 0.5rem;
    border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 700;
    cursor: pointer; font-family: inherit; color: var(--text-muted);
}
.lang-switch button[aria-pressed="true"] {
    background: var(--primary); color: #fff;
}
html[data-lang="hi"] body {
    font-family: "Noto Sans Devanagari", "Outfit", system-ui, sans-serif;
}

/* ── Gradient nav bar ── */
.aw-nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--nav-gradient);
    box-shadow: 0 4px 18px rgba(27, 94, 32, 0.18);
}
.aw-nav.is-scrolled { box-shadow: 0 6px 22px rgba(27, 94, 32, 0.28); }
.aw-nav__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 52px;
}
.aw-nav__social {
    display: none;
    align-items: center;
    gap: 0.45rem;
}
.aw-nav__social a {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.aw-nav__social a:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.aw-nav__links {
    display: none;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: wrap;
    justify-content: center;
}
.aw-nav__links > a,
.aw-nav__links .p-mega__btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.55rem 0.95rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.aw-nav__links > a:hover,
.aw-nav__links .p-mega__btn:hover,
.aw-nav__links .p-mega.is-open .p-mega__btn {
    background: rgba(255, 255, 255, 0.18);
}
.aw-nav__links > a.is-active,
.aw-nav__links .p-mega__btn.is-active {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    border-radius: 0;
    padding-block: 0.85rem;
}
.aw-nav__cta {
    margin-left: 0.35rem !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
}
.aw-nav__cta:hover { background: #fff !important; color: var(--primary) !important; }

/* Enquire Now — side CTA */
.aw-enquire-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    border: 0; cursor: pointer; font-family: inherit; font-weight: 700;
    text-decoration: none; white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.aw-enquire-btn:hover { transform: translateY(-1px); }
.aw-enquire-btn--nav {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.aw-enquire-btn--nav:hover { background: var(--gold-light); color: var(--primary-dark); }
.aw-enquire-btn--top {
    display: none;
}
.p-drawer__enquire {
    display: flex; align-items: center; gap: 0.5rem;
    width: 100%; margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 0; border-radius: 12px;
    background: var(--primary); color: #fff;
    font: inherit; font-weight: 700; cursor: pointer;
}
.p-drawer__social {
    display: flex; gap: 0.55rem; margin-top: 1.25rem;
}
.p-drawer__social a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--primary);
    text-decoration: none;
}

/* Enquiry modal */
.enq-modal {
    position: fixed; inset: 0; z-index: 400;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.28s var(--ease), visibility 0.28s;
}
.enq-modal.is-open {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.enq-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(12, 32, 16, 0.55);
    backdrop-filter: blur(4px);
}
.enq-modal__panel {
    position: relative; z-index: 1;
    width: min(520px, 100%);
    max-height: min(92vh, 720px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.4rem 1.35rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s var(--ease);
}
.enq-modal.is-open .enq-modal__panel { transform: none; }
.enq-modal__close {
    position: absolute; top: 0.85rem; right: 0.85rem;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: #fff;
    color: var(--text); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.enq-modal__head { margin-bottom: 1.15rem; padding-right: 2rem; }
.enq-modal__badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--primary);
    margin-bottom: 0.45rem;
}
.enq-modal__head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem; color: var(--primary-dark);
}
.enq-modal__head p {
    margin: 0; color: var(--text-muted); font-size: 0.9rem;
}
.enq-modal__row {
    display: grid; gap: 0.75rem;
}
@media (min-width: 520px) {
    .enq-modal__row { grid-template-columns: 1fr 1fr; }
}
.enq-modal__field { margin-bottom: 0.75rem; }
.enq-modal__field label {
    display: block; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--text-muted); margin-bottom: 0.3rem;
}
.enq-modal__field input,
.enq-modal__field select,
.enq-modal__field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(46, 125, 50, 0.18);
    border-radius: 12px;
    font: inherit; font-size: 0.92rem;
    background: #f7fbf7;
}
.enq-modal__field input:focus,
.enq-modal__field select:focus,
.enq-modal__field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}
.enq-modal__submit { width: 100%; margin-top: 0.35rem; }
.enq-modal__wa {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    margin-top: 0.85rem;
    color: #128c7e; font-weight: 700; font-size: 0.88rem;
    text-decoration: none;
}
body.enq-open { overflow: hidden; }

.p-mega { position: relative; display: inline-flex; align-items: center; }
.p-mega__chev { font-size: 0.65rem; opacity: 0.9; }
.p-mega__panel {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px; padding: 0.75rem;
    background: #fff; border-radius: 10px;
    border: 1px solid var(--border); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
    z-index: 50;
}
.p-mega.is-open .p-mega__panel {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.p-mega__panel a {
    display: block; padding: 0.55rem 0.65rem; border-radius: 8px;
    font-size: 0.84rem; font-weight: 600; color: var(--text);
    text-decoration: none; text-transform: none; letter-spacing: 0;
}
.p-mega__panel a:hover { background: var(--green-light); color: var(--primary); }

.p-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.55rem 1.05rem; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.82rem; text-decoration: none;
    border: 0; cursor: pointer; font-family: inherit;
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
    letter-spacing: 0.01em;
}
.p-btn:hover { transform: translateY(-2px); }
.p-btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(46,125,50,0.25); }
.p-btn--accent { background: linear-gradient(135deg, var(--accent), #e8b84a); color: #fff; }
.p-btn--ghost { background: var(--card); color: var(--primary); border: 1px solid var(--border); }
.p-btn--outline { background: transparent; color: var(--primary); border: 1.5px solid rgba(46,125,50,0.25); }
.p-btn--outline:hover { background: rgba(46,125,50,0.06); border-color: var(--primary); }
.p-btn--light {
    background: rgba(255,255,255,0.92); color: var(--primary-dark);
    border: 1px solid rgba(255,255,255,0.95);
}
.p-btn i, .p-btn svg { width: 16px; height: 16px; font-size: 0.85rem; }
.p-btn--wa { background: #25d366; color: #fff; }
.p-btn--sm { padding: 0.45rem 0.85rem; font-size: 0.78rem; }

@media (max-width: 1023px) {
    .aw-top__grid {
        grid-template-columns: 1fr auto;
        min-height: 88px;
        padding: 0.45rem 0;
    }
    .aw-top__left { display: none; }
    .aw-top__brand { justify-self: start; grid-column: 1; }
    .aw-top__brand img { height: 68px; width: auto; }
    .aw-top__right { grid-column: 2; gap: 0.35rem; }
    .aw-nav__social { display: none; }
    .aw-enquire-btn--nav { display: none; }
    .aw-nav__inner { min-height: 0; height: 0; overflow: hidden; padding: 0; display: block; }
    body.page-home { padding-bottom: calc(var(--dock-h) + 12px + env(safe-area-inset-bottom)); }
}
@media (min-width: 1024px) {
    .aw-nav__links { display: flex; }
    .aw-nav__social { display: inline-flex; }
    .aw-top__left {
        border-right: 1.5px dotted rgba(150, 165, 155, 0.55);
        padding-right: 1.25rem;
        min-height: 52px;
    }
    .aw-top__right {
        border-left: 1.5px dotted rgba(150, 165, 155, 0.55);
        padding-left: 1.25rem;
        min-height: 52px;
    }
    .p-drawer-toggle { display: none !important; }
    .aw-enquire-btn--nav { display: inline-flex; }
}

/* ── Mobile drawer ── */
.p-drawer-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border: 1px solid var(--border);
    border-radius: 50%; background: var(--card); cursor: pointer; color: var(--text);
}
.p-drawer-toggle i, .p-drawer-toggle svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .p-drawer-toggle { display: none; } }
.p-drawer {
    position: fixed; inset: 0; z-index: 300; pointer-events: none;
}
.p-drawer.is-open { pointer-events: auto; }
.p-drawer__backdrop {
    position: absolute; inset: 0; background: rgba(17,17,17,0.35);
    opacity: 0; transition: opacity 0.3s;
}
.p-drawer.is-open .p-drawer__backdrop { opacity: 1; }
.p-drawer__panel {
    position: absolute; top: 0; right: 0; width: min(320px, 88vw); height: 100%;
    background: var(--card); padding: 1.25rem;
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    overflow-y: auto;
}
.p-drawer.is-open .p-drawer__panel { transform: translateX(0); }
.p-drawer__panel a {
    display: block; padding: 0.75rem 0; font-weight: 600;
    text-decoration: none; border-bottom: 1px solid var(--border);
}

/* ── Footer ── */
.p-footer {
    margin-top: 3rem;
    background: linear-gradient(180deg, #f7fbf5 0%, #fff 42%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 2.6rem 0 0;
    border-top: 1px solid var(--border);
}
.p-footer__newsletter {
    width: var(--container); margin: -4.5rem auto 2rem;
    padding: 1.6rem 1.8rem;
    background: linear-gradient(135deg, #2e7d32 0%, #4a9b4f 55%, #d4a017 140%);
    border-radius: var(--radius-lg);
    color: #fff; display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between; gap: 1.25rem;
    box-shadow: var(--shadow-lg);
}
.p-footer__newsletter h3 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.p-footer__newsletter p { margin: 0; opacity: 0.9; font-size: 0.9rem; }
.p-footer__newsletter-form {
    display: flex; gap: 0.5rem; flex: 1; min-width: 240px; max-width: 400px;
}
.p-footer__newsletter-form input {
    flex: 1; border: 0; border-radius: var(--radius-pill);
    padding: 0.7rem 1rem; font: inherit;
}
.p-footer__main {
    display: grid;
    gap: 1.6rem;
}
.p-footer__lead {
    display: grid;
    gap: 1rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--border);
}
.p-footer__grid {
    display: grid; gap: 1.4rem;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
    .p-footer__grid { grid-template-columns: 1fr 1fr; }
    .p-footer__newsletter { margin-top: -2.8rem; padding: 1.4rem; }
}
.p-footer__brand img { width: 198px; margin-bottom: 0.75rem; }
.p-footer__brand p { color: var(--text-muted); font-size: 0.88rem; max-width: 38ch; }
.p-footer__contactband {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
}
.p-footer__contactband a {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0.95rem 1rem;
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.p-footer__contactband strong {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}
.p-footer__contactband span {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}
.p-footer h4 { margin: 0 0 0.85rem; font-size: 0.9rem; }
.p-footer a {
    display: block; color: var(--text-muted); text-decoration: none;
    font-size: 0.86rem; padding: 0.25rem 0;
    transition: color 0.2s;
}
.p-footer a:hover { color: var(--primary); }
.p-footer__social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.p-footer__social a {
    width: 38px; height: 38px; display: inline-flex; align-items: center;
    justify-content: center; border-radius: 50%; background: var(--card);
    border: 1px solid var(--border); color: var(--primary);
}
.p-footer__subfooter {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.p-footer__subfooter-inner {
    min-height: 58px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.95rem 0;
}
.p-footer__subfooter-inner p {
    margin: 0;
}
.p-footer__subfooter-inner p span {
    padding-inline: 0.3rem;
}
.p-footer__crafted a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.p-footer__crafted a:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .p-footer__contactband {
        grid-template-columns: 1fr;
    }
    .p-footer__subfooter-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── App dock (mobile) ── */
.p-dock {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
    padding: 0.5rem 0.65rem calc(0.5rem + env(safe-area-inset-bottom));
    pointer-events: none;
}
.p-dock__bar {
    pointer-events: auto;
    display: flex; justify-content: space-around; align-items: center;
    max-width: 420px; margin: 0 auto;
    padding: 0.45rem 0.35rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 40px rgba(17,17,17,0.12);
}
.p-dock a {
    display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
    text-decoration: none; color: var(--text-muted);
    font-size: 0.62rem; font-weight: 700; padding: 0.35rem 0.5rem;
    border-radius: var(--radius-pill); min-width: 52px;
    transition: color 0.2s, background 0.2s;
}
.p-dock__enquire {
    display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
    text-decoration: none; color: var(--text-muted);
    font-size: 0.62rem; font-weight: 700; padding: 0.35rem 0.5rem;
    border-radius: var(--radius-pill); min-width: 52px;
    border: 0; background: transparent; cursor: pointer; font-family: inherit;
}
.p-dock a i, .p-dock a svg,
.p-dock__enquire i, .p-dock__enquire svg { font-size: 1.1rem; width: 20px; height: 20px; stroke-width: 1.75; }
.p-dock a.is-active { color: var(--primary); background: rgba(46,125,50,0.1); }
@media (min-width: 1024px) { .p-dock { display: none; } }

/* ── FAB ── */
.p-fab {
    position: fixed; bottom: calc(var(--dock-h) + 12px); right: 1rem;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25d366; color: #fff; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.35rem; box-shadow: var(--shadow-lg);
    z-index: 170; text-decoration: none;
    transition: transform 0.2s var(--ease);
}
.p-fab:hover { transform: scale(1.06); }
@media (min-width: 1024px) {
    .p-fab { bottom: 1.5rem; }
}

/* ── Utilities ── */
.p-eyebrow {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
    background: var(--green-light); color: var(--primary);
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase;
}
.p-section { padding: var(--section-y) 0; }
.p-section__head { margin-bottom: 1.5rem; max-width: 580px; }
.p-section__head h2 {
    margin: 0.4rem 0 0; font-size: clamp(1.45rem, 3.5vw, 2.1rem);
    font-weight: 600; letter-spacing: -0.025em; line-height: 1.2;
    font-family: var(--font-display);
}
.p-section__head p { margin: 0.5rem 0 0; color: var(--text-muted); font-weight: 400; font-size: 0.92rem; }
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Lucide icons — refined stroke style */
[data-lucide] { stroke-width: 1.75; flex-shrink: 0; }
.p-icon-ring {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--card);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.p-icon-ring i, .p-icon-ring svg { width: 20px; height: 20px; color: var(--primary); stroke-width: 1.5; }
.p-eyebrow i, .p-eyebrow svg { width: 14px; height: 14px; stroke-width: 2; }

/* ── Inner page hero ── */
.p-page-hero {
    padding: clamp(3rem, 8vw, 5rem) 0 2rem;
    position: relative; overflow: hidden;
}
.p-page-hero::before {
    content: ""; position: absolute; inset: -20% -10% auto;
    height: 70%; background: radial-gradient(ellipse at 30% 20%, rgba(102,187,106,0.15), transparent 60%);
    pointer-events: none;
}
.p-page-hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.85rem); font-weight: 600;
    letter-spacing: -0.03em; margin: 0.55rem 0;
    font-family: var(--font-display);
}
.p-page-hero p { color: var(--text-muted); max-width: 52ch; margin: 0; }
