/* =====================================================================
   Signature Solutions — Design Tokens
   Palette: deep ink navy + aged brass + warm paper + rust CTA accent.
   Type: Fraunces (display serif) / Inter (body sans).
   Signature element: hand-drawn ink-stroke dividers + seal motif.
   ===================================================================== */

:root {
	--ink: #101E2C;
	--ink-2: #1C3049;
	--ink-soft: #4C5C6B;
	--paper: #FBF7EF;
	--paper-2: #F3ECDD;
	--paper-3: #EDE4D0;
	--brass: #B08A34;
	--brass-light: #D8B863;
	--rust: #9C4426;
	--rust-dark: #7E3820;
	--line: #E1D8C3;
	--white: #FFFFFF;
	--success: #4B6C4F;
	--warn: #A8752B;

	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--radius: 4px;
	--radius-lg: 10px;
	--shadow-card: 0 1px 2px rgba(16,30,44,0.06), 0 8px 24px -12px rgba(16,30,44,0.18);
	--wrap-width: 1180px;
}

/* ---------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.4em; line-height: 1.1; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 1rem; left: 1rem; z-index: 9999;
	background: var(--ink); color: var(--paper); padding: 0.75em 1.25em;
	width: auto; height: auto; clip: auto;
}

*:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 3px;
}

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

.section { padding: 88px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }

.display-xl { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.01em; }
.display-lg { font-size: clamp(1.9rem, 3.4vw, 2.8rem); letter-spacing: -0.01em; }

.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--brass);
	margin: 0 0 0.9em;
}
.eyebrow span { color: inherit; }
.eyebrow--center { text-align: center; }
.section-title { text-align: center; margin-bottom: 56px; }

.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }

.ink-underline {
	position: relative;
	display: inline-block;
}
.ink-underline::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -0.08em;
	height: 0.16em;
	background: var(--brass-light);
	opacity: 0.5;
	border-radius: 2px;
	z-index: -1;
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.9em 1.6em;
	border-radius: var(--radius);
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--rust); color: var(--white); }
.btn-primary:hover { background: var(--rust-dark); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--paper); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--paper); }
.btn-ghost { background: transparent; border-color: var(--brass); color: var(--brass); padding: 0.6em 1.2em; font-size: 0.85rem; }
.btn-ghost:hover { background: var(--brass); color: var(--white); }
.btn-lg { padding: 1.05em 2em; font-size: 1.05rem; }
.btn-block { width: 100%; }

.text-link { color: var(--rust); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; }
.text-link:hover { border-color: currentColor; }
.text-link.small { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.site-header {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 100;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	gap: 24px;
}
.site-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--ink);
}
.brand-mark { width: 40px; height: 40px; color: var(--rust); flex-shrink: 0; }
.brand-mark .seal-icon { width: 100%; height: 100%; }
.brand-word { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.brand-tagline { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.nav-menu { display: flex; gap: 26px; align-items: center; }
.nav-menu a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink); position: relative; }
.nav-menu a:hover { color: var(--rust); }
.nav-cta { flex-shrink: 0; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px; height: 42px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; }

@media (max-width: 880px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: 68px 0 0 0;
		background: var(--paper);
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
		transform: translateY(-8px);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}
	.primary-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
	.nav-cta { margin-top: 12px; }
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
	background: var(--ink);
	color: var(--paper);
	position: relative;
	overflow: hidden;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
	padding-top: 72px;
	padding-bottom: 96px;
}
.hero-copy .eyebrow { color: var(--brass-light); }
.hero-copy .eyebrow span { color: var(--paper); opacity: 0.85; font-weight: 500; text-transform: none; letter-spacing: 0; }
.hero h1 { color: var(--paper); }
.hero .lede { color: rgba(251,247,239,0.78); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.82rem; color: rgba(251,247,239,0.65); }
.hero-trust li { position: relative; padding-left: 16px; }
.hero-trust li::before { content: "•"; position: absolute; left: 0; color: var(--brass-light); }

.hero-visual { position: relative; }
.hero-signature {
	width: 70%;
	color: var(--brass-light);
	margin-top: 18px;
	opacity: 0.9;
}
.signature-path {
	stroke-dasharray: 900;
	stroke-dashoffset: 900;
	animation: sigsol-sign 2.2s 0.3s ease forwards;
}
@keyframes sigsol-sign { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
	.signature-path { stroke-dashoffset: 0; animation: none; }
}

.section-divider { display: block; width: 100%; height: 32px; color: var(--paper); }
.hero .section-divider { color: var(--paper); }

/* ---------------------------------------------------------------------
   Photo placeholders (swap for licensed iStock photography)
   --------------------------------------------------------------------- */
.photo-frame {
	position: relative;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--ink-2), var(--ink));
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	margin: 0;
}
.photo-frame--tall { aspect-ratio: 3 / 4; }
.photo-frame--device {
	aspect-ratio: 16 / 10;
	/* Swap the URL below for your licensed photo. The gradient stays
	   listed second as a fallback color if the image fails to load. */
	background-image: url('https://yoursite.com/wp-content/uploads/2026/07/your-photo.jpg'), linear-gradient(135deg, var(--brass), var(--rust));
	background-size: cover;
	background-position: center;
}

.video-embed {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--ink-2);
}
.video-embed iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: 0;
}
.photo-placeholder-label {
	display: block;
	width: 100%;
	padding: 14px 16px;
	font-size: 0.72rem;
	color: rgba(251,247,239,0.85);
	background: rgba(16,30,44,0.35);
	backdrop-filter: blur(2px);
}
.seal-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 46px; height: 46px;
	color: var(--paper);
	opacity: 0.85;
}
.seal-badge svg { width: 100%; height: 100%; }

@media (max-width: 880px) {
	.hero-grid { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 64px; }
	.hero-visual { order: -1; }
}

/* ---------------------------------------------------------------------
   Services
   --------------------------------------------------------------------- */
.services-section { background: var(--paper); }
.service-rows { display: flex; flex-direction: column; gap: 88px; }
.service-row {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: center;
}
.service-row--reverse .service-media { order: 2; }
.service-row--reverse .service-copy { order: 1; }
.service-row--feature {
	background: var(--ink);
	color: var(--paper);
	border-radius: var(--radius-lg);
	padding: 40px;
	grid-template-columns: 0.8fr 1.2fr;
}
.service-row--feature h3, .service-row--feature .eyebrow { color: var(--brass-light); }
.service-row--feature p { color: rgba(251,247,239,0.82); }
.service-row--feature .btn-primary { margin-right: 12px; }
.service-copy h3 { font-size: 1.5rem; margin-bottom: 0.5em; }
.service-copy p { color: var(--ink-soft); max-width: 46ch; }
.service-row--feature .service-copy p { max-width: none; }

@media (max-width: 780px) {
	.service-row, .service-row--feature { grid-template-columns: 1fr; padding: 24px; }
	.service-row--reverse .service-media, .service-row--reverse .service-copy { order: initial; }
}

/* ---------------------------------------------------------------------
   Industries
   --------------------------------------------------------------------- */
.industries-section { background: var(--paper-2); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.industry-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	position: relative;
}
.industry-index {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--brass);
	opacity: 0.55;
	display: block;
	margin-bottom: 12px;
}
.industry-card h3 { font-size: 1.15rem; }
.industry-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

@media (max-width: 880px) { .industry-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Steps / compare (eNotary page)
   --------------------------------------------------------------------- */
.steps-grid, .compare-grid { display: grid; gap: 28px; }
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.compare-grid { grid-template-columns: repeat(2, 1fr); }
.step-card { text-align: left; }
.step-number { font-family: var(--font-display); font-size: 2.2rem; color: var(--brass); display: block; margin-bottom: 8px; }
.compare-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px;
}
.check-list li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ink-soft); }
.check-list li::before {
	content: "✓";
	position: absolute; left: 0; top: 0;
	color: var(--success);
	font-weight: 700;
}
@media (max-width: 780px) { .steps-grid, .compare-grid { grid-template-columns: 1fr; } }

.enotary-hero { background: var(--ink); color: var(--paper); }
.enotary-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 72px 0 96px; }
.enotary-hero h1 { color: var(--paper); }
.enotary-hero .lede { color: rgba(251,247,239,0.78); }
.enotary-hero .eyebrow { color: var(--brass-light); }
.setup-note { margin-top: 18px; font-size: 0.82rem; color: rgba(251,247,239,0.6); max-width: 46ch; }
@media (max-width: 880px) { .enotary-hero-grid { grid-template-columns: 1fr; } }

.enotary-compare { background: var(--paper-2); }

/* ---------------------------------------------------------------------
   CTA band
   --------------------------------------------------------------------- */
.cta-section { background: var(--paper-3); text-align: center; }
.cta-inner { max-width: 620px; }
.cta-form { display: flex; gap: 12px; margin: 28px 0 10px; flex-wrap: wrap; justify-content: center; }
.cta-form input { flex: 1; min-width: 220px; padding: 0.9em 1.1em; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--font-body); }
.cta-fineprint { font-size: 0.8rem; color: var(--ink-soft); }
.hero-actions--center { justify-content: center; }

/* ---------------------------------------------------------------------
   Pricing
   --------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; text-align: left; }
.pricing-card--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pricing-card--featured h3 { color: var(--paper); }
.pricing-card--featured .eyebrow { color: var(--brass-light); }
.price { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 0.4em; }
.price span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; opacity: 0.7; }
.pricing-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 24px; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.faq-item {
	border-top: 1px solid var(--line);
	padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 1.02rem;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--brass);
	flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 14px; color: var(--ink-soft); }
@media (max-width: 780px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Portal: auth + dashboard
   --------------------------------------------------------------------- */
.portal-hero { background: var(--ink); color: var(--paper); padding: 64px 0 48px; }
.portal-hero h1 { color: var(--paper); }
.portal-hero .lede { color: rgba(251,247,239,0.78); }
.portal-hero .eyebrow { color: var(--brass-light); }

.portal-section { background: var(--paper); }

.notice { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 28px; font-size: 0.92rem; }
.notice--error { background: #F7E3DC; color: var(--rust-dark); border: 1px solid #E7BFAF; }
.notice--success { background: #E6EDE6; color: var(--success); border: 1px solid #C6D8C6; }

.portal-auth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; margin: 0 auto; }
.auth-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.auth-card--accent { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.auth-card--accent h2 { color: var(--paper); }
.auth-card--accent p { color: rgba(251,247,239,0.75); }
@media (max-width: 780px) { .portal-auth-grid { grid-template-columns: 1fr; } }

form label { display: block; font-size: 0.85rem; font-weight: 600; margin: 16px 0 6px; }
form label:first-of-type { margin-top: 0; }
form input, form select, form textarea {
	width: 100%;
	padding: 0.75em 0.9em;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--white);
	color: var(--ink);
}
.auth-card--accent input, .auth-card--accent select, .auth-card--accent textarea { background: rgba(251,247,239,0.06); border-color: rgba(251,247,239,0.25); color: var(--paper); }
.auth-card--accent input::placeholder { color: rgba(251,247,239,0.5); }
form button[type="submit"] { margin-top: 22px; }

.portal-welcome { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; flex-wrap: wrap; gap: 10px; }
.portal-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .portal-grid { grid-template-columns: 1fr; } }

.empty-state { background: var(--paper-2); border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 32px; color: var(--ink-soft); text-align: center; }

.request-list { display: flex; flex-direction: column; gap: 16px; }
.request-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; }
.request-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.request-card-head h4 { margin: 0; font-size: 1.05rem; }
.request-meta { font-size: 0.82rem; color: var(--ink-soft); margin: 6px 0 0; }
.request-details { margin: 10px 0 0; font-size: 0.92rem; }
.request-notes { margin: 10px 0 0; font-size: 0.88rem; background: var(--paper-2); padding: 10px 14px; border-radius: var(--radius); }

.sigsol-status-pill {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.35em 0.9em;
	border-radius: 999px;
	white-space: nowrap;
}
.sigsol-status-pending { background: #F3E6D2; color: var(--warn); }
.sigsol-status-scheduled { background: #DCE6F2; color: #2B4C73; }
.sigsol-status-in_progress { background: #EADCF2; color: #6A3D8C; }
.sigsol-status-completed { background: #DCEEDD; color: var(--success); }
.sigsol-status-cancelled { background: #F2DCDC; color: var(--rust-dark); }

.request-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); margin-bottom: 24px; }
.portal-enotary-nudge { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 26px; }
.portal-enotary-nudge h4 { color: var(--paper); margin-bottom: 6px; }
.portal-enotary-nudge p { color: rgba(251,247,239,0.75); font-size: 0.9rem; }

/* ---------------------------------------------------------------------
   Contact
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-details p { margin-bottom: 0.6em; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

.content-narrow { max-width: 760px; }

.legal-content h2 { font-size: 1.2rem; margin-top: 2em; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content em { color: var(--ink); }
.legal-list { margin: 1em 0 1.5em; }
.legal-list li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.legal-list li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.notice--warn { background: #F7EEDC; color: #7A5A17; border: 1px solid #E9D6A6; }
.post-list-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.post-meta { color: var(--ink-soft); font-size: 0.85rem; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(251,247,239,0.85); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(251,247,239,0.12); }
.footer-brand { display: flex; gap: 14px; }
.footer-brand .brand-mark { color: var(--brass-light); }
.footer-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--paper); margin: 0; }
.footer-tagline { font-size: 0.85rem; color: rgba(251,247,239,0.6); margin: 4px 0 0; }
.footer-menu { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { text-decoration: none; color: rgba(251,247,239,0.75); font-size: 0.92rem; }
.footer-menu a:hover { color: var(--brass-light); }
.footer-widget-title { color: var(--paper); font-size: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 32px; font-size: 0.78rem; color: rgba(251,247,239,0.5); }
.footer-legal-links a { color: rgba(251,247,239,0.7); text-decoration: none; }
.footer-legal-links a:hover { color: var(--brass-light); }
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } }
