

:root {
	--paper: #FBF8F3;
	--paper-2: #F5EFE6;
	--peel: #FFEEE2;
	--peel-2: #FFE2CC;
	--orange: #FF5F1F;
	--orange-deep: #C8410A;
	--zest: #FFC24A;
	--ink-2: #34423A;
	--leaf: #0A9A48;
	--leaf-wash: #E6F4EB;
	--line-2: #D9CEC0;
	--r: 22px;
	--r-lg: 30px;
	--maxw: 1180px;
	--sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--serif: "Instrument Serif", Georgia, "Times New Roman", serif;

	--bg: #FBF8F3;
	--bg-tint: #FFEEE2;
	--ink: #1F2B24;
	--text: #1F2B24;
	--text-soft: #34423A;
	--muted: #66706A;
	--line: #E7DFD4;
	--line-strong: #D9CEC0;
	--brand: #FF5F1F;
	--brand-deep: #C8410A;
	--brand-hover: #E8500F;
	--brand-tint: #FFEEE2;
	--brand-soft: rgba(255,95,31,0.10);
	--brand2: #0A9A48;
	--brand2-tint: #E6F4EB;
	--container: min(1180px, calc(100vw - 32px));
}

body {
	font-family: var(--sans);
	background: var(--paper);
	color: var(--ink);
}
body::before { display: none; }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 8px; }

h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); text-wrap: balance; }
h1 { font-weight: 700; letter-spacing: -0.055em; line-height: 0.98; }
h2 { font-weight: 700; letter-spacing: -0.05em; line-height: 1.02; }
h3 { letter-spacing: -0.025em; }

.cx-accent,
.hero-card .word-fresh,
.word-fresh,
h1 em, h2 em,
.cta-banner h2 em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	color: var(--orange);
	letter-spacing: -0.01em;
	text-decoration: none;
	background: none;
	-webkit-text-fill-color: currentColor;
	padding-right: 0.06em;
}
.word-fresh-sparkle { display: none; }

.eyebrow, .cx-label {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 11.5px; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--ink-2);
}
.eyebrow::before, .cx-label::before {
	content: ""; width: 7px; height: 7px; border-radius: 50%;
	background: var(--orange);
}

.btn, .cx-btn {
	display: inline-flex; align-items: center; gap: 14px;
	padding: 16px 22px; border-radius: 14px;
	font-family: var(--sans); font-weight: 700; font-size: 15px;
	text-decoration: none; cursor: pointer;
	border: 1.5px solid transparent;
	box-shadow: none;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn i, .cx-btn i { font-size: 0.85em; }
.btn.primary, .cx-btn-primary { background: var(--ink); border-color: var(--ink); color: var(--paper); box-shadow: none; }
.btn.primary:hover, .cx-btn-primary:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(255,95,31,.8); }
.btn.primary:active { background: var(--orange-deep); border-color: var(--orange-deep); }
.btn.secondary, .cx-btn-orange { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: none; }
.btn.secondary:hover, .cx-btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; transform: translateY(-2px); }
.btn.ghost, .cx-btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn.ghost:hover, .cx-btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.cx-btn-light { border-color: rgba(255,255,255,.28); color: var(--paper); background: transparent; }
.cx-btn-light:hover { border-color: var(--paper); color: var(--paper); }

#header.cx-head {
	position: sticky; top: 0; z-index: 60;
	background: rgba(251,248,243,.88);
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
}
#header.cx-head.scrolled { border-bottom-color: var(--line); background: rgba(251,248,243,.95); }
#header.cx-head nav.cx-nav {
	width: var(--container); margin: 0 auto; padding: 0;
	height: 78px; display: flex; align-items: center; gap: 28px;
}
#header.cx-head .cx-brand img { height: 40px; width: auto; }
.cx-links { display: flex; align-items: center; gap: 26px; flex: 1; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.cx-links > a, .cx-dd > button {
	background: none; border: 0; padding: 8px 0; font: inherit; color: inherit;
	cursor: pointer; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; white-space: nowrap;
}
.cx-links > a:hover, .cx-dd > button:hover { color: var(--orange); }
.cx-dd > button .fa-chevron-down { font-size: 10px; opacity: .6; }
.cx-spacer { flex: 1; }
.cx-dd { position: relative; }
.cx-dd::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.cx-dd-menu {
	position: absolute; top: calc(100% + 8px); left: -16px; min-width: 250px; z-index: 70;
	background: #fff; border: 1px solid var(--line); border-radius: 16px;
	box-shadow: 0 18px 40px -22px rgba(60,35,15,.30);
	padding: 8px; display: grid;
	opacity: 0; visibility: hidden; transform: translateY(-4px); transition: .18s ease;
}
.cx-dd.right .cx-dd-menu { left: auto; right: 0; }
.cx-dd:hover .cx-dd-menu, .cx-dd:focus-within .cx-dd-menu, .cx-dd.open .cx-dd-menu { opacity: 1; visibility: visible; transform: none; }
.cx-dd-menu a { padding: 10px 12px; border-radius: 10px; font-weight: 600; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 10px; text-decoration: none; }
.cx-dd-menu a:hover { background: var(--peel); color: var(--ink); }
.cx-dd-menu a i { color: var(--orange); width: 16px; text-align: center; }
.cx-dd-menu strong { font-variant-numeric: tabular-nums; }
.cx-dd-menu a { white-space: nowrap; }
.cx-dd.right .cx-dd-menu { min-width: 300px; }
.cx-dd.right .cx-dd-menu a { display: grid; grid-template-columns: 18px 40px auto 1fr; align-items: center; gap: 10px; padding: 12px 14px; }
.cx-dd.right .cx-dd-menu a .cx-new { justify-self: end; margin-left: 0; }
.cx-new { margin-left: auto; font-size: 10px; font-weight: 800; letter-spacing: .1em; background: var(--leaf); color: #fff; padding: 3px 7px; border-radius: 99px; }
.cx-links > a.cx-btn { padding: 12px 18px; border-radius: 12px; font-size: 14px; background: var(--orange); color: #fff; border-color: var(--orange); }
.cx-links > a.cx-btn:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
.cx-menu-btn {
	display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px;
	border: 1.5px solid var(--line-2); background: none; color: var(--ink); font-size: 18px; cursor: pointer;
	align-items: center; justify-content: center;
}

footer.cx-footer {
	margin-top: clamp(64px, 8vw, 100px); padding: 64px 0 28px;
	background: var(--paper); border-top: 1px solid var(--line); overflow: visible;
}
footer.cx-footer::before, footer.cx-footer::after { display: none; }
.cx-foot { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.cx-foot img { height: 44px; width: auto; }
.cx-foot p { color: var(--muted); font-size: 14.5px; margin: 18px 0; }
.cx-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cx-badges span { font-size: 12.5px; font-weight: 700; padding: 7px 11px; border-radius: 99px; background: var(--paper-2); display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); }
.cx-badges i { color: var(--orange); }
.cx-foot h4 { margin: 0 0 16px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.cx-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.cx-foot ul a { font-weight: 600; color: var(--ink); }
.cx-foot ul a:hover { color: var(--orange); }
.cx-foot address { font-style: normal; font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.cx-hrs { display: flex; gap: 10px; color: var(--ink-2); font-size: 14px; margin: 14px 0; font-variant-numeric: tabular-nums; }
.cx-hrs i { color: var(--orange); margin-top: 5px; }
.cx-contact li { display: grid; grid-template-columns: 20px 52px 1fr; align-items: center; gap: 6px; font-variant-numeric: tabular-nums; }
.cx-contact li i { color: var(--orange); }
.cx-contact li span { color: var(--muted); font-size: 13px; }
.cx-textlink { font-weight: 700; color: var(--orange-deep); font-size: 14.5px; }
.cx-foot-bottom { width: var(--container); margin: 56px auto 0; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); }
.cx-foot-bottom i { color: var(--orange); }

.cx-wrap { width: var(--container); margin: 0 auto; }
section.cx-sec { width: auto; margin: 0; padding: clamp(64px, 9vw, 120px) 0; }

.cx-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 64px); padding: clamp(28px, 5vw, 56px) 0 40px; }
.cx-hero-copy { display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.cx-hero h1 { font-size: clamp(46px, 6.6vw, 92px); margin: 0; }
.cx-hero h1 .cx-accent { font-size: 1.1em; }
.cx-lead { font-size: clamp(16px, 1.35vw, 18px); color: var(--ink-2); max-width: 46ch; margin: 0; line-height: 1.6; }
.cx-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cx-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.cx-meta span { display: inline-flex; align-items: center; }
.cx-meta span + span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); margin-right: 14px; }

.cx-visual { position: relative; min-height: 540px; border-radius: var(--r-lg); background: var(--orange); overflow: hidden; isolation: isolate; }
.cx-visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 0% 100%, rgba(200,65,10,.55), transparent 60%); z-index: 0; pointer-events: none; }
.cx-slice { position: absolute; z-index: 1; display: block; max-width: none; }
.cx-visual .cx-slice { width: 118%; right: -38%; top: -24%; animation: cx-spin 90s linear infinite; }
@keyframes cx-spin { to { transform: rotate(360deg); } }

.cx-hero-right { display: grid; grid-template-rows: minmax(250px, 1fr) auto; gap: 14px; min-width: 0; }
.cx-hero-right .cx-visual { min-height: 250px; }
.cx-hero-right .cx-visual .cx-slice { width: min(78%, 480px); right: -6%; top: auto; bottom: 0; transform-origin: 50% 50%; translate: 0 50%; }
.cx-tag {
	position: absolute; top: 22px; left: 22px; z-index: 3;
	background: rgba(31,43,36,.88); color: #FBF8F3;
	padding: 9px 14px; border-radius: 99px;
	font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.cx-hero-right .cx-chip-hours { max-width: 320px; }
.cx-hero-review { padding: 20px 22px; border-radius: var(--r-lg); display: grid; }
.cx-hero-review .cx-review-head small { color: var(--muted); }
.cx-hero-review .cx-review-head b { color: var(--ink); }
.cx-hero-review .cx-review-body { margin: 14px 0; min-height: 96px; }
.cx-hero-review #googleSnippet, .cx-hero-review #googleSnippet .review-text { font-size: 19px; line-height: 1.32; }
.cx-hero-review #googleSnippet .review-text { -webkit-line-clamp: 3; }
.cx-hero-review #googleSnippet .review-stars { font-size: 12px; margin-bottom: 6px; }
.cx-hero-review #reviewerName { margin-top: 8px; font-size: 13px; }
.cx-hero-review .cx-review-foot { padding-top: 14px; }

.cx-reach { display: grid; gap: 18px; }
.cx-reach ul { list-style: none; margin: 0; padding: 0; display: grid; }
.cx-reach li { display: grid; grid-template-columns: 22px 60px 1fr; align-items: center; gap: 8px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 15px; font-variant-numeric: tabular-nums; }
.cx-reach li i { color: var(--orange); }
.cx-reach li span { color: var(--muted); font-size: 13.5px; }
.cx-reach li a { font-weight: 700; color: var(--ink); }
.cx-reach li a:hover { color: var(--orange); }
.cx-vert { position: absolute; right: 18px; top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.85); z-index: 2; }
.cx-chip { position: absolute; z-index: 3; background: #fff; border-radius: 18px; box-shadow: 0 20px 40px -20px rgba(40,20,5,.45); padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.cx-chip-hours { left: 22px; bottom: 22px; right: 22px; max-width: 360px; }
.cx-chip-rating { left: 22px; top: 22px; padding: 12px 16px; }
.cx-chip b { display: block; font-size: 17px; letter-spacing: -.02em; line-height: 1.2; color: var(--ink); }
.cx-chip small { display: block; color: var(--muted); font-size: 13px; line-height: 1.3; }
.cx-chip-rating b { font-size: 15px; }
.cx-chip a { margin-left: auto; width: 38px; height: 38px; border-radius: 12px; background: var(--peel); display: grid; place-items: center; color: var(--orange-deep); flex: none; }
.cx-stars { color: var(--zest); letter-spacing: 1px; font-size: 15px; }
.cx-pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--leaf); flex: none; animation: cx-pulse 2s infinite; }
.cx-pulse.closed { background: #C9432B; animation: none; }
@keyframes cx-pulse { 0% { box-shadow: 0 0 0 0 rgba(10,154,72,.5); } 70% { box-shadow: 0 0 0 10px rgba(10,154,72,0); } 100% { box-shadow: 0 0 0 0 rgba(10,154,72,0); } }

.cx-ticker { border-block: 1px solid var(--line); overflow: hidden; }
.cx-ticker-track { display: flex; width: max-content; animation: cx-tick 42s linear infinite; }
.cx-ticker-track span { display: inline-flex; align-items: center; padding: 16px 28px; font-size: 14px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.cx-ticker-track span::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); margin-left: 56px; }
@keyframes cx-tick { to { transform: translateX(-50%); } }

.cx-head2 { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: clamp(36px, 5vw, 56px); }
.cx-head2 h2 { font-size: clamp(38px, 5vw, 64px); margin: 18px 0 0; }
.cx-head2 p { margin: 0; color: var(--muted); max-width: 34ch; }

.cx-help { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.cx-help-item { padding: 28px 26px 30px 0; display: grid; gap: 10px; align-content: start; }
.cx-help-item + .cx-help-item { padding-left: 26px; border-left: 1px solid var(--line); }
.cx-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--peel); color: var(--orange-deep); display: grid; place-items: center; font-size: 18px; transition: .2s; }
.cx-help-item b { font-size: 17px; letter-spacing: -.015em; margin-top: 6px; color: var(--ink); }
.cx-help-item span { color: var(--muted); font-size: 14.5px; line-height: 1.5; }

.cx-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.cx-stat { background: var(--paper-2); border-radius: var(--r); padding: 26px 24px; }
.cx-stat .n { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; letter-spacing: -.05em; line-height: 1; color: var(--ink); }
.cx-stat .n i { font-family: var(--serif); color: var(--orange); font-weight: 400; font-size: 1.08em; }
.cx-stat p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }

section.cx-visit { background: var(--paper-2); }
.cx-visit-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 18px; }
.cx-panel { background: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); }
.cx-hours-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cx-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px 7px 10px; border-radius: 99px; background: var(--leaf-wash); color: var(--leaf); }
.cx-status.closed { background: #FBE7E2; color: #B53A22; }
.cx-status .cx-pulse { width: 8px; height: 8px; }
.cx-now { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; letter-spacing: -.045em; line-height: 1.05; margin-top: 22px; color: var(--ink); }
.cx-now-sub { color: var(--muted); margin-top: 6px; }
.cx-week { margin-top: 28px; display: grid; font-variant-numeric: tabular-nums; }
.cx-row { display: flex; justify-content: space-between; gap: 12px; padding: 14px; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink); }
.cx-row.today { background: var(--peel); border-radius: 12px; border-color: transparent; }
.cx-row.today + .cx-row { border-color: transparent; }
.cx-row.today span::after { content: "Today"; margin-left: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); }
.cx-row.shut b { color: var(--muted); }
.cx-holiday { margin-top: 18px; padding: 16px 18px; border-radius: 16px; border: 1px dashed var(--line-2); font-size: 14.5px; }
.cx-holiday strong { display: block; margin-bottom: 6px; }
.cx-holiday div { display: flex; justify-content: space-between; gap: 12px; }
.cx-after { margin-top: 22px; padding: 18px 20px; border-radius: 16px; background: var(--paper); font-size: 14.5px; }
.cx-after strong { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink); }
.cx-after strong i { color: var(--orange); }
.cx-after p { margin: 6px 0 0; }
.cx-after .hint { color: var(--muted); font-size: 13px; }
.cx-after a { color: var(--orange-deep); font-weight: 700; }
.cx-side { display: grid; gap: 18px; align-content: start; }
.cx-addr { display: grid; gap: 18px; }
.cx-addr h3 { font-size: 24px; letter-spacing: -.03em; line-height: 1.2; }
.cx-addr .cx-btn { justify-self: start; }
.cx-review-head { display: flex; align-items: center; gap: 14px; }
.cx-review-head svg { flex: none; }
.cx-review-head .overall { margin-left: auto; text-align: right; font-size: 13px; color: var(--muted); line-height: 1.35; }
.cx-review-head .overall b { color: var(--ink); }
.cx-review-body { margin: 22px 0; min-height: 110px; }
#googleSnippet, #reviewerName { transition: opacity .35s ease; }
#googleSnippet.fade-out, #reviewerName.fade-out { opacity: 0; }
#googleSnippet { font-family: var(--serif); font-size: 23px; line-height: 1.3; color: var(--ink-2); margin: 0; }
#googleSnippet .review-stars { font-family: var(--sans); color: var(--zest); font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
#googleSnippet .review-text { font-family: var(--serif); font-size: 23px; line-height: 1.3; color: var(--ink-2); margin: 0; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
#reviewerName { margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--ink); }
.cx-review-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.cx-review-foot a { font-weight: 700; font-size: 14px; color: var(--orange-deep); display: inline-flex; gap: 8px; align-items: center; }
.cx-navbtns { display: flex; gap: 8px; }
.cx-navbtns button { width: 38px; height: 38px; border-radius: 12px; border: 1.5px solid var(--line-2); background: #fff; color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.cx-navbtns button:hover { border-color: var(--ink); }

section.cx-ma { background: var(--peel); position: relative; overflow: hidden; }
.cx-ma .cx-slice { width: 520px; left: -260px; bottom: -260px; opacity: .5; animation: cx-spin 120s linear infinite reverse; z-index: 0; }
.cx-ma-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.cx-ma h2 { font-size: clamp(38px, 5vw, 64px); margin: 18px 0 22px; }
.cx-ma h2 .cx-accent { display: block; }
.cx-ma-copy p { margin: 0 0 28px; color: var(--ink-2); max-width: 44ch; }
.cx-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid var(--peel-2); }
.cx-fact { padding: 18px 16px 0 0; }
.cx-fact + .cx-fact { padding-left: 16px; border-left: 1px solid var(--peel-2); }
.cx-fact b { display: block; font-size: 26px; letter-spacing: -.04em; line-height: 1.1; color: var(--ink); }
.cx-fact span { font-size: 13px; color: var(--muted); }
.cx-pill-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; gap: 12px; }
.cx-pill-head .cx-label::before { background: var(--leaf); }
.cx-pill-head small { color: var(--muted); font-size: 13px; }
.cx-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cx-pills span { background: #fff; border: 1px solid var(--peel-2); padding: 9px 14px; border-radius: 99px; font-size: 14px; font-weight: 600; color: var(--ink-2); transition: .15s; display: inline-flex; align-items: center; gap: 8px; }
.cx-pills span i { color: var(--orange); font-size: 12px; transition: .15s; }
.cx-pills span:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cx-pills span:hover i { color: var(--zest); }

.cx-svc { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.cx-svc article { padding: 34px 30px 38px 0; border-bottom: 1px solid var(--line); display: grid; gap: 12px; align-content: start; }
.cx-svc article:not(:nth-child(3n+1)) { padding-left: 30px; border-left: 1px solid var(--line); }
.cx-svc h3 { font-size: 21px; letter-spacing: -.03em; line-height: 1.2; margin-top: 10px; }
.cx-svc p { margin: 0; color: var(--muted); font-size: 15px; }
.cx-svc small { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.cx-svc article:hover .cx-ico { background: var(--orange); color: #fff; transform: rotate(-8deg); }

.cx-cta-wrap { padding: 0; }
.cx-cta { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(36px, 6vw, 80px); display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: end; }
.cx-cta .cx-slice { width: 460px; right: -120px; top: -150px; z-index: -1; animation: cx-spin 80s linear infinite; }
.cx-cta .cx-label { color: rgba(251,248,243,.7); }
.cx-cta h2 { color: var(--paper); font-size: clamp(36px, 4.8vw, 62px); margin: 18px 0; max-width: 14ch; }
.cx-cta p { margin: 0; color: rgba(251,248,243,.72); max-width: 44ch; }
.cx-cta-actions { display: grid; gap: 12px; }
.cx-cta .cx-btn { justify-content: space-between; }

.hero-card {
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	padding: 24px 0 8px;
	overflow: visible;
}
.hero-card .lead, .lead { color: var(--ink-2); }
.hero-eyebrow { border: 0; background: none; padding: 0; color: var(--ink-2); letter-spacing: .16em; font-size: 11.5px; }
.hero-eyebrow .dot { background: var(--orange); box-shadow: none; animation: none; width: 7px; height: 7px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 56px); }
.section-head p { color: var(--muted); }
.card {
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: none;
	border-radius: var(--r);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(60,35,15,.35); border-color: var(--line-2); }
.card .icon { background: var(--peel); color: var(--orange-deep); border-radius: 14px; }
.card:hover .icon { background: var(--orange); color: #fff; }

.cta-banner { background: var(--ink); isolation: isolate; }
.cta-banner::before {
	inset: auto; width: 460px; height: 460px; right: -130px; top: -170px; left: auto; bottom: auto;
	border-radius: 50%;
	background:
		radial-gradient(circle closest-side, #FFF3E4 0 5%, transparent 5.5% 84%, #FFF3E4 84.5% 91%, #FFA24C 91.5% 100%),
		repeating-conic-gradient(#FFA53A 0 33deg, #FFF3E4 33deg 36deg);
	animation: cx-spin 80s linear infinite;
	opacity: .95;
}
.cta-banner::after { display: none; }
.cta-banner .eyebrow { color: rgba(251,248,243,.7); }
.cta-banner .eyebrow::before { background: var(--orange); }
.cta-banner h2 { font-weight: 700; letter-spacing: -.05em; }
.cta-banner .btn.phone { border-radius: 14px; }

.cx-rise { animation: cx-rise .8s cubic-bezier(.2,.7,.2,1) both; }
.cx-d1 { animation-delay: .08s; } .cx-d2 { animation-delay: .16s; } .cx-d3 { animation-delay: .24s; } .cx-d4 { animation-delay: .32s; }
@keyframes cx-rise { from { opacity: 0; transform: translateY(18px); } }
@media (prefers-reduced-motion: reduce) {
	.cx-rise, .cx-slice, .cx-ticker-track, .cx-pulse, .cta-banner::before { animation: none !important; }
}

@media (max-width: 1020px) {
	.cx-links { display: none; }
	.cx-menu-btn { display: inline-flex; }
	#header.cx-head nav.cx-nav.open .cx-links {
		display: flex; position: absolute; top: 78px; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--paper); border-bottom: 1px solid var(--line);
		padding: 8px 16px 20px; max-height: calc(100vh - 78px); overflow-y: auto;
	}
	.cx-nav.open .cx-links > a, .cx-nav.open .cx-dd > button { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; justify-content: space-between; }
	.cx-nav.open .cx-dd::after { display: none; }
	.cx-nav.open .cx-dd > button { justify-content: flex-start; }
	.cx-nav.open .cx-dd > button .fa-chevron-down { margin-left: auto; }
	#header.cx-head nav.cx-nav.open .cx-links { box-shadow: 0 24px 40px -24px rgba(60,35,15,.35); border-radius: 0 0 18px 18px; }
	.cx-nav.open .cx-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 8px; display: none; min-width: 0; }
	.cx-nav.open .cx-dd.open .cx-dd-menu { display: grid; }
	.cx-nav.open .cx-spacer { display: none; }
	.cx-nav.open .cx-links .cx-btn { margin-top: 14px; justify-content: center; }
	.cx-hero { grid-template-columns: 1fr; }
	.cx-visual { min-height: 280px; }
	.cx-help, .cx-stats { grid-template-columns: repeat(2, 1fr); }
	.cx-help-item:nth-child(3) { padding-left: 0; border-left: 0; }
	.cx-help-item:nth-child(n+3) { border-top: 1px solid var(--line); }
	.cx-visit-grid, .cx-ma-grid { grid-template-columns: 1fr; }
	.cx-svc { grid-template-columns: repeat(2, 1fr); }
	.cx-svc article:not(:nth-child(3n+1)) { padding-left: 0; border-left: 0; }
	.cx-svc article:nth-child(2n) { padding-left: 30px; border-left: 1px solid var(--line); }
	.cx-cta { grid-template-columns: 1fr; }
	.cx-foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
	.cx-visual { min-height: 360px; }
	.cx-hero-right .cx-visual { min-height: 240px; }
	.cx-hero-right .cx-visual .cx-slice { width: 92%; right: -14%; }
	.cx-tag { top: 14px; left: 14px; font-size: 10px; letter-spacing: .16em; }
	.cx-chip-hours { left: 14px; right: 14px; bottom: 14px; }
	.cx-chip-rating { left: 14px; top: 14px; }
	.cx-help, .cx-stats, .cx-svc { grid-template-columns: 1fr; }
	.cx-help-item, .cx-help-item + .cx-help-item { padding: 24px 0; border-left: 0; }
	.cx-help-item + .cx-help-item { border-top: 1px solid var(--line); }
	.cx-svc article, .cx-svc article:nth-child(2n) { padding: 28px 0; border-left: 0; }
	.cx-head2 { grid-template-columns: 1fr; }
	.cx-fact b { font-size: 19px; white-space: nowrap; }
	.cx-fact span { font-size: 12px; }
	.cx-foot { grid-template-columns: 1fr; }
	.cx-btn, .btn { white-space: normal; }
	.cx-hero .cx-actions .cx-btn { width: 100%; justify-content: space-between; }
	.cta-banner::before { width: 300px; height: 300px; right: -120px; top: -140px; }
}

.btn, .cx-btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after, .cx-btn::after {
	content: ""; position: absolute; inset: -2px; z-index: -1; pointer-events: none;
	background: linear-gradient(115deg, transparent 30%, rgba(255,214,120,.55) 48%, rgba(255,255,255,.35) 52%, transparent 70%);
	transform: translateX(-130%);
	transition: transform .75s cubic-bezier(.2,.7,.2,1);
}
.btn:hover::after, .cx-btn:hover::after, .btn:focus-visible::after, .cx-btn:focus-visible::after { transform: translateX(130%); }
.cx-btn i { transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.cx-btn:hover i { transform: translateX(4px); }

.cx-pills span { transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .15s, color .15s, border-color .15s, box-shadow .25s; }
.cx-pills span:hover { transform: translateY(-3px) scale(1.06) rotate(-1.5deg); box-shadow: 0 10px 20px -12px rgba(31,43,36,.6); }
.cx-pills span:nth-child(even):hover { transform: translateY(-3px) scale(1.06) rotate(1.5deg); }

@keyframes cx-bounce {
	0% { transform: none; }
	35% { transform: translateY(-7px) rotate(-12deg) scale(1.08); }
	60% { transform: translateY(1px) rotate(-6deg) scale(.98); }
	100% { transform: rotate(-8deg); }
}
.cx-svc article:hover .cx-ico, .cx-help-item:hover .cx-ico { animation: cx-bounce .6s cubic-bezier(.3,.7,.3,1) forwards; background: var(--orange); color: #fff; }
.cx-svc article:hover .cx-ico { transform: rotate(-8deg); }

.cx-pre { opacity: 0; transform: translateY(26px); }
.cx-pre.cx-in { opacity: 1; transform: none; transition: opacity .8s ease var(--d, 0ms), transform .8s cubic-bezier(.2,.7,.2,1) var(--d, 0ms); }

.cx-hero { position: relative; }
.cx-hero > .cx-hero-copy, .cx-hero > .cx-hero-right { position: relative; z-index: 1; }
.cx-confetti { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.cx-hero-right > .cx-visual, .cx-hero-right > .cx-hero-review { position: relative; z-index: 1; }
.cx-canopy {
	position: relative; z-index: 0; height: 250px;
	margin: 0 -4% -120px -20%;
	-webkit-mask-image: radial-gradient(closest-side at 55% 48%, #000 42%, rgba(0,0,0,.55) 68%, transparent 100%);
	mask-image: radial-gradient(closest-side at 55% 48%, #000 42%, rgba(0,0,0,.55) 68%, transparent 100%);
	pointer-events: none;
}
.cx-canopy img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center top; opacity: .92; }
.cx-hero[data-weather="cloudy"] .cx-canopy img { filter: saturate(.8) brightness(.98); object-position: left center; }
.cx-hero[data-fx="rain"] .cx-canopy img { opacity: .85; }

.cx-fall { position: absolute; top: 4%; display: block; opacity: 0; animation: cx-fall var(--t) linear var(--d) infinite; }
.cx-fall i { display: block; width: 15px; height: 8px; background: var(--leaf); border-radius: 0 100% 0 100%; animation: cx-sway var(--s) ease-in-out infinite alternate; }
.cx-fall.f1 { left: 23.8%; --t: 12.8s; --d: -7.5s; --s: 2.3s; }
.cx-fall.f2 { left: 77.7%; --t: 9.3s; --d: -2.1s; --s: 3.0s; }
.cx-fall.f3 { left: 93.3%; --t: 11.5s; --d: -6.2s; --s: 3.0s; }
.cx-fall.f4 { left: 64.9%; --t: 13.1s; --d: -1.4s; --s: 3.0s; }
.cx-fall.f5 { left: 30.1%; --t: 9.6s; --d: -6.8s; --s: 3.0s; }
.cx-fall.f6 { left: 60.9%; --t: 12.0s; --d: -6.4s; --s: 3.3s; }
.cx-fall.f7 { left: 98.4%; --t: 14.5s; --d: -5.2s; --s: 2.5s; }
.cx-fall.f8 { left: 89.2%; --t: 13.7s; --d: -1.1s; --s: 2.6s; }
.cx-fall.f9 { left: 26.8%; --t: 11.1s; --d: -5.0s; --s: 3.1s; }
.cx-fall.f10 { left: 80.4%; --t: 12.1s; --d: -2.0s; --s: 2.7s; }
.cx-fall.f11 { left: 57.5%; --t: 11.5s; --d: -11.1s; --s: 2.3s; }
.cx-fall.f12 { left: 69.1%; --t: 13.7s; --d: -11.2s; --s: 2.7s; }
.cx-fall.f13 { left: 34.8%; --t: 12.0s; --d: -9.6s; --s: 2.3s; }
.cx-fall.f14 { left: 0.4%; --t: 10.6s; --d: -7.4s; --s: 2.3s; }
.cx-fall.f15 { left: 40.1%; --t: 10.9s; --d: -6.3s; --s: 3.2s; }
.cx-fall.f16 { left: 47.7%; --t: 13.3s; --d: -11.8s; --s: 2.7s; }
.cx-fall.f17 { left: 15.4%; --t: 11.1s; --d: -6.8s; --s: 2.9s; }
.cx-fall.f18 { left: 72.4%; --t: 10.7s; --d: -7.9s; --s: 2.8s; }
.cx-fall.f19 { left: 11.1%; --t: 12.0s; --d: -2.0s; --s: 2.8s; }
.cx-fall.f20 { left: 5.1%; --t: 9.8s; --d: -4.2s; --s: 3.0s; }
.cx-fall.f21 { left: 86.4%; --t: 14.9s; --d: -10.2s; --s: 2.7s; }
.cx-fall.f22 { left: 51.4%; --t: 9.5s; --d: -1.4s; --s: 3.1s; }
.cx-fall.f23 { left: 17.0%; --t: 14.0s; --d: -2.6s; --s: 2.6s; }
.cx-fall.f24 { left: 42.7%; --t: 12.2s; --d: -7.4s; --s: 2.6s; }
.cx-fall:nth-child(n+15) { display: none; }                    
.cx-fall:nth-child(3n) i { width: 11px; height: 6px; }
.cx-fall:nth-child(4n) i { width: 13px; height: 7px; }

.cx-hero[data-fx="rain"] .cx-fall { display: block; animation-duration: calc(var(--t) * .13); animation-delay: calc(var(--d) * .13); }
.cx-hero[data-fx="rain"] .cx-fall i { width: 2px; height: 20px; border-radius: 2px; background: linear-gradient(transparent, rgba(92,128,160,.75)); transform: rotate(10deg); animation: none; }

.cx-hero[data-fx="snow"] .cx-fall { display: block; animation-duration: calc(var(--t) * .9); }
.cx-hero[data-fx="snow"] .cx-fall i { width: 11px; height: 11px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #FFFFFF, #DCE7F2 70%, #C3D3E4); box-shadow: 0 1px 5px rgba(90,120,150,.35); }
.cx-hero[data-fx="snow"] .cx-fall:nth-child(3n) i { width: 7px; height: 7px; }

@keyframes cx-fall {
	0%   { top: 4%;  opacity: 0; }
	8%   { opacity: .95; }
	45%  { opacity: .85; }
	100% { top: 94%; opacity: 0; }
}
@keyframes cx-sway {
	0%   { transform: translateX(-16px) rotate(-40deg); }
	100% { transform: translateX(16px) rotate(35deg); }
}

.cx-ticker-track span::after {
	width: 15px; height: 15px; margin-left: 56px; border-radius: 50%;
	background:
		radial-gradient(circle closest-side, #FFF3E4 0 14%, transparent 16% 76%, #FFF3E4 78% 88%, #FFA24C 90%),
		repeating-conic-gradient(#FFA53A 0 50deg, #FFF3E4 50deg 60deg);
	animation: cx-spin 9s linear infinite;
}

.cx-scribble { position: relative; display: inline-block; }
.cx-scribble svg { position: absolute; left: -3%; width: 104%; height: .26em; bottom: -.06em; display: block; max-width: none; overflow: visible; }
.cx-scribble path { fill: none; stroke: var(--zest); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: cx-draw 1.1s .75s cubic-bezier(.6,0,.2,1) forwards; }
@keyframes cx-draw { to { stroke-dashoffset: 0; } }

.cx-hero-right .cx-visual {
	transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
	transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s;
}
.cx-hero-right .cx-visual.cx-tilting { transition-duration: .15s; box-shadow: 0 30px 50px -30px rgba(200,65,10,.55); }
.cx-hero-right .cx-visual::before {
	content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
	background: radial-gradient(circle at calc(50% + var(--mx, 0) * 100%) calc(50% + var(--my, 0) * 100%), rgba(255,255,255,.22), transparent 45%);
	opacity: 0; transition: opacity .4s;
}
.cx-hero-right .cx-visual.cx-tilting::before { opacity: 1; }
.cx-hero-right .cx-visual .cx-chip, .cx-hero-right .cx-visual .cx-tag { translate: calc(var(--mx, 0) * -14px) calc(var(--my, 0) * -10px); transition: translate .35s cubic-bezier(.2,.7,.2,1); }
.cx-hero-right .cx-visual .cx-slice { translate: calc(var(--mx, 0) * 16px) calc(50% + var(--my, 0) * 12px); transition: translate .35s cubic-bezier(.2,.7,.2,1); }

@media (max-width: 1020px) {
	.cx-confetti { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.btn::after, .cx-btn::after { display: none; }
		.cx-scribble path { stroke-dashoffset: 0; }
	.cx-pills span:hover, .cx-pills span:nth-child(even):hover { transform: none; }
	.cx-svc article:hover .cx-ico, .cx-help-item:hover .cx-ico { animation: none; }
	.cx-hero-right .cx-visual { transform: none; }
}

section.cx-faq { border-top: 1px solid var(--line); }
.cx-faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.cx-faq-head { position: sticky; top: 110px; }
.cx-faq-head h2 { font-size: clamp(38px, 5vw, 64px); margin: 18px 0 18px; }
.cx-faq-head p { color: var(--muted); max-width: 32ch; }
.cx-faq-head a { color: var(--orange-deep); font-weight: 700; white-space: nowrap; }
.cx-faq-list { border-top: 1px solid var(--line); }
.cx-faq-list details { border-bottom: 1px solid var(--line); }
.cx-faq-list summary {
	list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 22px 0; font-size: 18px; font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.cx-faq-list summary::-webkit-details-marker { display: none; }
.cx-faq-list summary:hover { color: var(--orange-deep); }
.cx-faq-icon { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line-2); transition: background .2s, border-color .2s, transform .3s cubic-bezier(.34,1.56,.64,1); }
.cx-faq-icon::before, .cx-faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink); border-radius: 2px; translate: -50% -50%; transition: transform .3s, background .2s; }
.cx-faq-icon::after { transform: rotate(90deg); }
.cx-faq-list details[open] .cx-faq-icon { background: var(--orange); border-color: var(--orange); transform: rotate(180deg); }
.cx-faq-list details[open] .cx-faq-icon::before, .cx-faq-list details[open] .cx-faq-icon::after { background: #fff; }
.cx-faq-list details[open] .cx-faq-icon::after { transform: rotate(0deg); }
.cx-faq-list details p { margin: 0 0 24px; max-width: 62ch; color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.cx-faq-list details[open] p { animation: cx-rise .45s cubic-bezier(.2,.7,.2,1) both; }
@media (max-width: 1020px) {
	.cx-faq-grid { grid-template-columns: 1fr; }
	.cx-faq-head { position: static; }
}
@media (max-width: 620px) {
	.cx-faq-list summary { font-size: 16.5px; padding: 18px 0; }
}
@media (max-width: 1020px) {
	.cx-canopy { height: 190px; margin: 0 0 -90px; }
	.cx-hero { overflow-x: clip; }
}

.cx-more, .cx-dock { display: none; }

@media (max-width: 760px) {

	.cx-dock {
		display: grid; grid-template-columns: 1fr 1fr 1.25fr 1fr; gap: 6px;
		position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); z-index: 80; width: auto; margin: 0;
		padding: 6px; border-radius: 20px;
		background: rgba(31,43,36,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
		box-shadow: 0 18px 40px -16px rgba(31,43,36,.6);
	}
	.cx-dock a { display: grid; justify-items: center; gap: 3px; padding: 9px 4px 8px; border-radius: 14px; color: #FBF8F3; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; text-decoration: none; }
	.cx-dock a i { font-size: 16px; color: var(--zest); }
	.cx-dock a:active { background: rgba(255,255,255,.08); }
	.cx-dock a.cx-dock-main { background: var(--orange); }
	.cx-dock a.cx-dock-main i { color: #fff; }
	body { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 620px) {
	section.cx-sec { padding: 56px 0; }
	.cx-head2 { margin-bottom: 26px; gap: 10px; }
	.cx-head2 h2, .cx-ma h2, .cx-faq-head h2 { font-size: 36px; }
	.cx-head2 p { font-size: 15px; }

	.cx-hero { padding: 20px 0 28px; gap: 22px; }
	.cx-hero-copy { gap: 18px; }
	.cx-hero h1 { font-size: 44px; }
	.cx-lead { font-size: 15.5px; }
	.cx-meta { display: none; }
	.cx-hero-copy > .cx-label { display: none; }            
	.cx-hero .cx-actions { gap: 10px; }
	.cx-hero .cx-actions .cx-btn { padding: 15px 18px; }
	.cx-canopy {
		height: 150px; margin: -6px 0 -60px;
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 55%, transparent 100%), linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
		-webkit-mask-composite: source-in;
		mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 55%, transparent 100%), linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
		mask-composite: intersect;
	}
	.cx-hero-right .cx-visual { min-height: 200px; }
	.cx-hero-right { gap: 12px; }
	.cx-chip-hours { max-width: none; padding: 12px 14px; }
	.cx-chip b { font-size: 16px; }
	.cx-tag { padding: 7px 11px; }
	.cx-hero-review { padding: 18px; }
	.cx-hero-review .cx-review-head { flex-wrap: wrap; gap: 10px 12px; }
	.cx-hero-review .cx-review-head small { display: none; }
	.cx-hero-review .cx-review-head .overall { margin-left: auto; font-size: 12.5px; }
	.cx-hero-review .cx-review-head .overall br { display: none; }
	.cx-hero-review #googleSnippet, .cx-hero-review #googleSnippet .review-text { font-size: 17px; }
	.cx-hero-review .cx-review-body { min-height: 0; }

	.cx-help { grid-template-columns: 1fr 1fr; gap: 10px; border-top: 0; }
	.cx-help-item, .cx-help-item + .cx-help-item, .cx-help-item:nth-child(3), .cx-help-item:nth-child(n+3) {
		padding: 16px; border: 1px solid var(--line); border-radius: 18px; gap: 6px; background: #fff;
	}
	.cx-help-item .cx-ico { width: 38px; height: 38px; font-size: 15px; border-radius: 12px; }
	.cx-help-item b { font-size: 15px; margin-top: 4px; line-height: 1.25; }
	.cx-help-item span { font-size: 13px; line-height: 1.4; }

	.cx-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
	.cx-stat { padding: 16px; border-radius: 18px; }
	.cx-stat .n { font-size: 27px; }
	.cx-stat p { font-size: 12.5px; margin-top: 6px; line-height: 1.35; }

	.cx-visit-grid, .cx-side { gap: 12px; }
	.cx-panel { padding: 20px; border-radius: 22px; }
	.cx-now { font-size: 30px; margin-top: 16px; }
	.cx-week { margin-top: 18px; }
	.cx-row { padding: 12px; font-size: 14.5px; }
	.cx-addr h3 { font-size: 20px; }

	.cx-ma-grid { gap: 28px; }
	.cx-ma-copy p { margin-bottom: 20px; }
	.cx-ma .cx-actions .cx-btn { flex: 1; justify-content: center; }
	.cx-facts { margin-top: 26px; }
	.cx-pills { gap: 6px; }
	.cx-pills span { padding: 7px 11px; font-size: 13px; }
	.cx-pills:not(.open) span:nth-child(n+13) { display: none; }
	.cx-more {
		display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
		background: none; border: 1.5px solid var(--peel-2); border-radius: 99px; padding: 9px 16px;
		font: 700 13.5px var(--sans); color: var(--orange-deep); cursor: pointer;
	}
	.cx-more[aria-expanded="true"] i { transform: rotate(180deg); }
	.cx-ma .cx-slice { width: 340px; left: -170px; bottom: -170px; }

	.cx-svc, .cx-svc article, .cx-svc article:nth-child(2n) { border-left: 0; }
	.cx-svc article, .cx-svc article:nth-child(2n), .cx-svc article:not(:nth-child(3n+1)) {
		grid-template-columns: 42px 1fr; column-gap: 14px; row-gap: 4px; padding: 18px 0;
	}
	.cx-svc .cx-ico { grid-row: span 2; width: 42px; height: 42px; font-size: 16px; }
	.cx-svc h3 { margin: 0; font-size: 17px; align-self: end; }
	.cx-svc p { font-size: 14px; }

	.cx-faq-grid { gap: 22px; }

	.cx-cta { padding: 32px 22px; gap: 24px; border-radius: 26px; }
	.cx-cta h2 { font-size: 34px; }
	.cx-cta .cx-slice { width: 170px; right: -70px; top: -70px; }
	.cx-cta h2 { padding-top: 24px; }

	footer.cx-footer { margin-top: 56px; padding-top: 44px; }
	.cx-foot { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
	.cx-foot > div:first-child, .cx-foot > div:last-child { grid-column: 1 / -1; }
	.cx-foot p { margin: 12px 0; }
	.cx-foot ul { gap: 8px; font-size: 14px; }
	.cx-foot-bottom { margin-top: 32px; flex-direction: column; gap: 4px; }
}

.cx-canopy { display: none !important; }

@media (max-width: 620px) {
	.cx-hero .cx-actions { flex-wrap: nowrap; gap: 8px; }
	.cx-hero .cx-actions .cx-btn { flex: 1 1 0; width: auto; min-width: 0; justify-content: center; gap: 8px; padding: 15px 10px; font-size: 14.5px; white-space: nowrap; }
	.cx-hero .cx-actions .cx-long { display: none; }
}
@media (max-width: 360px) {
	.cx-hero .cx-actions .cx-btn { font-size: 13.5px; padding: 14px 8px; }
	.cx-hero .cx-actions .cx-btn i { display: none; }
}

.appt-hero, .ma-page-hero, .services-page-hero { position: relative; margin-top: 40px; }

.appt-hero::before {
	content: ""; position: absolute; z-index: -1; left: 50%; top: -40px; width: 100vw; height: 360px; translate: -50% 0;
	background: linear-gradient(var(--peel), rgba(255,238,226,0));
	pointer-events: none;
}
.appt-hero .hero-card {
	position: relative; isolation: isolate; overflow: hidden;
	width: 100%; max-width: 1040px; margin: 0 auto;
	background: #fff; border: 1px solid var(--line); border-radius: 32px;
	padding: clamp(24px, 5vw, 56px);
	box-shadow: 0 40px 80px -50px rgba(60,35,15,.35), 0 2px 6px rgba(60,35,15,.04);
}
.appt-hero .hero-card .lead { max-width: 60ch; }

.ma-page-hero .hero-card, .services-page-hero .hero-card {
	position: relative; isolation: isolate; overflow: hidden;
	background: var(--peel); border-radius: 32px;
	padding: clamp(28px, 5.5vw, 64px);
}
.ma-page-hero .hero-card .chip.feature, .services-page-hero .hero-card .chip.feature { border-color: var(--peel-2); }
.ma-page-hero .hero-card .chip.feature:nth-child(even), .services-page-hero .hero-card .chip.feature:nth-child(even) { border-left-color: var(--peel-2); }

.appt-hero .hero-card::after, .ma-page-hero .hero-card::after, .services-page-hero .hero-card::after {
	content: ""; position: absolute; z-index: -1; pointer-events: none;
	width: 240px; height: 240px; right: -90px; top: -90px; border-radius: 50%;
	background:
		radial-gradient(circle closest-side, #FFF3E4 0 5%, transparent 5.5% 84%, #FFF3E4 84.5% 91%, #FFA24C 91.5% 100%),
		repeating-conic-gradient(#FFA53A 0 33deg, #FFF3E4 33deg 36deg);
	animation: cx-spin 90s linear infinite;
}
.appt-hero .hero-card::after { opacity: .9; }
.ma-page-hero .hero-card::after, .services-page-hero .hero-card::after { width: 230px; height: 230px; right: -85px; top: -85px; bottom: auto; opacity: .6; }

@media (max-width: 760px) {
	.appt-hero, .ma-page-hero, .services-page-hero { margin-top: 20px; }
	.appt-hero .hero-card, .ma-page-hero .hero-card, .services-page-hero .hero-card { border-radius: 24px; padding: 24px 20px; }
	.appt-hero .hero-card::after { width: 130px; height: 130px; right: -55px; top: -55px; }
	.ma-page-hero .hero-card::after, .services-page-hero .hero-card::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.appt-hero .hero-card::after, .ma-page-hero .hero-card::after, .services-page-hero .hero-card::after { animation: none; }
}

.cx-hero[data-fx="petals"] .cx-fall:nth-child(-n+18) { display: block; }
.cx-hero[data-fx="petals"] .cx-fall { animation-duration: calc(var(--t) * 1.1); }
.cx-hero[data-fx="petals"] .cx-fall i {
	width: 12px; height: 10px; border-radius: 60% 0 60% 50%;
	background: linear-gradient(135deg, #FFE4EC 0%, #FFB3C7 55%, #F28AA8 100%);
	box-shadow: 0 1px 4px rgba(200,90,120,.35);
	animation-name: cx-flutter;
}
.cx-hero[data-fx="petals"] .cx-fall:nth-child(3n) i { width: 9px; height: 8px; }
.cx-hero[data-fx="petals"] .cx-fall:nth-child(4n) i { background: linear-gradient(135deg, #FFFFFF, #FFF1E0 60%, #FFE1C2); }  
@keyframes cx-flutter {
	0%   { transform: translateX(-18px) rotate(-60deg) scaleX(1); }
	50%  { transform: translateX(0) rotate(20deg) scaleX(.55); }
	100% { transform: translateX(18px) rotate(90deg) scaleX(1); }
}

.cx-hero[data-fx="autumn"] .cx-fall:nth-child(-n+20) { display: block; }
.cx-hero[data-fx="autumn"] .cx-fall i {
	width: 17px; height: 10px; border-radius: 0 100% 0 100%;
	background: #E8742C; animation-name: cx-tumble;
}
.cx-hero[data-fx="autumn"] .cx-fall:nth-child(4n+1) i { background: #C2410C; }
.cx-hero[data-fx="autumn"] .cx-fall:nth-child(4n+2) i { background: #E0A21C; width: 14px; height: 9px; }
.cx-hero[data-fx="autumn"] .cx-fall:nth-child(4n+3) i { background: #9A5226; width: 15px; height: 9px; }
.cx-hero[data-fx="autumn"] .cx-fall:nth-child(5n) i { background: #F2B43A; width: 12px; height: 7px; }
@keyframes cx-tumble {
	0%   { transform: translateX(-20px) rotate(-50deg) rotateX(0deg); }
	50%  { transform: translateX(4px) rotate(120deg) rotateX(60deg); }
	100% { transform: translateX(20px) rotate(250deg) rotateX(0deg); }
}

.cx-season-preview {
	position: fixed; z-index: 90; left: 50%; top: 88px; translate: -50% 0;
	background: var(--ink); color: var(--paper); padding: 8px 16px; border-radius: 99px;
	font-size: 13px; box-shadow: 0 12px 30px -12px rgba(31,43,36,.6);
}
.cx-season-preview a { color: var(--zest); font-weight: 700; margin-left: 4px; }
@media (max-width: 760px) { .cx-season-preview { top: auto; bottom: calc(96px + env(safe-area-inset-bottom, 0px)); font-size: 12px; white-space: nowrap; } }

html, body { overflow-x: clip; }
.cx-confetti { left: calc(50% - 50vw); right: auto; width: 100vw; }
@media (max-width: 1020px) {
	.cx-confetti { display: block; }
	.cx-hero { overflow-x: visible; }
	.cx-fall:nth-child(n+11) { display: none !important; }        
}

.cx-crumbs { width: var(--container); margin: 28px auto -12px; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
.cx-crumbs a { color: var(--ink-2); font-weight: 600; }
.cx-crumbs a:hover { color: var(--orange); }
.cx-crumbs b { color: var(--ink); font-weight: 700; }
.cx-crumbs span { opacity: .5; }

.cx-city-facts .cx-stats { margin-top: 0; }
.cx-city-areas .cx-pills span i { color: var(--orange); }
.cx-city-more .cx-svc h3 a { color: inherit; }
.cx-city-more .cx-svc h3 a:hover { color: var(--orange); }
section.cx-city-faq { width: var(--container); margin: 80px auto 0; padding: 0; border-top: 0; }

.cx-link-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cx-link-pills a {
	display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 99px;
	background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: 14.5px; color: var(--ink);
	transition: transform .2s cubic-bezier(.34,1.56,.64,1), border-color .2s, background .2s, color .2s;
}
.cx-link-pills a i { font-size: 11px; color: var(--orange); }
.cx-link-pills a:hover { transform: translateY(-2px); border-color: var(--ink); }
.cx-link-pills a.cx-all { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cx-link-pills a.cx-all i { color: var(--zest); }

.cx-area-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.cx-area-card {
	position: relative; display: grid; gap: 4px; padding: 20px 48px 20px 22px; border-radius: 20px;
	background: #fff; border: 1px solid var(--line);
	transition: transform .25s cubic-bezier(.34,1.56,.64,1), border-color .2s, box-shadow .25s;
}
.cx-area-card b { font-size: 18px; letter-spacing: -.02em; color: var(--ink); }
.cx-area-card span { font-size: 13px; color: var(--muted); }
.cx-area-card i { position: absolute; right: 20px; top: 50%; translate: 0 -50%; color: var(--orange); transition: transform .2s; }
.cx-area-card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: 0 18px 36px -24px rgba(60,35,15,.35); }
.cx-area-card:hover i { transform: translateX(4px); }
.cx-area-ask { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px 32px; border-radius: 26px; background: var(--peel); }
.cx-area-ask h3 { font-size: 22px; margin-bottom: 6px; }
.cx-area-ask p { color: var(--ink-2); max-width: 56ch; }

@media (max-width: 620px) {
	.cx-crumbs { margin: 18px auto -6px; font-size: 12px; }
	section.cx-city-faq { margin-top: 56px; }
	.cx-area-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
	.cx-area-card { padding: 14px 30px 14px 14px; border-radius: 16px; }
	.cx-area-card b { font-size: 15.5px; }
	.cx-area-card span { font-size: 11.5px; }
	.cx-area-card i { right: 12px; font-size: 12px; }
	.cx-area-ask { padding: 22px 20px; }
}

.cx-foot-areas { width: var(--container); margin: 40px auto 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: 13.5px; color: var(--muted); }
.cx-foot-areas span { font-weight: 700; color: var(--ink-2); margin-right: 4px; }
.cx-foot-areas a { color: var(--ink-2); font-weight: 600; }
.cx-foot-areas a:hover, .cx-foot-areas a.all { color: var(--orange-deep); }
.area-list li a { color: inherit; text-decoration: underline; text-decoration-color: var(--peel-2); text-underline-offset: 3px; }
.area-list li a:hover { color: var(--orange); }
@media (max-width: 620px) { .cx-foot-areas { margin-top: 28px; font-size: 13px; } }

.cx-hero-copy > * { position: relative; z-index: 1; }
.cx-hero .cx-btn-ghost { background: var(--paper); }
.cx-hero .cx-btn-ghost:hover { background: #fff; }
.cx-scribble svg { z-index: 1; }

#googleSnippet, #googleSnippet .review-text,
.cx-hero-review #googleSnippet, .cx-hero-review #googleSnippet .review-text {
	font-family: var(--sans); font-style: normal; font-size: 16px; line-height: 1.6; letter-spacing: -.005em; color: var(--ink-2);
}
.cx-hero-review .cx-review-body { min-height: 104px; }
@media (max-width: 620px) {
	#googleSnippet, #googleSnippet .review-text, .cx-hero-review #googleSnippet, .cx-hero-review #googleSnippet .review-text { font-size: 15px; }
}

.tier-note { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }

.cx-ma .cx-slice.cx-real { opacity: .92; }

.cta-banner::before,
.appt-hero .hero-card::after,
.ma-page-hero .hero-card::after,
.services-page-hero .hero-card::after {
	background: url("/art.php?f=orange-slice") center / contain no-repeat;
}
.cta-banner::before { opacity: 1; }
.appt-hero .hero-card::after { opacity: 1; }
.ma-page-hero .hero-card::after, .services-page-hero .hero-card::after { opacity: .92; }

.hero-card.has-photo { padding-right: calc(47% + 24px); min-height: 460px; }
.hero-card.has-photo::after { display: none; }                  
.cx-hero-photo {
	position: absolute; top: 20px; right: 20px; bottom: 20px; width: 45%; margin: 0;
	border-radius: 24px; overflow: hidden; background: var(--peel-2);
}
.cx-hero-photo img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; }

.cx-card-photo { margin: 24px 0 8px; height: 330px; border-radius: 22px; overflow: hidden; background: var(--peel); }
.cx-card-photo img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 16%; }

section.cx-life { width: auto; margin: 0; padding: 0 0 clamp(56px, 8vw, 100px); }
.cx-life-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 420px; display: flex; align-items: center; background: var(--paper-2); }
.cx-life-card img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 70% center; }
.cx-life-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(251,248,243,.96) 0%, rgba(251,248,243,.88) 30%, rgba(251,248,243,0) 58%); }
.cx-life-copy { position: relative; z-index: 2; max-width: 420px; padding: clamp(28px, 5vw, 56px); display: grid; gap: 14px; justify-items: start; }
.cx-life-copy h2 { font-size: clamp(38px, 5vw, 60px); margin: 4px 0 0; }
.cx-life-copy p { margin: 0; color: var(--ink-2); max-width: 34ch; }

@media (max-width: 1020px) {
	.hero-card.has-photo { padding-right: clamp(28px, 5.5vw, 64px); min-height: 0; }
	.cx-hero-photo { position: static; width: auto; height: 300px; margin: 0 0 24px; }
}
@media (max-width: 620px) {
	.cx-hero-photo { height: 220px; border-radius: 18px; margin-bottom: 18px; }
	.hero-card.has-photo { padding: 16px 16px 24px; }
	.hero-card.has-photo > :not(.cx-hero-photo) { margin-left: 4px; margin-right: 4px; }
	.cx-card-photo { height: 190px; border-radius: 16px; }
	.cx-life-card { display: block; min-height: 0; }
	.cx-life-card img { position: static; height: 220px; object-position: 78% center; }
	.cx-life-card::before { display: none; }
	.cx-life-copy { max-width: none; padding: 22px 20px 26px; }
	.cx-life-copy h2 { font-size: 36px; }
}

@media (max-width: 620px) {
	.cx-more {
		background: #fff; border: 1px solid var(--peel-2); color: var(--ink);
		box-shadow: 0 8px 18px -12px rgba(60,35,15,.45);
		padding: 10px 16px 10px 18px; font-size: 14px;
	}
	.cx-more i { color: var(--orange); font-size: 12px; transition: transform .25s; }
	.cx-ma .cx-slice { width: 180px; left: auto; right: -64px; bottom: auto; top: -56px; }
}

.cx-ma .cx-slice { width: 520px; left: -260px; right: auto; bottom: -260px; top: auto; }
@media (max-width: 1020px) and (min-width: 621px) {
	.cx-ma .cx-slice { display: none; }
}
@media (max-width: 620px) {
	.cx-ma .cx-slice { width: 180px; left: auto; right: -64px; bottom: auto; top: -56px; }
}
@media (max-width: 360px) {
	.cx-ma .cx-slice { display: none; }
}

@media (min-width: 621px) {
	.cx-ma .cx-facts {
		position: relative; z-index: 1;
		background: rgba(255, 255, 255, .62);
		-webkit-backdrop-filter: blur(10px) saturate(1.1); backdrop-filter: blur(10px) saturate(1.1);
		border: 1px solid rgba(255, 255, 255, .8); border-radius: 18px;
		box-shadow: 0 10px 30px -18px rgba(120, 60, 20, .35);
		padding: 2px 20px 16px;
	}
	.cx-ma .cx-facts .cx-fact + .cx-fact { border-left-color: rgba(200, 150, 110, .25); }
	.cx-ma .cx-actions .cx-btn-ghost { background: #fff; }
	.cx-ma .cx-fact b { white-space: nowrap; }
}
@media (min-width: 1100px) {
	.cx-ma .cx-facts { grid-template-columns: repeat(3, auto); justify-content: space-between; }
	.cx-ma .cx-fact span { white-space: nowrap; }
}
@media (min-width: 1021px) and (max-width: 1099px) {
	.cx-ma .cx-facts { grid-template-columns: repeat(3, auto); justify-content: space-between; padding-left: 16px; padding-right: 16px; }
	.cx-ma .cx-fact span { white-space: nowrap; font-size: 12px; }
}

.cx-backdrop {
	position: absolute; z-index: 0; pointer-events: none;
	top: 0; left: calc(50% - 50vw); width: 100vw; height: 100%;
	background-repeat: no-repeat; background-position: left top; background-size: auto 100%;
	opacity: .24;
	-webkit-mask-image: linear-gradient(to right, #000 0%, #000 22%, transparent 66%), linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.12) 8%, rgba(0,0,0,.5) 18%, #000 34%, #000 58%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image: linear-gradient(to right, #000 0%, #000 22%, transparent 66%), linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.12) 8%, rgba(0,0,0,.5) 18%, #000 34%, #000 58%, transparent 100%);
	mask-composite: intersect;
}
.cx-hero[data-season="winter"] .cx-backdrop { opacity: .2; }
@media (max-width: 1020px) {
	.cx-backdrop { height: 520px; opacity: .22; }
}
@media (max-width: 620px) {
	.cx-backdrop {
		height: 440px; opacity: .2;
		-webkit-mask-image: linear-gradient(to right, #000 0%, #000 40%, transparent 95%), linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.12) 8%, rgba(0,0,0,.5) 18%, #000 32%, #000 48%, transparent 100%);
		mask-image: linear-gradient(to right, #000 0%, #000 40%, transparent 95%), linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.12) 8%, rgba(0,0,0,.5) 18%, #000 32%, #000 48%, transparent 100%);
	}
}

.cx-hero[data-fx="petals"] .cx-fall i {
	background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #FFF8EC 55%, #F4E4C6 100%);
	box-shadow: 0 1px 4px rgba(150, 110, 60, .35);
}
.cx-hero[data-fx="petals"] .cx-fall:nth-child(4n) i { background: radial-gradient(circle at 35% 35%, #FFFFFF, #FFF3DA 60%, #F6D9A8); }
@media (prefers-reduced-motion: reduce) { .cx-backdrop { transition: none; } }
