/* Naan House, shared styles for secondary pages */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --brand: #F1572A;
    --brand-deep: #C2401A;
    --dark: #1A1512;
    --white: #FFFFFF;
    --gray: #F6F3EE;
    --text: #2A2118;
    --muted: #8A7E70;
    --border: #E9E3DA;
}

body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; }

/* DEMO BANNER */
.demo-banner { background: var(--dark); color: var(--white); text-align: center; padding: 10px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; position: relative; z-index: 101; }
.demo-banner a { color: var(--white); font-weight: 600; text-decoration: underline; }

/* NAV */
nav { height: 70px; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; padding: 0 40px; column-gap: 1cm; overflow: visible; }
.nav-logo { display: flex; justify-content: center; align-self: start; text-decoration: none; }
.nav-logo-img { height: 151px; width: 151px; border-radius: 50%; object-fit: contain; display: block; filter: drop-shadow(0 3px 9px rgba(0,0,0,0.16)); }
.nav-left { display: flex; align-items: center; gap: 24px; list-style: none; justify-self: end; height: 70px; }
.nav-right-group { display: flex; align-items: center; gap: 24px; justify-self: start; height: 70px; }
.nav-right-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-left a, .nav-right-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; letter-spacing: 0.02em; white-space: nowrap; transition: color 0.2s; }
.nav-left a:hover, .nav-right-links a:hover { color: var(--dark); }
.nav-order { background: var(--brand); color: var(--white); padding: 9px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; text-decoration: none; white-space: nowrap; transition: opacity 0.2s; }
.nav-order:hover { opacity: 0.85; }
.nav-hamburger { position: absolute; right: 24px; display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); border-radius: 2px; }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; background: var(--dark); z-index: 200; display: flex; flex-direction: column; padding: 0 40px 60px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-header { height: 80px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.mobile-logo-img { height: 55px; width: 55px; border-radius: 50%; object-fit: cover; }
.mobile-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 22px; cursor: pointer; padding: 8px; line-height: 1; transition: color 0.2s; }
.mobile-close:hover { color: var(--white); }
.mobile-links { list-style: none; flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.mobile-links li a { font-family: 'Poppins', sans-serif; font-size: clamp(32px, 7vw, 50px); font-weight: 600; color: rgba(255,255,255,0.5); text-decoration: none; letter-spacing: 0.04em; display: block; padding: 5px 0; transition: color 0.2s; }
.mobile-links li a:hover { color: var(--white); }
.mobile-order { display: inline-block; background: var(--brand); color: var(--white); padding: 14px 32px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; align-self: flex-start; }

/* PAGE HERO (compact) */
.page-hero { background: var(--dark); padding: 90px 60px 80px; position: relative; overflow: hidden; }
.page-hero.img-hero { padding: 130px 60px; }
.page-hero .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; z-index: 0; }
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.page-hero .eyebrow { color: var(--brand); }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(40px, 6vw, 72px); font-weight: 600; color: var(--white); line-height: 1.05; letter-spacing: 0.04em; margin-bottom: 18px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.75; }

/* GENERIC */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.section { padding: 80px 60px; }
.section.gray { background: var(--gray); }
.section.dark { background: var(--dark); }
.wrap { max-width: 1100px; margin: 0 auto; }
.wrap-narrow { max-width: 720px; margin: 0 auto; }
h2.serif { font-family: 'Poppins', sans-serif; font-size: clamp(30px, 3.5vw, 46px); font-weight: 600; color: var(--dark); line-height: 1.15; letter-spacing: 0.04em; margin-bottom: 24px; }
.lead { font-size: 17px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.btn-brand { display: inline-block; background: var(--brand); color: var(--white); padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: opacity 0.2s; }
.btn-brand:hover { opacity: 0.85; }
.btn-outline { display: inline-block; border: 1px solid var(--border); color: var(--dark); padding: 13px 26px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.coming-soon-tag { display: inline-block; background: rgba(241,87,42,0.12); color: var(--brand-deep); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 60px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 32px; flex-wrap: wrap; gap: 24px; }
.footer-logo-img { height: 60px; width: 60px; border-radius: 50%; object-fit: cover; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-twotop { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.footer-twotop a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-twotop a:hover { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
    nav { display: flex; justify-content: center; align-items: center; padding: 0 20px; overflow: visible; }
    .nav-left, .nav-right-group { display: none; }
    .nav-logo { align-self: center; }
    .nav-logo-img { height: 109px; width: 109px; }
    .nav-hamburger { display: flex; }
    .section { padding: 64px 24px; }
    .page-hero { padding: 70px 24px 56px; }
    .page-hero.img-hero { padding: 90px 24px; }
    footer { padding: 40px 24px; }
}

/* collapse the full nav to the hamburger before its many items + big logo overflow.
   The 9-item nav in a 1fr auto 1fr grid needs ~1135px to fit, so collapse below 1160. */
@media (max-width: 1160px) {
    nav { display: flex; justify-content: center; align-items: center; padding: 0 20px; }
    .nav-left, .nav-right-group { display: none; }
    .nav-logo { align-self: center; }
    .nav-hamburger { display: flex; }
}

/* BLOG */
.post-grid { max-width: 760px; margin: 0 auto; display: block; }
.post-card { display: block; padding: 38px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.post-card:last-child { border-bottom: none; }
.post-card .ptag { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.post-card h3 { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 3vw, 27px); font-weight: 600; color: var(--dark); line-height: 1.2; letter-spacing: 0.02em; margin-bottom: 12px; transition: color 0.2s; }
.post-card:hover h3 { color: var(--brand); }
.post-card p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; max-width: 640px; }
.post-card .read { font-size: 13px; font-weight: 600; color: var(--brand); }
.article-body { font-size: 17px; line-height: 1.9; color: var(--text); }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 600; color: var(--dark); letter-spacing: 0.02em; line-height: 1.25; margin: 40px 0 14px; }
.article-body ul { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--dark); font-weight: 600; }
.article-divider { border: none; border-top: 1px solid var(--border); margin: 44px 0; }
.article-back { display: inline-block; font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; }
.article-back:hover { color: var(--brand); }
