:root {
  --navy: #06182d;
  --navy-2: #0b2341;
  --navy-3: #173d68;
  --blue: #27679c;
  --gold: #caa65f;
  --gold-dark: #ad8742;
  --gold-light: #f0dcaa;
  --white: #ffffff;
  --cream: #faf8f3;
  --light: #f3f6f9;
  --gray: #667085;
  --gray-light: #98a2b3;
  --dark: #172033;
  --green: #18794e;
  --border: #dfe5ec;
  --border-dark: #cbd5e1;
  --shadow-sm: 0 8px 22px rgba(11, 35, 65, 0.08);
  --shadow: 0 18px 45px rgba(11, 35, 65, 0.13);
  --shadow-lg: 0 28px 70px rgba(6, 24, 45, 0.18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --max-width: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { color: var(--dark); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; overflow-x: hidden; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(202, 166, 95, 0.45); outline-offset: 3px; }
.container { width: min(92%, var(--max-width)); margin-inline: auto; }
.section { padding: 94px 0; background: var(--white); }
.section-light { background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(243,246,249,.95)); }
.section-cream { background: linear-gradient(180deg, #fffdfa, var(--cream)); }
.section-dark { color: var(--white); background: radial-gradient(circle at 100% 0, rgba(202,166,95,.18), transparent 34%), radial-gradient(circle at 0 100%, rgba(39,103,156,.2), transparent 36%), var(--navy-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-dark); font-size: .79rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 999px; }
.hero .eyebrow, .section-dark .eyebrow, .contact-panel .eyebrow { color: var(--gold-light); }
.section-title { max-width: 850px; color: var(--navy-2); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 4.4vw, 3.45rem); line-height: 1.08; letter-spacing: -.025em; margin-bottom: 20px; }
.section-dark .section-title { color: var(--white); }
.section-intro { max-width: 760px; color: var(--gray); font-size: 1.08rem; line-height: 1.75; margin-bottom: 44px; }
.section-dark .section-intro { color: rgba(255,255,255,.78); }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 24px; border: 2px solid transparent; border-radius: 999px; font-weight: 900; letter-spacing: .01em; transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:disabled, .btn:disabled:hover, .btn:disabled:active { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 26px rgba(202,166,95,.3); }
.btn-primary:hover { color: var(--navy); background: linear-gradient(135deg, #f7e7be, #d5b56f); box-shadow: 0 16px 34px rgba(202,166,95,.4); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.16); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.btn-navy { color: var(--white); background: linear-gradient(135deg, var(--navy-3), var(--navy-2)); box-shadow: 0 12px 28px rgba(11,35,65,.2); }
.btn-navy:not(:disabled):hover { background: linear-gradient(135deg, #204d7f, var(--navy)); box-shadow: 0 16px 34px rgba(11,35,65,.28); }
.btn-outline { color: var(--navy-2); border-color: var(--navy-2); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--navy-2); }
.btn-nav { min-height: 44px; color: var(--white); background: linear-gradient(135deg, #7a2236, #5d1728); padding: 10px 21px; box-shadow: 0 9px 20px rgba(94,23,40,.28); }
.btn-nav:hover { color: var(--white); background: linear-gradient(135deg, #8f2a42, #6d1b30); }
.topbar { position: relative; z-index: 1200; color: var(--white); background: linear-gradient(90deg, #041324, var(--navy)); font-size: .87rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar a { transition: color var(--transition); }
.topbar a:hover { color: var(--gold-light); }
.language-switcher { display: flex; gap: 4px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); }
.language-switcher button { min-width: 38px; padding: 5px 10px; color: var(--white); background: transparent; border: 0; border-radius: 999px; font-size: .77rem; font-weight: 900; transition: color var(--transition), background var(--transition), transform var(--transition); }
.language-switcher button:hover { transform: translateY(-1px); }
.language-switcher button.active { color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
header { position: relative; z-index: 1100; background: var(--white); box-shadow: 0 1px 0 rgba(11,35,65,.06); }
.navbar { width: 100%; display: flex; flex-direction: column; align-items: center; }
.brand { width: 100%; min-height: 186px; display: flex; align-items: center; justify-content: center; padding: 6px 20px; }
.site-logo { width: min(900px, 92vw); height: auto; max-height: 238px; object-fit: contain; object-position: center; }
.menu-toggle { display: none; width: 46px; height: 46px; color: var(--white); background: linear-gradient(135deg, var(--navy-3), var(--navy)); border: 1px solid rgba(255,255,255,.2); border-radius: 11px; font-size: 1.35rem; box-shadow: 0 9px 22px rgba(6,24,45,.22); }
nav { position: sticky; top: 0; width: 100vw; margin-left: calc(50% - 50vw); color: var(--white); background: linear-gradient(90deg, #041324, var(--navy), #041324); border-top: 1px solid rgba(202,166,95,.5); border-bottom: 3px solid var(--gold); box-shadow: 0 10px 28px rgba(6,24,45,.16); }
nav ul { min-height: 64px; list-style: none; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 18px; padding: 8px 22px; }
nav li { position: relative; }
nav a { position: relative; display: block; color: var(--white); padding: 19px 0; font-size: .9rem; font-weight: 900; letter-spacing: .01em; transition: color var(--transition); }
nav a:not(.btn)::after { content: ""; position: absolute; left: 50%; bottom: 13px; width: 0; height: 2px; background: var(--gold); border-radius: 999px; transform: translateX(-50%); transition: width var(--transition); }
nav a:not(.btn):hover { color: var(--gold-light); }
nav a:not(.btn):hover::after { width: 100%; }
nav a.nav-portal-link { padding: 9px 12px; border: 1px solid rgba(240,220,170,.7); border-radius: 8px; color: var(--gold-light); }
nav a.nav-portal-link::after { display: none; }
nav a.nav-portal-link:hover { color: var(--navy); background: var(--gold-light); }
.hero { position: relative; min-height: 690px; color: var(--white); overflow: hidden; isolation: isolate; background: linear-gradient(90deg, rgba(4,19,36,.97) 0%, rgba(11,35,65,.9) 48%, rgba(11,35,65,.48) 100%), url("images/hero-signing.jpg") center center / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 18% 28%, rgba(202,166,95,.14), transparent 30%); }
.hero-inner { min-height: 690px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 58px; padding: 72px 0 96px; }
.hero-copy { max-width: 735px; }
.hero h1 { max-width: 780px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.85rem, 5.9vw, 5.15rem); line-height: 1.01; letter-spacing: -.035em; margin-bottom: 26px; text-shadow: 0 4px 24px rgba(0,0,0,.22); }
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--gold-light); }
.hero-description { max-width: 690px; color: rgba(255,255,255,.87); font-size: clamp(1.05rem, 2vw, 1.23rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 20px; color: rgba(255,255,255,.72); font-size: .91rem; letter-spacing: .01em; }
.hero-card { position: relative; padding: 32px; color: var(--dark); background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.98)); border: 1px solid rgba(255,255,255,.75); border-radius: 26px; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.hero-card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 4px; border-radius: 0 0 999px 999px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-card .eyebrow { margin-bottom: 8px; }
.hero-card h2 { color: var(--navy-2); font-family: Georgia, serif; font-size: 1.72rem; line-height: 1.18; margin-bottom: 20px; }
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check { flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; color: var(--white); background: linear-gradient(135deg, #269a68, var(--green)); border-radius: 50%; font-size: .77rem; font-weight: 900; margin-top: 2px; box-shadow: 0 6px 14px rgba(24,121,78,.2); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; padding-top: 23px; border-top: 1px solid var(--border); }
.hero-stats div { text-align: center; padding: 2px 6px; }
.hero-stats strong { display: block; color: var(--navy-2); font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; line-height: 1; margin-bottom: 8px; }
.hero-stats span { display: block; color: var(--gray); font-size: .75rem; line-height: 1.3; }
.trust-strip { position: relative; z-index: 5; margin-top: -46px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid rgba(11,35,65,.06); border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.trust-item { position: relative; padding: 28px 18px; text-align: center; border-right: 1px solid var(--border); transition: background var(--transition), transform var(--transition); }
.trust-item:hover { background: linear-gradient(180deg, #fff, #faf7ef); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-2); font-size: 1.08rem; margin-bottom: 5px; }
.trust-item span { color: var(--gray); font-size: .87rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-area-group { margin-top: 4rem; }
.service-area-group-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: #06182d; margin-bottom: 1.5rem; }
.card { position: relative; min-height: 250px; padding: 31px; overflow: hidden; background: linear-gradient(180deg, #fff, #fbfcfe); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-sm); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 0; background: linear-gradient(180deg, var(--gold-light), var(--gold)); transition: height var(--transition); }
.card:hover { transform: translateY(-7px); border-color: rgba(202,166,95,.75); box-shadow: var(--shadow); }
.card:hover::before { height: 100%; }
.card-icon { width: 56px; height: 56px; display: grid; place-items: center; color: var(--navy-2); background: linear-gradient(135deg, #fbf2db, var(--gold-light)); border: 1px solid rgba(202,166,95,.28); border-radius: 16px; font-size: 1.45rem; margin-bottom: 21px; box-shadow: 0 10px 24px rgba(202,166,95,.18); }
.card h3 { color: var(--navy-2); font-size: 1.2rem; line-height: 1.28; margin-bottom: 11px; }
.card p { color: var(--gray); line-height: 1.72; }
.about-grid, .partner-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 66px; }
.about-visual { position: relative; min-height: 570px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy-2); }
.about-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(6,24,45,.24)); }
.about-visual img { width: 100%; height: 570px; object-fit: cover; object-position: center top; }
.about-badge { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; max-width: 360px; padding: 23px; color: var(--white); background: linear-gradient(135deg, rgba(6,24,45,.96), rgba(11,35,65,.93)); border-left: 4px solid var(--gold); border-radius: 16px; box-shadow: 0 18px 36px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.about-badge strong { display: block; color: var(--gold-light); font-size: 1.06rem; margin-bottom: 7px; }
.feature-list { display: grid; gap: 19px; margin: 31px 0; }
.feature-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.feature-row:last-child { border-bottom: 0; }
.feature-row strong { display: block; color: var(--navy-2); margin-bottom: 3px; }
.feature-row p { color: var(--gray); line-height: 1.7; }
.service-area-box { position: relative; overflow: hidden; padding: 52px; color: var(--white); border-radius: 28px; background: linear-gradient(135deg, rgba(6,24,45,.98), rgba(23,61,104,.92)), url("images/hero-signing.jpg") center center / cover no-repeat; box-shadow: var(--shadow-lg); }
.service-area-box::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 90% 15%, rgba(202,166,95,.2), transparent 30%); }
.service-area-box > * { position: relative; z-index: 1; }
.service-area-box .section-title { color: var(--white); }
.area-route { display: flex; align-items: center; gap: 18px; margin: 31px 0; }
.route-city { padding: 12px 19px; color: var(--navy-2); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-radius: 999px; font-weight: 900; box-shadow: 0 10px 24px rgba(202,166,95,.24); }
.route-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.9), var(--gold)); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tags span { padding: 9px 14px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: rgba(255,255,255,.1); font-size: .9rem; backdrop-filter: blur(6px); }
.area-action { margin-top: 31px; }
.partner-panel { padding: 42px; border: 1px solid rgba(255,255,255,.17); border-radius: 26px; background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05)); box-shadow: 0 22px 50px rgba(0,0,0,.13); backdrop-filter: blur(10px); }
.partner-panel h3 { color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; margin-bottom: 16px; font-size: 1.55rem; }
.partner-panel ul { list-style: none; display: grid; gap: 13px; margin-top: 20px; }
.partner-panel li { padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.09); }
.partner-panel li:last-child { border-bottom: 0; }
.partner-panel li::before { content: "✓"; color: var(--gold); font-weight: 900; margin-right: 10px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { min-height: 235px; padding: 29px; background: linear-gradient(180deg, #fff, #fbfcfe); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 17px; font-size: 1.08rem; }
.review-placeholder { color: var(--gray); font-style: italic; line-height: 1.75; }
.review-note { margin-top: 30px; padding: 19px 23px; color: #5d4b22; background: linear-gradient(180deg, #fffaf0, #fff5d9); border: 1px solid #ead39a; border-radius: 14px; }
.faq-list { max-width: 920px; display: grid; gap: 14px; }
details { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 22px rgba(11,35,65,.04); transition: border-color var(--transition), box-shadow var(--transition); }
details:hover { border-color: rgba(202,166,95,.7); box-shadow: var(--shadow-sm); }
summary { position: relative; padding: 21px 58px 21px 23px; color: var(--navy-2); font-weight: 900; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 23px; top: 50%; transform: translateY(-50%); color: var(--gold-dark); font-size: 1.55rem; transition: transform var(--transition); }
details[open] summary::after { content: "−"; }
details p { padding: 0 23px 23px; color: var(--gray); line-height: 1.72; }
.form-card { padding: 40px; background: linear-gradient(180deg, #fff, #fbfcfe); border: 1px solid rgba(11,35,65,.06); border-radius: 26px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
label { display: block; color: var(--navy-2); font-size: .9rem; font-weight: 900; margin-bottom: 7px; }
input, select, textarea { width: 100%; min-height: 48px; padding: 13px 14px; color: var(--dark); background: var(--white); border: 1px solid var(--border-dark); border-radius: 11px; outline: none; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
input:hover, select:hover, textarea:hover { border-color: #aeb9c7; }
input:focus, select:focus, textarea:focus { border-color: var(--navy-3); box-shadow: 0 0 0 4px rgba(23,61,104,.12); background: #fff; }
textarea { min-height: 126px; resize: vertical; }
.bot-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.privacy-note { color: var(--gray); font-size: .82rem; margin: 15px 0 21px; }
.status-message { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 11px; }
.status-message.success { display: block; color: #105c3c; background: #e7f7ef; border: 1px solid #abdcc5; }
.status-message.error { display: block; color: #8a1c1c; background: #fff0f0; border: 1px solid #e7b4b4; }
.contact-panel { position: relative; overflow: hidden; padding: 42px; color: var(--white); background: radial-gradient(circle at 100% 0, rgba(202,166,95,.18), transparent 32%), linear-gradient(145deg, var(--navy-3), var(--navy)); border-radius: 26px; box-shadow: var(--shadow-lg); }
.contact-panel h3 { color: var(--gold-light); font-family: Georgia, serif; font-size: 2rem; line-height: 1.15; margin-bottom: 17px; }
.contact-list { list-style: none; display: grid; gap: 19px; margin: 29px 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border-radius: 50%; box-shadow: 0 9px 20px rgba(202,166,95,.22); }
.security-box { margin-top: 28px; padding: 22px; border: 1px dashed rgba(255,255,255,.42); border-radius: 15px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.security-box h4 { color: var(--gold-light); margin-bottom: 7px; }
footer { color: rgba(255,255,255,.78); background: linear-gradient(180deg, #06182d, #03101e); padding: 58px 0 27px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 46px; margin-bottom: 42px; }
footer h3, footer h4 { color: var(--white); margin-bottom: 15px; }
footer h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
footer ul { list-style: none; display: grid; gap: 9px; }
footer a { transition: color var(--transition); }
footer a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); font-size: .85rem; text-align: center; }
.footer-bottom p + p { margin-top: 6px; }
.mobile-actions { position: fixed; left: 50%; bottom: 14px; z-index: 1300; display: none; width: min(92%, 500px); transform: translateX(-50%); border-radius: 999px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.mobile-actions a { flex: 1; padding: 13px 10px; text-align: center; font-weight: 900; }
.mobile-call { color: var(--white); background: var(--navy-2); }
.mobile-book { color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1080px) { nav ul { gap: 20px; } nav a { font-size: .85rem; } }
@media (max-width: 1000px) { .brand { min-height: 162px; } .site-logo { width: min(720px, 90vw); max-height: 205px; } .menu-toggle { display: grid; place-items: center; position: absolute; right: 4%; bottom: 10px; z-index: 1201; } nav { display: none; position: static; width: 100%; margin-left: 0; } nav.open { display: block; } nav ul { min-height: 0; flex-direction: column; gap: 0; padding: 15px 4%; } nav li { width: 100%; } nav a { width: 100%; padding: 12px; text-align: center; } nav a:not(.btn)::after { display: none; } nav .btn { width: 100%; } .hero-inner { grid-template-columns: 1fr; gap: 38px; } .hero-card { max-width: 660px; } .trust-grid { grid-template-columns: repeat(2, 1fr); } .trust-item:nth-child(2) { border-right: 0; } .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--border); } .cards, .reviews-grid { grid-template-columns: repeat(2, 1fr); } .about-grid, .partner-grid, .contact-grid { grid-template-columns: 1fr; } .about-visual { max-width: 720px; } }
@media (max-width: 680px) { body { padding-bottom: 76px; } .section { padding: 68px 0; } .topbar-inner { justify-content: center; flex-wrap: wrap; padding: 7px 0; } .topbar-inner > span { display: none; } .topbar-links { gap: 11px; font-size: .76rem; } .brand { min-height: 128px; padding: 4px 10px; } .site-logo { width: min(520px, 92vw); max-height: 154px; } .menu-toggle { right: 14px; bottom: 8px; } .hero, .hero-inner { min-height: 620px; } .hero-inner { padding: 56px 0 84px; } .hero h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); } .hero-actions { flex-direction: column; } .hero-actions .btn { width: 100%; } .hero-card { padding: 25px; } .hero-stats, .trust-grid, .cards, .reviews-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; } .trust-item, .trust-item:nth-child(2) { border-right: 0; } .trust-item { border-bottom: 1px solid var(--border); } .trust-item:last-child { border-bottom: 0; } .field-full { grid-column: auto; } .about-visual, .about-visual img { min-height: 475px; height: 475px; } .about-badge { left: 16px; right: 16px; bottom: 16px; padding: 18px; } .service-area-box, .form-card, .contact-panel, .partner-panel { padding: 26px; } .area-route { flex-direction: column; align-items: stretch; text-align: center; } .route-line { width: 2px; height: 42px; align-self: center; } .mobile-actions { display: flex; } }
@media (max-width: 420px) { .topbar-links { gap: 8px; } .topbar-links > a:nth-child(2) { display: none; } .hero-card { padding: 22px; } .card { padding: 25px; } .section-title { font-size: 2.15rem; } }
nav a.nav-current { color: var(--gold-light); }
nav a.nav-current::after { width: 100%; }
nav a.nav-current:hover { color: var(--gold-light); }

/* Regional pages use the normal light-section typography unless a section is explicitly dark. */
.service-areas-page .section .section-title { color: var(--navy-2); }
.service-areas-page .section .section-intro { color: var(--gray); }
.service-areas-page .section > .container > .eyebrow { color: var(--gold-dark); }
.service-areas-page .section.section-dark .section-title { color: var(--white); }
.service-areas-page .section.section-dark .section-intro { color: rgba(255,255,255,.78); }
.service-areas-page .section.section-dark > .container > .eyebrow { color: var(--gold-light); }

/* Clean, balanced Nationwide/RON action groups */
.nationwide-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  max-width: 1180px;
}
.nationwide-actions .btn {
  width: 100%;
  min-height: 60px;
  padding: 13px 18px;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}
.nationwide-actions .btn:first-child::before {
  content: "▤";
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 1.28rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .nationwide-actions { grid-template-columns: 1fr; }
  .nationwide-actions .btn { max-width: 620px; }
}
