/* ==========================================================================
   P1 Property Services — Shared design system
   Single source of truth for all pages. Brand: navy + gold, Barlow type.
   ========================================================================== */

:root {
  --navy: #1a2a4a;
  --navy-dark: #0f1e38;
  --navy-light: #243860;
  --blue: #2b6cb0;
  --blue-bright: #3182ce;
  --silver: #94a3b8;
  --silver-light: #cbd5e1;
  --silver-bg: #f1f5f9;
  --white: #ffffff;
  --accent: #e8b84b;
  --accent-bright: #f0c955;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --green: #2f855a;
  --maxw: 1200px;
  --radius: 12px;
  --shadow: 0 20px 40px rgba(26,42,74,0.10);
  --focus: 0 0 0 3px rgba(232,184,75,0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Barlow', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img, svg, picture { max-width: 100%; display: block; }
a { color: var(--blue); }

/* Accessibility: visible focus + skip link */
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--navy-dark); padding: 0.6rem 1rem; font-weight: 700; z-index: 200; }
.skip-link:focus { left: 0; }
.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; }

/* Display type */
.display { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--navy-dark); border-bottom: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 46px; width: 46px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--white); letter-spacing: 0.05em; line-height: 1.05; text-transform: uppercase; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; gap: 0.15rem; align-items: center; }
.nav-links a {
  color: var(--silver-light); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 4px; transition: background .2s, color .2s; letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--accent) !important; color: var(--navy-dark) !important; font-weight: 700 !important; padding: 0.55rem 1.2rem !important; }
.nav-cta:hover { background: var(--accent-bright) !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); cursor: pointer; padding: 0.5rem; }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- BUTTONS ---------- */
.btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem 2rem; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s, background .2s, border-color .2s; }
.btn-primary { background: var(--accent); color: var(--navy-dark); }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--navy-dark); color: var(--white); }
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); }

/* ---------- LAYOUT ---------- */
.page { padding-top: 70px; }
.section { padding: 5rem 2rem; }
.inner { max-width: var(--maxw); margin: 0 auto; }
.section-lbl { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--blue-bright); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--navy-dark); text-transform: uppercase; line-height: 1.02; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 620px; }
.tc { text-align: center; }
.tc .section-sub { margin-inline: auto; }
.mt2 { margin-top: 2rem; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs { background: var(--silver-bg); border-bottom: 1px solid var(--border); padding: 0.75rem 2rem; }
.breadcrumbs ol { max-width: var(--maxw); margin: 0 auto; list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li::after { content: '›'; margin-left: 0.4rem; color: var(--silver); }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs li[aria-current="page"] { color: var(--text); font-weight: 600; }

/* ---------- HERO ---------- */
.hero { background: linear-gradient(100deg, rgba(15,30,56,0.86) 0%, rgba(15,30,56,0.60) 50%, rgba(26,42,74,0.30) 100%), url('/images/hero-before-after.webp?2') center top/cover no-repeat; background-color: var(--navy-dark); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--silver-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 20px; margin-bottom: 1.5rem; text-transform: uppercase; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 900; line-height: 0.97; color: var(--white); text-transform: uppercase; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 1.15rem; color: var(--silver-light); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; color: var(--silver-light); font-size: 0.9rem; font-weight: 500; }
.hero-trust svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.hero-visual { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.hero-visual img, .hero-visual svg { width: 100%; height: 100%; object-fit: cover; }
.hero-cards { display: flex; flex-direction: column; gap: 1rem; }
.hero-card { background: var(--navy-dark); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: center; gap: 1.25rem; transition: transform .3s; }
.hero-card:hover { transform: translateX(8px); }
.hero-card-icon { width: 52px; height: 52px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.hero-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-card p { font-size: 0.85rem; color: var(--silver); line-height: 1.5; }

/* sub-hero for inner pages */
.subhero { background: linear-gradient(165deg, var(--navy-dark), var(--navy-light)); padding: 3rem 2rem 3.5rem; text-align: center; color: var(--white); }
.subhero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; line-height: 1; margin-bottom: 0.9rem; }
.subhero h1 span { color: var(--accent); }
.subhero p { color: var(--silver-light); font-size: 1.08rem; font-weight: 300; max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ---------- TRUST BAR ---------- */
.trustbar { background: var(--accent); padding: 1rem 2rem; }
.trustbar-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; }
.trustbar span { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.03em; }
.trustbar svg { width: 20px; height: 20px; }

/* ---------- SERVICES GRID ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.svc-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; text-decoration: none; color: inherit; display: flex; flex-direction: column; background: var(--white); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.svc-card .svc-img { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.svc-card .svc-img svg { width: 72px; height: 72px; }
.svc-card .svc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.svc-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.svc-link { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); font-size: 0.9rem; }
.svc-tag { display: inline-block; background: var(--silver-bg); color: var(--blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; align-self: flex-start; margin-bottom: 0.75rem; }
.svc-img .svc-tag { position: absolute; top: 10px; left: 10px; z-index: 2; margin: 0; background: var(--navy-dark); color: var(--accent); box-shadow: 0 2px 6px rgba(0,0,0,0.25); }

/* gradient art backgrounds for service icons/images */
.art-a { background: linear-gradient(135deg, #1e3a5f, #2b6cb0); }
.art-b { background: linear-gradient(135deg, #234a22, #3d6b2e); }
.art-c { background: linear-gradient(135deg, #1a3a5a, #1e6a8a); }
.art-d { background: linear-gradient(135deg, #4a3410, #8a6a1e); }
.art-e { background: linear-gradient(135deg, #2a1a45, #5a3a8a); }
.art-f { background: linear-gradient(135deg, #2a0a00, #8b3a12); }

/* ---------- SOCIAL PROOF / WHY ---------- */
.why-sec { background: var(--silver-bg); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.why-icon { width: 48px; height: 48px; margin-bottom: 1rem; color: var(--blue); }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- BEFORE / AFTER ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.ba { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.ba-frame { position: relative; aspect-ratio: 4/3; }
.ba-frame img, .ba-frame svg { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; bottom: 10px; left: 10px; background: var(--navy-dark); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.ba-cap { padding: 0.9rem 1.1rem; font-size: 0.88rem; color: var(--text-muted); background: var(--white); }

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; counter-reset: step; }
.process-step { position: relative; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); }
.process-step::before { counter-increment: step; content: counter(step); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--accent); line-height: 1; display: block; margin-bottom: 0.5rem; }
.process-step h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy-dark); text-transform: uppercase; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- SERVICE AREA ---------- */
.area-sec { background: var(--navy); color: var(--white); }
.area-sec .section-title { color: var(--white); }
.area-sec .section-sub { color: var(--silver-light); }
.area-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.area-grid a { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--silver-light); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; padding: 0.6rem 1.2rem; border-radius: 6px; transition: background .2s, color .2s, border-color .2s; }
.area-grid a:hover { background: var(--accent); color: var(--navy-dark); border-color: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2rem; max-width: 820px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.75rem; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.1rem 1.25rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--navy-dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"]::after { content: '−'; }
.faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-a[data-open="true"] { padding: 0 1.25rem 1.1rem; max-height: 600px; }
.faq-a p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- QUOTE FORM ---------- */
.quote-sec { background: var(--navy-dark); color: var(--white); position: relative; overflow: hidden; }
.quote-sec::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(43,108,176,0.2) 0%, transparent 70%); pointer-events: none; }
.quote-wrap { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.quote-sec .section-lbl { color: var(--accent); }
.quote-sec .section-title { color: var(--white); }
.quote-sec .section-sub { color: var(--silver-light); }
.qform { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fgrp { display: flex; flex-direction: column; gap: 6px; }
.fgrp.full { grid-column: 1 / -1; }
.fgrp label { font-size: 0.8rem; font-weight: 600; color: var(--silver-light); text-transform: uppercase; letter-spacing: 0.06em; }
.fgrp input, .fgrp select, .fgrp textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.98rem; padding: 0.75rem 1rem; border-radius: 6px; outline: none; transition: border-color .2s, background .2s; -webkit-appearance: none; }
.fgrp input::placeholder, .fgrp textarea::placeholder { color: rgba(255,255,255,0.35); }
.fgrp input:focus, .fgrp select:focus, .fgrp textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.fgrp select option { background: var(--navy-dark); color: var(--white); }
.fgrp textarea { resize: vertical; min-height: 120px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.fsubmit { grid-column: 1 / -1; margin-top: 0.25rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.fnote { font-size: 0.82rem; color: var(--silver); line-height: 1.5; }
.fsuccess { display: none; background: rgba(47,133,90,0.25); border: 1px solid rgba(100,200,70,0.4); border-radius: 8px; padding: 1.5rem; color: #9fdf7a; text-align: center; font-size: 1.05rem; margin-top: 1.5rem; }

/* ---------- CONTENT (service/blog body) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.7rem,3vw,2.3rem); color: var(--navy-dark); text-transform: uppercase; line-height: 1.05; margin: 2.5rem 0 1rem; }
.prose h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--navy); text-transform: uppercase; margin: 1.75rem 0 0.6rem; }
.prose p { color: var(--text); line-height: 1.8; margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; }
.prose li { line-height: 1.8; margin-bottom: 0.4rem; }
.prose .feats { list-style: none; margin-left: 0; }
.prose .feats li { display: flex; gap: 10px; }
.prose .feats li::before { content: '✓'; color: var(--green); font-weight: 800; }
.callout { background: var(--silver-bg); border-left: 4px solid var(--accent); border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.callout p { margin: 0; color: var(--text); }
.toc { background: var(--silver-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.toc strong { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-dark); display: block; margin-bottom: 0.5rem; }
.toc ol { margin-left: 1.2rem; }
.toc a { color: var(--blue); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* related links / internal linking block */
.related { background: var(--silver-bg); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.related-grid a { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; text-decoration: none; color: var(--navy-dark); font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; transition: border-color .2s, transform .2s; }
.related-grid a:hover { border-color: var(--blue); transform: translateX(4px); }

/* blog list cards */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.post-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-thumb { height: 160px; }
.post-card .post-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy-dark); text-transform: uppercase; line-height: 1.1; margin-bottom: 0.5rem; }
.post-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.post-meta { font-size: 0.78rem; color: var(--silver); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.75rem; }

/* ---------- FOOTER ---------- */
footer { background: var(--navy-dark); border-top: 3px solid var(--blue); padding: 3rem 2rem 6rem; color: var(--silver); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .nav-logo-text { font-size: 1.4rem; }
.footer-brand p { font-size: 0.85rem; color: var(--silver); line-height: 1.7; margin-top: 0.75rem; max-width: 320px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--silver); text-decoration: none; font-size: 0.85rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .muted { font-size: 0.85rem; display: block; margin-bottom: 0.4rem; }
.footer-bottom { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* "Website by OrzelLabs" attribution (shared Orzel Labs tag) */
.orzel-credit { display: inline-flex; align-items: center; gap: 9px; margin-top: 1.5rem; text-decoration: none; }
.orzel-credit .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--silver); }
.orzel-tag { display: inline-flex; align-items: center; padding: 5px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); font-family: 'Syne', system-ui, sans-serif; font-size: 0.95rem; line-height: 1; transition: background .2s, border-color .2s, transform .2s; }
.orzel-credit:hover .orzel-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }
.orzel-brand { color: #fff; font-weight: 700; }
.orzel-brand-accent { font-weight: 800; background: linear-gradient(135deg, #f87171 0%, #e11d2a 50%, #b91c1c 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--navy-dark); border-top: 1px solid var(--blue); padding: 0.6rem 0.75rem; gap: 0.6rem; }
.sticky-cta .btn { flex: 1; justify-content: center; padding: 0.85rem; font-size: 1rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-height: 280px; }
  .svc-grid, .why-grid, .ba-grid, .related-grid, .post-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .nav { padding: 0 1rem; }
  .nav-links { position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--navy-dark); border-bottom: 2px solid var(--blue); padding: 0.5rem; transform: translateY(-120%); transition: transform .25s ease; box-shadow: 0 20px 30px rgba(0,0,0,0.3); }
  .nav-links[data-open="true"] { transform: translateY(0); }
  .nav-links a { padding: 0.9rem 1rem; border-radius: 6px; }
  .nav-cta { text-align: center; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .svc-grid, .why-grid, .ba-grid, .related-grid, .post-grid, .process-grid, .footer-inner { grid-template-columns: 1fr; }
  .qform { grid-template-columns: 1fr; }
  .hero-inner { padding: 2.5rem 1.25rem; }
  .sticky-cta { display: flex; }
  .trustbar-inner { gap: 0.6rem 1.5rem; }
  .trustbar span { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
