/* ==========================================================================
   Texas Medical Response — Theme Styles
   Brand: Navy #15336e + Emergency Red #d92b27, accessible & responsive
   ========================================================================== */

:root {
	--navy: #15336e;
	--navy-dark: #0d2350;
	--navy-soft: #1f4490;
	--red: #d92b27;
	--red-dark: #b81f1c;
	--blue: #0369a1;
	--bg: #f4f7fc;
	--surface: #ffffff;
	--text: #0f1b2d;
	--muted: #5b6b82;
	--border: #e2e8f0;
	--ring: #15336e;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-sm: 0 2px 8px rgba(15, 51, 110, .06);
	--shadow: 0 12px 30px rgba(15, 51, 110, .10);
	--shadow-lg: 0 24px 60px rgba(15, 51, 110, .16);
	--container: 1200px;
	--space: clamp(64px, 8vw, 110px);
	--font-head: "Bricolage Grotesque", "Figtree", "Noto Sans", system-ui, sans-serif;
	--font-body: "Noto Sans", "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
img, svg { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 8px; justify-content: center;
	font-family: var(--font-head); font-weight: 700; font-size: 15px;
	padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
	min-height: 48px; text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-dark); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: #fff; }
.btn-emergency { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(217,43,39,.28); }
.btn-emergency:hover { background: var(--red-dark); color: #fff; }
.btn-phone { background: var(--red); color: #fff; padding: 12px 20px; }
.btn-phone:hover { background: var(--red-dark); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--red); margin-bottom: 14px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.eyebrow--center { justify-content: center; }
.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.82); font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar-lead { margin: 0; display: inline-flex; align-items: center; gap: 8px; }
.topbar-lead svg { color: var(--red); }
.topbar-lead a { color: #fff; font-weight: 600; }
.topbar-meta { display: inline-flex; align-items: center; gap: 22px; }
.topbar-meta a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.82); }
.topbar-meta a:hover { color: #fff; }
.topbar-meta svg { color: var(--red); }
.topbar-tagline { font-family: var(--font-head); font-style: italic; font-weight: 600; color: #ff9b97; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.site-branding { flex: 0 0 auto; }
.tmr-logo, .custom-logo-link { display: inline-block; }
.tmr-logo-svg { height: 50px; width: auto; }
.custom-logo { max-height: 56px; width: auto; }

.main-navigation { margin-left: auto; }
.primary-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.primary-menu a { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text); padding: 6px 0; position: relative; }
.primary-menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .25s ease; }
.primary-menu a:hover { color: var(--navy); }
.primary-menu a:hover::after { width: 100%; }
.primary-menu .current-menu-item > a { color: var(--navy); }

.header-cta { flex: 0 0 auto; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle .bar { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero slider (image OR video slides)
   ========================================================================== */
.hero { background: var(--bg); padding-bottom: 40px; }
.hero-slider { position: relative; overflow: hidden; }
.hero-track { position: relative; min-height: clamp(540px, 76vh, 760px); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease; display: flex; align-items: center; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img, .hero-video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-slide.is-active .hero-img, .hero-slide.is-active .hero-video { animation: heroZoom 7s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,18,40,.86) 0%, rgba(8,18,40,.66) 42%, rgba(8,18,40,.25) 100%); }
.hero-caption { position: relative; z-index: 3; width: 100%; padding: 40px 0; }
.hero-content { max-width: 640px; color: #fff; }
.hero-slide.is-active .hero-content > * { animation: heroUp .7s cubic-bezier(.22,.61,.36,1) both; }
.hero-slide.is-active .hero-eyebrow { animation-delay: .15s; }
.hero-slide.is-active .hero-title { animation-delay: .28s; }
.hero-slide.is-active .hero-text { animation-delay: .4s; }
.hero-slide.is-active .hero-actions { animation-delay: .52s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: #ff9b97; margin-bottom: 16px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero-title { font-size: clamp(34px, 5.2vw, 62px); margin-bottom: 18px; color: #fff; }
.hero-text { font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,.9); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.22); color: #fff; }

.hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(8,18,40,.35); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .25s ease, transform .25s ease; backdrop-filter: blur(4px); }
.hero-nav:hover { background: var(--red); border-color: var(--red); }
.hero-prev { left: 22px; } .hero-next { right: 22px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; padding: 0; transition: .25s; }
.hero-dot.is-active { background: var(--red); border-color: var(--red); transform: scale(1.2); }

/* Impact bar */
.impact-bar { margin-top: -52px; position: relative; z-index: 6; background: var(--navy); border-radius: var(--radius); display: grid; grid-template-columns: repeat(4, 1fr); box-shadow: var(--shadow-lg); overflow: hidden; }
.impact-item { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.impact-item:last-child { border-right: 0; }
.impact-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 36px); color: #fff; }
.impact-label { display: block; font-size: 13.5px; color: rgba(255,255,255,.78); margin-top: 4px; }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: var(--space) 0; }
.about-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: #dde8f6; }
.about-photo--lg { aspect-ratio: 4/3.4; }
.about-photo--sm { position: absolute; right: -16px; bottom: -28px; width: 46%; aspect-ratio: 1/1; border: 6px solid #fff; }
.about-photo img, .about-photo svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-experience { position: absolute; left: -18px; top: 28px; background: var(--red); color: #fff; border-radius: 18px; padding: 16px 20px; box-shadow: 0 12px 28px rgba(217,43,39,.3); text-align: center; }
.exp-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 26px; }
.exp-label { display: block; font-size: 12px; max-width: 110px; opacity: .92; }
.about-content p { color: var(--muted); max-width: 60ch; }
.about-callout { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 16px 20px; border-left: 4px solid var(--red); background: #fff5f4; border-radius: 0 12px 12px 0; font-family: var(--font-head); font-style: italic; font-weight: 600; color: var(--navy); max-width: 60ch; }
.about-callout svg { color: var(--red); flex: 0 0 auto; }
.about-list { list-style: none; margin: 24px 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); font-size: 15px; }
.about-list svg { color: var(--red); flex: 0 0 auto; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: var(--space) 0; background: linear-gradient(180deg, #fff 0%, #eef3fb 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cdd9ea; }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px; background: #eaf1fb; color: var(--navy); margin-bottom: 20px; transition: .25s; }
.service-card--featured { background: var(--navy); border-color: var(--navy); }
.service-card--featured .service-title, .service-card--featured .service-title a, .service-card--featured .service-desc { color: #fff; }
.service-card--featured .service-title a:hover { color: #ffd9d7; }
.service-card--featured .service-desc { color: rgba(255,255,255,.82); }
.service-card--featured .service-icon { background: var(--red); color: #fff; }
.service-card--featured .service-link { color: #fff; }
.service-title { font-size: 20px; margin-bottom: 10px; }
.service-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--red); }
.service-link:hover { gap: 10px; }

/* ==========================================================================
   Why Us + Consultation form
   ========================================================================== */
.whyus { padding: var(--space) 0; }
.whyus-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.whyus-content p { color: var(--muted); max-width: 52ch; }
.whyus-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.whyus-point { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.wp-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: #eaf1fb; color: var(--navy); margin-bottom: 14px; }
.whyus-point h3 { font-size: 17px; margin-bottom: 6px; }
.whyus-point p { font-size: 14px; margin: 0; }

.consult-card { background: var(--navy); border-radius: 24px; padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg); color: #fff; }
.consult-card h3 { color: #fff; font-size: 24px; margin-bottom: 22px; }
.consult-form label { display: block; margin-bottom: 16px; }
.consult-form label span { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.82); margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consult-form input, .consult-form select, .consult-form textarea {
	width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2);
	background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: 15px; min-height: 48px;
}
.consult-form textarea { min-height: 90px; resize: vertical; }
.consult-form input::placeholder, .consult-form textarea::placeholder { color: rgba(255,255,255,.5); }
.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus { outline: 3px solid var(--red); outline-offset: 1px; background: rgba(255,255,255,.12); }
.consult-form option { color: #0f1b2d; }
.consult-form .btn-primary { background: var(--red); margin-top: 6px; }
.consult-form .btn-primary:hover { background: var(--red-dark); }

/* ==========================================================================
   Process
   ========================================================================== */
.process { padding: var(--space) 0; background: #eef3fb; }
.process-grid { display: grid; gap: 18px; }
.process-step { display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.process-step:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.step-num { font-family: var(--font-head); font-weight: 800; font-size: 46px; color: #cdd9ea; }
.process-step:hover .step-num { color: var(--red); }
.step-body h3 { font-size: 20px; margin-bottom: 6px; }
.step-body p { color: var(--muted); margin: 0; font-size: 15px; max-width: 70ch; }

/* How We Work — feature cards */
.section-sub { color: var(--muted); margin-top: 10px; font-size: 16px; }
.process--cards { background: #fff; }
.proc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 8px; }
.proc-card { transition: transform .3s ease; }
.proc-card:hover { transform: translateY(-6px); }
.proc-card-media { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3/2; background: #eaf1fb; }
.proc-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.proc-card:hover .proc-card-media img { transform: scale(1.06); }
.proc-card-no { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 12px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 17px; box-shadow: 0 6px 16px rgba(217,43,39,.32); }
.proc-card-title { font-size: 19px; margin: 18px 0 6px; color: var(--navy); }
.proc-card-desc { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Team
   ========================================================================== */
.team { padding: var(--space) 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; margin: 0; }
.team-photo { width: 100%; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 16px; border: 1px solid var(--border); position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,35,80,.45)); opacity: 0; transition: opacity .3s ease; }
.team-card:hover .team-photo::after { opacity: 1; }
.team-card h3 { font-size: 18px; margin-bottom: 2px; }
.team-card p { color: var(--red); font-weight: 600; font-size: 14px; margin: 0; }

/* ==========================================================================
   Testimonials — editorial slider (from supplied component, native build)
   ========================================================================== */
.testimonials { padding: var(--space) 0; background: linear-gradient(180deg, #eef3fb 0%, #fff 100%); }
.editorial { max-width: 820px; margin: 0 auto; }
.editorial-row { display: flex; align-items: flex-start; gap: 32px; }
.editorial-index { font-family: var(--font-head); font-weight: 400; font-size: clamp(72px, 12vw, 132px); line-height: .8; color: rgba(15,51,110,.10); user-select: none; font-variant-numeric: tabular-nums; transition: color .5s ease; }
.editorial-body { flex: 1; position: relative; min-height: 230px; padding-top: 8px; }
.editorial-item { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; }
.editorial-item.is-active { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }
.editorial-quote { margin: 0; font-family: var(--font-head); font-weight: 300; font-size: clamp(22px, 3.2vw, 33px); line-height: 1.45; letter-spacing: -.01em; color: var(--text); transition: opacity .3s ease, transform .3s ease; }
.editorial-item.is-entering .editorial-quote { opacity: 0; transform: translateX(16px); }
.editorial-item.is-leaving .editorial-quote { opacity: 0; transform: translateX(16px); }
.editorial-author { display: flex; align-items: center; gap: 16px; margin-top: 40px; transition: opacity .3s ease .1s; }
.editorial-item.is-entering .editorial-author, .editorial-item.is-leaving .editorial-author { opacity: 0; }
.editorial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; box-shadow: 0 0 0 2px rgba(15,51,110,.12); transition: box-shadow .3s ease; }
.editorial-author:hover .editorial-avatar { box-shadow: 0 0 0 2px rgba(15,51,110,.35); }
.editorial-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .5s ease; }
.editorial-author:hover .editorial-avatar img { filter: grayscale(0); }
.editorial-meta strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--text); }
.editorial-meta small { color: var(--muted); font-size: 14px; }
.editorial-meta .sep { margin: 0 8px; color: rgba(15,51,110,.25); }
.editorial-author:hover .company { color: var(--text); }
.company { transition: color .3s ease; }
.editorial-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; }
.editorial-selectors { display: flex; align-items: center; gap: 24px; }
.editorial-lines { display: flex; align-items: center; gap: 12px; }
.editorial-line { background: none; border: 0; padding: 16px 0; cursor: pointer; }
.editorial-line span { display: block; height: 2px; width: 24px; background: rgba(15,51,110,.2); transition: width .5s ease, background .5s ease; }
.editorial-line:hover span { width: 32px; background: rgba(15,51,110,.4); }
.editorial-line.is-active span { width: 48px; background: var(--navy); }
.editorial-count { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-variant-numeric: tabular-nums; }
.editorial-arrows { display: flex; gap: 4px; }
.editorial-arrow { width: 40px; height: 40px; border-radius: 50%; border: 0; background: none; color: rgba(15,51,110,.4); cursor: pointer; display: grid; place-items: center; transition: color .3s ease, background .3s ease; }
.editorial-arrow:hover { color: var(--navy); background: rgba(15,51,110,.06); }

/* ==========================================================================
   Tips / Blog
   ========================================================================== */
.tips { padding: var(--space) 0; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tip-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tip-thumb { display: block; aspect-ratio: 16/10; background: linear-gradient(160deg, #eaf1fb, #d8e4f5); overflow: hidden; }
.tip-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tip-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.tip-body { padding: 24px; }
.tip-meta { font-size: 13px; color: var(--red); font-weight: 600; }
.tip-body h3 { font-size: 19px; margin: 8px 0 14px; line-height: 1.3; }
.tip-body h3 a { color: var(--navy); }
.tip-body h3 a:hover { color: var(--red); }
.tip-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy); }
.tip-link:hover { gap: 10px; color: var(--red); }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner { padding: 0 0 var(--space); }
.cta-inner { background: linear-gradient(120deg, var(--red) 0%, #e8554f 100%); border-radius: 28px; padding: clamp(36px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.cta-text h2 { color: #fff; font-size: clamp(24px, 3.4vw, 38px); margin-bottom: 8px; max-width: 18ch; }
.cta-text p { color: rgba(255,255,255,.92); margin: 0; max-width: 52ch; }
.cta-banner .btn-emergency { background: #fff; color: var(--red); }
.cta-banner .btn-emergency:hover { background: var(--navy); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.78); padding-top: var(--space); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .tmr-logo-svg, .footer-brand .custom-logo { background: #fff; padding: 10px 14px; border-radius: 12px; height: auto; max-height: 70px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 38ch; }
.footer-descriptor { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; margin: 0 0 6px; letter-spacing: .02em; }
.footer-website { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 14px; margin: 4px 0 14px; }
.footer-website svg { color: var(--red); }
.footer-website:hover { color: #ff9b97; }
.footer-payments-note { font-size: 13px; color: rgba(255,255,255,.7); margin: 0 0 10px; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pay { font-family: var(--font-head); font-weight: 800; font-size: 11px; letter-spacing: .04em; padding: 8px 12px; border-radius: 7px; background: #fff; }
.pay.visa { color: #1a1f71; } .pay.mc { color: #eb001b; } .pay.amex { color: #2e77bc; } .pay.disc { color: #e25c1d; }
.footer-title { color: #fff; font-size: 17px; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: 14.5px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.footer-contact svg { color: var(--red); flex: 0 0 auto; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: #fff; }
.footer-emergency p { font-size: 14px; }
.footer-emergency .btn-emergency { margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: 13.5px; text-align: center; }

/* ==========================================================================
   Blog fallback
   ========================================================================== */
.content-area { padding: 60px 24px; }
.post-list { display: grid; gap: 40px; max-width: 760px; margin: 0 auto; }
.post-entry { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.post-thumb img { border-radius: 12px; margin-bottom: 18px; }
.entry-meta { color: var(--red); font-weight: 600; font-size: 13px; }
.entry-title { font-size: 24px; margin: 8px 0 12px; }

/* ==========================================================================
   Service media cards (Services page)
   ========================================================================== */
.services-grid--media .service-card { padding: 0; overflow: hidden; }
.services-grid--media .service-thumb { aspect-ratio: 16/10; overflow: hidden; }
.services-grid--media .service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.services-grid--media .service-card:hover .service-thumb img { transform: scale(1.07); }
.services-grid--media .service-icon { margin: -34px 30px 16px; position: relative; background: var(--red); color: #fff; box-shadow: var(--shadow); }
.services-grid--media .service-title { padding: 0 30px; }
.services-grid--media .service-desc { padding: 0 30px; }
.services-grid--media .service-link { margin: 0 30px 30px; }
.services-grid--media .service-card--featured .service-icon { background: #fff; color: var(--navy); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Reveal is a progressive enhancement: only hidden when JS is active. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.js .reveal[data-reveal="left"] { transform: translateX(-32px); }
.js .reveal[data-reveal="right"] { transform: translateX(32px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1 !important; transform: none !important; transition: none; }
	.hero-slide.is-active .hero-img, .hero-slide.is-active .hero-video { animation: none; transform: none; }
	.hero-slide.is-active .hero-content > * { animation: none; }
}

/* ==========================================================================
   Inner page banner + content
   ========================================================================== */
.page-banner { position: relative; background: linear-gradient(120deg, var(--navy-dark), var(--navy) 60%, var(--navy-soft)); color: #fff; padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px); overflow: hidden; }
.page-banner::after { content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(217,43,39,.35), transparent 70%); }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 14px; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.page-banner-title { color: #fff; font-size: clamp(32px, 5vw, 52px); margin: 0; position: relative; z-index: 1; }
.page-banner-sub { color: rgba(255,255,255,.85); margin-top: 12px; max-width: 60ch; position: relative; z-index: 1; }
.page-content { padding: var(--space) 0; }
.container--narrow { max-width: 820px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-page { padding: var(--space) 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.contact-info > p { color: var(--muted); max-width: 52ch; }
.contact-cards { list-style: none; margin: 28px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.cc-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: #eaf1fb; color: var(--navy); flex: 0 0 auto; }
.cc-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 2px; }
.contact-card a, .contact-card span:not(.cc-label):not(.cc-icon) { font-weight: 600; color: var(--text); font-size: 14.5px; }
.contact-card a:hover { color: var(--red); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.consult-card--page { position: sticky; top: 96px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.about-inner, .whyus-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.about-photo--sm { width: 38%; }
	.services-grid, .tips-grid { grid-template-columns: repeat(2, 1fr); }
	.team-grid { grid-template-columns: repeat(2, 1fr); }
	.consult-card--page { position: static; }
}

@media (max-width: 880px) {
	.main-navigation { position: fixed; inset: 76px 0 auto 0; background: #fff; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow); padding: 10px 0; }
	.main-navigation.is-open { transform: translateY(0); }
	.primary-menu { flex-direction: column; gap: 0; padding: 8px 24px; }
	.primary-menu li { border-bottom: 1px solid var(--border); }
	.primary-menu li:last-child { border-bottom: 0; }
	.primary-menu a { display: block; padding: 14px 0; }
	.menu-toggle { display: flex; order: 3; }
	.header-cta { margin-left: auto; }
	.hero-nav { width: 44px; height: 44px; }
	.hero-prev { left: 12px; } .hero-next { right: 12px; }
	.editorial-row { gap: 18px; }
	.editorial-index { font-size: clamp(56px, 16vw, 88px); }
}

@media (max-width: 680px) {
	.impact-bar { grid-template-columns: 1fr 1fr; margin-top: 24px; }
	.impact-item:nth-child(2) { border-right: 0; }
	.impact-item:nth-child(1), .impact-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
	.services-grid, .tips-grid, .team-grid, .about-list, .whyus-points, .form-row, .contact-cards { grid-template-columns: 1fr; }
	.process-step { grid-template-columns: 1fr; gap: 8px; text-align: left; }
	.btn-phone span { display: none; }
	.btn-phone { padding: 12px; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
	.header-cta { display: none; }
	.hero-track { min-height: 560px; }
	.editorial-nav { flex-direction: column; gap: 20px; align-items: flex-start; }
	.topbar { font-size: 12.5px; }
	.topbar-inner { justify-content: center; min-height: 0; padding: 6px 0; row-gap: 2px; }
	.topbar-meta { gap: 14px; }
	.topbar-meta .topbar-tagline, .topbar-meta a[href^="https"] { display: none; }
	.menu-toggle { margin-left: auto; }
}

/* ==========================================================================
   Global overflow guard (no horizontal scroll on mobile)
   ========================================================================== */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

/* Clip decorative overhangs / scaled media so nothing widens the page */
.hero, .hero-slider, .about, .about-story, .whyus, .services, .process,
.testimonials, .tips, .resources, .svc-row, .svc-hero, .page-banner,
.cta-banner, .mv, .values, .contact-page, .single-share { overflow: hidden; }

/* Prevent grid/flex blowout (min-width:auto is the classic overflow cause) */
.hero-inner > *, .about-inner > *, .about-story-inner > *, .whyus-inner > *,
.svc-cols > *, .contact-grid > *, .mv-grid > *, .resource-featured > *,
.process-step > *, .hero-content { min-width: 0; }
.hero-title, .section-title, .svc-hero-title, .page-banner-title,
.single-title, .rf-title { overflow-wrap: break-word; }

/* ==========================================================================
   Mobile phone button inside the menu
   ========================================================================== */
.nav-phone { display: none; }

/* ==========================================================================
   Page banner overlay + light breadcrumb
   ========================================================================== */
.page-banner { position: relative; background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 70%); color: #fff; padding: clamp(48px, 7vw, 84px) 0; overflow: hidden; }
.page-banner--image { background-size: cover; background-position: center; }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,35,80,.92) 0%, rgba(13,35,80,.72) 60%, rgba(217,43,39,.45) 100%); z-index: 0; }
.page-banner > .container { position: relative; z-index: 1; }
.page-banner-title { color: #fff; font-size: clamp(30px, 5vw, 52px); margin: 8px 0 6px; }
.page-banner-sub { color: rgba(255,255,255,.86); margin: 0; max-width: 60ch; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; }
.breadcrumb a { color: var(--red); }
.breadcrumb--light a { color: #ff9b97; }
.breadcrumb--light, .breadcrumb--light span { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   Service detail page
   ========================================================================== */
.svc-hero { position: relative; min-height: clamp(360px, 46vw, 520px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.svc-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,35,80,.55) 0%, rgba(13,35,80,.86) 100%); }
.svc-hero-inner { position: relative; z-index: 1; padding: clamp(40px, 6vw, 80px) 0; max-width: 760px; }
.svc-hero-title { color: #fff; font-size: clamp(32px, 5vw, 56px); margin: 14px 0 10px; }
.svc-hero-tagline { color: rgba(255,255,255,.9); font-size: clamp(16px, 1.4vw, 20px); margin-bottom: 26px; max-width: 52ch; }

.svc-row { padding: clamp(56px, 7vw, 96px) 0; }
.svc-row--alt { background: #eef3fb; }
.svc-cols { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.svc-cols--media { grid-template-columns: 1fr 1fr; align-items: center; }
.svc-col--head .section-title { margin-top: 6px; }
.svc-lead { color: var(--navy); font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; font-family: var(--font-head); }
.svc-col--body p { color: var(--muted); }
.svc-col--media img { width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow); display: block; }
.svc-features { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.svc-features li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--text); font-size: 15px; }
.svc-features svg { color: var(--red); flex: 0 0 auto; margin-top: 2px; }

/* ==========================================================================
   Process step media (image on the right)
   ========================================================================== */
.process-step { grid-template-columns: 84px 1fr minmax(0, 260px); }
.step-media { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); align-self: stretch; }
.step-media img { width: 100%; height: 100%; min-height: 120px; object-fit: cover; display: block; transition: transform .4s ease; }
.process-step:hover .step-media img { transform: scale(1.05); }

/* ==========================================================================
   About page (distinct layout)
   ========================================================================== */
.about-story { padding: var(--space) 0; }
.about-story-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.about-story-text p { color: var(--muted); max-width: 58ch; }
.about-story-media { position: relative; }
.about-story-img1 { width: 100%; height: auto; border-radius: 24px; box-shadow: var(--shadow); display: block; }
.about-story-img2 { position: absolute; right: -18px; bottom: -28px; height: 55%; width: auto; max-width: 56%; border: 6px solid #fff; border-radius: 18px; box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; }
.about-story-badge { position: absolute; left: -16px; top: 24px; background: var(--red); color: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 12px 28px rgba(217,43,39,.3); font-family: var(--font-head); font-style: italic; line-height: 1.1; display: flex; flex-direction: column; }
.about-story-badge strong { font-size: 20px; font-style: normal; }

.mv { padding: 0 0 var(--space); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card { background: var(--navy); color: #fff; border-radius: 20px; padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow); }
.mv-card:nth-child(2) { background: #fff; color: var(--text); border: 1px solid var(--border); }
.mv-card h3 { color: inherit; font-size: 24px; margin-bottom: 10px; }
.mv-card:first-child h3 { color: #fff; }
.mv-card p { margin: 0; color: inherit; opacity: .92; }
.mv-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: var(--red); color: #fff; margin-bottom: 18px; }
.mv-card:nth-child(2) .mv-icon { background: #eaf1fb; color: var(--navy); }

.values { padding: var(--space) 0; background: #eef3fb; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 12px; background: #eaf1fb; color: var(--navy); flex: 0 0 auto; }
.value-card h3 { font-size: 17px; margin: 0; }

/* ==========================================================================
   Resources (blog) listing
   ========================================================================== */
.resources { padding: var(--space) 0; }
.resource-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: #fff; border: 1px solid var(--border); margin-bottom: 40px; }
.rf-thumb { display: block; min-height: 320px; background-size: cover; background-position: center; }
.rf-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.rf-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rf-date, .rc-date { color: var(--muted); font-size: 13px; font-weight: 600; }
.chip { display: inline-block; background: #eaf1fb; color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; }
.chip--float { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; }
.rf-title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.rf-title a { color: var(--navy); }
.rf-title a:hover, .rc-title a:hover { color: var(--red); }
.rf-excerpt { color: var(--muted); margin-bottom: 22px; }
.rf-body .btn { align-self: flex-start; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.resource-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.rc-thumb { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.rc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rc-body { padding: 22px 24px 26px; }
.rc-title { font-size: 19px; margin: 8px 0 12px; line-height: 1.3; }
.rc-title a { color: var(--navy); }
.rc-excerpt { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.resources-empty { text-align: center; padding: 60px 0; }

.pagination, .navigation.pagination { margin-top: 48px; }
.nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--border); background: #fff; color: var(--navy); font-weight: 600; }
.page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.page-numbers:hover { border-color: var(--navy); }

/* ==========================================================================
   Single article
   ========================================================================== */
.single-head { background: #eef3fb; padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--border); }
.single-head-inner { max-width: 760px; margin: 0 auto; }
.single-cat { display: inline-block; margin: 16px 0 10px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 14px; border-radius: 999px; }
.single-title { font-size: clamp(28px, 4.4vw, 46px); margin: 6px 0 18px; }
.single-meta { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 14px; }
.sm-item { display: inline-flex; align-items: center; gap: 7px; }
.sm-item svg { color: var(--red); }
.single-body { max-width: 760px; margin: 0 auto; padding: clamp(36px, 5vw, 60px) 24px; }
.entry-content { font-size: 17px; line-height: 1.8; color: #25324a; }
.entry-content h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 1.6em 0 .5em; }
.entry-content h3 { font-size: 21px; margin: 1.4em 0 .4em; }
.entry-content p { margin: 0 0 1.2em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.4em; padding-left: 1.3em; }
.entry-content li { margin-bottom: .5em; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content blockquote { border-left: 4px solid var(--red); background: #fff5f4; margin: 1.6em 0; padding: 18px 22px; border-radius: 0 12px 12px 0; font-style: italic; color: var(--navy); }
.single-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.single-tags .tag-label { font-weight: 700; color: var(--navy); margin-right: 4px; }
.single-tags a { background: #eaf1fb; color: var(--navy); font-size: 13px; padding: 6px 12px; border-radius: 999px; }
.single-tags a:hover { background: var(--navy); color: #fff; }

.single-share { margin-top: 34px; padding: 22px 24px; border-radius: var(--radius); background: #eef3fb; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.share-label { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.share-links { display: flex; gap: 10px; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--navy); border: 1px solid var(--border); cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; position: relative; }
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-fb:hover { background: #1877f2; border-color: #1877f2; }
.share-x:hover { background: #000; border-color: #000; }
.share-in:hover { background: #0a66c2; border-color: #0a66c2; }
.share-mail:hover { background: var(--navy); border-color: var(--navy); }
.share-copy:hover { background: var(--red); border-color: var(--red); }
.share-copy.is-copied::after { content: "Copied!"; position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: 11px; padding: 4px 8px; border-radius: 6px; white-space: nowrap; }

.single-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.pn { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.pn:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.pn-next { text-align: right; }
.pn-dir { display: block; color: var(--red); font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.pn-title { display: block; color: var(--navy); font-family: var(--font-head); font-weight: 600; }

/* ==========================================================================
   Form: status, honeypot, required, recaptcha note
   ========================================================================== */
.tmr-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.consult-form .req { color: #ff9b97; }
.consult-card--page .req, .form-status .req { color: var(--red); }
.form-status { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.form-status--ok { background: #e7f7ee; color: #137a43; }
.form-status--err { background: #fdeceb; color: #b81f1c; }
.form-recaptcha-note { font-size: 11.5px; color: rgba(255,255,255,.55); margin: 10px 0 0; text-align: center; }
.consult-card--page .form-recaptcha-note { color: var(--muted); }

/* ==========================================================================
   Responsive — new sections
   ========================================================================== */
@media (max-width: 1024px) {
	.svc-cols, .svc-cols--media, .about-story-inner, .resource-featured { grid-template-columns: 1fr; }
	.svc-cols--media .svc-col--media { order: -1; }
	.rf-thumb { min-height: 240px; }
	.resources-grid, .values-grid, .proc-cards { grid-template-columns: repeat(2, 1fr); }
	.process-step { grid-template-columns: 72px 1fr; }
	.step-media { display: none; }
}

@media (max-width: 880px) {
	.nav-phone { display: inline-flex; margin: 12px 24px; width: calc(100% - 48px); }
	.nav-phone span { display: inline; }
}

@media (max-width: 680px) {
	.svc-features { grid-template-columns: 1fr; }
	.mv-grid, .resources-grid, .values-grid, .single-nav, .proc-cards { grid-template-columns: 1fr; }
	.about-story-img2 { right: 0; height: 50%; }
	.single-share { flex-direction: column; align-items: flex-start; }
	.pn-next { text-align: left; }
}
