/*
Theme Name: Fascella Construction
Theme URI: https://fascellacorp.com/
Author: Fascella Construction Corporation
Description: Custom classic PHP theme that mirrors the Fascella Construction design 1:1. The "Level Up! – Tips and Tricks" page is wired into the native WordPress Posts feature. Hand-written CSS, no page builder required.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: fascella
*/

/* ===== Design tokens ===== */
:root{
  --bg:#ffffff;
  --fg:#0f1729;
  --muted:#5b6478;
  --muted-2:#8a94a8;
  --border:#e3e7ef;
  --secondary:#f3f6fb;
  --card:#ffffff;
  --primary:#1f78c8;
  --primary-dark:#114a85;
  --primary-fg:#ffffff;
  --urgent:#e89234;
  --urgent-fg:#241500;
  --shadow-card:0 10px 30px -15px rgba(17,74,133,.28);
  --shadow-elegant:0 20px 50px -20px rgba(17,74,133,.40);
  --gradient-hero:linear-gradient(135deg, rgba(17,74,133,.92) 0%, rgba(31,120,200,.72) 100%);
  --gradient-primary:linear-gradient(135deg, var(--primary), var(--primary-dark));
  --font-sans:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display:"Playfair Display", Georgia, serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;background:var(--bg);color:var(--fg);font-family:var(--font-sans);line-height:1.55;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-display);letter-spacing:-.02em;line-height:1.1;margin:0}
p{margin:0}
ul{margin:0;padding:0;list-style:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}

.container{max-width:1200px;margin:0 auto;padding:0 1rem}
.balance{text-wrap:balance}
.eyebrow{font-size:.72rem;letter-spacing:.25em;text-transform:uppercase;font-weight:600;color:var(--primary)}
.eyebrow-light{color:rgba(255,255,255,.85)}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;gap:.5rem;border-radius:.5rem;padding:.85rem 1.5rem;font-weight:700;font-size:.95rem;transition:all .2s ease;line-height:1}
.btn-primary{background:var(--primary);color:#fff;box-shadow:var(--shadow-card)}
.btn-primary:hover{background:var(--primary-dark)}
.btn-urgent{background:var(--urgent);color:var(--urgent-fg);box-shadow:var(--shadow-elegant)}
.btn-urgent:hover{filter:brightness(1.05)}
.btn-ghost{background:rgba(255,255,255,.12);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.3);color:#fff}
.btn-ghost:hover{background:rgba(255,255,255,.2)}
.btn-outline{background:transparent;color:var(--fg);border:1px solid var(--border)}
.btn-outline:hover{background:var(--secondary)}
.btn-light{background:#fff;color:var(--primary-dark)}
.arrow::after{content:"→";margin-left:.15rem;transition:transform .2s ease}
.arrow:hover::after{transform:translateX(.2rem)}

/* ===== Top bar ===== */
.topbar{background:var(--primary-dark);color:#fff;font-size:.78rem}
.topbar .container{display:flex;justify-content:space-between;align-items:center;padding-top:.4rem;padding-bottom:.4rem}
.topbar a{display:inline-flex;align-items:center;gap:.35rem;font-weight:500}
.topbar a:hover{text-decoration:underline}
.topbar .tagline{display:none}
@media (min-width:640px){.topbar .tagline{display:inline}}

/* ===== Header ===== */
.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.site-header .bar{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.site-logo img{height:32px;width:auto}
@media(min-width:768px){.site-logo img{height:40px}}
.primary-nav{display:none;align-items:center;gap:1.25rem}
@media(min-width:768px){.primary-nav{display:flex}}
.primary-nav a.nav-link{font-size:.9rem;font-weight:500;color:rgba(15,23,41,.8);transition:color .2s ease;position:relative;padding:.25rem 0}
.primary-nav a.nav-link:hover,.primary-nav .current-menu-item > a,.primary-nav .current_page_item > a{color:var(--primary)}
.primary-nav .menu-item-has-children{position:relative}
.primary-nav .sub-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%);padding-top:.75rem;width:18rem;visibility:hidden;opacity:0;transition:all .15s ease}
.primary-nav .sub-menu-inner{background:#fff;border:1px solid var(--border);border-radius:.5rem;box-shadow:var(--shadow-elegant);padding:.5rem 0;overflow:hidden}
.primary-nav .menu-item-has-children:hover .sub-menu{visibility:visible;opacity:1}
.primary-nav .sub-menu a{display:block;padding:.55rem 1rem;font-size:.88rem;color:rgba(15,23,41,.85)}
.primary-nav .sub-menu a:hover{background:var(--secondary);color:var(--primary)}
.nav-cta{background:var(--primary);color:#fff!important;padding:.6rem 1.25rem;border-radius:.5rem;box-shadow:var(--shadow-card)}
.nav-cta:hover{background:var(--primary-dark)}
.menu-toggle{display:flex;padding:.5rem;font-size:1.5rem;line-height:1}
@media(min-width:768px){.menu-toggle{display:none}}
.mobile-nav{display:none;border-top:1px solid var(--border);background:#fff}
.mobile-nav.open{display:block}
.mobile-nav ul{padding:1rem;display:flex;flex-direction:column;gap:.25rem}
.mobile-nav a{padding:.6rem 0;font-weight:500;color:rgba(15,23,41,.85);border-bottom:1px solid var(--border)}
.mobile-nav .sub-menu{padding-left:1rem;border-left:2px solid var(--border);margin:.25rem 0 .5rem .25rem}
.mobile-nav .sub-menu a{font-size:.85rem;border:0;padding:.3rem 0}
.mobile-cta{display:block;margin-top:.75rem;background:var(--primary);color:#fff!important;text-align:center;padding:.85rem;border-radius:.5rem;font-weight:600}

/* ===== Hero ===== */
.hero{position:relative;overflow:hidden;color:#fff;display:flex;align-items:center;min-height:88vh}
.hero-page{min-height:auto;padding:6rem 0}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.hero-overlay{position:absolute;inset:0;background-image:var(--gradient-hero)}
.hero .container{position:relative;padding-top:6rem;padding-bottom:6rem;max-width:1100px}
.hero-page .container{padding-top:0;padding-bottom:0}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem 1rem;border-radius:9999px;background:rgba(255,255,255,.1);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.2);font-size:.7rem;text-transform:uppercase;letter-spacing:.18em;font-weight:500}
.hero h1{font-size:clamp(2.5rem,5.5vw,4.5rem);margin-top:1.5rem;font-weight:700}
.hero h1 em{font-style:italic;opacity:.92;display:block;margin-top:.1em}
.hero p.lead{margin-top:1.5rem;max-width:42rem;font-size:1.125rem;color:rgba(255,255,255,.92);line-height:1.6}
.hero .cta-row{margin-top:2.25rem;display:flex;flex-wrap:wrap;gap:1rem}
.hero .meta{margin-top:1.5rem;font-size:.85rem;color:rgba(255,255,255,.8);display:inline-flex;align-items:center;gap:.4rem}

/* ===== Trust bar ===== */
.trust-bar{background:var(--secondary);border-block:1px solid var(--border)}
.trust-bar .grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;padding:2rem 0}
@media(min-width:768px){.trust-bar .grid{grid-template-columns:repeat(4,1fr)}}
.trust-item{display:flex;align-items:center;gap:.85rem}
.trust-ico{width:2.75rem;height:2.75rem;border-radius:.5rem;background:rgba(31,120,200,.12);display:grid;place-items:center;color:var(--primary);font-size:1.1rem;flex-shrink:0}
.trust-item .label{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}
.trust-item .value{font-weight:600;color:var(--fg)}

/* ===== Section base ===== */
.section{padding:5rem 0}
@media(min-width:768px){.section{padding:7rem 0}}
.section-secondary{background:var(--secondary)}
.section-dark{background:var(--primary-dark);color:#fff;position:relative;overflow:hidden}
.section-dark .eyebrow{color:rgba(255,255,255,.7)}
.section-head{max-width:42rem;margin-bottom:3.5rem}
.section-head h2{font-size:clamp(2rem,3.5vw,3rem);font-weight:700;color:var(--fg);margin-top:.75rem}
.section-dark .section-head h2{color:#fff}
.section-head p{margin-top:1rem;font-size:1.1rem;color:var(--muted)}
.section-dark .section-head p{color:rgba(255,255,255,.85)}

/* ===== Services grid ===== */
.service-grid{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:768px){.service-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.service-grid{grid-template-columns:repeat(3,1fr)}}
.service-card{background:#fff;border:1px solid var(--border);border-radius:.75rem;box-shadow:var(--shadow-card);overflow:hidden;display:flex;flex-direction:column;transition:all .25s ease}
.service-card:hover{box-shadow:var(--shadow-elegant);transform:translateY(-2px)}
.service-card .thumb{aspect-ratio:4/3;overflow:hidden}
.service-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.service-card:hover .thumb img{transform:scale(1.05)}
.service-card .body{padding:1.5rem}
.service-card h3{font-size:1.25rem;font-weight:700;color:var(--fg)}
.service-card p{margin-top:.5rem;font-size:.9rem;color:var(--muted);line-height:1.5}
.service-card .more{margin-top:1rem;color:var(--primary);font-weight:600;font-size:.9rem;display:inline-flex;align-items:center;gap:.35rem}

/* ===== Why us ===== */
.why{position:relative}
.why::before{content:"";position:absolute;inset:0;opacity:.1;background:url('https://fascellacorp.com/wp-content/uploads/2024/12/11.jpg') center/cover}
.why .container{position:relative}
.reasons{margin-top:3rem;display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:768px){.reasons{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.reasons{grid-template-columns:repeat(4,1fr)}}
.reason-card{background:rgba(255,255,255,.05);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.1);border-radius:.75rem;padding:1.5rem}
.reason-ico{width:2.75rem;height:2.75rem;border-radius:.5rem;background:rgba(232,146,52,.2);color:var(--urgent);display:grid;place-items:center;margin-bottom:1rem;font-size:1.1rem}
.reason-card h3{font-size:1.125rem;font-weight:700;margin-bottom:.5rem}
.reason-card p{font-size:.9rem;color:rgba(255,255,255,.8);line-height:1.55}

/* ===== Projects strip ===== */
.projects-head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:1rem;margin-bottom:3rem}
.projects-head .more{color:var(--primary);font-weight:600;display:inline-flex;align-items:center;gap:.4rem}
.projects-grid{display:grid;gap:.75rem;grid-template-columns:repeat(2,1fr)}
@media(min-width:768px){.projects-grid{grid-template-columns:repeat(4,1fr);gap:1rem}}
.projects-grid figure{position:relative;overflow:hidden;border-radius:.5rem;box-shadow:var(--shadow-card);aspect-ratio:1/1;margin:0}
.projects-grid figure img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.projects-grid figure:hover img{transform:scale(1.05)}
@media(min-width:768px){.projects-grid figure.featured{grid-column:span 2;grid-row:span 2;aspect-ratio:auto}}

.gallery-grid{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:640px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}
.gallery-grid a{display:block;overflow:hidden;border-radius:.75rem;box-shadow:var(--shadow-card);aspect-ratio:4/3}
.gallery-grid a img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.gallery-grid a:hover img{transform:scale(1.05)}

/* ===== Testimonials ===== */
.tlist{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:768px){.tlist{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.tlist{grid-template-columns:repeat(3,1fr)}}
.tcard{background:#fff;border:1px solid var(--border);border-radius:.75rem;box-shadow:var(--shadow-card);padding:1.75rem;display:flex;flex-direction:column}
.tstars{color:var(--urgent);letter-spacing:.05em;margin-bottom:.75rem}
.tcard blockquote{margin:0;color:rgba(15,23,41,.9);line-height:1.6;flex:1}
.tcard figcaption{margin-top:1.25rem;font-weight:600;color:var(--primary);font-size:.9rem}

/* ===== Final CTA ===== */
.final-cta-wrap{padding:5rem 0}
.final-cta{position:relative;overflow:hidden;border-radius:1rem;background:var(--gradient-primary);color:#fff;padding:3rem;box-shadow:var(--shadow-elegant)}
@media(min-width:768px){.final-cta{padding:4rem}}
.final-cta::before{content:"";position:absolute;right:-5rem;top:-5rem;width:16rem;height:16rem;border-radius:9999px;background:rgba(255,255,255,.1);filter:blur(60px)}
.final-cta h2{font-size:clamp(2rem,3.2vw,2.75rem);max-width:48rem;position:relative}
.final-cta p{margin-top:1rem;font-size:1.125rem;color:rgba(255,255,255,.92);max-width:48rem;position:relative}
.final-cta .cta-row{margin-top:2rem;display:flex;flex-wrap:wrap;gap:1rem;position:relative}

/* ===== Services single sections ===== */
.svc-row{display:grid;gap:2.5rem;align-items:center;padding:3rem 0;scroll-margin-top:8rem}
@media(min-width:768px){.svc-row{grid-template-columns:1fr 1fr;gap:4rem}}
.svc-row.flip .svc-img{order:2}
.svc-img{overflow:hidden;border-radius:1rem;box-shadow:var(--shadow-elegant)}
.svc-img img{aspect-ratio:4/3;width:100%;object-fit:cover}
.svc-body h2{font-size:clamp(1.75rem,3vw,2.5rem);font-weight:700}
.svc-body p{margin-top:1.25rem;color:rgba(15,23,41,.85);line-height:1.7}
.svc-list{margin-top:1.5rem;display:flex;flex-direction:column;gap:.6rem}
.svc-list li{display:flex;align-items:flex-start;gap:.5rem;font-size:.92rem;color:rgba(15,23,41,.85)}
.svc-list li::before{content:"✓";color:var(--primary);font-weight:700;flex-shrink:0;line-height:1.5}
.svc-actions{margin-top:2rem;display:flex;flex-wrap:wrap;gap:.75rem}

/* ===== Contact ===== */
.contact-form-grid{display:grid;gap:2.5rem;grid-template-columns:1fr}
@media(min-width:1024px){.contact-form-grid{grid-template-columns:3fr 2fr}}
.contact-card{background:#fff;border:1px solid var(--border);border-radius:1rem;box-shadow:var(--shadow-card);padding:2rem}
@media(min-width:768px){.contact-card{padding:2.5rem}}
.contact-card h2{font-size:1.75rem;margin-bottom:1.25rem}
.field{display:block;margin-bottom:1.25rem}
.field label{display:block;font-size:.875rem;font-weight:500;margin-bottom:.4rem}
.field input,.field select,.field textarea{width:100%;border:1px solid var(--border);background:#fff;border-radius:.4rem;padding:.75rem 1rem;font:inherit;color:var(--fg)}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(31,120,200,.18)}
.field-row{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:640px){.field-row{grid-template-columns:1fr 1fr}}
.form-submit{width:100%;justify-content:center;margin-top:.5rem}
.contact-aside{display:flex;flex-direction:column;gap:1rem}
.contact-info{background:#fff;border:1px solid var(--border);border-radius:1rem;box-shadow:var(--shadow-card);padding:1.5rem;display:flex;gap:1rem}
.contact-info .ico{width:2.75rem;height:2.75rem;border-radius:.5rem;background:rgba(31,120,200,.12);color:var(--primary);display:grid;place-items:center;flex-shrink:0;font-size:1.1rem}
.contact-info .title{font-weight:600}
.contact-info .lines{font-size:.9rem;color:var(--muted);margin-top:.2rem}
.contact-info .lines a:hover{text-decoration:underline}
.service-area-card{background:var(--secondary);border:1px solid var(--border);border-radius:1rem;padding:1.5rem}
.service-area-card h3{font-size:1.1rem;margin-bottom:.5rem}
.service-area-card p{font-size:.9rem;color:var(--muted)}

/* ===== Tips / posts ===== */
.posts-grid{display:grid;gap:2rem;grid-template-columns:1fr}
@media(min-width:768px){.posts-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.posts-grid{grid-template-columns:repeat(3,1fr)}}
.post-card{background:#fff;border:1px solid var(--border);border-radius:1rem;box-shadow:var(--shadow-card);overflow:hidden;display:flex;flex-direction:column;transition:all .25s ease}
.post-card:hover{box-shadow:var(--shadow-elegant);transform:translateY(-2px)}
.post-card .thumb{aspect-ratio:16/10;overflow:hidden;background:var(--secondary)}
.post-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.post-card:hover .thumb img{transform:scale(1.05)}
.post-card .body{padding:1.5rem}
.post-card .meta{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);margin-bottom:.75rem}
.post-card h2{font-size:1.25rem;font-weight:700;margin-bottom:.5rem}
.post-card .excerpt{font-size:.9rem;color:rgba(15,23,41,.75);line-height:1.55}
.post-card .more{margin-top:1.25rem;color:var(--primary);font-weight:600;font-size:.9rem;display:inline-flex;align-items:center;gap:.35rem}

.pagination-wrap{margin-top:3rem;display:flex;justify-content:center;gap:.4rem}
.pagination-wrap a,.pagination-wrap .current{padding:.5rem .85rem;border:1px solid var(--border);border-radius:.4rem;font-weight:600;color:var(--fg)}
.pagination-wrap .current{background:var(--primary);color:#fff;border-color:var(--primary)}

.single-hero{padding:5rem 0;background:var(--secondary);border-bottom:1px solid var(--border)}
.single-hero h1{font-size:clamp(2rem,4vw,3.25rem);font-weight:700;margin-bottom:1rem;max-width:50rem}
.single-hero .meta{font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.single-hero.with-image{padding:0;background:none;border:0;position:relative;min-height:60vh;display:flex;align-items:flex-end;color:#fff;overflow:hidden}
.single-hero.with-image .bg{position:absolute;inset:0;background-size:cover;background-position:center}
.single-hero.with-image .ovl{position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(17,74,133,.85) 100%)}
.single-hero.with-image .container{position:relative;padding:5rem 1rem 4rem}
.single-hero.with-image .meta{color:rgba(255,255,255,.85)}
.entry-content{max-width:46rem;margin:4rem auto;padding:0 1rem;font-size:1.05rem;line-height:1.75;color:rgba(15,23,41,.9)}
.entry-content h2{font-size:1.85rem;margin:2.5rem 0 1rem}
.entry-content h3{font-size:1.4rem;margin:2rem 0 .75rem}
.entry-content p{margin:1rem 0}
.entry-content a{color:var(--primary);text-decoration:underline}
.entry-content img{border-radius:.5rem;margin:1.5rem 0}
.entry-content blockquote{border-left:4px solid var(--primary);padding-left:1.25rem;margin:1.5rem 0;color:var(--muted);font-style:italic}
.entry-content ul,.entry-content ol{margin:1rem 0;padding-left:1.5rem}
.entry-content ul{list-style:disc}
.entry-content ol{list-style:decimal}

/* ===== About ===== */
.about-prose{max-width:50rem;margin:0 auto;padding:0 1rem;font-size:1.1rem;line-height:1.7;color:rgba(15,23,41,.85);display:flex;flex-direction:column;gap:1.25rem}
.about-prose .pull{font-family:var(--font-display);font-size:1.5rem;font-style:italic;color:var(--primary)}
.stats-grid{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:640px){.stats-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.stats-grid{grid-template-columns:repeat(4,1fr)}}
.stat-card{background:#fff;border:1px solid var(--border);border-radius:.75rem;box-shadow:var(--shadow-card);padding:1.5rem}
.stat-card .ico{color:var(--primary);font-size:1.4rem;margin-bottom:.75rem}
.stat-card .label{font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}
.stat-card .value{font-family:var(--font-display);font-size:1.35rem;font-weight:700;margin-top:.25rem}

/* ===== Footer ===== */
.site-footer{background:var(--primary-dark);color:rgba(255,255,255,.95);margin-top:5rem}
.site-footer .grid{display:grid;gap:2.5rem;padding:4rem 0;grid-template-columns:1fr}
@media(min-width:768px){.site-footer .grid{grid-template-columns:repeat(4,1fr)}}
.site-footer h4{font-size:.78rem;text-transform:uppercase;letter-spacing:.15em;font-weight:600;font-family:var(--font-sans);margin-bottom:1rem;color:#fff}
.site-footer ul{display:flex;flex-direction:column;gap:.5rem;font-size:.9rem;color:rgba(255,255,255,.8)}
.site-footer ul a:hover{color:#fff}
.site-footer .brand{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:.75rem}
.site-footer .about-blurb{font-size:.9rem;color:rgba(255,255,255,.8);line-height:1.6}
.contact-list li{display:flex;align-items:flex-start;gap:.5rem}
.contact-list .ico{flex-shrink:0;margin-top:.15rem}
.site-footer .bottom{border-top:1px solid rgba(255,255,255,.1)}
.site-footer .bottom .container{display:flex;flex-wrap:wrap;justify-content:space-between;gap:.5rem;padding:1.25rem 1rem;font-size:.75rem;color:rgba(255,255,255,.7)}

/* ===== Sticky call bar ===== */
.sticky-call{position:fixed;inset:auto 0 0 0;z-index:40;background:var(--primary-dark);color:#fff;border-top:1px solid rgba(255,255,255,.1);box-shadow:var(--shadow-elegant);display:grid;grid-template-columns:1fr 1fr}
@media(min-width:1024px){.sticky-call{display:none}}
.sticky-call a{display:flex;align-items:center;justify-content:center;gap:.4rem;padding:.85rem 0;font-weight:600;font-size:.85rem}
.sticky-call a.quote{background:var(--urgent);color:var(--urgent-fg)}

/* ===== Page hero (generic) ===== */
.page-hero{background:var(--secondary);border-bottom:1px solid var(--border);padding:5rem 0}
.page-hero h1{font-size:clamp(2.5rem,5vw,3.75rem);font-weight:700;color:var(--fg);max-width:50rem}
.page-hero p{margin-top:1.25rem;font-size:1.1rem;color:var(--muted);max-width:42rem}

/* WP form messages */
.notice-success{background:#e8f6ec;color:#1f5b30;border:1px solid #b4e1c1;padding:1rem;border-radius:.5rem;margin-bottom:1rem;font-size:.9rem}
.notice-error{background:#fbeaea;color:#7a1d1d;border:1px solid #f0baba;padding:1rem;border-radius:.5rem;margin-bottom:1rem;font-size:.9rem}

/* utility */
.text-center{text-align:center}
.muted{color:var(--muted)}
.mt-6{margin-top:1.5rem}
.mt-10{margin-top:2.5rem}
.section-tight{padding:4rem 0}

body.has-sticky-call{padding-bottom:3.5rem}
@media(min-width:1024px){body.has-sticky-call{padding-bottom:0}}

/* Hardcoded menu submenu defaults */
.mobile-nav .sub-menu{display:none}
.mobile-nav .sub-menu.open{display:block}
.primary-nav .menu{display:flex;align-items:center;gap:1.25rem;list-style:none;margin:0;padding:0}
.primary-nav .menu > li{position:relative}
.primary-nav .chev{transition:transform .2s ease}
.primary-nav .menu-item-has-children:hover .chev{transform:rotate(180deg)}
