/*
Theme Name: Supreme Insurance Agency
Theme URI: https://supremeinsuranceagency.com/
Author: Supreme Insurance Agency
Description: Professional independent insurance agency theme with coverage pages, a multi-step quote request, contact form and client center. Original design and code.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: supreme-insurance
*/

/* =========================================================================
   1. Design tokens
   ========================================================================= */
:root {
	--navy: #0e2a47;
	--navy-deep: #081c31;
	--navy-soft: #163b61;
	--navy-tint: #e9eef4;
	--gold: #b8892b;
	--red: #b3121b;
	--red-strong: #8d0d15;
	--gold-strong: #9a7120;
	--gold-pale: #f4ead3;
	--cream: #f4f0e8;
	--paper: #faf9f6;
	--white: #ffffff;
	--ink: #182230;
	--muted: #5b6875;
	--line: #e2e6eb;
	--line-strong: #c9d1da;
	--link: #1c5a8e;
	--success: #2b7a4b;
	--success-bg: #e9f5ee;
	--error: #b23a3a;
	--error-bg: #fbeeee;
	--info-bg: #eef3f8;

	--font-serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
	--font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--radius-sm: 6px;
	--radius: 10px;
	--radius-lg: 16px;
	--shadow-sm: 0 1px 2px rgba(14, 42, 71, .06), 0 1px 3px rgba(14, 42, 71, .04);
	--shadow: 0 6px 20px rgba(14, 42, 71, .08);
	--shadow-lg: 0 20px 50px rgba(8, 28, 49, .18);
	--container: 1200px;
	--header-h: 84px;
}

/* =========================================================================
   2. Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(38px, 4.6vw, 58px); line-height: 1.06; }
h2 { font-size: clamp(30px, 3.4vw, 42px); }
h3 { font-size: 22px; }
h4 { font-size: 16px; font-family: var(--font-sans); font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.center { text-align: center; }
.lead { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 640px; }
.eyebrow { font-family: var(--font-sans); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-strong); margin: 0 0 12px; }
.eyebrow-light { color: var(--gold-pale); }
.eyebrow-gold { color: #e6c675; }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--link); }
.text-link .icon { width: 18px; height: 18px; transition: transform .2s; }
.text-link:hover { text-decoration: none; }
.text-link:hover .icon { transform: translateX(3px); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 1000; border-radius: var(--radius-sm); }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
[hidden] { display: none !important; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; line-height: 1.2;
	border: 1.5px solid transparent; cursor: pointer; font-family: inherit; text-decoration: none !important;
	transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s; white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-strong); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(184, 137, 43, .3); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
	width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: #fff;
	border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6875' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14, 42, 71, .12); }
.field .hint { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }
.field-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 4px 0 16px; font-size: 14px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; cursor: pointer; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--navy); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.span-2 { grid-column: 1 / -1; }
.notice { border-radius: var(--radius-sm); padding: 14px 18px; margin: 0 0 22px; font-size: 15px; border: 1px solid; }
.notice-success { background: var(--success-bg); border-color: #bfe0cc; color: #1f5a37; }
.notice-error { background: var(--error-bg); border-color: #efc7c7; color: #7f2626; }
.notice-info { background: var(--info-bg); border-color: #cfdbe7; color: var(--navy); }

/* Sections */
.section { padding: 88px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-cream { background: var(--cream); }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; font-size: 17px; color: var(--muted); }

/* =========================================================================
   3. Top bar + header
   ========================================================================= */
.topbar { background: var(--navy-deep); color: #c9d5e2; font-size: 13.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; color: inherit; white-space: nowrap; }
.topbar-item .icon { width: 15px; height: 15px; color: var(--gold); }
.topbar a:hover { color: #fff; text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(14, 42, 71, .08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none !important; }
.brand-tile { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(160deg, #123a63, var(--navy-deep)); display: grid; place-items: center; flex: none; box-shadow: 0 4px 12px rgba(8, 28, 49, .25); }
.brand-crest { width: 50px; height: 45px; object-fit: contain; }
.brand-mark { width: 42px; height: 42px; color: var(--navy); display: grid; place-items: center; flex: none; }
.brand-mark svg { width: 42px; height: 42px; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-family: var(--font-serif); font-size: 21px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.brand-text small { margin-top: 4px; white-space: nowrap; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-strong); font-weight: 600; }
.brand-light { color: #fff; }
.brand-light .brand-tile { background: rgba(255,255,255,.08); box-shadow: none; border: 1px solid rgba(255,255,255,.14); }
.brand-light .brand-text small { color: #c6a35a; }
.custom-logo { max-height: 56px; width: auto; }

.main-nav { display: flex; align-items: center; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: inline-flex; align-items: center; gap: 4px; padding: 10px 13px; white-space: nowrap; border-radius: var(--radius-sm); color: var(--ink); font-weight: 600; font-size: 15px; text-decoration: none !important; }
.nav-list > li > a .icon { width: 15px; height: 15px; color: var(--muted); transition: transform .2s; }
.nav-list > li > a:hover, .nav-list > li.open > a { background: var(--navy-tint); color: var(--navy); }
.nav-list > li.open > a .icon { transform: rotate(180deg); }
.sub-toggle { display: none; }
.sub-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 330px; padding-top: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 50; }
.has-sub.open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu-inner { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 10px; }
.sub-menu-inner > a { display: flex; align-items: flex-start; gap: 12px; padding: 12px 12px; border-radius: var(--radius); color: var(--ink); text-decoration: none !important; }
.sub-menu-inner > a:hover { background: var(--paper); }
.sub-menu-inner > a .icon { width: 22px; height: 22px; color: var(--gold-strong); margin-top: 2px; }
.sub-menu-inner > a span { display: grid; gap: 2px; }
.sub-menu-inner strong { font-weight: 600; font-size: 15px; color: var(--navy); }
.sub-menu-inner small { font-size: 13px; color: var(--muted); }
.sub-menu-inner .sub-all { margin-top: 4px; border-top: 1px solid var(--line); border-radius: 0; padding: 12px 12px 6px; font-weight: 600; font-size: 14px; color: var(--link); align-items: center; }
.sub-menu-inner .sub-all .icon { width: 16px; height: 16px; color: inherit; margin: 0; }
.sub-menu-inner .sub-all:hover { background: transparent; text-decoration: underline; }
.nav-mobile-extra { display: none; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; white-space: nowrap; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); text-decoration: none !important; }
.header-phone .icon { width: 18px; height: 18px; color: var(--gold-strong); }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--navy); cursor: pointer; }
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle-close { display: none; }
.nav-open .nav-toggle-open { display: none; }
.nav-open .nav-toggle-close { display: inline-flex; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(8, 28, 49, .5); z-index: 90; }

/* =========================================================================
   4. Homepage
   ========================================================================= */
.hero {
	position: relative; color: #fff; overflow: hidden;
	background: radial-gradient(1100px 600px at 85% 0%, #1f4b78 0%, transparent 60%), linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #123556 100%);
	padding: 96px 0 88px;
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 85%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.hero h1 { color: #fff; max-width: 640px; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #e6c675; }
.hero .lead { color: #c9d5e2; font-size: 19px; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; max-width: 560px; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #dbe4ee; line-height: 1.45; }
.hero-points .icon { width: 20px; height: 20px; color: #e6c675; margin-top: 1px; }

.quick-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 32px; position: relative; }
.quick-card::after { content: ""; position: absolute; left: 32px; right: 32px; top: 0; height: 4px; background: var(--gold); border-radius: 0 0 4px 4px; }
.quick-card h2 { font-size: 26px; margin-bottom: 6px; }
.quick-card > p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.quick-card .btn { margin-top: 4px; }
.quick-card-foot { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; font-size: 13.5px; color: var(--muted); }
.quick-card-foot .icon { width: 18px; height: 18px; color: var(--success); }
.type-choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.type-choice { position: relative; }
.type-choice input { position: absolute; opacity: 0; inset: 0; }
.type-choice span { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; transition: .15s; }
.type-choice .icon { width: 22px; height: 22px; color: var(--gold-strong); }
.type-choice input:checked + span { border-color: var(--navy); background: var(--navy-tint); color: var(--navy); }
.type-choice input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 28px 24px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item .icon { width: 28px; height: 28px; color: var(--gold-strong); flex: none; margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-serif); font-size: 18px; color: var(--navy); margin-bottom: 2px; }
.trust-item span { font-size: 14px; color: var(--muted); line-height: 1.5; }

.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.coverage-card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px 26px;
	color: var(--ink); text-decoration: none !important; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; overflow: hidden;
}
.coverage-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); opacity: 0; transition: opacity .2s; }
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.coverage-card:hover::before { opacity: 1; }
.coverage-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--navy-tint); color: var(--navy); display: grid; place-items: center; margin-bottom: 20px; }
.coverage-icon .icon { width: 28px; height: 28px; }
.coverage-card h3 { margin-bottom: 8px; }
.coverage-card p { color: var(--muted); font-size: 15px; flex: 1; margin-bottom: 18px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--link); font-size: 14.5px; }
.card-link .icon { width: 16px; height: 16px; transition: transform .2s; }
.coverage-card:hover .card-link .icon { transform: translateX(3px); }
.coverage-grid-compact .coverage-card { padding: 22px; flex-direction: row; align-items: center; gap: 16px; }
.coverage-grid-compact .coverage-icon { margin: 0; width: 46px; height: 46px; }
.coverage-grid-compact h3 { font-size: 18px; margin: 0; flex: 1; }
.coverage-grid-compact .card-link { font-size: 0; }
.coverage-grid-compact .card-link .icon { width: 18px; height: 18px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-visual { position: relative; }
.why-panel { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.why-panel::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .12); right: -120px; bottom: -140px; box-shadow: 0 0 0 60px rgba(255, 255, 255, .03); }
.why-panel .eyebrow { color: #e6c675; }
.why-panel h3 { color: #fff; font-size: clamp(28px, 3vw, 38px); margin-bottom: 26px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.why-stat { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 18px; }
.why-stat strong { display: block; font-family: var(--font-serif); font-size: 26px; color: #fff; margin-bottom: 2px; }
.why-stat span { font-size: 13.5px; color: #c9d5e2; }
.feature-list { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-badge { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-strong); display: grid; place-items: center; flex: none; }
.feature-badge .icon { width: 20px; height: 20px; }
.feature-list strong { display: block; font-family: var(--font-serif); font-size: 19px; color: var(--navy); margin-bottom: 2px; }
.feature-list span { color: var(--muted); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 20px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

.service-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.action-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; color: var(--ink); text-decoration: none !important; transition: .2s; }
.action-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.action-card .icon { width: 26px; height: 26px; color: var(--gold-strong); flex: none; margin-top: 2px; }
.action-card strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.action-card small { color: var(--muted); font-size: 13.5px; }

.carriers-label { text-align: center; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 26px; }
.carrier-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 48px; align-items: center; }
.carrier-logo img { max-height: 48px; width: auto; filter: grayscale(1); opacity: .7; transition: .2s; }
.carrier-logo:hover img { filter: none; opacity: 1; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 30px; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.review-quote .icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 14px; }
.review p { font-family: var(--font-serif); font-size: 18px; line-height: 1.55; color: var(--ink); }
.review footer { font-size: 14px; font-weight: 600; color: var(--muted); }

.cta-band { background: linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #16395e); color: #fff; padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p:last-child { margin: 0; color: #c9d5e2; max-width: 540px; font-size: 17px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* =========================================================================
   5. Inner pages
   ========================================================================= */
.page-hero { background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%); color: #fff; padding: 52px 0 60px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .lead { color: #c9d5e2; }
.page-hero-inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.page-hero-icon { width: 120px; height: 120px; border-radius: 28px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); display: grid; place-items: center; flex: none; color: #e6c675; }
.page-hero-icon .icon { width: 56px; height: 56px; }
.crumbs { font-size: 13.5px; color: #93a5b8; margin-bottom: 26px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: #c9d5e2; }
.crumbs span[aria-hidden] { color: #56728f; }

.content-wrap { padding: 72px 0; }
.content-wrap .container { max-width: 760px; }
.content-wrap h2 { margin-top: 1.4em; font-size: 30px; }
.content-wrap p, .content-wrap li { font-size: 17px; }

/* Coverage page */
.coverage-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 64px; align-items: start; }
.coverage-body > p { font-size: 17.5px; line-height: 1.7; color: #33404d; }
.coverage-body h2 { margin-top: 56px; margin-bottom: 20px; font-size: 32px; }
.coverage-body h2:first-child { margin-top: 0; }
.cover-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cover-list li { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.cover-list .icon { width: 22px; height: 22px; color: var(--success); flex: none; margin-top: 3px; }
.cover-list strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.cover-list span { color: var(--muted); font-size: 15px; }
.who-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.who-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.who-list .icon { width: 20px; height: 20px; color: var(--gold-strong); margin-top: 3px; flex: none; }
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-weight: 600; color: var(--navy); font-size: 16.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 20px; height: 20px; color: var(--muted); transition: transform .2s; flex: none; }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-body { padding: 0 22px 20px; color: #33404d; font-size: 15.5px; }
.faq-body p { margin: 0; }

.side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.side-card h3 { font-size: 20px; margin-bottom: 8px; }
.side-card p { color: var(--muted); font-size: 15px; }
.side-card .btn { margin-top: 6px; }
.side-card-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.side-card-navy h3 { color: #fff; }
.side-card-navy p { color: #c9d5e2; }
.side-phone { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: #fff; margin: 18px 0 6px; text-decoration: none !important; }
.side-phone .icon { color: #e6c675; }
.side-hours { font-size: 13.5px; color: #93a5b8 !important; margin: 0; }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li { border-top: 1px solid var(--line); }
.side-links li:first-child { border-top: 0; }
.side-links a { display: flex; align-items: center; gap: 12px; padding: 12px 0; color: var(--ink); font-weight: 500; text-decoration: none !important; }
.side-links a:hover { color: var(--navy); }
.side-links .icon { width: 20px; height: 20px; color: var(--gold-strong); }
.side-links a[aria-current] { color: var(--navy); font-weight: 700; }

/* About */
.about-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.about-intro h2 { font-size: clamp(30px, 3.4vw, 40px); }
.about-copy p { font-size: 17.5px; line-height: 1.7; color: #33404d; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.value-card .icon { width: 30px; height: 30px; color: var(--gold-strong); margin-bottom: 16px; }
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 15px; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-lg); background: var(--navy-tint); margin-bottom: 14px; }
.team-card strong { display: block; font-family: var(--font-serif); font-size: 19px; color: var(--navy); }
.team-card span { color: var(--muted); font-size: 14px; }
.stat-band { background: var(--navy); color: #fff; padding: 56px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-grid strong { display: block; font-family: var(--font-serif); font-size: 40px; color: #e6c675; line-height: 1.1; margin-bottom: 6px; }
.stat-grid span { color: #c9d5e2; font-size: 14.5px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon { width: 24px; height: 24px; color: var(--gold-strong); flex: none; margin-top: 2px; }
.contact-list strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--ink); font-size: 16px; }
.contact-list small { display: block; color: var(--muted); font-size: 14px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-card h2 { font-size: 26px; margin-bottom: 6px; }
.contact-card > p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.map-note { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; font-size: 15px; color: var(--muted); }
.map-note strong { color: var(--navy); }

/* Quote wizard */
.wizard-shell { background: var(--paper); border-bottom: 1px solid var(--line); padding: 56px 0 80px; }
.wizard-grid { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 32px; align-items: start; }
.wizard-side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 18px; }
.wizard-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 40px; }
.wizard-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 30px; }
.wizard-head h1 { font-size: clamp(30px, 3vw, 38px); margin-bottom: 6px; }
.wizard-head p { margin: 0; color: var(--muted); }
.wizard-counter { background: var(--navy-tint); color: var(--navy); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.wizard-progress { margin-bottom: 36px; }
.wizard-track { height: 4px; background: var(--line); border-radius: 2px; margin: 0 18px 14px; }
.wizard-track span { display: block; height: 100%; background: var(--gold); border-radius: 2px; transition: width .3s; }
.wizard-labels { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; }
.wizard-progress-item { border: 0; background: transparent; font: inherit; color: var(--muted); padding: 0; display: flex; flex-direction: column; align-items: center; gap: 7px; cursor: default; }
.wizard-progress-item span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--line); font-weight: 700; font-size: 13px; }
.wizard-progress-item small { font-size: 11px; line-height: 1.2; text-align: center; font-weight: 600; }
.wizard-progress-item.active { color: var(--navy); }
.wizard-progress-item.active span { background: var(--navy); color: #fff; }
.wizard-progress-item.complete { color: var(--navy); cursor: pointer; }
.wizard-progress-item.complete span { background: var(--gold); color: #fff; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.wizard-step h2 { font-size: 27px; margin-bottom: 4px; outline: none; }
.wizard-step > p { color: var(--muted); margin-bottom: 24px; }
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); margin-top: 30px; padding-top: 24px; }
.wizard-actions .btn { min-width: 140px; }
#wizardNext, #wizardSubmit { margin-left: auto; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.choice-grid.invalid .choice { border-color: var(--error); }
.choice { position: relative; border: 1.5px solid var(--line-strong); border-radius: var(--radius); padding: 18px; cursor: pointer; transition: .15s; display: block; }
.choice input { position: absolute; opacity: 0; }
.choice strong { display: block; color: var(--navy); font-family: var(--font-serif); font-size: 19px; margin-bottom: 4px; }
.choice span { display: block; color: var(--muted); font-size: 14px; }
.choice:has(input:checked) { border-color: var(--navy); background: var(--navy-tint); box-shadow: inset 0 0 0 1px var(--navy); }
.choice:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }
.review-box { display: grid; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 22px; margin-bottom: 22px; }
.review-row { display: grid; grid-template-columns: 150px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; }
.review-row:first-child { border-top: 0; }
.review-row dt { color: var(--muted); font-weight: 600; }
.review-row dd { margin: 0; color: var(--ink); }
.wizard-done { text-align: center; padding: 40px 20px; }
.wizard-done .icon { width: 56px; height: 56px; color: var(--success); margin-bottom: 16px; }
.wizard-done h2 { font-size: 30px; }
.wizard-done p { color: var(--muted); max-width: 520px; margin-inline: auto; }
.wizard-done .btn { margin-top: 12px; }

/* Client Center */
.portal-shell { background: var(--paper); border-bottom: 1px solid var(--line); padding: 56px 0 80px; }
.portal-auth { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 980px; margin: 0 auto; }
.portal-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.portal-box h2 { font-size: 26px; margin-bottom: 4px; }
.portal-box > p { margin-bottom: 22px; font-size: 15px; }
.portal-box-alt { background: var(--cream); }
.portal-dashboard { max-width: 1040px; margin: 0 auto; }
.portal-welcome { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 32px; }
.portal-welcome h2 { font-size: clamp(28px, 3vw, 36px); margin-bottom: 4px; }
.portal-welcome p:last-child { margin: 0; }
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; }
.portal-card-primary { grid-column: span 3; flex-direction: row; align-items: center; gap: 24px; background: var(--navy); border-color: var(--navy); color: #fff; flex-wrap: wrap; }
.portal-card-primary h3, .portal-card-primary p { color: #fff; }
.portal-card-primary .portal-icon { background: rgba(255, 255, 255, .1); color: #e6c675; }
.portal-card-primary-copy { flex: 1 1 320px; }
.portal-card-primary-copy h3 { margin-bottom: 4px; }
.portal-card-primary-copy p { margin: 0; color: #c9d5e2; }
.portal-card-primary-copy a { color: #fff; font-weight: 600; }
.portal-card-primary .portal-icon { margin: 0; }
.portal-card-primary .btn-primary { background: var(--gold); }
.portal-card-primary .btn-primary:hover { background: var(--gold-strong); }
.portal-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-tint); color: var(--navy); display: grid; place-items: center; margin-bottom: 16px; flex: none; }
.portal-icon .icon { width: 24px; height: 24px; }
.portal-card h3 { font-size: 20px; margin-bottom: 6px; }
.portal-card p { color: var(--muted); font-size: 15px; flex: 1; }
.portal-dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 15px; }
.portal-dl dt { color: var(--muted); font-weight: 600; }
.portal-dl dd { margin: 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #b6c4d3; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-col > p { max-width: 380px; margin: 20px 0 22px; font-size: 15px; line-height: 1.65; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 15px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--gold); margin-top: 3px; flex: none; }
.footer-contact a { color: #fff; }
.site-footer h4 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; margin: 6px 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 10px; }
.site-footer li a { color: #b6c4d3; font-size: 15px; }
.site-footer li a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .18); display: grid; place-items: center; color: #fff; }
.social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 32px; align-items: flex-end; }
.footer-disclaimer { max-width: 720px; font-size: 13px; color: #8ea0b3; margin: 0; }
.copyright { font-size: 13.5px; margin: 0; white-space: nowrap; }

/* 404 / default */
.error-page { text-align: center; padding: 100px 0; }

/* =========================================================================
   6. Responsive
   ========================================================================= */
@media (max-width: 1380px) {
	.header-phone { display: none; }
	.header-inner { gap: 20px; }
}
@media (max-width: 1180px) {
	.hero-grid { gap: 40px; }
	.nav-list > li > a { padding: 10px 9px; font-size: 14.5px; }
	.brand-text strong { font-size: 19px; }
}
@media (max-width: 1023px) {
	:root { --header-h: 72px; }
	.topbar-hours { display: none; }
	.nav-toggle { display: inline-flex; }
	.header-actions .btn { display: none; }
	.header-phone { display: inline-flex; white-space: nowrap; }
	.header-phone span { display: none; }
	.header-phone .icon { width: 22px; height: 22px; }
	.main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); background: #fff; z-index: 95; transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; overflow-y: auto; padding: 24px 22px 32px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow-lg); }
	.nav-open .main-nav { transform: none; visibility: visible; }
	.nav-open { overflow: hidden; }
	.nav-list { flex-direction: column; align-items: stretch; gap: 0; margin-top: 56px; }
	.nav-list > li { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; }
	.nav-list > li > a { flex: 1; padding: 14px 4px; font-size: 17px; border-radius: 0; }
	.nav-list > li > a:hover, .nav-list > li.open > a { background: transparent; }
	.nav-list > li > a .icon { display: none; }
	.sub-toggle { display: grid; place-items: center; width: 44px; height: 44px; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
	.sub-toggle .icon { width: 20px; height: 20px; transition: transform .2s; }
	.has-sub.open .sub-toggle .icon { transform: rotate(180deg); }
	.sub-menu { position: static; min-width: 0; width: 100%; padding: 0 0 8px; opacity: 1; visibility: visible; transform: none; display: none; }
	.has-sub.open > .sub-menu { display: block; }
	.sub-menu-inner { border: 0; box-shadow: none; padding: 0 0 0 4px; background: transparent; }
	.sub-menu-inner > a { padding: 10px 8px; }
	.nav-mobile-extra { display: grid; gap: 14px; margin-top: 24px; }
	.nav-phone { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: 17px; }
	.nav-toggle { position: relative; z-index: 96; }
	.nav-open .nav-toggle { position: fixed; top: 18px; right: 22px; }

	.hero { padding: 64px 0 60px; }
	.hero-grid { grid-template-columns: 1fr; }
	.quick-card { max-width: 560px; }
	.trust-grid { grid-template-columns: 1fr 1fr; }
	.trust-item:nth-child(odd) { border-left: 0; padding-left: 0; }
	.trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.coverage-grid, .review-grid, .steps { grid-template-columns: 1fr 1fr; }
	.split, .service-grid, .about-intro, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
	.values-grid, .team-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
	.coverage-layout { grid-template-columns: 1fr; }
	.side { position: static; }
	.wizard-grid { grid-template-columns: 1fr; }
	.wizard-side { position: static; order: 2; }
	.wizard-labels { grid-template-columns: repeat(4, 1fr); gap: 12px; }
	.wizard-track { display: none; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.portal-grid { grid-template-columns: 1fr 1fr; }
	.portal-card-primary { grid-column: span 2; }
}
@media (max-width: 640px) {
	.container { width: calc(100% - 36px); }
	.brand-text small { display: none; }
	.brand-text strong { font-size: 18px; }
	.brand-tile { width: 40px; height: 40px; border-radius: 9px; }
	.brand-crest { width: 34px; height: 31px; }
	.header-actions { gap: 10px; }
	.header-inner { gap: 12px; }
	.section { padding: 60px 0; }
	.topbar-left { display: none; }
	.topbar-inner { justify-content: center; }
	.topbar-right { width: 100%; justify-content: space-between; }
	.hero h1 { font-size: 36px; }
	.hero .lead { font-size: 17px; }
	.hero-points { grid-template-columns: 1fr; }
	.hero-actions .btn { flex: 1 1 auto; }
	.quick-card { padding: 26px 22px; }
	.type-choices { grid-template-columns: repeat(3, 1fr); }
	.trust-grid { grid-template-columns: 1fr; }
	.trust-item { border-left: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
	.trust-item:last-child { border-bottom: 0; }
	.coverage-grid, .review-grid, .steps, .actions-grid, .values-grid, .team-grid, .who-list, .grid-2, .portal-auth, .portal-grid, .footer-grid { grid-template-columns: 1fr; }
	.portal-card-primary { grid-column: auto; }
	.stat-grid { grid-template-columns: 1fr 1fr; }
	.why-panel { padding: 30px 24px; }
	.cta-band { padding: 56px 0; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
	.cta-actions { justify-content: flex-start; }
	.page-hero-icon { display: none; }
	.page-hero { padding: 36px 0 44px; }
	.wizard-card { padding: 24px 20px; }
	.wizard-head { flex-direction: column; }
	.wizard-labels { grid-template-columns: repeat(2, 1fr); }
	.choice-grid { grid-template-columns: 1fr; }
	.review-row { grid-template-columns: 1fr; gap: 2px; }
	.wizard-actions .btn { min-width: 0; flex: 1; }
	.contact-card, .portal-box { padding: 26px 20px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.copyright { white-space: normal; }
	.portal-welcome { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
	.header-phone { display: none; }
}

/* Category panels & hub pages */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card { display: flex; flex-direction: column; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 32px 30px; text-decoration: none !important; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.category-card::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); right: -90px; top: -110px; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card .coverage-icon { background: rgba(255,255,255,.1); color: #e6c675; }
.category-card h3 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.category-card ul { list-style: none; margin: 0 0 22px; padding: 0; columns: 1; flex: 1; }
.category-card li { font-size: 14.5px; color: #c9d5e2; padding: 5px 0; border-top: 1px solid rgba(255,255,255,.08); }
.category-card li:first-child { border-top: 0; }
.category-card .card-link { color: #e6c675; }
.hub-intro { max-width: 820px; }
.hub-intro p { font-size: 17.5px; line-height: 1.7; color: #33404d; }
.line-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.line-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; color: var(--ink); text-decoration: none !important; transition: .2s; }
.line-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.line-card .coverage-icon { margin: 0; flex: none; }
.line-card h3 { font-size: 19px; margin-bottom: 6px; }
.line-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 10px; }
.financing-note { display: flex; gap: 12px; align-items: center; margin-top: 26px; }
.financing-note .icon { width: 24px; height: 24px; color: var(--navy); flex: none; }
.hub-side { display: grid; gap: 20px; }
.sub-menu-wide { min-width: 640px; }
.sub-menu-wide .sub-menu-cols { display: grid; grid-template-columns: 1fr 1fr; }
.sub-menu-inner > .sub-menu-cols > a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); color: var(--ink); text-decoration: none !important; }
.sub-menu-inner > .sub-menu-cols > a:hover { background: var(--paper); }
.sub-menu-inner > .sub-menu-cols > a .icon { width: 20px; height: 20px; color: var(--gold-strong); }
.sub-menu-inner > .sub-menu-cols > a strong { font-weight: 600; font-size: 14.5px; color: var(--navy); }
.footer-grid-5 { grid-template-columns: 1.5fr 1fr 1.1fr 1fr .9fr; gap: 32px; }
.site-footer li a.footer-all { color: #e6c675; font-weight: 600; }
@media (max-width: 1023px) {
	.category-grid { grid-template-columns: 1fr; }
	.line-grid { grid-template-columns: 1fr; }
	.sub-menu-wide { min-width: 0; }
	.sub-menu-wide .sub-menu-cols { grid-template-columns: 1fr; }
	.footer-grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) { .footer-grid-5 { grid-template-columns: 1fr; } }
