/* ============================================================
   Fingerscan Digital Inc - San Jose Theme
   Main Stylesheet
   ============================================================
   Performance-first CSS. No external fonts, no @import.
   Color palette matches existing site (navy + teal accent).
   ============================================================ */

/* ─── 1. ROOT TOKENS ────────────────────────────────────────── */
:root {
	--n1:  #0B1D3A;        /* deepest navy — Fingerscan brand */
	--n2:  #071428;        /* near-black navy */
	--n3:  #132B4F;        /* mid navy */
	--b1:  #6EC1E4;        /* primary teal — Fingerscan accent */
	--b2:  #93D4EF;        /* light teal */
	--bs:  #1A7BA5;        /* solid blue */
	--wh:  #FFFFFF;
	--dk:  #1A2A3E;
	--bd:  #3D4F63;        /* body text */
	--mt:  #6B7D91;        /* muted */
	--br:  #D6E8F0;        /* border light */
	--cr:  #F6FBFD;        /* cream/light bg */
	--gr:  #0F8B5C;        /* success green */
	--rd:  10px;
	--fd:  Georgia, 'Times New Roman', serif;
	--fb:  -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	--fm:  ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	--ez:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--sh:  0 4px 24px rgba(11, 29, 58, 0.08);
	--sh2: 0 12px 40px rgba(11, 29, 58, 0.14);
	--header-h: 80px;
	--ticker-h: 38px;
}

/* ─── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--fb);
	font-size: 16px;
	line-height: 1.65;
	color: var(--bd);
	background: var(--wh);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--bs); text-decoration: none; }
a:hover { text-decoration: underline; }

.fsd-skip {
	position: absolute; left: -9999px; top: 0;
	padding: 12px 20px; background: var(--n1); color: #fff; z-index: 99999;
}
.fsd-skip:focus { left: 8px; top: 8px; }

/* ─── 3. SERVICES TICKER (top of page, scrolling) ───────────── */
.top-ticker {
	position: relative;
	background: #081a2b;
	color: #fff;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-sizing: border-box;
}
.ticker-viewport { overflow: hidden; white-space: nowrap; width: 100%; }
.ticker-track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding-left: 0;
	animation: scrollTicker 38s linear infinite;
	will-change: transform;
}
.top-ticker span {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 1;
	padding: 10px 0;
	margin-right: 34px;
	color: #fff;
}
.top-ticker span::after {
	content: "•";
	color: rgba(255, 255, 255, 0.45);
	margin-left: 34px;
	font-size: 12px;
}
.top-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-fade {
	position: absolute;
	top: 0;
	width: 70px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}
.ticker-fade-left  { left: 0;  background: linear-gradient(to right, #081a2b 0%, rgba(8, 26, 43, 0) 100%); }
.ticker-fade-right { right: 0; background: linear-gradient(to left,  #081a2b 0%, rgba(8, 26, 43, 0) 100%); }
@keyframes scrollTicker {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
@media (max-width: 767px) {
	.top-ticker span { font-size: 12px; margin-right: 26px; padding: 9px 0; }
	.top-ticker span::after { margin-left: 26px; }
	.ticker-fade { width: 40px; }
	.ticker-track { animation-duration: 30s; }
}

/* ─── 4. HEADER ─────────────────────────────────────────────── */
.fsd-header {
	background: #fff;
	border-bottom: 1px solid var(--br);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 12px rgba(11, 29, 58, 0.04);
}
.fsd-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 24px;
}
.fsd-logo { flex-shrink: 0; }
.fsd-logo a, .fsd-logo img, .fsd-logo .custom-logo-link {
	display: block;
	height: auto;
	max-height: 56px;
	width: auto;
}

/* ─── 5. NAVIGATION ─────────────────────────────────────────── */
.fsd-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}
.fsd-nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
}
.fsd-nav-item { position: relative; }
.fsd-nav-item > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 10px 12px;
	color: var(--n1);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.005em;
	border-radius: 6px;
	transition: background var(--ez), color var(--ez);
	white-space: nowrap;
}
.fsd-nav-item > a:hover {
	background: var(--cr);
	color: var(--bs);
	text-decoration: none;
}
.fsd-nav-item.fsd-current > a {
	color: var(--bs);
	background: var(--cr);
}

/* Submenu */
.fsd-sub-menu {
	list-style: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--br);
	border-radius: 10px;
	box-shadow: var(--sh2);
	padding: 8px;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
	z-index: 50;
}
.fsd-nav-item.fsd-has-children:hover > .fsd-sub-menu,
.fsd-nav-item.fsd-has-children:focus-within > .fsd-sub-menu,
.fsd-nav-item.fsd-submenu-open > .fsd-sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity .18s ease, transform .18s ease;
}
.fsd-sub-menu li { position: relative; }
.fsd-sub-menu li > a {
	display: block;
	padding: 9px 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--bd);
	border-radius: 6px;
	transition: background var(--ez), color var(--ez);
	white-space: nowrap;
}
.fsd-sub-menu li > a:hover {
	background: var(--cr);
	color: var(--bs);
	text-decoration: none;
}

/* Nested submenu (Apostille children, Notary children, etc.) */
.fsd-sub-menu .fsd-sub-menu {
	top: 0;
	left: calc(100% + 4px);
	transform: translateX(-6px);
}
.fsd-sub-menu .fsd-has-children:hover > .fsd-sub-menu,
.fsd-sub-menu .fsd-has-children:focus-within > .fsd-sub-menu {
	transform: translateX(0);
}

/* Submenu toggle (mobile + accessibility) */
.fsd-submenu-toggle {
	display: none;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	color: var(--n1);
}
.fsd-submenu-toggle svg { width: 14px; height: 14px; transition: transform var(--ez); }
.fsd-submenu-open > .fsd-submenu-toggle svg { transform: rotate(180deg); }

/* ─── 6. HEADER CTAs (Language + Call + Schedule) ───────────── */
.fsd-header-ctas {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

/* GTranslate language switcher — make it match the theme.
   GTranslate offers several "looks": Dropdown, Flags Dropdown,
   Globe widget, Nice Dropdown with flags. These styles target
   the most common ones. */
.fsd-lang-switcher {
	display: inline-flex;
	align-items: center;
	font-size: 13.5px;
	font-weight: 600;
}

/* Native GTranslate dropdown */
.fsd-lang-switcher .gtranslate_wrapper,
.fsd-lang-switcher .gt_container,
.fsd-lang-switcher .gt_float_switcher {
	display: inline-flex !important;
	align-items: center;
	font-family: inherit !important;
	box-shadow: none !important;
}

/* Style the actual <select> dropdown (GT "Dropdown" widget look) */
.fsd-lang-switcher select.notranslate,
.fsd-lang-switcher .switcher select {
	background: transparent;
	border: 1.5px solid var(--br);
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--n1);
	cursor: pointer;
	transition: border-color var(--ez), background var(--ez);
	min-height: 40px;
	font-family: inherit;
	-webkit-appearance: menulist;
	appearance: menulist;
}
.fsd-lang-switcher select.notranslate:hover,
.fsd-lang-switcher .switcher select:hover {
	border-color: var(--bs);
	background: var(--cr);
}

/* "Nice dropdown with flags" widget look */
.fsd-lang-switcher .gt_selector,
.fsd-lang-switcher .gt-current-lang {
	background: transparent !important;
	border: 1.5px solid var(--br) !important;
	border-radius: 8px !important;
	padding: 8px 14px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--n1) !important;
	min-height: 40px;
	font-family: inherit !important;
}
.fsd-lang-switcher .gt_selector:hover,
.fsd-lang-switcher .gt-current-lang:hover {
	border-color: var(--bs) !important;
	background: var(--cr) !important;
}

/* Flag-only floating switcher (if used) */
.fsd-lang-switcher .gt_float_switcher .gt-selected {
	background: transparent !important;
	border: 1.5px solid var(--br) !important;
	border-radius: 8px !important;
}

.fsd-header-call {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: var(--n1);
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 8px;
	border: 1.5px solid var(--n1);
	transition: background var(--ez), color var(--ez);
	white-space: nowrap;
	min-height: 44px;
}
.fsd-header-call:hover {
	background: var(--n1);
	color: #fff;
	text-decoration: none;
}
.fsd-header-call svg { width: 14px; height: 14px; flex-shrink: 0; }

.fsd-header-book {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 22px;
	background: var(--b1);
	color: var(--n1);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	border-radius: 8px;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.18);
	transition: transform var(--ez), background var(--ez), box-shadow var(--ez);
	min-height: 44px;
}
.fsd-header-book:hover {
	background: var(--b2);
	color: var(--n1);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45), 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ─── 7. MOBILE MENU TOGGLE ─────────────────────────────────── */
.fsd-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin-left: auto;
	border-radius: 8px;
}
.fsd-menu-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--n1);
	border-radius: 2px;
	transition: transform var(--ez), opacity var(--ez);
}
.fsd-menu-open .fsd-menu-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fsd-menu-open .fsd-menu-toggle-bar:nth-child(2) { opacity: 0; }
.fsd-menu-open .fsd-menu-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 8. MAIN CONTENT WRAPPERS ──────────────────────────────── */
.fsd-main { display: block; }
.fsd-page-wrap { padding: 60px 0; background: var(--cr); min-height: 50vh; }
.fsd-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.fsd-container-narrow { max-width: 760px; }

/* ─── 9. ARTICLE / BLOG ─────────────────────────────────────── */
.fsd-article {
	background: #fff;
	border-radius: 12px;
	padding: 48px;
	box-shadow: var(--sh);
}
.fsd-article-header { margin-bottom: 32px; }
.fsd-article-title {
	font-family: var(--fd);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 600;
	color: var(--n1);
	line-height: 1.2;
	margin-bottom: 12px;
}
.fsd-article-meta {
	font-size: 13px;
	color: var(--mt);
	display: flex;
	gap: 14px;
	margin-bottom: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: 600;
}
.fsd-article-featured { margin: 0 -48px 32px; overflow: hidden; }
.fsd-article-featured img { width: 100%; }
.fsd-article-content { font-size: 16.5px; line-height: 1.75; }
.fsd-article-content h2 {
	font-family: var(--fd);
	font-size: 1.75rem;
	color: var(--n1);
	margin: 36px 0 16px;
	font-weight: 600;
}
.fsd-article-content h3 {
	font-family: var(--fd);
	font-size: 1.35rem;
	color: var(--n1);
	margin: 28px 0 12px;
	font-weight: 600;
}
.fsd-article-content p { margin-bottom: 18px; }
.fsd-article-content ul, .fsd-article-content ol { margin: 0 0 20px 24px; }
.fsd-article-content li { margin-bottom: 8px; }
.fsd-article-content a { color: var(--bs); text-decoration: underline; }

/* Archive grid */
.fsd-archive-header { text-align: center; margin-bottom: 48px; }
.fsd-archive-title {
	font-family: var(--fd);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--n1);
	font-weight: 600;
	margin-bottom: 12px;
}
.fsd-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
}
.fsd-archive-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--sh);
	transition: transform var(--ez), box-shadow var(--ez);
}
.fsd-archive-card:hover { transform: translateY(-3px); box-shadow: var(--sh2); }
.fsd-archive-card-img { display: block; aspect-ratio: 16/10; overflow: hidden; }
.fsd-archive-card-img img { width: 100%; height: 100%; object-fit: cover; }
.fsd-archive-card-body { padding: 24px; }
.fsd-archive-card-title {
	font-family: var(--fd);
	font-size: 1.3rem;
	color: var(--n1);
	margin-bottom: 10px;
	line-height: 1.3;
}
.fsd-archive-card-title a { color: inherit; }
.fsd-archive-card-title a:hover { color: var(--bs); text-decoration: none; }
.fsd-archive-card-meta { font-size: 13px; color: var(--mt); margin-bottom: 12px; }
.fsd-archive-card-excerpt { font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
.fsd-archive-card-link { font-weight: 600; font-size: 14px; }

/* ─── 10. 404 ───────────────────────────────────────────────── */
.fsd-404 {
	background: #fff;
	border-radius: 12px;
	padding: 72px 48px;
	text-align: center;
	box-shadow: var(--sh);
}
.fsd-404-num {
	font-family: var(--fd);
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 600;
	color: var(--b1);
	line-height: 0.95;
	letter-spacing: -0.04em;
	margin-bottom: 16px;
}
.fsd-404-title {
	font-family: var(--fd);
	font-size: 2rem;
	color: var(--n1);
	margin-bottom: 14px;
	font-weight: 600;
}
.fsd-404-text { font-size: 16px; color: var(--mt); margin-bottom: 28px; }
.fsd-404-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.fsd-404-help { font-size: 15px; color: var(--bd); }
.fsd-404-help a { font-weight: 700; }

/* Buttons */
.fsd-btn-primary, .fsd-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	font-size: 14.5px;
	font-weight: 700;
	border-radius: 8px;
	transition: transform var(--ez), box-shadow var(--ez), background var(--ez);
}
.fsd-btn-primary {
	background: var(--b1);
	color: var(--n1);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.fsd-btn-primary:hover { transform: translateY(-1px); color: var(--n1); text-decoration: none; background: var(--b2); }
.fsd-btn-secondary {
	background: #fff;
	color: var(--n1);
	border: 1.5px solid var(--n1);
}
.fsd-btn-secondary:hover { background: var(--n1); color: #fff; text-decoration: none; }

/* ─── 11. FOOTER ────────────────────────────────────────────── */
.fsd-footer { background: var(--n2); color: rgba(255, 255, 255, 0.78); }
.fsd-footer-main { padding: 64px 0 48px; }
.fsd-footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	/* Brand (wider) | Services | For Professionals (wider for sub-labels) | Contact + Hours */
	grid-template-columns: 1.4fr 1fr 1.3fr 1.1fr;
	gap: 44px;
}
.fsd-footer-h {
	color: #fff;
	font-family: var(--fd);
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 18px;
	letter-spacing: 0.01em;
}
.fsd-footer-blurb { font-size: 14px; line-height: 1.65; margin-bottom: 18px; color: rgba(255, 255, 255, 0.72); }
.fsd-footer-blurb strong { color: #fff; font-weight: 600; }
.fsd-footer-logo img {
	max-height: 80px;
	width: auto;
	margin-bottom: 16px;
	/* Logo already designed for dark backgrounds — no filter needed */
}
.fsd-footer-map {
	margin-top: 18px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.fsd-footer-map iframe {
	display: block;
	width: 100%;
	border: 0;
}
.fsd-footer-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.fsd-fbadge {
	display: inline-block;
	padding: 5px 11px;
	background: rgba(110, 193, 228, 0.12);
	border: 1px solid rgba(110, 193, 228, 0.3);
	border-radius: 100px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--b2);
	letter-spacing: 0.02em;
}
.fsd-footer-verify { font-size: 13px; }
.fsd-footer-verify a {
	color: var(--b2);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
}
.fsd-footer-verify a:hover { color: #fff; text-decoration: none; }
.fsd-footer-verify svg { width: 14px; height: 14px; }

.fsd-footer-list { list-style: none; margin: 0; padding: 0; }
.fsd-footer-list li { margin-bottom: 8px; }
.fsd-footer-list a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	transition: color var(--ez);
}
.fsd-footer-list a:hover { color: var(--b1); text-decoration: none; }

.fsd-footer-address {
	font-style: normal;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.6;
}
.fsd-footer-address strong { color: #fff; font-weight: 600; }
.fsd-footer-address a { color: var(--b2); }
.fsd-footer-address a:hover { color: #fff; text-decoration: none; }
.fsd-footer-contact-line { margin-bottom: 8px; font-size: 14px; }
.fsd-footer-contact-line a { color: rgba(255, 255, 255, 0.85); }
.fsd-footer-contact-line a:hover { color: var(--b1); text-decoration: none; }
.fsd-footer-trilingual { color: rgba(255, 255, 255, 0.55); font-style: italic; font-size: 12.5px; margin-top: 12px; }

.fsd-footer-hours { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 14px; }
.fsd-footer-hours td { padding: 5px 0; color: rgba(255, 255, 255, 0.78); }
.fsd-footer-hours td:last-child { text-align: right; }
.fsd-footer-mobile-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.55; margin-bottom: 16px; }
.fsd-hours-note { font-size: 11px; color: rgba(255, 255, 255, 0.55); font-style: italic; }
.fsd-footer-cta {
	display: inline-block;
	padding: 11px 20px;
	background: var(--b1);
	color: var(--n1);
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 8px;
	transition: background var(--ez), transform var(--ez);
}
.fsd-footer-cta:hover { background: var(--b2); color: var(--n1); text-decoration: none; transform: translateY(-1px); }

/* ─── 11b. FOR PROFESSIONALS COLUMN (B2B) ─────────────────── */
.fsd-footer-pro-list { margin-bottom: 18px; }
.fsd-footer-pro-list li { margin-bottom: 12px; }
.fsd-footer-pro-list a {
	display: block;
	padding: 8px 10px;
	margin: 0 -10px;
	border-radius: 6px;
	border-left: 2px solid transparent;
	transition: background var(--ez), border-color var(--ez), transform var(--ez);
}
.fsd-footer-pro-list a:hover {
	background: rgba(110, 193, 228, 0.08);
	border-left-color: var(--b1);
	text-decoration: none;
	transform: translateX(2px);
}
.fsd-pro-label {
	display: block;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0.005em;
	line-height: 1.35;
}
.fsd-footer-pro-list a:hover .fsd-pro-label { color: var(--b1); }
.fsd-pro-sub {
	display: block;
	color: rgba(255, 255, 255, 0.55);
	font-size: 11.5px;
	font-weight: 400;
	margin-top: 2px;
	line-height: 1.4;
}
.fsd-pro-ext {
	display: inline-block;
	font-size: 0.85em;
	color: var(--b2);
	margin-left: 2px;
	font-weight: 400;
}
.fsd-footer-pro-cta {
	display: inline-block;
	padding: 9px 16px;
	background: transparent;
	border: 1px solid var(--b1);
	color: var(--b1);
	font-size: 12.5px;
	font-weight: 700;
	border-radius: 6px;
	letter-spacing: 0.02em;
	transition: background var(--ez), color var(--ez), transform var(--ez);
}
.fsd-footer-pro-cta:hover {
	background: var(--b1);
	color: var(--n1);
	text-decoration: none;
	transform: translateY(-1px);
}

/* Google Reviews link — uses the same .fsd-footer-verify pattern */
.fsd-footer-reviews { margin-top: 8px; }
.fsd-footer-reviews a { color: #FFC107; }
.fsd-footer-reviews a:hover { color: #FFD54F; }
.fsd-footer-reviews svg { color: #FFC107; }

/* Sub-heading inside contact column (Business Hours) needs top spacing */
.fsd-footer-h-spaced { margin-top: 24px; }

/* Legal disclaimer banner — prominent, between main footer and bottom bar */
.fsd-footer-disclaimer {
	background: rgba(212, 165, 116, 0.10); /* warm amber tint — draws the eye but not alarming */
	border-top: 1px solid rgba(212, 165, 116, 0.25);
	border-bottom: 1px solid rgba(212, 165, 116, 0.25);
	padding: 18px 0;
}
.fsd-footer-disclaimer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: rgba(255, 255, 255, 0.92);
}
.fsd-footer-disclaimer svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #D4A574;
	margin-top: 2px;
}
.fsd-footer-disclaimer p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
}
.fsd-footer-disclaimer strong {
	color: #fff;
	font-weight: 700;
}

.fsd-footer-bottom {
	background: rgba(0, 0, 0, 0.25);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	padding: 18px 0;
}
.fsd-footer-bottom-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.5);
}
.fsd-footer-copy { margin: 0; }
.fsd-footer-copy a { color: var(--b2); }
.fsd-footer-copy a:hover { color: #fff; text-decoration: none; }
.fsd-footer-legal { display: flex; gap: 8px; align-items: center; }
.fsd-footer-legal a { color: rgba(255, 255, 255, 0.65); }
.fsd-footer-legal a:hover { color: var(--b1); text-decoration: none; }

/* ─── 12. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1200px) {
	.fsd-nav-list { gap: 0; }
	.fsd-nav-item > a { padding: 10px 8px; font-size: 13px; }
	.fsd-header-call span { display: none; }
	.fsd-header-call { padding: 10px; }
	.fsd-lang-switcher select, .fsd-lang-switcher .gt_selector, .fsd-lang-switcher .gt-current-lang {
		padding: 8px 10px;
		font-size: 12.5px;
	}
	.fsd-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
	.fsd-footer-pro-list a { padding: 8px 10px; } /* keep touch targets comfortable */
}

@media (max-width: 960px) {
	:root { --header-h: 70px; }

	.fsd-menu-toggle { display: flex; }
	.fsd-header-ctas { display: none; }

	.fsd-nav {
		display: block;
		position: fixed;
		top: calc(var(--ticker-h) + var(--header-h));
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		padding: 24px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .28s cubic-bezier(.4,0,.2,1);
		z-index: 99;
	}
	.fsd-menu-open .fsd-nav { transform: translateX(0); }
	.fsd-nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
	.fsd-nav-item { width: 100%; }
	.fsd-nav-item > a {
		padding: 14px 16px;
		font-size: 16px;
		justify-content: space-between;
		border-radius: 8px;
	}
	.fsd-submenu-toggle { display: inline-flex; position: absolute; right: 8px; top: 8px; }
	.fsd-sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--br);
		border-radius: 0;
		padding: 4px 0 4px 12px;
		margin: 4px 0 4px 12px;
		display: none;
	}
	.fsd-submenu-open > .fsd-sub-menu { display: block; }
	.fsd-sub-menu .fsd-sub-menu {
		left: auto;
		transform: none;
		margin-left: 12px;
	}
}

@media (max-width: 768px) {
	.fsd-footer-inner { grid-template-columns: 1fr; gap: 36px; }
	.fsd-footer-bottom-inner { justify-content: center; text-align: center; }

	.fsd-article { padding: 32px 24px; }
	.fsd-article-featured { margin: 0 -24px 24px; }
	.fsd-page-wrap { padding: 36px 0; }
}

@media (max-width: 480px) {
	.fsd-header-inner { padding: 0 16px; gap: 12px; }
	.fsd-container { padding: 0 16px; }
	.fsd-404 { padding: 48px 24px; }
	.fsd-404-actions { flex-direction: column; align-items: stretch; }
}

/* ─── 13. FOOTER VISIBILITY FIX ─────────────────────────────
   Your .fdh- page content uses calc(50% - 50vw) margins to
   escape parent containers — this is left over from the
   GeneratePress / Astra setup. In this theme there's no parent
   container to escape, so those margins push content beyond
   the viewport and can hide the footer.

   This rule:
   1. Forces the footer to render above any escaping content
   2. Clears any floats or absolute positioning from above
   3. Prevents .fdh- content from bleeding into footer area
   ────────────────────────────────────────────────────────── */
.fsd-footer {
	position: relative !important;
	z-index: 100 !important;
	clear: both !important;
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
	margin: 0 !important;
}

.fsd-footer * {
	visibility: visible !important;
}

/* Stop .fdh- content from bleeding past its section boundaries */
.fsd-page > .fdh,
.fsd-home > .fdh,
.fsd-page > .fdh-hero,
.fsd-home > .fdh-hero {
	overflow: visible !important;
	position: relative;
	z-index: 1;
}

/* If your last .fdh- section uses negative margins, give it
   a clear separator before the footer */
.fsd-page > *:last-child,
.fsd-home > *:last-child {
	margin-bottom: 0 !important;
}

/* Ensure body and main don't have height constraints that
   could clip the footer */
body, .fsd-main {
	min-height: auto !important;
	overflow: visible !important;
}

/* ─── 14. PRINT ─────────────────────────────────────────────── */
@media print {
	.top-ticker, .fsd-header-ctas, .fsd-menu-toggle, .fsd-footer-bottom,
	.fsd-chat-widget, .fsd-chat-panel { display: none !important; }
	.fsd-header { position: static; box-shadow: none; }
}
