/*
Theme Name:   Jessica Sells Homes
Theme URI:    https://jessicasellshomes.com
Description:  Child theme for jessicasellshomes.com
Author:       GFXTheory LLC
Template:     kadence
Version:      2.1.8
Text Domain:  jessicasellshomes
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — Light Luxury Editorial
   Ivory · Charcoal · Burgundy (from logo)
═══════════════════════════════════════════════════════ */
:root {
	--jsh-bg:           #faf7f2;  /* ivory page background */
	--jsh-bg-alt:       #f1ece3;  /* alternating section band */
	--jsh-bg-card:      #ffffff;  /* cards, form fields */
	--jsh-bg-deep:      #211d1b;  /* rare dark band (footer) */

	--jsh-ink:          #1c1a18;  /* charcoal headings / body */
	--jsh-ink-soft:     #5c5650;  /* muted body / captions */
	--jsh-ink-faint:    #8a837b;  /* finest print */

	--jsh-accent:       #7a0e12;  /* burgundy — from logo */
	--jsh-accent-dark:  #5a0a0d;  /* hover / pressed */
	--jsh-accent-tint:  rgba(122, 14, 18, 0.06);
	--jsh-accent-line:  rgba(122, 14, 18, 0.28);

	--jsh-border:       rgba(28, 26, 24, 0.12);
	--jsh-border-soft:  rgba(28, 26, 24, 0.07);

	--jsh-serif:        'Cormorant Garamond', Georgia, serif;
	--jsh-sans:         'DM Sans', system-ui, sans-serif;
	--jsh-transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════ */
body {
	font-family:      var(--jsh-sans);
	background-color: var(--jsh-bg);
	color:            var(--jsh-ink);
	-webkit-font-smoothing: antialiased;
}
.content-bg,
.site-content,
.entry-content {
	background-color: transparent !important;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
h1, h2, h3,
.wp-block-heading {
	font-family: var(--jsh-serif);
	font-weight: 500;
	letter-spacing: 0.005em;
	color: var(--jsh-ink);
}
a { color: var(--jsh-accent); }
a:hover { color: var(--jsh-accent-dark); }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV  (clean white bar, logo-forward)
═══════════════════════════════════════════════════════ */
.site-header,
.site-header .header-wrap,
.site-header .site-header-row-container-inner {
	background-color: #ffffff !important;
	border-bottom: 1px solid var(--jsh-border);
}

/* Nav links */
.primary-navigation a,
.header-navigation a {
	font-family:     var(--jsh-sans) !important;
	font-size:       0.78rem !important;
	font-weight:     500 !important;
	letter-spacing:  0.18em !important;
	text-transform:  uppercase !important;
	color:           var(--jsh-ink) !important;
	text-decoration: none;
	position:        relative;
	padding-bottom:  3px;
	transition:      color var(--jsh-transition);
}
.primary-navigation a::after,
.header-navigation a::after {
	content:    '';
	position:   absolute;
	bottom:     0;
	left:       0;
	width:      0;
	height:     1px;
	background: var(--jsh-accent);
	transition: width var(--jsh-transition);
}
.primary-navigation a:hover,
.header-navigation a:hover {
	color: var(--jsh-accent) !important;
}
.primary-navigation a:hover::after,
.header-navigation a:hover::after {
	width: 100%;
}

/* Language switcher */
.jsh-lang-switcher a {
	font-family:    var(--jsh-sans);
	font-size:      0.7rem;
	letter-spacing: 0.15em;
	color:          var(--jsh-ink-soft);
	text-transform: uppercase;
	text-decoration: none;
	transition:     color var(--jsh-transition);
}
.jsh-lang-switcher a:hover,
.jsh-lang-switcher a.jsh-lang-active {
	color: var(--jsh-accent);
}

/* ═══════════════════════════════════════════════════════
   FULL-WIDTH GROUPS
═══════════════════════════════════════════════════════ */
.wp-block-group.alignfull {
	padding-left:  clamp(28px, 5.5vw, 96px);
	padding-right: clamp(28px, 5.5vw, 96px);
	box-sizing:    border-box;
}

/* ───────────────────────────────────────────────────────
   INTERIOR-PAGE CONTENT CENTERING
   WordPress' constrained-layout class injection does not
   fire on content saved straight to post_content, so we
   center the content ourselves. Every direct child of a
   .jsh-page band is capped to the band width and centered.
─────────────────────────────────────────────────────── */
.jsh-page > * {
	max-width:     var(--jsh-page-w, 1040px);
	margin-left:   auto;
	margin-right:  auto;
}
.jsh-page > .alignfull,
.jsh-page > .alignwide { max-width: none; }

.jsh-page--wide   { --jsh-page-w: 1080px; }  /* listing / sold card grids */
.jsh-page--medium { --jsh-page-w: 880px;  }  /* contact: form + sidebar   */
.jsh-page--narrow { --jsh-page-w: 720px;  }  /* buying / selling guides    */

/* ═══════════════════════════════════════════════════════
   STICKY HEADER REFINEMENTS
═══════════════════════════════════════════════════════ */
#masthead .kadence-sticky-header > .site-header-row-container-inner {
	transition: box-shadow 0.3s ease, background 0.3s ease;
}
#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start) > .site-header-row-container-inner {
	background: #ffffff !important;
	box-shadow: 0 6px 24px rgba(28, 26, 24, 0.10);
	border-bottom: 1px solid var(--jsh-border);
}
.site-header .site-logo img { transition: max-height 0.3s ease; }

/* ═══════════════════════════════════════════════════════
   HERO  (split: portrait + dark text panel)
═══════════════════════════════════════════════════════ */
.wp-block-group.alignfull.jsh-hero-split {
	padding-left: 0;
	padding-right: 0;
}
.jsh-hero-split {
	display: flex;
	min-height: 88vh;
	align-items: stretch;
}
/* Kadence wraps group children in .wp-block-group__inner-container — make it the flex row */
.jsh-hero-split > .wp-block-group__inner-container {
	display: flex;
	flex: 1;
	min-width: 0;
	align-items: stretch;
}
.jsh-hero-split__text {
	flex: 0 0 53%;
	background: linear-gradient(150deg, #7a0e12 0%, #4e0a0d 55%, #1c1a18 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem);
	box-sizing: border-box;
}
.jsh-hero-split__photo {
	flex: 0 0 47%;
	background: linear-gradient(170deg, #f4ede1 0%, #e9dcc8 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}
.jsh-hero-split__photo img {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	object-position: bottom center;
	mix-blend-mode: multiply;
	display: block;
}
.jsh-hero-split .jsh-eyebrow {
	font-family: var(--jsh-sans);
	font-size: 0.74rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #f0c9a0;
	margin: 0 0 1.4rem;
}
.jsh-hero-split .jsh-hero__rule {
	display: block;
	width: 54px; height: 1px;
	background: rgba(240, 201, 160, 0.7);
	margin: 0 0 1.8rem;
}
.jsh-hero-split h1 {
	font-family: var(--jsh-serif);
	font-size: clamp(3rem, 5vw, 5.5rem);
	font-weight: 500;
	line-height: 1.04;
	color: #fdf7ef;
	margin: 0;
}
.jsh-hero-split h1 em { font-style: italic; font-weight: 400; color: #f3d7b0; }
.jsh-hero-split .jsh-hero__sub {
	font-family: var(--jsh-sans);
	font-size: 1.02rem; font-weight: 400;
	color: rgba(253, 247, 239, 0.85);
	margin: 1.6rem 0 2.6rem;
	max-width: 440px; line-height: 1.75;
}
.jsh-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
/* Hero CTA contrast over the burgundy panel */
.jsh-hero-split .jsh-btn--solid {
	background: #f6ece0; color: #7a0e12; border-color: #f6ece0;
}
.jsh-hero-split .jsh-btn--solid:hover { background: #ffffff; color: #5a0a0d; border-color: #ffffff; }
.jsh-hero-split .jsh-btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #ffffff; }
.jsh-hero-split .jsh-btn--ghost:hover { background: #ffffff; color: #1c1a18; }

@media (max-width: 900px) {
	.jsh-hero-split { flex-direction: column; min-height: 0; }
	.jsh-hero-split > .wp-block-group__inner-container { flex-direction: column-reverse; }
	.jsh-hero-split__photo { flex: none; width: 100%; height: 48vh; }
	.jsh-hero-split__text { flex: none; width: 100%; padding: 3.5rem 1.6rem 4rem; }
}

/* ═══════════════════════════════════════════════════════
   SECTION EYEBROW + RULE PATTERN
═══════════════════════════════════════════════════════ */
.jsh-eyebrow {
	font-family:    var(--jsh-sans);
	font-size:      0.68rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color:          var(--jsh-accent);
	display:        block;
	margin-bottom:  0.9rem;
}
.jsh-rule {
	display:    block;
	width:      48px;
	height:     1px;
	background: var(--jsh-accent);
	margin:     1rem 0 1.8rem;
}
.jsh-rule--center {
	margin-left:  auto;
	margin-right: auto;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
a.jsh-btn,
.jsh-btn {
	display:         inline-block;
	font-family:     var(--jsh-sans);
	font-size:       0.72rem;
	font-weight:     500;
	letter-spacing:  0.22em;
	text-transform:  uppercase;
	text-decoration: none;
	padding:         13px 32px;
	border:          1px solid var(--jsh-accent);
	color:           var(--jsh-accent);
	background:      transparent;
	transition:      background var(--jsh-transition), color var(--jsh-transition), border-color var(--jsh-transition);
	cursor:          pointer;
}
a.jsh-btn:hover,
.jsh-btn:hover {
	background: var(--jsh-accent);
	color:      #ffffff;
}
a.jsh-btn--solid,
.jsh-btn--solid {
	background: var(--jsh-accent);
	color:      #ffffff;
}
a.jsh-btn--solid:hover {
	background: var(--jsh-accent-dark);
	border-color: var(--jsh-accent-dark);
}
/* Ghost — for use over dark photos (hero) */
a.jsh-btn--ghost,
.jsh-btn--ghost {
	border-color: rgba(255, 255, 255, 0.6);
	color:        #ffffff;
}
a.jsh-btn--ghost:hover {
	border-color: #ffffff;
	color:        var(--jsh-ink);
	background:   #ffffff;
}

/* Legacy button support (used by listings preview CTA) */
a.jsh-wix-btn {
	display:         inline-block;
	font-family:     var(--jsh-sans);
	font-size:       0.72rem;
	font-weight:     500;
	letter-spacing:  0.22em;
	text-transform:  uppercase;
	text-decoration: none;
	padding:         13px 32px;
	border:          1px solid var(--jsh-accent);
	color:           var(--jsh-accent);
	background:      transparent;
	transition:      background var(--jsh-transition), color var(--jsh-transition);
}
a.jsh-wix-btn:hover,
a.jsh-wix-btn--light:hover {
	background: var(--jsh-accent);
	color:      #ffffff;
}
a.jsh-wix-btn--light {
	border-color: var(--jsh-accent);
	color:        var(--jsh-accent);
}

/* Kadence/core button fallback → match the editorial button */
.wp-block-button__link {
	background-color: var(--jsh-accent);
	color: #ffffff;
	border-radius: 0;
	font-family: var(--jsh-sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 13px 32px;
	transition: background var(--jsh-transition);
}
.wp-block-button__link:hover {
	background-color: var(--jsh-accent-dark);
	color: #ffffff;
}

/* ═══════════════════════════════════════════════════════
   SECTION: ABOUT
═══════════════════════════════════════════════════════ */
.jsh-about-photo img {
	width:          100%;
	max-height:     560px;
	object-fit:     cover;
	object-position: top center;
	display:        block;
}

/* ═══════════════════════════════════════════════════════
   SECTION: TESTIMONIALS
═══════════════════════════════════════════════════════ */
.jsh-testimonial-quote {
	border-left: none !important;
	padding:     0 !important;
	text-align:  center;
	max-width:   720px;
	margin:      0 auto;
}
.jsh-testimonial-quote p {
	font-family: var(--jsh-serif);
	font-size:   clamp(1.15rem, 2vw, 1.6rem);
	font-style:  italic;
	font-weight: 400;
	line-height: 1.8;
	color:       var(--jsh-ink);
}
.jsh-testimonial-quote cite {
	display:     block;
	margin-top:  1.5rem;
	font-family: var(--jsh-sans);
	font-style:  normal;
	font-size:   0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color:       var(--jsh-accent);
}
.jsh-quote-mark {
	font-family: var(--jsh-serif);
	font-size:   6rem;
	line-height: 1;
	color:       var(--jsh-accent);
	opacity:     0.22;
	display:     block;
	text-align:  center;
	margin-bottom: -1rem;
}

/* ═══════════════════════════════════════════════════════
   SECTION: SOCIAL ICONS
═══════════════════════════════════════════════════════ */
.jsh-social-icons {
	justify-content: center !important;
	gap:             14px !important;
}
.jsh-social-icons li a {
	border-radius:    50% !important;
	width:            54px !important;
	height:           54px !important;
	border:           1px solid var(--jsh-border) !important;
	background-color: transparent !important;
	transition:       border-color var(--jsh-transition), background-color var(--jsh-transition) !important;
}
.jsh-social-icons li a:hover {
	border-color:     var(--jsh-accent) !important;
	background-color: var(--jsh-accent-tint) !important;
}
.jsh-social-icons li a svg {
	fill: var(--jsh-accent) !important;
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */
.jsh-animate {
	opacity:    0;
	transform:  translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.jsh-animate.jsh-visible {
	opacity:   1;
	transform: translateY(0);
}
.jsh-animate--delay-1 { transition-delay: 0.1s; }
.jsh-animate--delay-2 { transition-delay: 0.2s; }
.jsh-animate--delay-3 { transition-delay: 0.3s; }
.jsh-animate--delay-4 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════════════
   SEPARATORS
═══════════════════════════════════════════════════════ */
.wp-block-separator.jsh-sep {
	border-color: var(--jsh-border) !important;
	width:        100%;
	max-width:    none !important;
	margin-left:  0 !important;
	margin-right: 0 !important;
}

/* ═══════════════════════════════════════════════════════
   SPLIT LAYOUT (recently sold, about, etc.)
═══════════════════════════════════════════════════════ */
.jsh-split {
	display: flex;
	min-height: 520px;
	align-items: stretch;
}
.jsh-split__photo {
	flex: 0 0 50%;
	overflow: hidden;
}
.jsh-split__photo img {
	width:      100%;
	height:     100%;
	object-fit: cover;
	display:    block;
}
.jsh-split__text {
	flex:            1;
	display:         flex;
	flex-direction:  column;
	justify-content: center;
	padding:         5rem clamp(2rem, 5vw, 5rem);
}
@media (max-width: 768px) {
	.jsh-split { flex-direction: column; }
	.jsh-split__photo { flex: none; height: 280px; }
	.jsh-split__text { padding: 3.5rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   GUIDE PAGES (buying / selling) — shared helpers
═══════════════════════════════════════════════════════ */
.jsh-guide-step {
	font-family:    var(--jsh-serif) !important;
	color:          var(--jsh-accent) !important;
	font-size:      1.15rem !important;
	font-weight:    500 !important;
	letter-spacing: 0.03em !important;
}
.jsh-callout {
	border-left: 2px solid var(--jsh-accent);
	background:   var(--jsh-accent-tint);
	padding:      1.5rem 2rem;
}
.jsh-callout p { color: var(--jsh-ink); }

/* ═══════════════════════════════════════════════════════
   CENTERED SECTION HEADING (reusable)
═══════════════════════════════════════════════════════ */
.jsh-section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}
.jsh-section-head h2 {
	font-family: var(--jsh-serif);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 500;
	line-height: 1.15;
	color: var(--jsh-ink);
	margin: 0;
}
.jsh-section-head h2 em { font-style: italic; color: var(--jsh-accent); }
.jsh-section-head p {
	color: var(--jsh-ink-soft);
	line-height: 1.85;
	font-size: 1rem;
	margin: 1.2rem 0 0;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — burgundy band + carousel
═══════════════════════════════════════════════════════ */
.jsh-quote-band {
	background: var(--jsh-accent);
	background-image: linear-gradient(160deg, #8a1418 0%, #6e0c10 60%, #5a0a0d 100%);
	color: #f6ece0;
}
.jsh-quote-band .jsh-eyebrow { color: #f0c9a0; }
.jsh-quote-band .jsh-rule { background: #e7b98f; }

.jsh-tcar { max-width: 760px; margin: 0 auto; text-align: center; }
.jsh-tcar__mark {
	font-family: var(--jsh-serif);
	font-size: 6rem; line-height: 0.6;
	color: #e7b98f; opacity: 0.4;
	user-select: none; margin-bottom: 1.5rem;
}
.jsh-tcar__slide {
	display: none;
	border-left: 2px solid #e7b98f !important;
	margin: 0;
}
.jsh-tcar__slide.is-active {
	display: block;
	animation: jshFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes jshFadeUp {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}
.jsh-tcar__quote {
	font-family: var(--jsh-serif);
	font-size: clamp(1.25rem, 2.1vw, 1.7rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.7;
	color: #fdf7ef;
	margin: 0;
}
.jsh-tcar__cite {
	display: block;
	margin-top: 1.8rem;
	font-family: var(--jsh-sans);
	font-style: normal;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #f0c9a0;
}
.jsh-tcar__dots {
	display: flex; justify-content: center; gap: 10px;
	margin-top: 2.6rem;
}
.jsh-tcar__dot {
	width: 9px; height: 9px; padding: 0;
	border-radius: 50%; border: none; cursor: pointer;
	background: rgba(246, 236, 224, 0.3);
	transition: background var(--jsh-transition), transform var(--jsh-transition);
}
.jsh-tcar__dot:hover { background: rgba(246, 236, 224, 0.6); }
.jsh-tcar__dot.is-active { background: #f0c9a0; transform: scale(1.15); }

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS (buying / selling on home)
═══════════════════════════════════════════════════════ */
.jsh-feature {
	background: var(--jsh-bg-card);
	border: 1px solid var(--jsh-border);
	border-top: 3px solid var(--jsh-accent);
	padding: 3rem clamp(1.8rem, 3vw, 3rem);
	height: 100%;
	box-sizing: border-box;
	transition: box-shadow var(--jsh-transition), transform var(--jsh-transition);
}
.jsh-feature:hover {
	box-shadow: 0 16px 40px rgba(28, 26, 24, 0.1);
	transform: translateY(-4px);
}
.jsh-feature h3 {
	font-family: var(--jsh-serif);
	font-size: 2rem; font-weight: 500;
	color: var(--jsh-ink); margin: 0 0 0.4rem;
}
.jsh-feature__num {
	font-family: var(--jsh-serif);
	font-size: 0.95rem; letter-spacing: 0.15em;
	color: var(--jsh-accent); display: block; margin-bottom: 1.2rem;
}
.jsh-feature p {
	color: var(--jsh-ink-soft); line-height: 1.85;
	font-size: 0.97rem; margin: 0 0 1.8rem;
}

/* ═══════════════════════════════════════════════════════
   NAV SPACING + LANGUAGE SWITCHER (text-only EN | ES, top-right)
═══════════════════════════════════════════════════════ */
.header-navigation ul.menu > li.menu-item,
.header-navigation .header-menu-container > ul > li.menu-item {
	margin: 0 0.7rem;
}
.jsh-lang-switcher {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	margin-left: 1.4rem !important;
	padding-left: 1.4rem;
	border-left: 1px solid var(--jsh-border);
}
.jsh-lang-switcher a {
	display: inline-flex !important;
	align-items: center;
	padding: 0 !important;
	text-decoration: none;
	opacity: 0.4;
	filter: grayscale(70%);
	transition: opacity var(--jsh-transition), filter var(--jsh-transition);
}
.jsh-lang-switcher a::after { display: none !important; }
.jsh-lang-switcher a:hover,
.jsh-lang-switcher a.jsh-lang-active { opacity: 1; filter: none; }
.jsh-lang-flag {
	display: block;
	width: 22px;
	height: 15px;
	border: 1px solid var(--jsh-border);
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.jsh-lang-switcher a.jsh-lang-active .jsh-lang-flag {
	outline: 1.5px solid var(--jsh-accent);
	outline-offset: 1px;
}

/* ═══════════════════════════════════════════════════════
   CREDIBILITY — Top 5% badge + stats
═══════════════════════════════════════════════════════ */
.jsh-badge-img {
	width: 100%;
	max-width: 480px;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 4px;
	box-shadow: 0 18px 44px rgba(28, 26, 24, 0.16);
}
.jsh-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	border-top: 1px solid var(--jsh-border);
	padding-top: 2rem;
}
.jsh-stat { text-align: center; }
.jsh-stat__num {
	font-family: var(--jsh-serif);
	font-size: clamp(1.6rem, 2.4vw, 2.3rem);
	font-weight: 500;
	color: var(--jsh-accent);
	line-height: 1.1;
	margin-bottom: 0.4rem;
}
.jsh-stat__label {
	font-family: var(--jsh-sans);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--jsh-ink-soft);
	line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   AREAS I SERVE
═══════════════════════════════════════════════════════ */
.jsh-areas-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--jsh-border);
	border: 1px solid var(--jsh-border);
	margin-top: 1rem;
}
.jsh-area {
	background: var(--jsh-bg-card);
	padding: 2.2rem 1.5rem;
	text-align: center;
	transition: background var(--jsh-transition), color var(--jsh-transition);
}
.jsh-area__name {
	font-family: var(--jsh-serif);
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--jsh-ink);
	transition: color var(--jsh-transition);
}
.jsh-area__sub {
	font-family: var(--jsh-sans);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--jsh-ink-faint);
	margin-top: 0.3rem;
}
.jsh-area:hover { background: var(--jsh-accent); }
.jsh-area:hover .jsh-area__name { color: #fff; }
.jsh-area:hover .jsh-area__sub { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════
   EXPANDED FOOTER
═══════════════════════════════════════════════════════ */
/* Hide Kadence's default footer — we render our own site-wide via wp_footer */
#colophon { display: none !important; }

.jsh-footer {
	background: var(--jsh-bg-deep);
	color: #c9c2b8;
	width: 100%;
}
.jsh-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
	max-width: 1080px;
	margin: 0 auto;
	padding: clamp(3.5rem, 6vw, 5rem) 0 3rem;
}
.jsh-footer h4 {
	font-family: var(--jsh-sans);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #f0c9a0;
	margin: 0 0 1.3rem;
	font-weight: 500;
}
.jsh-footer a { color: #c9c2b8; text-decoration: none; transition: color var(--jsh-transition); }
.jsh-footer a:hover { color: #fff; }
.jsh-footer ul { list-style: none; margin: 0; padding: 0; line-height: 2.2; }
.jsh-footer__brand-logo { font-family: var(--jsh-serif); font-size: 1.6rem; color: #fdf7ef; margin: 0 0 0.6rem; letter-spacing: 0.02em; }
.jsh-footer__tag { font-size: 0.86rem; line-height: 1.8; color: #a59d92; max-width: 280px; }
.jsh-footer__compliance {
	display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
	margin-top: 1.4rem;
}
.jsh-footer__compliance svg { fill: #c9c2b8; }
.jsh-footer__eho { display: flex; align-items: center; gap: 0.5rem; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: #a59d92; line-height: 1.3; }
.jsh-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.6rem 0;
	text-align: center;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	color: #7d766c;
}
.jsh-footer__bar a { color: #a59d92; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
	.jsh-hero .wp-block-cover__inner-container {
		padding-left:   clamp(20px, 5vw, 40px);
		padding-bottom: 4rem;
	}
	.wp-block-columns.are-vertically-aligned-center {
		flex-direction: column;
	}
	.wp-block-column {
		flex-basis: 100% !important;
	}
	.jsh-hero__ctas {
		flex-direction: column;
		align-items:    flex-start;
	}
}

@media (max-width: 900px) {
	.jsh-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
	.jsh-areas-grid { grid-template-columns: repeat(2, 1fr); }
	.jsh-footer__cols { grid-template-columns: 1fr 1fr; gap: 2rem; padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 560px) {
	.jsh-areas-grid { grid-template-columns: 1fr; }
	.jsh-footer__cols { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM  (WPForms — restyled to match the theme)
═══════════════════════════════════════════════════════ */
.wpforms-container {
	margin: 1.25rem 0 0;
}
.wpforms-container .wpforms-field {
	padding: 0 0 1.4rem;
}
/* Labels: small caps, DM Sans, charcoal */
.wpforms-container .wpforms-field-label {
	font-family:    var(--jsh-sans);
	font-size:      0.72rem;
	font-weight:    500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color:          var(--jsh-ink);
	margin-bottom:  0.55rem;
}
.wpforms-container .wpforms-required-label {
	color: var(--jsh-accent);
}
.wpforms-container .wpforms-field-sublabel {
	font-family: var(--jsh-sans);
	font-size:   0.72rem;
	color:       var(--jsh-ink-faint);
	font-weight: 400;
}
/* Inputs */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="url"],
.wpforms-container textarea,
.wpforms-container select {
	width:           100%;
	font-family:     var(--jsh-sans);
	font-size:       1rem;
	color:           var(--jsh-ink);
	background:      #ffffff;
	border:          1px solid var(--jsh-border);
	border-radius:   2px;
	padding:         13px 15px;
	box-shadow:      none;
	transition:      border-color var(--jsh-transition), box-shadow var(--jsh-transition);
	box-sizing:      border-box;
}
.wpforms-container textarea { min-height: 150px; resize: vertical; }
.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
	outline:      none;
	border-color: var(--jsh-accent);
	box-shadow:   0 0 0 3px var(--jsh-accent-tint);
}
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
	color: var(--jsh-ink-faint);
}
/* Submit button — matches .jsh-btn--solid */
div.wpforms-container button[type="submit"],
div.wpforms-container .wpforms-submit {
	display:         inline-block;
	font-family:     var(--jsh-sans) !important;
	font-size:       0.72rem !important;
	font-weight:     500 !important;
	letter-spacing:  0.22em !important;
	text-transform:  uppercase !important;
	padding:         14px 36px !important;
	margin-top:      0.5rem;
	border:          1px solid var(--jsh-accent) !important;
	border-radius:   2px !important;
	background-color: var(--jsh-accent) !important;
	color:           #ffffff !important;
	cursor:          pointer;
	transition:      background-color var(--jsh-transition), border-color var(--jsh-transition);
}
div.wpforms-container button[type="submit"]:hover,
div.wpforms-container .wpforms-submit:hover {
	background-color: var(--jsh-accent-dark) !important;
	border-color:     var(--jsh-accent-dark) !important;
}
/* Validation + confirmation messaging */
.wpforms-container label.wpforms-error {
	font-family: var(--jsh-sans);
	font-size:   0.8rem;
	color:       var(--jsh-accent);
}
.wpforms-container input.wpforms-error,
.wpforms-container textarea.wpforms-error {
	border-color: var(--jsh-accent);
}
.wpforms-confirmation-container-full {
	background:    var(--jsh-accent-tint);
	border:        1px solid var(--jsh-accent-line);
	border-radius: 2px;
	color:         var(--jsh-ink);
	font-family:   var(--jsh-sans);
	padding:       1.25rem 1.5rem;
}
