/*
Theme Name: Paragon Accounting & Tax
Author: Paragon Accounting & Tax
Description: A modern, fully responsive, and customizable WordPress theme for Paragon Accounting & Tax. Features a navy and gold brand palette, elegant serif headlines, and a clean professional layout. Built with the WordPress Customizer so colors, logo, contact details, hero content, and services can be edited without touching code.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paragon-taxes
Tags: business, professional, custom-colors, custom-logo, custom-menu, featured-images, responsive-layout, blog, two-columns, right-sidebar, accounting, tax
*/

/* ==========================================================================
   Design Tokens — Paragon brand system
   Colors and fonts are also exposed via the WordPress Customizer and
   injected as CSS variables in the document head (see functions.php).
   The values below are fallbacks.
   ========================================================================== */
:root {
  --pt-navy: #172d54;
  --pt-navy-700: #122443;
  --pt-navy-900: #0d1a31;
  --pt-gold: #fbae42;
  --pt-gold-600: #ce8f36;
  --pt-ink: #1a2332;
  --pt-body: #44505f;
  --pt-muted: #7a8694;
  --pt-line: #e4e8ee;
  --pt-bg: #ffffff;
  --pt-bg-soft: #f6f8fb;
  --pt-bg-navy-soft: #f0f4fa;
  --pt-white: #ffffff;

  --font-display: "Cormorant Garamond", "Baskerville", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1360px;
  --gut: clamp(20px, 4.5vw, 56px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(23,45,84,.06);
  --shadow-md: 0 14px 40px rgba(23,45,84,.10);
  --shadow-lg: 0 30px 70px rgba(23,45,84,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pt-body);
  background: var(--pt-bg);
  font-size: 18.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pt-navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--pt-gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--pt-navy);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2.05rem, 3.9vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 1.75rem); }
p { margin: 0 0 1.1em; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.pt-container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.pt-section { padding-block: clamp(56px, 8vw, 110px); }
.pt-section--soft { background: var(--pt-bg-soft); }
.pt-section--navy { background: var(--pt-navy); color: rgba(255,255,255,.86); }
.pt-section--navy h1, .pt-section--navy h2, .pt-section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pt-gold-600);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--pt-gold); display: inline-block; }
.pt-section--navy .eyebrow { color: var(--pt-gold); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--pt-muted); font-size: 1.14rem; }
.pt-section--navy .section-head p { color: rgba(255,255,255,.7); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  letter-spacing: .02em;
  padding: 15px 30px; border-radius: 50px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--pt-gold); color: var(--pt-navy); box-shadow: 0 10px 24px rgba(251,174,66,.32); }
.btn--primary:hover { background: var(--pt-gold-600); color: var(--pt-navy); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(251,174,66,.4); }
.btn--navy { background: var(--pt-navy); color: #fff; }
.btn--navy:hover { background: var(--pt-navy-700); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--pt-navy); border-color: var(--pt-line); }
.btn--ghost:hover { border-color: var(--pt-navy); color: var(--pt-navy); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--pt-navy);
  box-shadow: 0 2px 18px rgba(8,23,48,.18);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.site-brand { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.site-brand img { height: 46px; width: auto; max-width: 230px; object-fit: contain; }
.custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.custom-logo { height: 46px; width: auto; }
.site-brand .brand-text { color:#fff; font-family:var(--font-display); font-size:1.6rem; font-weight:600; }

/* CSS brand lockup (owl mark + crisp text) */
@media (max-width: 600px) {
}

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.main-nav a {
  color: rgba(255,255,255,.88); font-family: var(--font-body); font-weight: 500;
  font-size: .94rem; letter-spacing: .02em; padding: 10px 16px; border-radius: 8px;
  position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--pt-gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: #fff; }
.main-nav a:hover::after, .main-nav .current-menu-item > a::after { transform: scaleX(1); }
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff;
  box-shadow: var(--shadow-md); border-radius: 10px; padding: 8px; display: none; flex-direction: column;
}
.main-nav li { position: relative; }
.main-nav li:hover > .sub-menu { display: flex; }
.main-nav .sub-menu a { color: var(--pt-body); border-radius: 6px; }
.main-nav .sub-menu a:hover { background: var(--pt-bg-soft); color: var(--pt-navy); }
.main-nav .sub-menu a::after { display: none; }
.main-nav .nav-wealth-link { margin-left: 4px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.22); }
@media (max-width: 900px) { .main-nav .nav-wealth-link { margin-left: 0; padding-left: 8px; border-left: none; border-top: 1px solid rgba(255,255,255,.14); padding-top: 12px; } }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--pt-navy); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .94; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--pt-navy) 0%, var(--pt-navy) 26%, rgba(23,45,84,.82) 42%, rgba(23,45,84,.4) 62%, rgba(23,45,84,.08) 82%, rgba(23,45,84,0) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(80px, 13vw, 160px); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .accent { color: var(--pt-gold); font-style: italic; }
.hero__lead { font-size: clamp(1.12rem, 1.7vw, 1.38rem); color: rgba(255,255,255,.82); max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__trust { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 30px 44px; }
.hero__trust .stat .n { font-family: var(--font-display); font-size: 2.1rem; color: var(--pt-gold); line-height: 1; }
.hero__trust .stat .l { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--pt-bg-navy-soft); }
.trust-strip .pt-container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; padding-block: 26px; }
.trust-strip .item { display: flex; align-items: center; gap: 11px; font-size: .92rem; font-weight: 600; color: var(--pt-navy); }
.trust-strip .item svg { width: 22px; height: 22px; color: var(--pt-gold-600); flex: none; }

/* ==========================================================================
   Services cards
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-grid.svc-grid--triple { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin-inline: auto; }
@media (max-width: 560px) { .svc-grid.svc-grid--triple { grid-template-columns: 1fr; max-width: none; } }
.svc-card {
  background: #fff; border: 1px solid var(--pt-line); border-radius: var(--radius);
  padding: 38px 32px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card__icon {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: var(--pt-bg-navy-soft); color: var(--pt-navy); margin-bottom: 22px;
}
.svc-card:hover .svc-card__icon { background: var(--pt-gold); color: var(--pt-navy); }
.svc-card__icon svg { width: 30px; height: 30px; }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { color: var(--pt-muted); font-size: .98rem; margin-bottom: 22px; }
.svc-card .more { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--pt-navy); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-card:hover .more { color: var(--pt-gold-600); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ==========================================================================
   About / split feature
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.split__media .badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--pt-navy); color: #fff;
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-lg); max-width: 240px;
}
.split__media .badge .n { font-family: var(--font-display); font-size: 2.2rem; color: var(--pt-gold); line-height: 1; }
.split__media .badge .l { font-size: .82rem; color: rgba(255,255,255,.78); margin-top: 4px; }
.feature-list { list-style: none; margin: 24px 0 30px; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 13px; }
.feature-list li svg { width: 22px; height: 22px; color: var(--pt-gold-600); flex: none; margin-top: 2px; }
.feature-list li span { font-size: .98rem; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; }
.step h3::before {
  content: ""; display: block; width: 36px; height: 3px; border-radius: 2px;
  background: var(--pt-gold); margin-bottom: 16px;
}
.pt-section--navy .step h3 { color: var(--pt-gold); }
.step p { color: rgba(255,255,255,.72); font-size: .96rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--pt-line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.tst-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--pt-gold); line-height: .6; height: 28px; }
.tst-card p { font-size: 1rem; color: var(--pt-ink); flex: 1; }
.tst-card .who { display: flex; align-items: center; gap: 13px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--pt-line); }
.tst-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--pt-navy); color: var(--pt-gold); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; flex: none; }
.tst-card .who .nm { font-weight: 700; color: var(--pt-navy); font-size: .96rem; }
.tst-card .who .rl { font-size: .82rem; color: var(--pt-muted); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--pt-gold); }
.stars svg { width: 18px; height: 18px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--pt-navy) 0%, var(--pt-navy-700) 100%); color: #fff; border-radius: 0; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; right:-80px; top:-80px; width:340px; height:340px; border-radius:50%; background: radial-gradient(circle, rgba(251,174,66,.22), transparent 70%); }
.cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; max-width: 520px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--pt-navy-900); color: rgba(255,255,255,.72); padding-top: clamp(56px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer img.f-logo { height: 44px; margin-bottom: 18px; }
.site-footer p { font-size: .94rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-col a:hover { color: var(--pt-gold); }
.f-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: .94rem; }
.f-contact li svg { width: 18px; height: 18px; color: var(--pt-gold); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.parent-badge { display:inline-flex; align-items:center; gap:8px; font-size:.84rem; color: rgba(255,255,255,.6); }
.parent-badge strong { color: var(--pt-gold); font-weight:600; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { background: var(--pt-navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; right:-60px; bottom:-120px; width:380px; height:380px; border-radius:50%; background:radial-gradient(circle, rgba(251,174,66,.16), transparent 70%); z-index:1; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(23,45,84,.93) 0%, rgba(23,45,84,.88) 45%, rgba(13,26,49,.82) 100%); }
.page-hero__inner { position: relative; z-index:1; padding-block: clamp(56px, 9vw, 110px); text-align: center; max-width: 720px; margin-inline: auto; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 560px; margin-inline: auto; }
.breadcrumbs { font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumbs a { color: var(--pt-gold); }

/* ==========================================================================
   Content / single & page
   ========================================================================== */
.content-area { max-width: 820px; margin-inline: auto; }
.entry-content { font-size: 1.06rem; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); margin-block: 1.4em; }
.entry-content blockquote { border-left: 4px solid var(--pt-gold); margin: 1.6em 0; padding: 6px 0 6px 24px; font-family: var(--font-display); font-size: 1.3rem; color: var(--pt-navy); font-style: italic; }
.entry-content ul, .entry-content ol { padding-left: 22px; }
.entry-content li { margin-bottom: 8px; }

/* Blog cards */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card { background:#fff; border:1px solid var(--pt-line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); display:flex; flex-direction:column; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; overflow:hidden; background: var(--pt-bg-navy-soft); }
.post-card .thumb img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 26px; display:flex; flex-direction:column; flex:1; }
.post-card .meta { font-size:.8rem; letter-spacing:.04em; text-transform:uppercase; color: var(--pt-gold-600); font-weight:600; margin-bottom:10px; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post-card p { color: var(--pt-muted); font-size:.95rem; flex:1; }
.post-card .more { margin-top:14px; font-weight:600; font-size:.85rem; text-transform:uppercase; letter-spacing:.04em; }

/* Contact */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,64px); align-items:start; }
.contact-info .ci { display:flex; gap:16px; padding:22px 0; border-bottom:1px solid var(--pt-line); }
.contact-info .ci:last-child { border-bottom:0; }
.contact-info .ci .ic { width:50px; height:50px; border-radius:12px; background:var(--pt-bg-navy-soft); color:var(--pt-navy); display:grid; place-items:center; flex:none; }
.contact-info .ci .ic svg { width:24px; height:24px; }
.contact-info .ci h4 { margin:0 0 4px; font-family:var(--font-body); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--pt-muted); }
.contact-info .ci .v { font-size:1.06rem; color:var(--pt-navy); font-weight:600; }
.contact-form { background:#fff; border:1px solid var(--pt-line); border-radius: var(--radius); padding: clamp(28px,4vw,42px); box-shadow: var(--shadow-sm); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { margin-bottom:18px; }
.field label { display:block; font-size:.86rem; font-weight:600; color:var(--pt-navy); margin-bottom:7px; }
.field input, .field textarea, .field select {
  width:100%; padding:13px 16px; border:1.5px solid var(--pt-line); border-radius: var(--radius-sm);
  font-family:var(--font-body); font-size:.96rem; color:var(--pt-ink); background:#fff; transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color:var(--pt-navy); box-shadow:0 0 0 4px rgba(23,45,84,.08); }
.field textarea { min-height:130px; resize:vertical; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--pt-line); line-height:0; background: var(--pt-bg-navy-soft); min-height: 340px; }
.map-wrap iframe { width:100%; height:340px; border:0; }

/* Sidebar / widgets */
.widget { margin-bottom: 32px; }
.widget-title { font-size:1.2rem; margin-bottom:16px; }
.widget ul { list-style:none; padding:0; margin:0; display:grid; gap:10px; }

/* Pagination */
.pt-pagination { display:flex; justify-content:center; gap:8px; margin-top:48px; }
.pt-pagination .page-numbers { display:grid; place-items:center; min-width:44px; height:44px; padding:0 12px; border:1px solid var(--pt-line); border-radius:8px; color:var(--pt-navy); font-weight:600; }
.pt-pagination .page-numbers.current, .pt-pagination .page-numbers:hover { background:var(--pt-navy); color:#fff; border-color:var(--pt-navy); }

/* Reveal animation */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* Accessibility */
.skip-link { position:absolute; left:-999px; top:0; background:var(--pt-gold); color:var(--pt-navy); padding:10px 16px; z-index:200; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }
:focus-visible { outline: 3px solid var(--pt-gold); outline-offset: 2px; }
.screen-reader-text { position:absolute !important; clip:rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .svc-grid, .tst-grid, .post-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap:32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:34px; }
  .split { grid-template-columns: 1fr; }
  .split__media { order:-1; max-width:520px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 84px 0 auto 0; z-index: 90; background: var(--pt-navy-700);
    flex-direction: column; padding: 18px var(--gut) 28px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s; box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 84px); overflow:auto;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; width:100%; }
  .main-nav a { padding: 14px 8px; font-size:1.02rem; }
  .main-nav a::after { display:none; }
  .main-nav .sub-menu { position: static; display:flex; box-shadow:none; background:transparent; padding-left:14px; }
  .main-nav .sub-menu a { color: rgba(255,255,255,.75); }
  .header-cta .btn--header { display:none; }
}
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .svc-grid, .tst-grid, .post-grid, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero__trust { gap: 22px 30px; }
  .split__media .badge { right: 0; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
}

.team-card {
  display: flex; align-items: flex-start; gap: 32px; background: var(--pt-white);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); max-width: 780px; margin-inline: auto;
}
.team-card__av {
  width: 92px; height: 92px; border-radius: 50%; background: var(--pt-navy); color: var(--pt-gold);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 2rem; font-weight: 600; flex: none; overflow: hidden;
}
.team-card__av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card__role { color: var(--pt-gold-600); font-weight: 600; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.team-card__body h3 { margin-bottom: 4px; }
.team-card__body p:last-child { margin-bottom: 0; color: var(--pt-body); }
@media (max-width: 640px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
}
