/**
 * TQ Legal — Rebrand (v2) stylesheet
 * ----------------------------------------------------------------------------
 * Loaded AFTER style.css. Scoped to `.tq-section` (every new/v2 component root)
 * and `*-v2` markup so legacy v1 pages are never affected.
 *
 * Fonts: Fraunces (headings) + Manrope (body) — enqueued in functions.php.
 * Palette below was read from the Figma desktop frames. These are the single
 * source of truth for brand colour — tune here and every v2 component follows.
 */

:root {
	/* Core brand */
	--tq-navy:        #0D1A2B; /* primary dark sections + footer — exact Figma */
	--tq-navy-deep:   #0D1A2B; /* footer navy — exact Figma value */
	--tq-gold:        #A8864A; /* primary buttons, accents, Legal500 — exact Figma */
	--tq-gold-hover:  #947642;
	--tq-gold-active: #83693A;
	--tq-cream:       #E8E2D9; /* light section background — exact Figma */
	--tq-cream-alt:   #DED6C8;
	--tq-coral:       #E8503A; /* "Facing an X?" / urgent CTA bands — exact Figma */
	--tq-coral-hover: #D6482E;

	/* Text */
	--tq-ink:          #0D1A2B; /* dark text on cream */
	--tq-ink-muted:    #55606F; /* secondary text on cream */
	--tq-light:        #E8E2D9; /* light text on navy / coral (Figma cream) */
	--tq-light-muted:  rgba(232, 226, 217, 0.72);

	/* Lines / borders */
	--tq-divider-light: rgba(245, 241, 232, 0.16); /* dividers on navy */
	--tq-divider-dark:  rgba(27, 36, 52, 0.14);     /* dividers on cream */

	/* Type */
	--tq-font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
	--tq-font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

	/* Spacing rhythm */
	--tq-section-y:  96px;  /* vertical padding of a section (desktop) */
	--tq-radius:     6px;
	--tq-maxw:       1160px;
}

/* ---------------------------------------------------------------------------
 * Section shell — shared by every v2 component root (.tq-section .tq-<name>)
 * ------------------------------------------------------------------------- */
.tq-section {
	font-family: var(--tq-font-body);
	padding-top: var(--tq-section-y);
	padding-bottom: var(--tq-section-y);
	color: var(--tq-ink);
	font-size: 17px;
	line-height: 1.6;
}
.tq-section .tq-inner {
	max-width: var(--tq-maxw);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Light vs dark section themes (set via a modifier class on the root) */
.tq-section--navy  { background-color: var(--tq-navy);  color: var(--tq-light); }
.tq-section--cream { background-color: var(--tq-cream); color: var(--tq-ink); }
.tq-section--coral { background-color: var(--tq-coral); color: var(--tq-light); }

/* ---------------------------------------------------------------------------
 * Typography
 * ------------------------------------------------------------------------- */
.tq-section h1, .tq-section h2, .tq-section h3, .tq-section h4,
.tq-section .tq-h1, .tq-section .tq-h2, .tq-section .tq-h3 {
	font-family: var(--tq-font-head);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 0.4em;
	text-transform: none; /* override legacy style.css h3 uppercase */
}
.tq-section h1, .tq-section .tq-h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
.tq-section h2, .tq-section .tq-h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.tq-section h3, .tq-section .tq-h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }
.tq-section p { margin: 0 0 1rem; }
.tq-section p:last-child { margin-bottom: 0; }

.tq-section--navy p,
.tq-section--coral p { color: var(--tq-light); }
.tq-section--navy h1, .tq-section--navy h2, .tq-section--navy h3,
.tq-section--coral h1, .tq-section--coral h2, .tq-section--coral h3 { color: var(--tq-light); }

.tq-eyebrow {
	font-family: var(--tq-font-body);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
 * Buttons — default / hover / focus / active states
 * ------------------------------------------------------------------------- */
.btn-tq {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--tq-font-body);
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1;
	padding: 15px 26px;
	border-radius: var(--tq-radius);
	border: 1.5px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .06s ease, box-shadow .18s ease;
}
.btn-tq:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(198, 161, 92, 0.45);
}
.btn-tq:active { transform: translateY(1px); }

/* Primary — solid gold, navy text */
.btn-tq-primary {
	background-color: var(--tq-gold);
	color: var(--tq-light);
	border-color: var(--tq-gold);
}
.btn-tq-primary:hover  { background-color: var(--tq-gold-hover); border-color: var(--tq-gold-hover); color: var(--tq-navy); }
.btn-tq-primary:active { background-color: var(--tq-gold-active); border-color: var(--tq-gold-active); }

/* Ghost — transparent with light border; used on navy + coral bands */
.btn-tq-ghost {
	background-color: transparent;
	color: var(--tq-light);
	border-color: rgba(245, 241, 232, 0.6);
}
.btn-tq-ghost:hover  { background-color: rgba(245, 241, 232, 0.12); border-color: var(--tq-light); color: var(--tq-light); }
.btn-tq-ghost:active { background-color: rgba(245, 241, 232, 0.2); }
.btn-tq-ghost:focus-visible { box-shadow: 0 0 0 3px rgba(245, 241, 232, 0.35); }

/* Subtle, consistent lift on gold buttons (v2 + Gravity Forms submit + legacy
   banner). Ghost buttons keep their fill-on-hover from above. */
.btn-tq-primary:hover,
.tq-contact .gform_wrapper .gform_button:hover { box-shadow: 0 4px 14px rgba(22, 35, 59, 0.18); }
.btn-tq-primary:active { box-shadow: none; }

/* Links: no underline on hover anywhere in the site chrome / v2 sections /
   the logo — links change colour, not decoration. */
.tq-site-header a, .tq-footer a, .tq-section a, .banner_cta-container a, .tq-logo,
.tq-site-header a:hover, .tq-footer a:hover, .tq-section a:hover, .banner_cta-container a:hover,
.tq-logo:hover, .tq-logo:focus { text-decoration: none; }

/* Smooth-scroll for in-page anchor links (e.g. "Learn more" -> #practice-areas). */
html { scroll-behavior: smooth; scroll-padding-top: 24px; }

/* Kill the legacy dotted focus outline that lingered on links/buttons after a
   mouse click + drag-away. Keyboard focus (:focus-visible) keeps a clean ring. */
a:focus:not(:focus-visible),
.btn-tq:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }
a:focus-visible { outline: 2px solid var(--tq-gold); outline-offset: 2px; }

/* ---------------------------------------------------------------------------
 * Trust row (Google 5-star + Legal 500) — reused under heros
 * ------------------------------------------------------------------------- */
.tq-trust-row {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 32px;
}
/* Badge heights match the staging site's visible-mark size. The staging SVGs are
   the same artwork padded into a 106px-tall canvas rendered at 100px; these are the
   tightly-cropped equivalents, so each carries the staging visible height directly. */
.tq-trust-row img { width: auto; }
.tq-trust-row img[src*="trust-google"]   { height: 70px; }
.tq-trust-row img[src*="trust-legal500"] { height: 40px; }

/* Section heading helper: constrained + optional centered */
.tq-section-head { max-width: 640px; margin-bottom: 60px; }
.tq-section-head.tq-center { margin-left: auto; margin-right: auto; text-align: center; }

/* SVG icon wrapper — icons upload as SVG, rendered at a consistent size */
.tq-icon { display: inline-flex; width: 28px; height: 28px; flex: 0 0 auto; }
.tq-icon img, .tq-icon svg { width: 100%; height: 100%; object-fit: contain; }
/* v2 line icons are single-colour SVGs loaded as <img>. Normalise their colour
   to the section's foreground tone so they stay legible on any scheme — this
   makes the navy/cream alternation robust regardless of which tone SVG was
   picked in ACF. (brightness(0) collapses the source colour, then the chain
   tints to cream #E8E2D9 on dark bands / ink #1B2434 on cream bands.) */
.tq-section--navy .tq-icon img,
.tq-section--coral .tq-icon img {
	filter: brightness(0) saturate(100%) invert(92%) sepia(7%) saturate(220%) hue-rotate(4deg) brightness(96%) contrast(90%);
}
.tq-section--cream .tq-icon img {
	filter: brightness(0) saturate(100%) invert(11%) sepia(18%) saturate(1000%) hue-rotate(184deg) brightness(94%) contrast(92%);
}

/* ---------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
@media (max-width: 767px) {
	:root { --tq-section-y: 60px; }
	.tq-section { font-size: 16px; }
	.tq-section-head { margin-bottom: 32px; }
}

/* ===========================================================================
 * COMPONENT LAYOUTS (v2)
 * ======================================================================== */

/* Shared media block ------------------------------------------------------ */
.tq-media img { width: 100%; height: auto; display: block; border-radius: var(--tq-radius); }
.tq-media--image img { object-fit: cover; }
.tq-video-frame { position: relative; padding-top: 56.25%; border-radius: var(--tq-radius); overflow: hidden; }
.tq-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Ambient (autoplay) mode: the frame is a background film, not a player — block
   pointer events so hovering/clicking never surfaces the YouTube/Vimeo chrome. */
.tq-video-frame--ambient iframe { pointer-events: none; }
.tq-media--video video { width: 100%; height: auto; display: block; border-radius: var(--tq-radius); }

/* Video section (v2) ------------------------------------------------------ */
.tq-video__block { margin: 0 auto; }
.tq-video__block--narrow { max-width: 720px; }
.tq-video__block--medium { max-width: 900px; }
.tq-video__block--wide   { max-width: 100%; }
.tq-video__block .tq-video-frame { box-shadow: 0 18px 44px rgba(22, 35, 59, 0.18); }
.tq-video__caption { margin: 16px 0 0; text-align: center; font-size: 0.95rem; opacity: 0.82; }
.tq-video__cta { margin-top: 32px; text-align: center; }

/* Trust row fallback ------------------------------------------------------ */
.tq-trust-fallback { font-weight: 700; letter-spacing: .02em; display: inline-flex; align-items: center; }
.tq-trust-fallback--legal500 { font-family: var(--tq-font-head); font-size: 1.3rem; }
.tq-trust-fallback--legal500 strong { color: var(--tq-gold); }

/* Hero container (v2) ----------------------------------------------------- */
/* Figma: a wider text column (heading wraps to ~3 lines) beside a narrower
   portrait image — not an even 50/50 split. */
.tq-hero-v2__grid { display: grid; grid-template-columns: 1.66fr 1fr; gap: 56px; align-items: center; }
.tq-hero-v2__copy { font-size: 1.05rem; margin-bottom: 28px; max-width: 520px; }
.tq-hero-v2__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.tq-hero-v2__media img, .tq-hero-v2__media .tq-media { border-radius: 10px; overflow: hidden; }
/* A 16:9 player in the narrow portrait-photo column would be tiny, so even the
   split up when the hero media is a video. */
.tq-hero-v2--video .tq-hero-v2__grid { grid-template-columns: 1fr 1.05fr; }
/* Shadow goes on the media wrapper, not the frame: `.tq-hero-v2__media .tq-media`
   is overflow:hidden, which would clip a shadow drawn inside it. */
.tq-hero-v2__media .tq-media--video,
.tq-hero-pa__media .tq-media--video {
	border-radius: var(--tq-radius);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

/* Hero practice area (v2) ------------------------------------------------- */
.tq-hero-pa__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tq-hero-pa--text .tq-hero-pa__grid { grid-template-columns: minmax(0, 760px); }
/* Figma service-page hero: a large display heading that fills the left column
   (wrapping to 2–3 lines) with a narrower intro paragraph beneath it. */
.tq-hero-pa h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.tq-hero-pa__copy { font-size: 1.05rem; margin-bottom: 28px; max-width: 560px; }

/* Audience columns -------------------------------------------------------- */
/* Full-width heading so "Are you in the right place? Here's who I help:" sits
   on one line, per the Figma. */
.tq-audience-columns .tq-section-head { max-width: none; }
.tq-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tq-audience-col h3 { margin-top: 16px; }
.tq-audience-col p { font-size: 0.98rem; }

/* Feature list ------------------------------------------------------------ */
.tq-feature-list__body { display: grid; grid-template-columns: 1fr; gap: 48px; }
.tq-feature-list--has-media .tq-feature-list__body { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.tq-feature-row { display: grid; grid-template-columns: 40px 1fr; gap: 20px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--tq-divider-light); }
.tq-section--cream .tq-feature-row { border-bottom-color: var(--tq-divider-dark); }
.tq-feature-row:first-child { padding-top: 0; }
.tq-feature-row__text h3 { margin-bottom: 6px; }
.tq-feature-row__text p { font-size: 0.96rem; margin: 0; }
.tq-feature-list__cta { margin-top: 32px; }
.tq-feature-list__media { position: sticky; top: 40px; }
.tq-feature-list__media img { border-radius: 10px; }

/* Practice areas (v2) ----------------------------------------------------- */
.tq-practice-areas__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.tq-practice-areas__intro { position: sticky; top: 40px; }
/* Figma: coral heading is Fraunces 56px / Regular. */
.tq-practice-areas__intro h2 { color: var(--tq-coral); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; }
.tq-section--cream .tq-practice-areas__intro h2 { color: var(--tq-coral); }
.tq-practice-areas__intro p { margin-top: 16px; color: var(--tq-ink-muted); font-size: 0.98rem; max-width: 320px; }
.tq-practice-area-row { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--tq-divider-dark); }
.tq-section--navy .tq-practice-area-row { border-bottom-color: var(--tq-divider-light); }
.tq-practice-area-row:first-child { padding-top: 0; }
.tq-practice-area-row__text p { font-size: 0.96rem; margin: 6px 0 10px; }
.tq-learn-more { font-weight: 600; color: var(--tq-gold); text-decoration: none; font-size: 0.92rem; }
.tq-learn-more:hover { color: var(--tq-gold-hover); }
.tq-learn-more span { transition: transform .15s ease; display: inline-block; }
.tq-learn-more:hover span { transform: translateX(3px); }

/* Direct access (v2) ------------------------------------------------------ */
.tq-direct-access__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.tq-direct-access__grid.has-media { grid-template-columns: 1.1fr 0.9fr; }
.tq-direct-access__copy { margin-bottom: 24px; }
/* Figma text-only variant (no image): a large display heading filling the left
   column (wrapping to ~2 lines) over a narrower intro, right side left open. */
.tq-direct-access__grid:not(.has-media) { grid-template-columns: minmax(0, 820px); }
.tq-direct-access__grid:not(.has-media) h2 { font-size: clamp(2.4rem, 4.2vw, 3.5rem); }
.tq-direct-access__grid:not(.has-media) .tq-direct-access__copy { max-width: 720px; }
/* Figma: small coral dot bullets, medium-weight text. */
.tq-tick-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.tq-tick-list li { position: relative; padding-left: 20px; font-size: 1rem; font-weight: 500; }
.tq-tick-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--tq-gold); }
.tq-tick-list li::after { content: none; }
.tq-direct-access__media img { border-radius: 10px; }

/* Steps slide (v2) -------------------------------------------------------- */
.tq-steps--steps .tq-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tq-steps--steps .tq-step { text-align: left; }
.tq-steps--steps .tq-icon { width: 38px; height: 38px; }
.tq-steps--steps .tq-step h3 { margin-top: 22px; font-size: 1.4rem; }
.tq-steps--steps .tq-step p { font-size: 0.96rem; }
.tq-steps--numbered .tq-steps__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.tq-steps--numbered .tq-step { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 48px 0; border-bottom: 1px solid var(--tq-divider-dark); }
.tq-section--navy .tq-steps--numbered .tq-step { border-bottom-color: var(--tq-divider-light); }
.tq-steps--numbered .tq-step:first-child { padding-top: 0; }
.tq-step__num { font-family: var(--tq-font-head); font-size: 3.4rem; font-weight: 300; color: var(--tq-gold); line-height: 1; }
.tq-steps__cta { margin-top: 40px; }

/* FAQs (v2) --------------------------------------------------------------- */
/* FAQ spans the full content width, left-aligned like every other section
   (was capped at 820px + centred, which indented it). */
.tq-faqs .tq-inner { max-width: var(--tq-maxw); }
.tq-accordion__item { border-bottom: 1px solid var(--tq-divider-dark); }
.tq-section--navy .tq-accordion__item { border-bottom-color: var(--tq-divider-light); }
.tq-accordion__header { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; background: none; border: 0; cursor: pointer; text-align: left; padding: 28px 0; font-family: var(--tq-font-head); font-size: 1.3rem; font-weight: 400; color: inherit; }
.tq-accordion__header i { transition: transform .2s ease; color: var(--tq-gold); flex: 0 0 auto; }
.tq-accordion__header[aria-expanded="true"] i, .tq-accordion__header.is-open i { transform: rotate(180deg); }
/* Figma FAQ toggle is a "+" that becomes "−" when open. */
.tq-accordion__icon { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.tq-accordion__icon::before, .tq-accordion__icon::after { content: ""; position: absolute; background: var(--tq-gold); transition: opacity .2s ease; }
.tq-accordion__icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.tq-accordion__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.tq-accordion__header[aria-expanded="true"] .tq-accordion__icon::after, .tq-accordion__header.is-open .tq-accordion__icon::after { opacity: 0; }
.tq-accordion__body { padding: 0 0 24px; font-size: 0.98rem; }
.tq-accordion__body p:last-child { margin-bottom: 0; }

/* Testimonials (v2) ------------------------------------------------------- */
/* Figma: a thin gold divider sits under the title, and the intro runs wider
   (two lines) than the default 640px section head. */
.tq-testimonials .tq-section-head { max-width: 960px; }
/* Figma: heading is Fraunces 56px / Regular (not the 41.6px / 500 default). */
.tq-testimonials .tq-section-head h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.15; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(198, 161, 92, .5); }
.tq-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
/* Figma testimonials are plain quote columns (no card border). */
.tq-quote { margin: 0; padding: 0; border: 0; }
.tq-quote__text { font-family: var(--tq-font-head); font-size: 1.1rem; line-height: 1.5; margin-bottom: 16px; }
.tq-quote__author { font-style: normal; font-weight: 600; font-size: 0.92rem; opacity: .85; }
.tq-testimonials__foot { margin-top: 40px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.tq-testimonials__badge .tq-trust-row { margin-top: 0; }

/* Contact form (v2) ------------------------------------------------------- */
/* Two columns on desktop (copy/intro left, form right) for every contact
   section — split (homepage, with features) and standalone (service pages). */
.tq-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Figma: a divider (across the content band) + down-chevron leads into the
   homepage form. The rule sits on the inner __lead so it aligns with the caret
   and form rather than bleeding to the viewport edges. */
.tq-contact--split { padding-top: 44px; }
.tq-contact--split .tq-contact__lead { border-top: 1px solid rgba(27, 36, 52, .8); padding-top: 44px; margin-bottom: 40px; }
.tq-contact__chevron {
	display: block; width: 30px; height: 15px;
	background: no-repeat left center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='15' viewBox='0 0 30 15' fill='none'%3E%3Cpath d='M1 1l14 12.5L29 1' stroke='%2316233B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.tq-contact__copy { margin-bottom: 28px; }
.tq-contact__features { display: grid; gap: 22px; }
.tq-contact-feature { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.tq-contact-feature__text h3 { margin-bottom: 4px; }
.tq-contact-feature__text p { font-size: 0.94rem; margin: 0; }
.tq-contact__disclaimer { font-size: 0.85rem; opacity: .7; margin-top: 16px; }
.tq-contact__placeholder { opacity: .7; font-style: italic; }

/* Gravity Forms inside the v2 contact section (brand skin) --------------------
   Fields match the Figma form spec (label above, rounded input, gold focus) and
   work on BOTH the cream and navy contact sections. */
.tq-contact .gform_wrapper .gfield { margin-bottom: 20px; }
.tq-contact .gform_wrapper .gfield_label,
.tq-contact .gform_wrapper legend.gfield_label,
.tq-contact .gform_wrapper .gform-field-label--type-sub { font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; display: block; letter-spacing: .01em; }
/* GF 2.5+ sets its own label colour with high specificity — force ours. The
   complex-field sub-labels (e.g. Name → "Full Name") default to a muted grey;
   include them so every form label renders in the same colour. */
.tq-section--navy.tq-contact .gform_wrapper .gfield_label,
.tq-section--navy.tq-contact .gform_wrapper legend.gfield_label,
.tq-section--navy.tq-contact .gform_wrapper .gform-field-label--type-sub { color: var(--tq-light) !important; }
.tq-section--cream.tq-contact .gform_wrapper .gfield_label,
.tq-section--cream.tq-contact .gform_wrapper legend.gfield_label,
.tq-section--cream.tq-contact .gform_wrapper .gform-field-label--type-sub { color: var(--tq-ink) !important; }
/* Required marker — subtle gold, not an alarming red */
/* The Figma form labels have no "(Required)" marker — hide it (fields stay
   required; the input keeps its required attribute for validation + a11y). */
.tq-contact .gform_wrapper .gfield_required,
.tq-contact .gform_wrapper .gfield_required_text { display: none; }

/* Form fields per Figma: rounded, thin defined border. Cream section uses an
   outlined (transparent) field; navy section uses a white field for contrast. */
.tq-contact .gform_wrapper input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.tq-contact .gform_wrapper textarea,
.tq-contact .gform_wrapper select {
	width: 100%; padding: 14px 16px; border-radius: 8px;
	border: 1px solid rgba(27,36,52,.20) !important; background: #fff !important; color: var(--tq-ink) !important;
	font-family: var(--tq-font-body); font-size: 0.98rem; line-height: 1.4;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.tq-section--cream.tq-contact .gform_wrapper input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.tq-section--cream.tq-contact .gform_wrapper textarea,
.tq-section--cream.tq-contact .gform_wrapper select { background: transparent !important; border-color: rgba(27,36,52,.34) !important; }
.tq-contact .gform_wrapper ::placeholder { color: rgba(27,36,52,.5); }
.tq-contact .gform_wrapper input:focus, .tq-contact .gform_wrapper textarea:focus, .tq-contact .gform_wrapper select:focus {
	outline: none; border-color: var(--tq-gold) !important; box-shadow: 0 0 0 3px rgba(198,161,92,.28);
}
/* Gravity Forms 2.5+ ships its own themed button (orange) with high-specificity
   rules + CSS custom properties. Set the GF button custom properties AND a hard
   override so the enquiry submit button renders in brand gold, per Figma. */
.tq-contact .gform_wrapper,
.tq-contact .gform-theme--framework {
	--gf-ctrl-btn-bg-color-primary: var(--tq-gold);
	--gf-ctrl-btn-bg-color-hover-primary: var(--tq-gold-hover);
	--gf-ctrl-btn-bg-color-active-primary: var(--tq-gold-active);
	--gf-ctrl-btn-border-color-primary: var(--tq-gold);
	--gf-ctrl-btn-border-color-hover-primary: var(--tq-gold-hover);
	--gf-ctrl-btn-color-primary: var(--tq-navy);
	--gf-ctrl-btn-color-hover-primary: var(--tq-navy);
}
.tq-contact .gform_wrapper .gform_footer input[type=submit],
.tq-contact .gform_wrapper .gform-footer input[type=submit],
.tq-contact .gform_wrapper .gform_footer button,
.tq-contact .gform_wrapper .gform-footer button,
.tq-contact .gform_wrapper .gform_button {
	background: var(--tq-gold) !important; color: var(--tq-navy) !important; border: 1.5px solid var(--tq-gold) !important; font-weight: 600;
	padding: 14px 28px; border-radius: var(--tq-radius); cursor: pointer; font-family: var(--tq-font-body); font-size: 0.98rem;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .06s ease, box-shadow .18s ease;
}
/* Mirror .btn-tq-primary states exactly so the submit button behaves like every
   other gold button (hover darken + lift, active press). The legacy style.css
   sets a salmon hover via ID selectors (#gform_submit_button_1/2), so we match
   those IDs to win on specificity; the class rule covers any other form id. */
.tq-contact input#gform_submit_button_1:hover,
.tq-contact input#gform_submit_button_2:hover,
.tq-contact .gform_wrapper .gform_footer input[type=submit]:hover,
.tq-contact .gform_wrapper .gform-footer input[type=submit]:hover,
.tq-contact .gform_wrapper .gform_button:hover {
	background: var(--tq-gold-hover) !important; border: 1.5px solid var(--tq-gold-hover) !important; color: var(--tq-navy) !important;
	box-shadow: 0 4px 14px rgba(22, 35, 59, 0.18);
}
.tq-contact input#gform_submit_button_1:active,
.tq-contact input#gform_submit_button_2:active,
.tq-contact .gform_wrapper .gform_button:active {
	background: var(--tq-gold-active) !important; border: 1.5px solid var(--tq-gold-active) !important; transform: translateY(1px); box-shadow: none;
}
.tq-contact .gform_wrapper .gform_button:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(198, 161, 92, 0.45); }
/* Inline field errors */
.tq-contact .gform_wrapper .gfield_error input,
.tq-contact .gform_wrapper .gfield_error textarea,
.tq-contact .gform_wrapper .gfield_error select { border-color: var(--tq-coral) !important; box-shadow: 0 0 0 3px rgba(232,87,60,.18); }
.tq-contact .gform_wrapper .gfield_validation_message,
.tq-contact .gform_wrapper .validation_message,
.tq-contact .gform_wrapper .gfield_description.validation_message {
	font-size: 0.82rem; font-weight: 500; margin-top: 6px; background: none; border: 0; padding: 0;
}
/* Force the message colour (GF/legacy sets white on some field types, e.g. email). */
.tq-section--navy.tq-contact .gform_wrapper .validation_message,
.tq-section--navy.tq-contact .gform_wrapper .gfield_validation_message,
.tq-section--navy.tq-contact .gform_wrapper .gfield_description.validation_message { color: #F6A492 !important; }
.tq-section--cream.tq-contact .gform_wrapper .validation_message,
.tq-section--cream.tq-contact .gform_wrapper .gfield_validation_message,
.tq-section--cream.tq-contact .gform_wrapper .gfield_description.validation_message { color: var(--tq-coral-hover) !important; }
/* Form-level validation summary (shown at top on submit) */
.tq-contact .gform_wrapper .gform_validation_errors {
	background: rgba(232,87,60,.12); border: 1px solid rgba(232,87,60,.45);
	border-radius: var(--tq-radius); padding: 14px 16px; margin-bottom: 22px; box-shadow: none;
}
.tq-contact .gform_wrapper .gform_validation_errors > h2 { font-family: var(--tq-font-body); font-size: 0.95rem; font-weight: 600; margin: 0; }
.tq-section--navy.tq-contact .gform_wrapper .gform_validation_errors > h2 { color: #F6A492; }
.tq-section--cream.tq-contact .gform_wrapper .gform_validation_errors > h2 { color: var(--tq-coral-hover); }
/* Success confirmation */
.tq-contact .gform_confirmation_message { font-family: var(--tq-font-head); font-size: 1.25rem; }
.tq-section--navy.tq-contact .gform_confirmation_message { color: var(--tq-light); }

/* Service-page contact (navy, no features) — Figma "Request a confidential
   consultation": a single left-aligned 640px column (heading stacked ABOVE the
   form, no intro paragraph) with dark translucent fields. The homepage contact
   (cream, .tq-contact--split) keeps its two-column layout + white fields. */
/* .tq-contact__grid IS the .tq-inner (centred max-width band), so stack its
   children and constrain THEM to 640px — keeps the form left-aligned to the
   section gutter (not centred). */
.tq-contact:not(.tq-contact--split) .tq-contact__grid { display: block; }
.tq-contact:not(.tq-contact--split) .tq-contact__intro,
.tq-contact:not(.tq-contact--split) .tq-contact__form { max-width: 640px; }
.tq-contact:not(.tq-contact--split) .tq-contact__intro { margin-bottom: 24px; }
.tq-contact:not(.tq-contact--split) .tq-contact__intro h2 {
	font-size: clamp(2.4rem, 4vw, 3.5rem); /* Figma: 56px */
	font-weight: 400; line-height: 1.5; margin-bottom: 0;
}
.tq-contact:not(.tq-contact--split) .tq-contact__copy { display: none; } /* Figma has no intro paragraph here */
/* Fields per Figma: 10% cream fill, 1px cream border, radius 10, pad 12/16, light text. */
.tq-section--navy.tq-contact .gform_wrapper input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.tq-section--navy.tq-contact .gform_wrapper textarea,
.tq-section--navy.tq-contact .gform_wrapper select {
	background: rgba(232, 226, 217, .10) !important;
	border: 1px solid rgba(232, 226, 217, .55) !important;
	color: var(--tq-light) !important;
	border-radius: 10px; padding: 12px 16px;
}
.tq-section--navy.tq-contact .gform_wrapper ::placeholder { color: rgba(232, 226, 217, .45); }
.tq-section--navy.tq-contact .gform_wrapper .gfield_label,
.tq-section--navy.tq-contact .gform_wrapper legend.gfield_label { font-size: 14px; font-weight: 500; }
/* Tighter field rhythm to match Figma — GF's grid adds a 40px row-gap and our
   base .gfield adds 20px; collapse both to a single ~24px gap. */
.tq-contact:not(.tq-contact--split) .gform_wrapper .gform_fields { gap: 24px 16px !important; }
.tq-contact:not(.tq-contact--split) .gform_wrapper .gfield { margin-bottom: 0; }
.tq-contact:not(.tq-contact--split) .gform_wrapper textarea { min-height: 130px !important; height: 130px !important; }
/* Figma "Send enquiry" is a small left-aligned button, not full-width. */
.tq-contact:not(.tq-contact--split) .gform_wrapper .gform_footer,
.tq-contact:not(.tq-contact--split) .gform_wrapper .gform-footer { display: block; text-align: left; margin-top: 24px; }
.tq-contact:not(.tq-contact--split) .gform_wrapper .gform_button {
	display: inline-flex; width: auto !important; flex: 0 0 auto; border-radius: 10px !important; padding: 14px 30px;
}
/* Breathing room under the submit button, before the disclaimer line. */
.tq-contact:not(.tq-contact--split) .tq-contact__disclaimer { margin-top: 22px; }

/* Homepage (split) contact form — match the Figma: tighter field rhythm, a
   shorter textarea, and a compact left-aligned gold submit button (like the
   hero CTAs), rather than GF's default tall textarea + full-width button. */
.tq-contact--split .gform_wrapper .gform_fields { gap: 22px 16px !important; }
.tq-contact--split .gform_wrapper .gfield { margin-bottom: 0; }
.tq-contact--split .gform_wrapper textarea { min-height: 120px !important; height: 120px !important; }
.tq-contact--split .gform_wrapper .gform_footer,
.tq-contact--split .gform_wrapper .gform-footer { display: block; text-align: left; margin: 22px 0 0; padding: 0; }
.tq-contact--split .gform_wrapper .gform_button {
	display: inline-flex !important; width: auto !important; flex: 0 0 auto;
	border-radius: var(--tq-radius) !important; padding: 15px 28px !important;
}
/* Match the field rhythm above (footer) and below (disclaimer) the submit. */
.tq-contact--split .tq-contact__disclaimer { margin-top: 22px; }

/* Text & image (v2) ------------------------------------------------------- */
.tq-text-image__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.tq-text-image__grid.has-media { grid-template-columns: 1fr 1fr; }
.tq-text-image--media-left .tq-text-image__content { order: 2; }
.tq-text-image--media-left .tq-text-image__media { order: 1; }
.tq-text-image__copy { margin-bottom: 24px; }

/* ---------------------------------------------------------------------------
 * Responsive — stack everything cleanly on tablet/mobile
 * ------------------------------------------------------------------------- */
@media (max-width: 991px) {
	.tq-hero-v2__grid, .tq-hero-pa__grid,
	.tq-hero-v2--video .tq-hero-v2__grid,
	.tq-feature-list--has-media .tq-feature-list__body,
	.tq-practice-areas__grid,
	.tq-direct-access__grid.has-media,
	.tq-contact__grid,
	.tq-text-image__grid.has-media { grid-template-columns: 1fr; }
	.tq-audience-grid, .tq-testimonials__grid, .tq-steps--steps .tq-steps__grid { grid-template-columns: repeat(2, 1fr); }
	.tq-feature-list__media, .tq-practice-areas__intro { position: static; }
	.tq-text-image--media-left .tq-text-image__content,
	.tq-text-image--media-left .tq-text-image__media { order: initial; }
}
@media (max-width: 575px) {
	.tq-audience-grid, .tq-testimonials__grid, .tq-steps--steps .tq-steps__grid,
	.tq-tick-list { grid-template-columns: 1fr; }
	.tq-hero-v2__ctas { flex-direction: column; align-items: stretch; }
	.tq-hero-v2__ctas .btn-tq { width: 100%; }
	.tq-steps--numbered .tq-step { grid-template-columns: 60px 1fr; gap: 16px; }
	.tq-step__num { font-size: 1.8rem; }
}

/* ---------------------------------------------------------------------------
 * banner_cta (legacy component, reused) — align to the new brand.
 * Coral band, Fraunces title-case heading, ghost button. Scoped to the
 * component container so nothing else is affected.
 * ------------------------------------------------------------------------- */
.banner_cta-container {
	padding-top: 112px;
	padding-bottom: 112px;
}
.banner_cta-container h3 {
	font-family: var(--tq-font-head);
	font-weight: 400; /* Figma: Fraunces Regular */
	text-transform: none;
	letter-spacing: -0.01em;
	color: var(--tq-light);
	font-size: clamp(2.2rem, 4vw, 3.5rem); /* Figma: 56px desktop */
	line-height: 1.15;
	margin-bottom: 0;
}
.banner_cta-container h3 p { margin: 0; } /* ACF wraps the heading text in <p> — kill its margin */
.banner_cta-container .banner_cta-subtitle {
	color: var(--tq-light-muted);
	max-width: 640px;
	margin: 24px auto 34px;
	font-size: 1.05rem;
	line-height: 1.55;
}
.banner_cta-container .btn.btn-primary,
.banner_cta-container .btn.btn-primary:link,
.banner_cta-container .btn.btn-primary:visited {
	background-color: transparent;
	border: 2px solid var(--tq-light); /* Figma: 2px solid #E8E2D9 */
	color: var(--tq-light);
	font-family: var(--tq-font-body);
	font-weight: 600;
	text-transform: none;
	border-radius: 10px; /* Figma: 10px */
	padding: 16px 32px;
	margin-top: 44px; /* Figma: heading has 40px bottom spacing + line leading before the CTA */
	transition: background-color .18s ease, border-color .18s ease;
}
.banner_cta-container .btn.btn-primary:hover,
.banner_cta-container .btn.btn-primary:focus {
	/* !important + full `border` shorthand to beat legacy style.css, which forces
	   `border:1px …!important; background:#E89B97!important` on hover — the 2px→1px
	   drop shifted the layout and the salmon fill was off-brand. */
	background-color: rgba(245, 241, 232, 0.14) !important;
	border: 2px solid var(--tq-light) !important;
	color: var(--tq-light);
}

/* ===========================================================================
 * SITE HEADER — trust bar + branded nav (v2)
 * ======================================================================== */
.tq-site-header { position: relative; z-index: 50; margin: 0; }
/* kill legacy `header#masthead { padding-top:10px }` that showed body bg above the trust bar (ID-specificity override) */
header#masthead.tq-site-header { padding-top: 0; }

/* Trust bar (coral strip above nav) */
.tq-topbar { background: var(--tq-coral); color: var(--tq-light); font-family: var(--tq-font-body); }
.tq-topbar__inner { max-width: var(--tq-maxw); margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 0.82rem; }
.tq-topbar__creds { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.tq-topbar__creds li { position: relative; }
.tq-topbar__creds li + li::before { content: ""; position: absolute; left: -18px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: rgba(232,226,217,.55); transform: translateY(-50%); }
.tq-topbar__contact { display: flex; gap: 26px; }
.tq-topbar a { color: var(--tq-light); text-decoration: none; opacity: .95; }
.tq-topbar a:hover { opacity: 1; text-decoration: none; }

/* Nav bar (navy) — full-width background, centered content */
.tq-site-header .tq-navbar { background: var(--tq-navy); }
.tq-site-header .tq-navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: var(--tq-maxw); margin: 0 auto; padding: 0 24px; min-height: 76px; }
.tq-navbar__inner > * { min-width: 0; }
.tq-logo { font-family: var(--tq-font-head); font-weight: 500; font-size: 1.5rem; line-height: 1; letter-spacing: -0.01em; color: var(--tq-light); text-decoration: none; white-space: nowrap; }
.tq-logo:hover { color: #fff; }

/* Primary menu (isolated from legacy .main-navigation styles) */
.tq-site-header .tq-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.tq-site-header .tq-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: nowrap; gap: 20px; align-items: center; }
.tq-site-header .tq-nav ul ul { display: none; } /* submenus: keep simple for now */
.tq-site-header .tq-nav li { margin: 0; }
.tq-site-header .tq-nav a { font-family: var(--tq-font-body); font-size: 1rem; font-weight: 500; color: var(--tq-light); text-decoration: none; padding: 6px 0; transition: color .15s ease; white-space: nowrap; text-transform: none; letter-spacing: 0; }
.tq-site-header .tq-nav a:hover, .tq-site-header .tq-nav .current-menu-item > a { color: var(--tq-gold); }
.tq-nav-cta { flex: 0 0 auto; }
.tq-nav-cta .btn-tq { padding: 12px 22px; font-size: 0.92rem; }

/* Hamburger */
.tq-site-header .tq-menu-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; position: relative; padding: 0; }
.tq-site-header .tq-menu-toggle .tq-menu-toggle__bar,
.tq-site-header .tq-menu-toggle .tq-menu-toggle__bar::before,
.tq-site-header .tq-menu-toggle .tq-menu-toggle__bar::after { content: ""; position: absolute; left: 9px; width: 24px; height: 2px; background: var(--tq-light); transition: transform .2s ease, opacity .2s ease; }
.tq-site-header .tq-menu-toggle .tq-menu-toggle__bar { top: 20px; }
.tq-site-header .tq-menu-toggle .tq-menu-toggle__bar::before { top: -7px; }
.tq-site-header .tq-menu-toggle .tq-menu-toggle__bar::after { top: 7px; }
.tq-site-header .tq-menu-toggle.is-open .tq-menu-toggle__bar { background: transparent; }
.tq-site-header .tq-menu-toggle.is-open .tq-menu-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.tq-site-header .tq-menu-toggle.is-open .tq-menu-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
	.tq-topbar__creds { gap: 22px; }
	.tq-topbar__creds li:nth-child(n+3) { display: none; } /* keep two creds on small screens */
	/* Keep the menu bar pinned to the top while scrolling on mobile. */
	.tq-site-header { position: sticky; top: 0; z-index: 100; }
	.tq-site-header .tq-navbar { position: relative; }
	.tq-site-header .tq-navbar__inner { flex-wrap: wrap; min-height: 64px; }
	.tq-site-header .tq-menu-toggle { display: block; order: 3; margin-left: auto; }
	/* Open menu drops down as an overlay panel — it doesn't push the page content
	   down. Animate opacity + slide for a smoother reveal. */
	.tq-site-header .tq-nav {
		order: 4; position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
		background: var(--tq-navy); padding: 4px 24px 8px;
		box-shadow: 0 18px 30px rgba(0, 0, 0, .30);
		opacity: 0; visibility: hidden; transform: translateY(-10px);
		transition: opacity .22s ease, transform .22s ease, visibility .22s;
	}
	.tq-site-header .tq-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
	.tq-site-header .tq-nav ul { display: flex; flex-wrap: wrap; flex-direction: column; align-items: stretch; gap: 0; width: 100%; padding-bottom: 8px; }
	.tq-site-header .tq-nav a { display: block; padding: 14px 0; border-top: 1px solid var(--tq-divider-light); }
	.tq-nav-cta { order: 2; }
	.tq-nav-cta .btn-tq { padding: 10px 16px; font-size: 0.85rem; }
}
@media (max-width: 767px) {
	/* Hide the header CTA on mobile (it crowds the logo/hamburger); the hero CTA,
	   Calendly and menu still cover booking. */
	.tq-nav-cta { display: none; }
	/* Roomier menu bar on mobile. */
	.tq-site-header .tq-navbar__inner { padding-top: 16px; padding-bottom: 16px; min-height: 72px; }
	/* Centre the Google + Legal 500 trust badges on mobile; sizes match the staging
	   site's mobile visible-mark heights (90px canvas -> 63px / 36px marks). */
	.tq-trust-row { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
	.tq-trust-row img { width: auto !important; }
	.tq-trust-row img[src*="trust-google"]   { height: 63px !important; }
	.tq-trust-row img[src*="trust-legal500"] { height: 36px !important; }
}
@media (max-width: 480px) {
	.tq-topbar__contact a:last-child { display: none; } /* drop email on very small */
}

/* ===========================================================================
 * SITE FOOTER (v2)
 * ======================================================================== */
.tq-footer { background: var(--tq-navy-deep); color: var(--tq-light-muted); font-family: var(--tq-font-body); }
/* Legacy #colophon centres the footer text (esp. on mobile). Match its ID-level
   specificity to keep the v2 footer left-aligned at every width. */
#colophon.tq-footer, #colophon.tq-footer .tq-footer__bottom-inner { text-align: left; }
.tq-footer__inner { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr; gap: 48px; padding-top: 72px; padding-bottom: 56px; }
.tq-footer .tq-logo { font-size: 1.6rem; display: inline-block; margin-bottom: 18px; }
.tq-footer__brand p { max-width: 360px; font-size: 0.95rem; line-height: 1.6; color: var(--tq-light-muted); }
.tq-footer__col h4 { font-family: var(--tq-font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tq-light); margin: 0 0 18px; }
.tq-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.tq-footer__col a { color: var(--tq-light); text-decoration: none; font-size: 0.95rem; transition: color .15s ease; }
.tq-footer__col a:hover { color: var(--tq-gold); }
.tq-footer__legal { padding: 24px 0 0; }
.tq-footer__legal p { margin: 0; font-size: 0.82rem; color: var(--tq-light-muted); opacity: .8; }
.tq-footer__bottom { border-top: 1px solid var(--tq-divider-light); margin-top: 24px; }
.tq-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; }
.tq-footer__bottom p { margin: 0; font-size: 0.85rem; color: var(--tq-light-muted); }
.tq-footer__bottom ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.tq-footer__bottom a { color: var(--tq-light-muted); text-decoration: none; font-size: 0.85rem; }
.tq-footer__bottom a:hover { color: var(--tq-gold); }
@media (max-width: 767px) {
	.tq-topbar { display: none; } /* hide the red utility bar on mobile */
	.tq-footer__inner { grid-template-columns: 1fr; gap: 36px; padding-top: 52px; }
	.tq-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------------------------------------------------------------------------
 * Legal / utility pages (Privacy, Terms, GDPR ...) — re-skin the legacy
 * hero_faq + content_editor markup to the v2 brand via the body.tq-legal-page
 * class (added in functions.php). No v1 component files are edited.
 * ------------------------------------------------------------------------- */
.tq-legal-page .site-main { background: var(--tq-cream); }

/* Hero → compact navy band, Fraunces title, no geometric SVG */
.tq-legal-page .hero_faqs { background: var(--tq-navy) !important; padding: 88px 24px 72px; }
.tq-legal-page .hero_faqs::after { content: none !important; display: none !important; }
.tq-legal-page .hero_faqs .inner-content { max-width: 820px; }
.tq-legal-page .hero_faqs h1 {
	font-family: var(--tq-font-head); font-weight: 500; color: var(--tq-light);
	font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.01em;
	text-transform: none; margin: 0 0 14px;
}
.tq-legal-page .hero_faqs .hero-copy,
.tq-legal-page .hero_faqs p { font-family: var(--tq-font-body); color: var(--tq-light-muted); font-size: 1.05rem; line-height: 1.6; margin: 0; }

/* Body → single readable prose column on cream, sidebar hidden */
.tq-legal-page .content_editor-container { background: var(--tq-cream) !important; padding: 64px 24px 96px; }
.tq-legal-page .content_editor-container .inner-content { max-width: 820px; margin: 0 auto; }
.tq-legal-page .content_editor-container .row { display: block; margin: 0; }
.tq-legal-page .content_editor-container .sidebar { display: none; }
.tq-legal-page .content_editor-container .col-md-7 { flex: 0 0 100%; max-width: 100%; padding: 0; }
.tq-legal-page .content_editor-container .col-md-7 {
	font-family: var(--tq-font-body); color: var(--tq-ink); font-size: 1.02rem; line-height: 1.75;
}
.tq-legal-page .content_editor-container h1,
.tq-legal-page .content_editor-container h2,
.tq-legal-page .content_editor-container h3,
.tq-legal-page .content_editor-container h4 {
	font-family: var(--tq-font-head); font-weight: 500; color: var(--tq-ink);
	line-height: 1.2; letter-spacing: -0.01em; text-transform: none; margin: 2em 0 0.5em;
}
.tq-legal-page .content_editor-container h2 { font-size: 1.7rem; }
.tq-legal-page .content_editor-container h3 { font-size: 1.3rem; font-weight: 600; }
.tq-legal-page .content_editor-container h4 { font-size: 1.1rem; font-weight: 600; }
.tq-legal-page .content_editor-container p,
.tq-legal-page .content_editor-container li { color: var(--tq-ink); margin: 0 0 1rem; }
.tq-legal-page .content_editor-container ul,
.tq-legal-page .content_editor-container ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.tq-legal-page .content_editor-container li { margin-bottom: 0.5rem; }
.tq-legal-page .content_editor-container a { color: var(--tq-gold-active); text-decoration: underline; }
.tq-legal-page .content_editor-container a:hover { color: var(--tq-gold); }
.tq-legal-page .content_editor-container strong { color: var(--tq-ink); }
.tq-legal-page .content_editor-container > .inner-content > .row > .col-md-7 > :first-child { margin-top: 0; }

/* -------------------------------------------------------------------------
 * v2 scroll-reveal (progressive enhancement)
 * Hidden start-states are gated on `.tq-anim` (set on <html> only when the
 * visitor has NOT requested reduced motion), so reduced-motion / no-JS users
 * see a fully static page. JS adds `.is-in` as blocks enter the viewport.
 * Scoped to tq-* markup so legacy v1 / blog pages are unaffected.
 * ------------------------------------------------------------------------- */
.tq-anim .tq-section-head,
.tq-anim .tq-hero-v2__content, .tq-anim .tq-hero-v2__media,
.tq-anim .tq-hero-pa__content, .tq-anim .tq-hero-pa__media,
.tq-anim .tq-step, .tq-anim .tq-audience-col, .tq-anim .tq-feature-row,
.tq-anim .tq-practice-area-row, .tq-anim .tq-quote, .tq-anim .tq-contact-feature,
.tq-anim .tq-accordion__item,
.tq-anim .tq-direct-access__copy, .tq-anim .tq-direct-access__media,
.tq-anim .tq-text-image__copy, .tq-anim .tq-text-image__media,
.tq-anim .tq-feature-list__body, .tq-anim .tq-feature-list__media,
.tq-anim .tq-contact__copy, .tq-anim .tq-contact__form,
.tq-anim .tq-video__block {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
	will-change: opacity, transform;
}
.tq-anim .is-in { opacity: 1; transform: none; }

/* Icons ("emoticons") give a soft spring-in once their block reveals. */
.tq-anim .tq-step .tq-icon,
.tq-anim .tq-contact-feature .tq-icon,
.tq-anim .tq-feature-row .tq-icon {
	transform: scale(0.72);
	opacity: 0.001;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s, opacity 0.4s ease 0.12s;
}
.tq-anim .tq-step.is-in .tq-icon,
.tq-anim .tq-contact-feature.is-in .tq-icon,
.tq-anim .tq-feature-row.is-in .tq-icon {
	transform: scale(1);
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.tq-anim .tq-section-head,
	.tq-anim .tq-hero-v2__content, .tq-anim .tq-hero-v2__media,
	.tq-anim .tq-hero-pa__content, .tq-anim .tq-hero-pa__media,
	.tq-anim .tq-step, .tq-anim .tq-audience-col, .tq-anim .tq-feature-row,
	.tq-anim .tq-practice-area-row, .tq-anim .tq-quote, .tq-anim .tq-contact-feature,
	.tq-anim .tq-accordion__item,
	.tq-anim .tq-direct-access__copy, .tq-anim .tq-direct-access__media,
	.tq-anim .tq-text-image__copy, .tq-anim .tq-text-image__media,
	.tq-anim .tq-feature-list__body, .tq-anim .tq-feature-list__media,
	.tq-anim .tq-contact__copy, .tq-anim .tq-contact__form,
	.tq-anim .tq-video__block,
	.tq-anim .tq-icon {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
