/* ═══════════════════════════════════════════════════════════════
   FCPE · FINAL POLISH LAYER  (10 moves, 2026-04-24)
   Loaded after site.css so it wins specificity ties. Scoped where
   possible. Nothing here overrides hero layout or header chrome.
   ═══════════════════════════════════════════════════════════════ */

:root {
	--fcpe-gold: #D4AF37;
	--fcpe-charcoal: #1B1C1E;
	--fcpe-cream: #F5F1E8;
	--fcpe-paper: #FAF7ED;
	--fcpe-ink: #1B1C1E;
	--fcpe-ink-soft: #3A3A3C;
	--fcpe-hairline: rgba(212, 175, 55, 0.28);
}

/* ─── MOVE 2: STICKY CONCIERGE BAR ──────────────────────────── */

.fcpe-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background: var(--fcpe-charcoal);
	border-top: 1px solid var(--fcpe-gold);
	padding: 12px 16px 14px;
	transform: translate3d(0, 110%, 0);
	transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
	pointer-events: none;
}
.fcpe-sticky--show {
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
}
.fcpe-sticky__inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}
.fcpe-sticky__phone {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: var(--fcpe-cream);
	padding: 10px 12px;
}
.fcpe-sticky__phone-label {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.32em;
	color: var(--fcpe-gold);
}
.fcpe-sticky__phone-num {
	font-family: 'Coldiac', Georgia, serif;
	font-size: 16px;
	margin-top: 2px;
	color: var(--fcpe-cream);
}
.fcpe-sticky__cta {
	flex: 1 1 50%;
	text-align: center;
	background: var(--fcpe-gold);
	color: var(--fcpe-charcoal);
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.22em;
	padding: 14px 16px;
	text-decoration: none;
	border: 1px solid var(--fcpe-gold);
	transition: background 220ms ease-out, color 220ms ease-out;
}
.fcpe-sticky__cta:hover,
.fcpe-sticky__cta:focus-visible {
	background: transparent;
	color: var(--fcpe-gold);
}
.fcpe-sticky__dismiss {
	position: absolute;
	right: -4px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: rgba(245, 241, 232, 0.6);
	font-size: 22px;
	line-height: 1;
	padding: 6px 10px;
	cursor: pointer;
}
.fcpe-sticky__dismiss:hover { color: var(--fcpe-gold); }

@media (min-width: 768px) {
	.fcpe-sticky__inner { justify-content: space-between; }
	.fcpe-sticky__phone  { flex: 0 0 auto; align-items: flex-start; }
	.fcpe-sticky__cta    { flex: 0 0 auto; min-width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
	.fcpe-sticky { transition: none; }
}

/* ─── MOVE 3: VIEW TRANSITIONS  ─────────────────────────────── */

@keyframes fcpe-fade-out { to { opacity: 0; transform: translateY(-4px); } }
@keyframes fcpe-fade-in  { from { opacity: 0; transform: translateY(4px); } }

::view-transition-old(root),
::view-transition-new(root) {
	animation-duration: 600ms;
	animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
	animation-fill-mode: both;
}
::view-transition-old(root) { animation-name: fcpe-fade-out; }
::view-transition-new(root) { animation-name: fcpe-fade-in; }

@media (prefers-reduced-motion: reduce) {
	::view-transition-old(root),
	::view-transition-new(root) { animation: none !important; }
}

/* ─── MOVE 4: CINEMATIC HERO MOTION  ────────────────────────── */

body.home .fcpe-home-hero,
body.home .fcpe-hero,
body.home [data-fcpe-hero] {
	overflow: hidden;
	position: relative;
}
body.home .fcpe-home-hero img,
body.home .fcpe-hero img,
body.home [data-fcpe-hero] img {
	transform: scale(1.0);
	transition: transform 12s cubic-bezier(0.25, 0.1, 0.25, 1);
	will-change: transform;
}
body.home.fcpe-loaded .fcpe-home-hero img,
body.home.fcpe-loaded .fcpe-hero img,
body.home.fcpe-loaded [data-fcpe-hero] img {
	transform: scale(1.05);
}

/* Cinematic reveal sequence — tagline/headline/sub/cta */
body.home .fcpe-home-hero [data-fcpe-reveal],
body.home .fcpe-hero [data-fcpe-reveal] {
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 800ms ease-out,
		transform 800ms ease-out;
	transition-delay: var(--fcpe-reveal-delay, 0ms);
}
body.home.fcpe-loaded [data-fcpe-reveal] {
	opacity: 1;
	transform: translateY(0);
}

/* Fallback — if agent didn't tag elements, reveal by position */
body.home .fcpe-home-hero .fcpe-tagline,
body.home .fcpe-hero .fcpe-tagline { --fcpe-reveal-delay: 800ms; }
body.home .fcpe-home-hero h1,
body.home .fcpe-hero h1            { --fcpe-reveal-delay: 1600ms; }
body.home .fcpe-home-hero .fcpe-sub,
body.home .fcpe-hero .fcpe-sub,
body.home .fcpe-home-hero p,
body.home .fcpe-hero p             { --fcpe-reveal-delay: 2200ms; }
body.home .fcpe-home-hero .fcpe-btn,
body.home .fcpe-hero .fcpe-btn     { --fcpe-reveal-delay: 2800ms; }

/* Brand film layer — sits above photo once swapped */
.fcpe-home-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	body.home .fcpe-home-hero img,
	body.home .fcpe-hero img,
	body.home [data-fcpe-hero] img { transition: none !important; transform: none !important; }
	body.home [data-fcpe-reveal],
	body.home .fcpe-tagline,
	body.home .fcpe-hero h1,
	body.home .fcpe-hero p,
	body.home .fcpe-hero .fcpe-btn { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── MOVE 5: CONCIERGE LETTER  ─────────────────────────────── */

.fcpe-letter {
	background:
		linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 50%),
		var(--fcpe-paper);
	padding: 120px 24px;
	position: relative;
}
.fcpe-letter::before,
.fcpe-letter::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 64px;
	height: 1px;
	background: var(--fcpe-gold);
}
.fcpe-letter::before { top: 56px; }
.fcpe-letter::after  { bottom: 56px; }

.fcpe-letter__paper {
	max-width: 64ch;
	margin: 0 auto;
}
.fcpe-letter__eyebrow {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--fcpe-gold);
	margin: 0 0 40px;
	text-align: center;
}
.fcpe-letter__body {
	font-family: 'Coldiac', Georgia, serif;
	font-style: italic;
	font-size: 18px;
	line-height: 1.7;
	color: var(--fcpe-ink);
}
.fcpe-letter__body p {
	margin: 0 0 20px;
}
.fcpe-letter__body em {
	font-style: italic;
	color: var(--fcpe-ink-soft);
}
.fcpe-letter__signature {
	font-family: 'Paris Signature', Georgia, serif;
	font-size: 32px;
	color: var(--fcpe-gold);
	text-align: right;
	margin: 48px 0 0;
}

@media (max-width: 640px) {
	.fcpe-letter { padding: 80px 20px; }
	.fcpe-letter__body { font-size: 17px; }
	.fcpe-letter__signature { font-size: 28px; text-align: center; }
}

/* ─── MOVE 6: SERVICE AREA MAP  ─────────────────────────────── */

.fcpe-map {
	background: var(--fcpe-charcoal);
	color: var(--fcpe-cream);
	padding: 120px 24px;
	position: relative;
}
.fcpe-map__inner { max-width: 1180px; margin: 0 auto; }
.fcpe-map__eyebrow {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 0.32em;
	color: var(--fcpe-gold);
	margin: 0 0 16px;
	text-align: center;
}
.fcpe-map__title {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: clamp(32px, 5vw, 56px);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 80px;
	color: var(--fcpe-cream);
}
.fcpe-map__sep { color: var(--fcpe-gold); font-weight: 400; }

.fcpe-map__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 64px;
	position: relative;
}
@media (max-width: 860px) {
	.fcpe-map__grid { grid-template-columns: 1fr; gap: 48px; }
}

.fcpe-map__county h3 {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--fcpe-gold);
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--fcpe-hairline);
}
.fcpe-map__county ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.fcpe-map__county li {
	font-family: 'Coldiac', Georgia, serif;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.02em;
	color: rgba(245, 241, 232, 0.82);
	position: relative;
	padding-left: 16px;
}
.fcpe-map__county li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: var(--fcpe-gold);
	font-weight: 700;
}
.fcpe-map__county a {
	color: inherit;
	text-decoration: none;
	position: relative;
	display: inline-block;
	padding-bottom: 1px;
}
.fcpe-map__county a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--fcpe-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fcpe-map__county a:hover::after,
.fcpe-map__county a:focus-visible::after { transform: scaleX(1); }

.fcpe-map__more {
	margin-top: 12px;
}
.fcpe-map__more::before { display: none !important; }
.fcpe-map__more { padding-left: 0 !important; }
.fcpe-map__more a {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 0.24em;
	color: var(--fcpe-gold);
}

/* Preview pane — desktop-only hover preview */
.fcpe-map__preview {
	margin-top: 64px;
	min-height: 320px;
	border: 1px solid var(--fcpe-hairline);
	background: rgba(0,0,0,0.25);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-image 400ms ease-out, opacity 400ms ease-out;
}
.fcpe-map__preview-inner {
	background: rgba(27, 28, 30, 0.70);
	padding: 24px 32px;
	text-align: center;
}
.fcpe-map__preview-crest {
	display: inline-block;
	width: 8px; height: 8px;
	background: var(--fcpe-gold);
	border-radius: 50%;
	margin-bottom: 12px;
}
.fcpe-map__preview-hint {
	font-family: 'Coldiac', Georgia, serif;
	font-style: italic;
	font-size: 13px;
	color: rgba(245, 241, 232, 0.64);
	margin: 0;
}
@media (max-width: 860px) {
	.fcpe-map__preview { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.fcpe-map__preview { transition: none; }
	.fcpe-map__county a::after { transition: none; }
}

/* ─── MOVE 7: BEFORE/AFTER SLIDER  ──────────────────────────── */

.fcpe-ba {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fcpe-ba__frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #0b0b0b;
	user-select: none;
	touch-action: pan-y pinch-zoom;
}
.fcpe-ba__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.fcpe-ba__img--before {
	clip-path: inset(0 calc(100% - var(--fcpe-ba-pos, 50%)) 0 0);
	-webkit-clip-path: inset(0 calc(100% - var(--fcpe-ba-pos, 50%)) 0 0);
	z-index: 2;
	transition: clip-path 160ms ease-out;
}
.fcpe-ba__img--after { z-index: 1; }

.fcpe-ba__handle {
	position: absolute;
	top: 0; bottom: 0;
	left: var(--fcpe-ba-pos, 50%);
	width: 36px;
	margin-left: -18px;
	cursor: ew-resize;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fcpe-ba__handle-line {
	position: absolute;
	top: 0; bottom: 0;
	left: 50%;
	width: 1px;
	margin-left: -0.5px;
	background: var(--fcpe-gold);
}
.fcpe-ba__handle-dot {
	position: relative;
	width: 24px; height: 24px;
	background: var(--fcpe-gold);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.fcpe-ba__handle:focus-visible {
	outline: 2px solid var(--fcpe-gold);
	outline-offset: 4px;
}

.fcpe-ba__tag {
	position: absolute;
	top: 16px;
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.32em;
	background: rgba(27, 28, 30, 0.75);
	color: var(--fcpe-cream);
	padding: 6px 10px;
	z-index: 4;
}
.fcpe-ba__tag--before { left: 16px; }
.fcpe-ba__tag--after  { right: 16px; color: var(--fcpe-gold); }

.fcpe-ba__caption {
	font-family: 'Coldiac', Georgia, serif;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fcpe-ink-soft);
	text-align: center;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.fcpe-ba__caption-loc { color: var(--fcpe-gold); }

@media (prefers-reduced-motion: reduce) {
	.fcpe-ba__img--before { transition: none; }
}

/* ─── MOVE 10: FOOTER (MAGAZINE MASTHEAD)  ──────────────────── */

.fcpe-ftr-v2 {
	background: var(--fcpe-charcoal);
	color: rgba(245, 241, 232, 0.78);
	padding: 96px 24px 32px;
	font-family: 'Coldiac', Georgia, serif;
}
.fcpe-ftr-v2__masthead {
	max-width: 720px;
	margin: 0 auto 80px;
	text-align: center;
	position: relative;
}
.fcpe-ftr-v2__hairline {
	width: 64px;
	height: 1px;
	background: var(--fcpe-gold);
	margin: 0 auto 32px;
}
.fcpe-ftr-v2__crest { margin-bottom: 16px; }
.fcpe-ftr-v2__crest-dot {
	display: inline-block;
	width: 8px; height: 8px;
	background: var(--fcpe-gold);
	border-radius: 50%;
}
.fcpe-ftr-v2__tagline {
	font-family: 'Paris Signature', Georgia, serif;
	font-size: clamp(40px, 6vw, 64px);
	color: var(--fcpe-gold);
	line-height: 1;
	margin: 0 0 12px;
	letter-spacing: 0;
}
.fcpe-ftr-v2__eyebrow {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.32em;
	color: rgba(245, 241, 232, 0.4);
	margin: 0;
}

.fcpe-ftr-v2__credits {
	max-width: 1180px;
	margin: 0 auto 72px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px;
}
@media (max-width: 860px) {
	.fcpe-ftr-v2__credits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}
@media (max-width: 480px) {
	.fcpe-ftr-v2__credits { grid-template-columns: 1fr; gap: 32px; }
}
.fcpe-ftr-v2__credit-block { display: flex; flex-direction: column; gap: 4px; }
.fcpe-ftr-v2__label {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.32em;
	color: rgba(245, 241, 232, 0.45);
	margin: 0 0 16px;
	text-transform: uppercase;
}
.fcpe-ftr-v2__value {
	color: rgba(245, 241, 232, 0.82);
	text-decoration: none;
	font-size: 14px;
	line-height: 1.9;
	position: relative;
	padding-bottom: 1px;
	align-self: flex-start;
}
.fcpe-ftr-v2__value:not(span)::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background: var(--fcpe-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fcpe-ftr-v2__value:hover::after,
.fcpe-ftr-v2__value:focus-visible::after { transform: scaleX(1); }
.fcpe-ftr-v2__value--muted {
	color: rgba(245, 241, 232, 0.5);
	font-size: 13px;
}

.fcpe-ftr-v2__newsletter {
	max-width: 640px;
	margin: 0 auto 64px;
	padding: 48px 0;
	border-top: 1px solid var(--fcpe-hairline);
	border-bottom: 1px solid var(--fcpe-hairline);
	text-align: center;
}
.fcpe-ftr-v2__newsletter-eyebrow {
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.32em;
	color: var(--fcpe-gold);
	margin: 0 0 24px;
}
.fcpe-ftr-v2__newsletter-row {
	display: flex;
	align-items: center;
	gap: 0;
	max-width: 480px;
	margin: 0 auto;
	border-bottom: 1px solid var(--fcpe-gold);
}
.fcpe-ftr-v2__newsletter input[type="email"] {
	flex: 1;
	background: transparent;
	border: 0;
	font-family: 'Coldiac', Georgia, serif;
	font-style: italic;
	font-size: 15px;
	color: var(--fcpe-cream);
	padding: 14px 8px;
	outline: none;
}
.fcpe-ftr-v2__newsletter input[type="email"]::placeholder {
	color: rgba(245, 241, 232, 0.4);
	font-style: italic;
}
.fcpe-ftr-v2__newsletter-submit {
	background: transparent;
	border: 0;
	color: var(--fcpe-gold);
	font-family: 'Nord', 'Helvetica Neue', Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 0.28em;
	padding: 14px 8px;
	cursor: pointer;
	transition: color 220ms ease-out;
}
.fcpe-ftr-v2__newsletter-submit:hover { color: var(--fcpe-cream); }
.fcpe-ftr-v2__newsletter-note {
	font-family: 'Coldiac', Georgia, serif;
	font-style: italic;
	font-size: 12px;
	color: rgba(245, 241, 232, 0.4);
	margin: 16px 0 0;
}
.fcpe-ftr-v2__newsletter-ok {
	font-family: 'Coldiac', Georgia, serif;
	font-style: italic;
	font-size: 14px;
	color: var(--fcpe-gold);
	margin: 16px 0 0;
}

.fcpe-ftr-v2__base {
	max-width: 1180px;
	margin: 0 auto;
	padding-top: 32px;
	border-top: 1px solid var(--fcpe-hairline);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	font-size: 11px;
	color: rgba(245, 241, 232, 0.45);
}
@media (max-width: 860px) {
	.fcpe-ftr-v2__base { grid-template-columns: 1fr; text-align: center; gap: 16px; }
}
.fcpe-ftr-v2__copy { margin: 0; letter-spacing: 0.02em; }
.fcpe-ftr-v2__legal {
	display: flex;
	gap: 20px;
	justify-content: center;
	font-family: 'Coldiac', Georgia, serif;
}
.fcpe-ftr-v2__legal a {
	color: rgba(245, 241, 232, 0.6);
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 0.04em;
	transition: color 220ms ease-out;
}
.fcpe-ftr-v2__legal a:hover { color: var(--fcpe-gold); }
.fcpe-ftr-v2__origin {
	margin: 0;
	text-align: right;
	letter-spacing: 0.02em;
}
@media (max-width: 860px) {
	.fcpe-ftr-v2__origin { text-align: center; }
}

/* ─── QOL: focus styles for accessibility ───────────────────── */
.fcpe-ftr-v2 a:focus-visible,
.fcpe-map a:focus-visible,
.fcpe-sticky a:focus-visible {
	outline: 2px solid var(--fcpe-gold);
	outline-offset: 3px;
}
