/* =============================================================================
   George Moss Jewellers 2026 — main stylesheet
   Brand tokens + base + (verbatim) product card.
   ============================================================================= */

:root {
	/* Exact live Elementor palette */
	--gmj-navy:        #0F101D;  /* secondary / dark sections + headings */
	--gmj-gold:        #DCB873;  /* primary / accent gold */
	--gmj-gold-deep:   #A7711C;  /* deep gold (button borders / hovers) */
	--gmj-text:        #414141;  /* body text */
	--gmj-cream:       #F8F3EC;
	--gmj-cream-deep:  #efe8d6;
	--gmj-sand:        #ddd6c8;
	--gmj-sand-deep:   #e0d5c0;
	--gmj-sale-red:    #c32721;
	--gmj-white:       #ffffff;
	--gmj-rose-a:      #a58d81;
	--gmj-rose-b:      #e1b296;

	--gmj-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--gmj-container: 1280px;
	--gmj-gap: 1.5rem;
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--gmj-font);
	font-weight: 400;
	color: var(--gmj-text);
	background: var(--gmj-white);
	line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--gmj-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--gmj-font); color: var(--gmj-navy); font-weight: 600; line-height: 1.25; }

.gmj-container { width: 100%; max-width: var(--gmj-container); margin: 0 auto; padding: 0 1.25rem; }
.gmj-content { padding: 2.5rem 1.25rem; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--gmj-navy); color: #fff; padding: .5rem 1rem; z-index: 1000; }

/* ── Buttons ──────────────────────────────────────────────── */
.gmj-btn {
	display: inline-block; padding: .75rem 1.5rem; border-radius: 4px;
	font-weight: 500; letter-spacing: .02em; text-decoration: none; cursor: pointer;
	border: 1px solid transparent; transition: background .2s ease, color .2s ease;
}
.gmj-btn--gold  { background: var(--gmj-gold); color: var(--gmj-navy); }
.gmj-btn--gold:hover  { background: var(--gmj-navy); color: var(--gmj-gold); text-decoration: none; }
.gmj-btn--ghost { background: transparent; color: var(--gmj-navy); border-color: var(--gmj-sand); }
.gmj-btn--ghost:hover { border-color: var(--gmj-gold); text-decoration: none; }

/* ── Header (faithful rebuild: 3 dark rows) ───────────────── */
:root { --gmj-dark: #0F101D; --gmj-dark-2: #0F101D; --gmj-cream-text: #e9e4d8; }
.gmj-site-header { font-family: var(--gmj-font); }

/* utility bar */
.gmj-utilbar { background: var(--gmj-dark); color: var(--gmj-cream-text); font-size: .82rem; border-bottom: 1px solid rgba(196,160,53,.22); }
.gmj-utilbar__inner { display: flex; align-items: center; gap: 1.1rem; padding: .5rem 15px; max-width: none; }
.gmj-utilbar__contact { margin-left: auto; }
.gmj-search { display: flex; gap: 8px; flex: 0 0 auto; }
.gmj-search input { border: 1px solid var(--gmj-gold); background: transparent; color: var(--gmj-gold); padding: .45rem .7rem; font-size: .8rem; width: 290px; border-radius: 3px; }
.gmj-search input::placeholder { color: var(--gmj-gold); opacity: .75; }
.gmj-search button { border: 1px solid var(--gmj-gold); background: transparent; color: #fff; padding: 0 .7rem; cursor: pointer; display: flex; align-items: center; border-radius: 3px; }
.gmj-utilbar__contact { display: flex; align-items: center; gap: .6rem; }
.gmj-util-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--gmj-gold); white-space: nowrap; }
.gmj-util-link:hover { color: #fff; text-decoration: none; }
.gmj-util-link svg { color: var(--gmj-gold); flex: none; }
.gmj-util-sep { color: var(--gmj-gold); opacity: .4; margin: 0 .35rem; }
.gmj-utilbar__social { display: flex; align-items: center; gap: .5rem; }
.gmj-utilbar__social a { color: var(--gmj-gold); display: inline-flex; }
.gmj-utilbar__social a:hover { color: var(--gmj-gold); }
.gmj-utilbar__actions { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.gmj-appt-btn { border: 1px solid var(--gmj-gold); color: var(--gmj-gold); padding: .7rem 1.25rem; border-radius: 3px; text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; font-weight: 600; white-space: nowrap; }
.gmj-appt-btn:hover { background: var(--gmj-gold); color: var(--gmj-dark); text-decoration: none; }
/* Every appointment CTA gets the animated gold pulse (matches live's gm-appt-pulse). */
@keyframes gm-appt-pulse {
	0%   { box-shadow: 0 0 6px 0 rgba(180,138,50,.6); }
	50%  { box-shadow: 0 0 20px 8px rgba(180,138,50,.28); }
	100% { box-shadow: 0 0 6px 0 rgba(180,138,50,.6); }
}
.gmj-appt-btn,
a[href*="book-an-appointment"],
a.gmj-btn-outline[href*="appointment"] {
	box-shadow: 0 0 6px 0 rgba(180,138,50,.6);
	animation: gm-appt-pulse 2.8s ease-in-out infinite;
	transition: box-shadow .3s ease;
}
.gmj-mini-cart { display: inline-flex; align-items: center; gap: .4rem; color: var(--gmj-cream-text); }
.gmj-mini-cart:hover { color: var(--gmj-gold); text-decoration: none; }
.gmj-mini-cart__count { background: var(--gmj-gold); color: var(--gmj-dark); border-radius: 50%; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; }

/* logo bar */
.gmj-logobar { background: var(--gmj-dark-2); border-top: 1px solid rgba(196,160,53,.15); }
.gmj-logobar__inner { display: flex; align-items: center; justify-content: center; position: relative; padding: 1rem 1.25rem; }
.gmj-logo img { height: 96px; width: auto; display: block; }

/* nav bar */
.gmj-navbar { background: var(--gmj-dark-2); border-top: 1px solid rgba(196,160,53,.12); }
.gmj-navbar .gmj-container { display: flex; justify-content: center; }
/* Home: transparent header overlaid on the full-height hero (matches live) */
/* cream page bg so the dark hero block's rounded bottom corners reveal cream (like live) */
body.home { background-color: var(--gmj-cream); }
body.home .gmj-site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; }
body.home .gmj-utilbar,
body.home .gmj-logobar,
body.home .gmj-navbar { background: transparent; border-top: 0; }
/* Migrated landing pages: float the header over the showroom hero (like home). */
body.gmj-landing-page .gmj-site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; }
body.gmj-landing-page .gmj-utilbar,
body.gmj-landing-page .gmj-logobar,
body.gmj-landing-page .gmj-navbar { background: transparent; border-top: 0; }
body.gmj-landing-page .gmj-utilbar { border-bottom: 0; }
/* position the title low in the hero like live (≈252px down in a ≈350px hero) */
body.gmj-landing-page .gmj-landing-hero { padding: 15.75rem 0 3.5rem; }
.gmj-menu { display: flex; gap: 4rem; list-style: none; margin: 0; padding: .15rem 0 .85rem; }
.gmj-menu li { position: relative; }
.gmj-menu > li > a { color: var(--gmj-gold); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; display: block; padding: .35rem 0; }
.gmj-menu > li > a:hover { color: #fff; text-decoration: none; }
.gmj-menu .menu-item-has-children > a::after { content: " \25BE"; color: var(--gmj-gold); font-size: .8em; }
.gmj-menu .sub-menu { position: absolute; top: 100%; left: 0; background: var(--gmj-dark-2); border: 1px solid rgba(196,160,53,.2); min-width: 230px; list-style: none; margin: 0; padding: .4rem 0; display: none; z-index: 50; box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.gmj-menu li:hover > .sub-menu { display: block; }
.gmj-menu .sub-menu a { color: var(--gmj-cream-text); display: block; padding: .5rem 1rem; font-size: .8rem; }
.gmj-menu .sub-menu a:hover { color: var(--gmj-gold); background: rgba(196,160,53,.07); text-decoration: none; }

/* nav toggle (mobile) */
.gmj-nav-toggle { display: none; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 6px; }
.gmj-nav-toggle span { width: 24px; height: 2px; background: var(--gmj-gold); display: block; }

@media (max-width: 900px) {
	.gmj-utilbar__inner { flex-wrap: wrap; justify-content: center; font-size: .75rem; gap: .55rem; }
	.gmj-utilbar__contact { order: 3; width: 100%; justify-content: center; }
	.gmj-utilbar__actions { margin-left: 0; }
	.gmj-navbar { display: none; }
	.gmj-nav-toggle { display: flex; }
	.gmj-logo img { height: 58px; }
}
/* Mobile-only full-width appointment row (rendered below the logo bar); hidden on desktop. */
.gmj-appt-mobile { display: none; background: var(--gmj-dark); }

/* ── Mobile header — mirrors live: solid dark bar, social + contact ICONS on the left,
   cart on the right, logo + hamburger, then a full-width MAKE APPOINTMENT button. ── */
@media (max-width: 768px) {
	/* home + WC: header sits solid above the hero (home hero content would be overlapped).
	   Landing pages KEEP the floating transparent header over their hero (matches live —
	   header over the showroom image, title low in the band; see the 15.75rem hero padding). */
	body.home .gmj-site-header,
	body.gmj-wc-hero-page .gmj-site-header { position: static; }
	body.home .gmj-utilbar, body.home .gmj-logobar,
	body.gmj-wc-hero-page .gmj-utilbar, body.gmj-wc-hero-page .gmj-logobar { background: var(--gmj-dark); }
	body.home { background-color: var(--gmj-cream); }
	/* landing's floating mobile appointment row must not paint a dark bar over the hero image */
	body.gmj-landing-page .gmj-appt-mobile { background: transparent; }

	/* no mobile search (live has none) */
	.gmj-search { display: none; }

	/* utility row: social + contact (icon-only) on the left, cart pushed right */
	.gmj-utilbar__inner { flex-wrap: nowrap; justify-content: flex-start; gap: 1rem; padding: 1.4rem 1.1rem 1rem; }
	.gmj-utilbar__social { order: 1; display: flex; gap: .9rem; }
	.gmj-utilbar__contact { order: 2; display: flex; gap: .9rem; align-items: center; }
	.gmj-util-sep { display: none; }
	.gmj-util-txt { display: none; }                          /* contact collapses to its icon */
	.gmj-utilbar__actions { order: 3; margin-left: auto; gap: .6rem; }
	.gmj-utilbar__actions .gmj-appt-btn { display: none; }    /* appointment moves to its own row */

	/* logo left, hamburger right — match live's larger logo + generous row spacing */
	.gmj-logobar__inner { padding: 1.5rem 1.1rem; justify-content: flex-start; }
	.gmj-logo img { height: 68px; }
	.gmj-nav-toggle { right: 1.1rem; }

	/* full-width appointment button row */
	.gmj-appt-mobile { display: block; padding: .25rem 1.1rem 1.6rem; }
	.gmj-appt-mobile .gmj-appt-btn { display: block; width: 100%; text-align: center; padding: .9rem; font-size: .74rem; letter-spacing: .06em; }
}

/* ── Buttons: gold outline (appointment, newsletter, blog) ── */
.gmj-btn-outline { display: inline-block; border: 1px solid var(--gmj-gold); color: var(--gmj-gold); background: transparent; padding: .7rem 1.6rem; border-radius: 3px; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; font-weight: 600; cursor: pointer; }
.gmj-btn-outline:hover { background: var(--gmj-gold); color: var(--gmj-dark); text-decoration: none; }
.gmj-btn-outline--dark { border-color: var(--gmj-navy); color: var(--gmj-navy); }
.gmj-btn-outline--dark:hover { background: var(--gmj-navy); color: #fff; }

/* ── Home: This months favourites ─────────────────────────── */
.gmj-home-favourites { background: var(--gmj-cream); padding: 2.5rem 0 3.5rem; }
.gmj-section-sub { text-align: center; color: var(--gmj-navy); font-size: 1.05rem; margin: -0.5rem 0 2rem; }
.gmj-home-favourites ul.products { margin-top: 1rem; }

/* ── Home: appointment — contained image card (like live) ──── */
.gmj-home-appt { background: var(--gmj-white); padding: clamp(40px,6vw,80px) 0; }
.gmj-appt__card { position: relative; overflow: hidden; border-radius: 6px; color: #fff; min-height: 540px; display: flex; align-items: center;
	background-size: cover; background-position: center right; box-shadow: var(--shadow-pop, 0 30px 70px -30px rgba(8,19,32,.45)); }
.gmj-appt__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,16,29,.92) 0%, rgba(15,16,29,.78) 42%, rgba(15,16,29,.25) 100%); }
.gmj-appt__box { position: relative; z-index: 1; max-width: 540px; padding: clamp(2.25rem,5vw,4rem); }
.gmj-appt__title { color: var(--gmj-gold); font-size: clamp(1.6rem,3vw,2.1rem); margin: 0 0 1.5rem; }
.gmj-appt__box .gmj-btn-outline { margin-bottom: 1.6rem; }
.gmj-appt__phone { display: flex; align-items: center; gap: .8rem; font-size: 1.35rem; font-weight: 600; margin: 0 0 1.25rem; }
.gmj-appt__phicon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gmj-gold); color: var(--gmj-gold); display: flex; align-items: center; justify-content: center; flex: none; }
.gmj-appt__phone a { color: var(--gmj-gold); }
.gmj-appt__box p:not(.gmj-appt__phone) { color: #efeae0; line-height: 1.7; font-size: .95rem; }
@media (max-width: 760px){ .gmj-appt__box { max-width: 100%; } .gmj-appt__overlay { background: rgba(15,16,29,.85); } }

/* ── Home: team ───────────────────────────────────────────── */
.gmj-home-teamhead { background: var(--gmj-cream); padding-top: 1rem; }
.gmj-teamhead__title { margin-bottom: .75rem; }
.gmj-teamhead__rule { display: block; width: 70px; height: 2px; background: var(--gmj-gold); margin: 0 auto 1.5rem; }
.gmj-home-team { position: relative; background-size: cover; background-position: center; color: #fff; }
.gmj-team__overlay { position: absolute; inset: 0; background: rgba(13,14,26,.88); }
.gmj-team__watermark { position: absolute; top: 7%; left: 50%; transform: translateX(-50%); width: 440px; max-width: 60%; opacity: .4; z-index: 1; pointer-events: none; }
.gmj-team__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: center; padding: 7rem 1.25rem 3.5rem; }
.gmj-team__name { color: var(--gmj-gold); font-size: 4rem; line-height: 1; margin: 0 0 1.25rem; }
.gmj-team__name span { font-size: 1.4rem; opacity: .85; }
.gmj-team__bio p { color: #efeae0; line-height: 1.7; font-size: .92rem; margin: 0 0 .9rem; }
.gmj-team__carousel { position: relative; min-width: 0; }
.gmj-team__cards { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: nowrap; gap: 1rem; overflow: hidden; align-items: center; min-height: 330px; cursor: grab; }
.gmj-team-card { position: relative; flex: 0 0 29%; height: 250px; border-radius: 4px; overflow: hidden; cursor: pointer; transition: flex-basis .3s ease, height .3s ease, box-shadow .3s ease; }
.gmj-team-card.is-active { flex-basis: 38%; height: 320px; box-shadow: 0 14px 34px rgba(0,0,0,.45); }
.gmj-team-card:focus-visible { outline: 2px solid var(--gmj-gold); outline-offset: 2px; }
.gmj-team-card__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.gmj-team-card__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem .8rem .7rem; background: linear-gradient(transparent, rgba(13,14,26,.92)); display: flex; flex-direction: column; }
.gmj-team-card__name { color: #fff; font-weight: 600; font-size: .95rem; }
.gmj-team-card__name em { color: var(--gmj-gold); font-style: normal; font-size: .8em; }
.gmj-team-card__role { color: var(--gmj-gold); font-size: .74rem; }
.gmj-team__cards { cursor: grab; }
.gmj-team__cards.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.gmj-team__cards.is-dragging .gmj-team-card { pointer-events: none; }
.gmj-team__controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; flex-wrap: wrap; }
.gmj-team__dots { display: flex; gap: .5rem; flex-wrap: wrap; }
.gmj-team__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s ease; }
.gmj-team__dot.is-active { background: var(--gmj-gold); }
.gmj-team__nav { display: flex; gap: .6rem; }
.gmj-team__arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gmj-gold); background: transparent; color: var(--gmj-gold); cursor: pointer; font-size: 1rem; }
.gmj-team__arrow:hover { background: var(--gmj-gold); color: var(--gmj-dark); }
@media (max-width: 860px) { .gmj-team__inner { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ── Home: blog ───────────────────────────────────────────── */
.gmj-home-blog { background: var(--gmj-cream); padding: 1rem 0 3.5rem; }
.gmj-blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: center; }
.gmj-blog-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.75rem; }
.gmj-blog-intro { text-align: left; }
.gmj-blog-intro .gmj-section-title { margin: 0 0 1.5rem; }
.gmj-section-title--left { text-align: left; }
.gmj-blog-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.08); display: flex; flex-direction: column; }
.gmj-blog-card__img { position: relative; display: block; }
.gmj-blog-card__img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gmj-blog-card__badge { position: absolute; top: 12px; right: 12px; background: var(--gmj-gold); color: var(--gmj-navy); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 2px; }
.gmj-blog-card__meta { margin: auto 1.1rem 1.2rem; font-size: .74rem; color: #8a8a8a; }
.gmj-blog-card__dot { margin: 0 .35rem; }
.gmj-blog-card__title { font-size: 1.05rem; margin: 1rem 1.1rem .4rem; }
.gmj-blog-card__title a { color: var(--gmj-navy); }
.gmj-blog-card__excerpt { margin: 0 1.1rem 1rem; font-size: .88rem; }
.gmj-blog-card__more { display: inline-block; margin: 0 1.1rem 1.2rem; color: var(--gmj-gold); font-weight: 600; font-size: .78rem; text-transform: uppercase; }
.gmj-blog-all { text-align: center; margin-top: 2rem; }
@media (max-width: 860px) { .gmj-blog-layout { grid-template-columns: 1fr; gap: 1.5rem; } .gmj-blog-grid { grid-template-columns: 1fr; } .gmj-blog-intro { text-align: center; } .gmj-section-title--left { text-align: center; } }

/* ── Footer ───────────────────────────────────────────────── */
.gmj-site-footer { background: var(--gmj-dark); color: #cfcabd; padding: 3rem 0 2rem; margin-top: 0; }
.gmj-site-footer a { color: var(--gmj-gold); transition: color .15s ease; }
.gmj-site-footer a:hover { color: var(--gmj-gold-deep); text-decoration: none; }
/* Nav-style footer link lists: subtle gold marker + clear hover. */
.gmj-newsletter { border: 1px solid rgba(196,160,53,.3); border-radius: 4px; padding: 2rem 2.25rem; margin-bottom: 2.5rem; }
.gmj-newsletter__title { color: var(--gmj-gold); font-size: 1.6rem; line-height: 1.25; margin: 0 0 1.25rem; }
.gmj-footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr; gap: 2rem; }
.gmj-footer-col__title { color: var(--gmj-gold); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; border-left: 3px solid var(--gmj-gold); padding-left: .6rem; margin: 0 0 1rem; }
.gmj-footer-col--brand p { font-size: .84rem; line-height: 1.7; }
.gmj-footer-logo img { height: 60px; width: auto; margin-bottom: 1rem; }
.gmj-footer-links, .gmj-footer-contact { list-style: none; margin: 0; padding: 0; }
.gmj-footer-links li, .gmj-footer-contact li { margin-bottom: .8rem; font-size: 1rem; }
/* Gold ⊙ marker before each nav-style footer link (matches live). */
.gmj-footer-links--bulleted li { display: flex; align-items: center; gap: .55rem; }
.gmj-footer-links--bulleted li::before { content: ''; flex: none; width: 14px; height: 14px; background-color: var(--gmj-gold);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM110.6 273.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5H256v-67c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v67h-60.6c-10.7 0-16 12.9-8.5 20.5z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM110.6 273.5l99 99c4.7 4.7 12.3 4.7 17 0l99-99c7.6-7.6 2.2-20.5-8.5-20.5H256v-67c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v67h-60.6c-10.7 0-16 12.9-8.5 20.5z'/%3E%3C/svg%3E") center / contain no-repeat; }
/* Footer social icons row (above copyright, matches live). */
.gmj-footer-social { display: flex; gap: .8rem; margin: 2.25rem 0 0; }
.gmj-footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(220,184,115,.5); color: var(--gmj-gold); display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease; }
.gmj-footer-social a:hover { background: var(--gmj-gold); color: var(--gmj-dark); }
.gmj-footer-social svg { display: block; }
.gmj-footer-contact li { display: flex; align-items: center; gap: .6rem; }
.gmj-fi { color: var(--gmj-gold); display: inline-flex; flex: none; }
.gmj-fi svg { display: block; }
.gmj-copyright { text-align: center; opacity: .7; font-size: .8rem; margin: 2.5rem 0 0; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.gmj-credit { text-align: center; opacity: .55; font-size: .75rem; margin: .4rem 0 0; }
.gmj-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.gmj-credit a:hover { opacity: .85; }
@media (max-width: 860px) {
	.gmj-footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
	.gmj-newsletter { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (max-width: 560px) { .gmj-footer-cols { grid-template-columns: 1fr; } }
/* Newsletter on mobile: stack the Subscribe button (full-width) under the email input */
@media (max-width: 600px) {
	.gmj-newsletter fieldset { flex-direction: column; }
	.gmj-newsletter .ff_submit_btn_wrapper, .gmj-newsletter .ff-btn-submit { width: 100%; }
}


/* =============================================================================
   PRODUCT CARD — ported VERBATIM from the live child theme (design is final).
   Do not restyle. Only relocated from inline wp_head <style> to here.
   ============================================================================= */

/* ── Card wrapper (the <li>) ─────────────────────────── */
ul.products li.product.gmj-card-wrap {
	padding: 0 !important;
	position: relative;
	overflow: visible !important;
}

/* ── Inner card ──────────────────────────────────────── */
.gmj-card-wrap .gmj-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #ddd6c8;
	border-radius: 4px;
	overflow: hidden;
	box-shadow:
		4px 6px 18px rgba(0,0,0,0.09),
		-4px 6px 18px rgba(0,0,0,0.09),
		0 8px 18px rgba(0,0,0,0.07);
	height: 100%;
}

/* ── Product image ───────────────────────────────────── */
.gmj-card__image {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	overflow: hidden;
}
.gmj-card__image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.35s ease;
}
.gmj-card__image:hover img {
	transform: scale(1.04);
}

/* ── Stock + wishlist row ────────────────────────────── */
.gmj-card__meta {
	flex-shrink: 0;
	background: #f5f1e8;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 14px;
	border-top: 1px solid #ede5d6;
}
.gmj-card__stock {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #1C244B;
	letter-spacing: 0.02em;
}
.gmj-card__stock.out-of-stock {
	color: #999;
}

/* ── YITH wishlist — gold text link (matches live; no heart icon) ─── */
.gmj-card__wishlist .yith-wcwl-add-to-wishlist,
.gmj-card__wishlist .yith-wcwl-add-to-wishlist * {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}
/* live shows the text link, not the inline SVG heart — hide the heart */
.gmj-card__wishlist svg,
.gmj-card__wishlist .add_to_wishlist::after,
.gmj-card__wishlist .yith-wcwl-add-button a::after { display: none !important; }
.gmj-card__wishlist a {
	display: inline-flex !important;
	align-items: center;
	font-family: 'Poppins', sans-serif;
	font-size: 12px !important;
	font-weight: 400;
	color: var(--gmj-gold) !important;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-indent: 0;
	white-space: nowrap;
}
.gmj-card__wishlist a:hover { color: var(--gmj-gold-deep) !important; text-decoration: underline; }

/* ── Title + price section ───────────────────────────── */
.gmj-card__info {
	background: #efe8d6;
	padding: 12px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	border-top: 1px solid #e0d5c0;
	min-height: 80px;
}
.gmj-card__title {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--gmj-gold);
	text-decoration: none;
	line-height: 1.4;
	display: block;
}
.gmj-card__title:hover {
	text-decoration: underline;
	color: var(--gmj-gold-deep);
}
.gmj-card__price {
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin-top: 4px;
}
.gmj-price__was {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	color: #1C244B;
	opacity: 0.65;
}
.gmj-price__was del,
.gmj-price__was del * {
	text-decoration: line-through;
	color: inherit !important;
}
.gmj-price__now {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #c32721;
}

/* Red border on sale product cards — only when prices are visible */
.gmj-prices-visible li.gmj-card-wrap.sale .gmj-card {
	border: 3px solid #c32721;
}
.gmj-price__regular {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #1C244B;
}
.gmj-price__regular .woocommerce-Price-amount,
.gmj-price__now .woocommerce-Price-amount,
.gmj-price__was .woocommerce-Price-amount {
	color: inherit !important;
}

/* ── Ribbon ─────────────────────────────────────────── */
.gmj-card-wrap .gmj-ribbon {
	position: absolute;
	top: -6px;
	right: -14px;
	z-index: 10;
	pointer-events: none;
	width: 200px;
	height: 200px;
}
.gmj-ribbon__img {
	width: 100%;
	height: 100%;
	display: block;
}
.gmj-ribbon__text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(calc(-50% + 27px), calc(-50% - 27px)) rotate(45deg);
	text-align: center;
	white-space: nowrap;
	line-height: 1.3;
}
.gmj-ribbon__pct,
.gmj-ribbon__off {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: #c4a035;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* =============================================================================
   Phase 2 — WooCommerce grid, home, reviews, mobile nav
   ============================================================================= */

/* ── WooCommerce product grid ─────────────────────────────── */
.gmj-woocommerce ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.gmj-woocommerce ul.products::before,
.gmj-woocommerce ul.products::after { content: none; }
/* Reset WooCommerce's default float/22%-width on grid items so the grid controls sizing. */
.gmj-woocommerce ul.products li.product,
.gmj-home-favourites ul.products li.product { width: 100% !important; float: none !important; margin: 0 !important; clear: none !important; }
/* Home favourites grid (mirrors the archive grid). */
.gmj-home-favourites ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; padding: 0; }
/* WC's clearfix ::before/::after become stray grid items and push the first product into column 2 — kill them. */
.gmj-home-favourites ul.products::before, .gmj-home-favourites ul.products::after { content: none; display: none; }
@media (max-width: 1024px) { .gmj-home-favourites ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gmj-home-favourites ul.products { grid-template-columns: repeat(2, 1fr); } }
/* Phones: favourites full-width, one per row (like the category cards) */
@media (max-width: 600px)  { .gmj-home-favourites ul.products { grid-template-columns: 1fr; } }
.woocommerce-result-count { color: var(--gmj-navy); opacity: .7; font-size: .85rem; }
.woocommerce-ordering { margin-bottom: 1.5rem; }
.woocommerce-breadcrumb { font-size: .85rem; margin-bottom: 1rem; opacity: .75; }
@media (max-width: 1024px) { .gmj-woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gmj-woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* ── Archive filter bar (horizontal: subcat pills + facet dropdowns) ──── */
.gmj-shop__main { min-height: 320px; }
.gmj-filterbar { margin: 0 0 1.75rem; }
.gmj-subcats { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.gmj-subcat { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border: 1px solid var(--gmj-sand); border-radius: 999px; font-size: .82rem; color: var(--gmj-navy); background: #fff; transition: border-color .2s, background .2s, color .2s; }
.gmj-subcat:hover { border-color: var(--gmj-gold); text-decoration: none; }
.gmj-subcat.is-current { background: var(--gmj-navy); color: #fff; border-color: var(--gmj-navy); }
.gmj-subcat__count { font-size: .72rem; opacity: .6; }
.gmj-facets { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.gmj-facet-dd { position: relative; }
.gmj-facet-dd__btn { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1rem; border: 1px solid var(--gmj-sand); border-radius: 4px; background: #fff; color: var(--gmj-navy); font-family: var(--gmj-font); font-size: .85rem; font-weight: 500; cursor: pointer; transition: border-color .2s; }
.gmj-facet-dd__btn:hover, .gmj-facet-dd.is-open .gmj-facet-dd__btn { border-color: var(--gmj-gold); }
.gmj-facet-dd__btn svg { transition: transform .2s; }
.gmj-facet-dd.is-open .gmj-facet-dd__btn svg { transform: rotate(180deg); }
.gmj-facet-dd__badge { background: var(--gmj-gold); color: var(--gmj-navy); border-radius: 999px; min-width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; padding: 0 5px; }
.gmj-facet-dd__badge[hidden] { display: none; }
.gmj-facet-dd__panel { position: absolute; top: calc(100% + 6px); left: 0; z-index: 30; min-width: 220px; background: #fff; border: 1px solid var(--gmj-sand); border-radius: 6px; box-shadow: 0 16px 36px rgba(0,0,0,.14); padding: .6rem; display: none; max-height: 340px; overflow: auto; }
.gmj-facet-dd.is-open .gmj-facet-dd__panel { display: block; }
.gmj-facet { list-style: none; margin: 0; padding: 0; }
.gmj-facet__item { display: flex; align-items: center; gap: .5rem; padding: .4rem .5rem; border-radius: 4px; cursor: pointer; font-size: .85rem; color: var(--gmj-text); }
.gmj-facet__item:hover { background: var(--gmj-cream); }
.gmj-facet__item input { accent-color: var(--gmj-gold-deep); width: 16px; height: 16px; flex: none; }
.gmj-facet__name { flex: 1; }
.gmj-facet__count { font-size: .72rem; opacity: .55; }
.gmj-filter-clear { border: 0; background: none; color: var(--gmj-gold-deep); font-size: .8rem; font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; padding: .55rem .4rem; }
.gmj-active-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.gmj-active-chips:empty { margin-top: 0; }
.gmj-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .35rem .35rem .7rem; background: var(--gmj-cream); border: 1px solid var(--gmj-sand); border-radius: 999px; font-size: .78rem; color: var(--gmj-navy); }
.gmj-chip button { border: 0; background: none; cursor: pointer; color: var(--gmj-gold-deep); font-size: 1.05rem; line-height: 1; padding: 0 .2rem; }
.gmj-shop__main.is-loading { opacity: .45; pointer-events: none; transition: opacity .2s; }
.gmj-shop__none { padding: 3rem 0; text-align: center; color: var(--gmj-navy); }
/* Mobile: anchor facet dropdowns to the whole facets row (full-width) so a
   left-positioned toggle's panel can't run off the left edge of the screen. */
@media (max-width: 600px) {
	.gmj-facets { position: relative; }
	.gmj-facet-dd { position: static; }
	.gmj-facet-dd__panel { left: 0; right: auto; width: 100%; min-width: 0; max-width: 100%; }
}

/* WooCommerce "order by" select — styled to match the facet dropdown buttons. */
.gmj-woocommerce .woocommerce-ordering { margin: 0 0 1.75rem; }
.gmj-woocommerce .woocommerce-ordering select,
.gmj-woocommerce select.orderby {
	appearance: none; -webkit-appearance: none; -moz-appearance: none;
	font-family: var(--gmj-font); font-size: .85rem; font-weight: 500; color: var(--gmj-navy);
	background-color: #fff; border: 1px solid var(--gmj-sand); border-radius: 4px;
	padding: .65rem 3rem .65rem 1.1rem; margin: 0; cursor: pointer; line-height: 1.3; max-width: 100%; min-width: 210px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F101D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 1.1rem center; background-size: 14px;
	transition: border-color .2s, box-shadow .2s;
}
.gmj-woocommerce .woocommerce-ordering select:hover,
.gmj-woocommerce select.orderby:hover { border-color: var(--gmj-gold); }
.gmj-woocommerce .woocommerce-ordering select:focus,
.gmj-woocommerce select.orderby:focus { outline: none; border-color: var(--gmj-gold); box-shadow: 0 0 0 2px rgba(220,184,115,.25); }
/* Result-count + ordering row alignment. */
.gmj-woocommerce .woocommerce-result-count { margin: 0; }
@media (max-width: 600px) {
	.gmj-woocommerce .woocommerce-ordering,
	.gmj-woocommerce .woocommerce-ordering select { width: 100%; }
}

/* ── Single product (basic; hooks render Novuna/request-price/gallery) ── */
/* WC pages: showroom hero band + transparent header (like live + landing pages). */
body.gmj-wc-hero-page { background-color: var(--gmj-cream); }
body.gmj-wc-hero-page .gmj-site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; }
body.gmj-wc-hero-page .gmj-utilbar,
body.gmj-wc-hero-page .gmj-logobar,
body.gmj-wc-hero-page .gmj-navbar { background: transparent; border-top: 0; }
body.gmj-wc-hero-page .gmj-utilbar { border-bottom: 0; }
.gmj-wc-hero { background-size: cover; background-position: center; text-align: center; padding: 15.75rem 0 3.25rem; }
.gmj-wc-hero__title { color: var(--gmj-gold); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; margin: 0; text-wrap: balance; }
/* Mobile header is taller (logo + full-width Make Appointment row), so the
   title needs the same clearance as landing pages or it overlaps the button. */
@media (max-width: 860px) { .gmj-wc-hero { padding: 15.75rem 0 2.5rem; } }

/* Breadcrumb */
.gmj-woocommerce .woocommerce-breadcrumb { font-size: .82rem; color: var(--gmj-navy); opacity: .7; margin: 1.5rem 0 1.75rem; }
.gmj-woocommerce .woocommerce-breadcrumb a { color: var(--gmj-gold-deep); }

/* ── Single product ─────────────────────────────────────────── */
.gmj-woocommerce--single div.product { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 3rem; align-items: start; }
.gmj-woocommerce--single .woocommerce-product-gallery { width: 100% !important; margin: 0 !important; float: none !important; }
.gmj-woocommerce--single .summary.entry-summary { width: 100% !important; float: none !important; margin: 0 !important; }
.gmj-woocommerce--single .woocommerce-product-gallery__wrapper { margin: 0; }
.gmj-woocommerce--single .woocommerce-product-gallery__image img { width: 100%; height: auto; border-radius: 4px; }
.gmj-woocommerce--single .flex-control-thumbs { display: flex; gap: .6rem; margin: .8rem 0 0; padding: 0; list-style: none; }
.gmj-woocommerce--single .flex-control-thumbs li { width: 80px; }
.gmj-woocommerce--single .flex-control-thumbs img { border-radius: 4px; border: 1px solid var(--gmj-sand); cursor: pointer; opacity: .7; transition: opacity .2s, border-color .2s; }
.gmj-woocommerce--single .flex-control-thumbs img:hover,
.gmj-woocommerce--single .flex-control-thumbs img.flex-active { opacity: 1; border-color: var(--gmj-gold); }
.gmj-woocommerce--single .product_title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--gmj-gold); font-weight: 700; margin: 0 0 1.25rem; }
.gmj-woocommerce--single .price { color: var(--gmj-navy); font-weight: 600; font-size: 1.5rem; margin: 0 0 1.25rem; }
.gmj-woocommerce--single .price del { opacity: .5; font-weight: 400; }
.gmj-woocommerce--single .price ins { text-decoration: none; color: var(--gmj-sale-red); }
.gmj-woocommerce--single .single_add_to_cart_button,
.gmj-woocommerce--single .button,
.gmj-woocommerce--single .request-a-price,
.gmj-woocommerce--single a.request_price_button,
.gmj-woocommerce--single .wc-rp-button { background: var(--gmj-gold); color: var(--gmj-navy); border-radius: 4px; padding: .8rem 1.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; border: 0; text-decoration: none; display: inline-block; }
.gmj-woocommerce--single .single_add_to_cart_button:hover,
.gmj-woocommerce--single .button:hover,
.gmj-woocommerce--single .request-a-price:hover,
.gmj-woocommerce--single a.request_price_button:hover { background: var(--gmj-navy); color: var(--gmj-gold); }
.gmj-woocommerce--single .quantity { margin-right: .6rem; }
.gmj-woocommerce--single .yith-wcwl-add-to-wishlist { margin: 1.25rem 0 0; }

/* Product tabs (Description / About Us / Delivery Info) — underline style. */
.gmj-woocommerce--single .woocommerce-tabs { grid-column: 1 / -1; margin-top: 3.5rem; }
.gmj-woocommerce--single .wc-tabs { display: flex; gap: .25rem; list-style: none; margin: 0 0 2rem; padding: 0; border-bottom: 2px solid var(--gmj-sand); flex-wrap: wrap; }
/* kill WooCommerce's default tab curves/borders */
.gmj-woocommerce--single .wc-tabs::before,
.gmj-woocommerce--single .wc-tabs li::before,
.gmj-woocommerce--single .wc-tabs li::after { display: none !important; border: 0 !important; box-shadow: none !important; content: none !important; }
.gmj-woocommerce--single .wc-tabs li { margin: 0; background: transparent !important; border: 0 !important; border-radius: 0 !important; }
.gmj-woocommerce--single .wc-tabs li a { position: relative; display: block; padding: .9rem 1.6rem; color: var(--gmj-navy) !important; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; background: transparent; transition: color .2s ease; }
.gmj-woocommerce--single .wc-tabs li a::after { content: ''; position: absolute; left: .9rem; right: .9rem; bottom: -2px; height: 3px; background: var(--gmj-gold-deep); transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
.gmj-woocommerce--single .wc-tabs li a:hover { color: var(--gmj-gold-deep) !important; }
.gmj-woocommerce--single .wc-tabs li.active a { color: var(--gmj-gold-deep) !important; font-weight: 700; }
.gmj-woocommerce--single .wc-tabs li.active a::after { transform: scaleX(1); }
.gmj-woocommerce--single .woocommerce-Tabs-panel { padding: .25rem; }
.gmj-woocommerce--single .woocommerce-Tabs-panel > :first-child { margin-top: 0; }
.gmj-woocommerce--single .woocommerce-Tabs-panel h2,
.gmj-woocommerce--single .woocommerce-Tabs-panel h3 { color: var(--gmj-gold); }
@media (max-width: 860px) { .gmj-woocommerce--single div.product { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ── Cart & Checkout (native WooCommerce shortcodes, brand-styled) ── */
.woocommerce-cart .gmj-page__content,
.woocommerce-checkout .gmj-page__content { color: var(--gmj-text); }

/* Notices — gold accent, brand cream */
.woocommerce-cart .woocommerce-message,
.woocommerce-checkout .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-checkout .woocommerce-info { border-top-color: var(--gmj-gold); background: var(--gmj-cream); color: var(--gmj-navy); border-radius: 4px; }
.woocommerce-cart .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-cart .woocommerce-info::before { color: var(--gmj-gold-deep); }

/* Shared brand button (gold → navy on hover). Selectors carry the .woocommerce
   wrapper + element type so they out-specify WooCommerce's default grey button. */
.woocommerce-cart .woocommerce a.button,
.woocommerce-cart .woocommerce button.button,
.woocommerce-cart .woocommerce input.button,
.woocommerce-cart .woocommerce a.checkout-button,
.woocommerce-checkout .woocommerce a.button,
.woocommerce-checkout .woocommerce button.button,
.woocommerce-checkout .woocommerce input.button,
.woocommerce-checkout .woocommerce #place_order { background: var(--gmj-gold); color: var(--gmj-navy); border: 0; border-radius: 4px; padding: .8rem 1.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; transition: background .2s ease, color .2s ease; }
.woocommerce-cart .woocommerce a.button:hover,
.woocommerce-cart .woocommerce button.button:hover,
.woocommerce-cart .woocommerce input.button:hover,
.woocommerce-cart .woocommerce a.checkout-button:hover,
.woocommerce-checkout .woocommerce a.button:hover,
.woocommerce-checkout .woocommerce button.button:hover,
.woocommerce-checkout .woocommerce input.button:hover,
.woocommerce-checkout .woocommerce #place_order:hover { background: var(--gmj-navy); color: var(--gmj-gold); }
.woocommerce-cart .woocommerce button.button:disabled,
.woocommerce-cart .woocommerce button.button[disabled] { opacity: .45; cursor: default; }
.woocommerce-cart .woocommerce button.button:disabled:hover,
.woocommerce-cart .woocommerce button.button[disabled]:hover { background: var(--gmj-gold); color: var(--gmj-navy); }

/* ---- Cart table ---- */
.woocommerce-cart table.shop_table { border: 1px solid var(--gmj-sand); border-radius: 6px; border-collapse: separate; border-spacing: 0; overflow: hidden; margin: 0; }
.woocommerce-cart table.shop_table thead th { background: var(--gmj-navy); color: var(--gmj-cream); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; padding: 1rem; border: 0; }
.woocommerce-cart table.shop_table td { padding: 1.1rem 1rem; border-top: 1px solid var(--gmj-sand); vertical-align: middle; }
.woocommerce-cart table.shop_table tr:first-child td { border-top: 0; }
.woocommerce-cart table.shop_table td.product-thumbnail img { width: 64px; height: auto; border-radius: 4px; border: 1px solid var(--gmj-sand); }
.woocommerce-cart table.shop_table td.product-name a { color: var(--gmj-navy); font-weight: 600; text-decoration: none; }
.woocommerce-cart table.shop_table td.product-name a:hover { color: var(--gmj-gold-deep); }
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal { color: var(--gmj-navy); }
.woocommerce-cart td.product-remove a.remove { color: var(--gmj-gold-deep) !important; font-size: 1.3rem; background: none; }
.woocommerce-cart td.product-remove a.remove:hover { background: none; color: var(--gmj-sale-red) !important; }
.woocommerce-cart .quantity input.qty { padding: .45rem; border: 1px solid var(--gmj-sand); border-radius: 4px; width: 64px; text-align: center; }

/* coupon + actions row — breathing room around the coupon controls */
.woocommerce-cart .cart td.actions { padding: 1.75rem 1.25rem; }
/* id selector needed — WooCommerce styles #coupon_code by id. Match the
   Apply-coupon button's height (42px) so the two line up. */
.woocommerce-cart .woocommerce .coupon #coupon_code { height: 42px; box-sizing: border-box; padding: 0 1rem; font-size: .95rem; min-width: 200px; border: 1px solid var(--gmj-sand); border-radius: 4px; vertical-align: middle; }
.woocommerce-cart .woocommerce .coupon .button { vertical-align: middle; }

/* ---- Cart totals card (right-aligned) ---- */
.woocommerce-cart .cart-collaterals { width: 100%; margin-top: 2.5rem; }
.woocommerce-cart .cart-collaterals .cross-sells { display: none; } /* none configured; keep clean */
.woocommerce-cart .cart-collaterals .cart_totals { float: right; width: 100%; max-width: 460px; background: var(--gmj-cream); border: 1px solid var(--gmj-sand); border-radius: 6px; padding: 1.5rem 1.75rem; }
.woocommerce-cart .cart_totals h2 { color: var(--gmj-gold); font-size: 1.2rem; margin: 0 0 1rem; }
.woocommerce-cart .cart_totals table { border: 0; margin: 0; }
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td { border-top: 1px solid var(--gmj-sand); padding: .8rem 0; }
.woocommerce-cart .cart_totals tr:first-child th,
.woocommerce-cart .cart_totals tr:first-child td { border-top: 0; }
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total .amount { color: var(--gmj-navy); font-size: 1.15rem; }
.woocommerce-cart .wc-proceed-to-checkout { padding: 1.25rem 0 0; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button { display: block; text-align: center; font-size: .9rem; }

/* ---- Checkout ----
   NB: WooCommerce puts the .col2-set class ON #customer_details, so billing
   (.col-1) and ship-to/notes (.col-2) are direct children. Un-float them so they
   stack vertically inside the (narrower) left column of the checkout grid. */
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { width: auto; float: none; }
.woocommerce-checkout .col2-set .col-2 { margin-top: 2rem; }
.woocommerce-checkout h3 { color: var(--gmj-gold); font-size: 1.2rem; border-bottom: 1px solid var(--gmj-sand); padding-bottom: .6rem; margin-bottom: 1.25rem; }
.woocommerce-checkout .form-row label { font-weight: 500; color: var(--gmj-navy); }
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout select,
.woocommerce-checkout .select2-container .select2-selection { border: 1px solid var(--gmj-sand); border-radius: 4px; padding: .7rem .8rem; }
.woocommerce-checkout .select2-container .select2-selection--single { height: auto; }
.woocommerce-checkout #order_review_heading { color: var(--gmj-navy); }
.woocommerce-checkout #order_review { background: var(--gmj-cream); border: 1px solid var(--gmj-sand); border-radius: 6px; padding: 1.5rem 1.75rem; }
.woocommerce-checkout #order_review table.shop_table { border: 0; margin: 0; }
.woocommerce-checkout #order_review table.shop_table thead th { background: transparent; color: var(--gmj-navy); border-bottom: 2px solid var(--gmj-sand); text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; padding: .6rem 0; }
.woocommerce-checkout #order_review table.shop_table td { padding: .7rem 0; border-top: 1px solid var(--gmj-sand); }
/* keep the totals label column tight so shipping methods sit on one line */
.woocommerce-checkout #order_review table.shop_table th { width: 30%; padding-right: .75rem; }
.woocommerce-checkout #order_review #shipping_method li { white-space: nowrap; }
.woocommerce-checkout #order_review .order-total th,
.woocommerce-checkout #order_review .order-total .amount { color: var(--gmj-navy); font-size: 1.15rem; }
.woocommerce-checkout #payment { background: transparent; border-radius: 4px; }
.woocommerce-checkout #payment ul.payment_methods { border: 0; padding: 0; }
.woocommerce-checkout #place_order { width: 100%; font-size: .95rem; margin-top: 1rem; }

/* Desktop: form left, order summary as a sticky card on the right */
@media (min-width: 981px) {
	.woocommerce-checkout form.checkout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: start; }
	.woocommerce-checkout form.checkout #customer_details { grid-column: 1; grid-row: 1 / span 2; }
	.woocommerce-checkout form.checkout #order_review_heading { grid-column: 2; grid-row: 1; margin-top: 0; }
	.woocommerce-checkout form.checkout #order_review { grid-column: 2; grid-row: 2; position: sticky; top: 1.5rem; }
}

/* Mobile stacking */
@media (max-width: 600px) {
	.woocommerce-cart .cart-collaterals .cart_totals { max-width: none; }
	.woocommerce-cart .cart .actions .coupon { display: flex; gap: .5rem; margin-bottom: 1rem; }
	.woocommerce-cart .woocommerce .coupon #coupon_code { min-width: 0; flex: 1; }
}

/* ── Home: hero (faithful: dark showroom, gold quote, curved base) ── */
.gmj-hero { position: relative; background-size: cover; background-position: 0 -5px; color: #fff; overflow: hidden; min-height: 900px; display: flex; align-items: flex-start; border-radius: 0 0 64px 64px; }
.gmj-hero__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(15,16,29,.84), rgba(15,16,29,.9)); }
.gmj-hero__inner { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start; gap: 1.75rem; padding: 305px 1.25rem 7rem; }
.gmj-hero__quote, .gmj-hero__copy { width: 50%; max-width: 620px; }
.gmj-hero__quote { display: flex; gap: 1.1rem; align-items: stretch; }
.gmj-hero__bar { width: 5px; background: var(--gmj-gold); flex: none; }
.gmj-hero__title { color: var(--gmj-gold); font-size: clamp(2.1rem, 3.3vw, 2.75rem); font-weight: 700; line-height: 1.12; margin: 0; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.gmj-hero__copy p { color: #f1ece2; margin: 0 0 1rem; line-height: 1.7; font-size: .98rem; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.gmj-hero__copy p:last-child { margin-bottom: 0; }
.gmj-hero__curve { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.gmj-hero__curve svg { width: 100%; height: 70px; display: block; }
@media (max-width: 860px) {
	/* Mirror live: drop the showroom background image on mobile — solid dark band instead.
	   (Image is an inline style in front-page.php, so !important is required.) */
	.gmj-hero { min-height: 800px; background-image: none !important; background-color: #0f101d; }
	.gmj-hero__inner { align-items: flex-start; gap: 1.5rem; padding: 3rem 1.25rem 5rem; }
	.gmj-hero__quote, .gmj-hero__copy { width: 100%; max-width: none; }
	.gmj-hero__title { font-size: 2rem; }
}

/* ── Home: section titles + 4 curated category cards ──────── */
.gmj-section-title { text-align: center; font-size: 2rem; font-weight: 700; color: var(--gmj-gold); margin: 2.5rem 0 1.5rem; }
/* cards straddle the hero's rounded bottom: tops kiss the dark edge, bodies hang onto the cream (like live) */
.gmj-home-cards { background: transparent; }
.gmj-home-cards .gmj-container { margin-top: -64px; position: relative; z-index: 2; padding-bottom: 3rem; }
/* like live: natural-aspect full-width images, staggered middle pair, varied heights (NOT forced equal) */
.gmj-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; align-items: start; }
.gmj-cards .gmj-cat-card:nth-child(2), .gmj-cards .gmj-cat-card:nth-child(3) { margin-top: 60px; }
/* li = transparent 485px column (like live); the white card sits at its top, natural height */
.gmj-cat-card { min-height: 485px; }
.gmj-cat-card a { display: block; background: #fff; border-radius: 0; box-shadow: 0 10px 20px -10px rgba(0,0,0,.25); overflow: hidden; text-align: center; color: var(--gmj-text); text-decoration: none; padding: 40px 20px; box-sizing: border-box; }
.gmj-cat-card__img { display: block; overflow: hidden; }
.gmj-cat-card__img img { width: 100%; height: auto; display: block; }
.gmj-cat-card__title { display: block; color: var(--gmj-gold); font-weight: 600; font-size: 1.2rem; margin: 1.1rem 0 .6rem; }
.gmj-cat-card a:hover .gmj-cat-card__title { text-decoration: underline; }
.gmj-cat-card__desc { display: block; font-size: .82rem; line-height: 1.5; padding: 0; }
@media (max-width: 860px) {
	.gmj-cards { grid-template-columns: repeat(2,1fr); }
	.gmj-cards .gmj-cat-card:nth-child(2), .gmj-cards .gmj-cat-card:nth-child(3) { margin-top: 0; }
	.gmj-home-cards .gmj-container { margin-top: -30px; }
}
/* Phones: category cards full-width, one per row (matches live) */
@media (max-width: 600px) {
	.gmj-cards { grid-template-columns: 1fr; }
}

/* ── Home: services strip ─────────────────────────────────── */
.gmj-home-services { background: var(--gmj-navy); color: #fff; margin-top: 2rem; }
.gmj-services-strip { display: flex; justify-content: space-around; gap: 1.5rem; padding: 2rem 1.25rem; flex-wrap: wrap; text-align: center; }
.gmj-service-hook strong { display: block; color: var(--gmj-gold); font-weight: 600; }
.gmj-service-hook span { opacity: .85; font-size: .9rem; }

/* ── Reviews — Editorial layout (Claude-design "Editorial" direction) ──────
   Sticky left rail (title + featured quote + Google summary) beside a 2-col
   masonry wall. Self-contained dark band; scoped under #gmj-reviews. ───────── */
#gmj-reviews {
	--gmr-bg: #2b2a27; --gmr-card: #34312c;
	--gmr-gold: #c4a76b; --gmr-gold-bright: #ddc188;
	--gmr-cream: #f2ede3; --gmr-muted: rgba(242,237,227,.52); --gmr-hairline: rgba(196,167,107,.22);
	--gmr-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	background: var(--gmr-bg); color: var(--gmr-cream); font-family: var(--gmj-font);
	padding: 72px clamp(20px, 5vw, 64px); -webkit-font-smoothing: antialiased;
}
#gmj-reviews *, #gmj-reviews *::before, #gmj-reviews *::after { box-sizing: border-box; }
#gmj-reviews a { text-decoration: none; color: inherit; }
.gmr-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 52px; align-items: start; }

/* left rail */
.gmr-rail { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; position: sticky; top: 32px; }
.gmr-eyebrow { font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--gmr-gold); font-weight: 600; }
.gmr-title { font-family: var(--gmr-serif); font-weight: 600; font-style: italic; font-size: clamp(34px,4vw,46px); line-height: 1.12; margin: 6px 0 12px; color: var(--gmr-cream); }
.gmr-feature { margin: 0; }
.gmr-mark { display: block; font-family: var(--gmr-serif); font-weight: 600; font-size: 60px; color: var(--gmr-gold); opacity: .4; line-height: .85; margin: 0 0 6px; }
.gmr-feature p { font-family: var(--gmr-serif); font-style: italic; font-weight: 500; font-size: 21px; line-height: 1.52; color: var(--gmr-cream); margin: 0 0 24px; }
.gmr-feature cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
.gmr-feature cite b { display: block; font-weight: 600; font-size: 13px; color: var(--gmr-cream); }
.gmr-feature cite i { display: block; font-style: normal; font-size: 11.5px; color: var(--gmr-muted); margin-top: 2px; }
.gmr-summary { display: flex; align-items: center; gap: 18px; width: 100%; padding-top: 24px; border-top: 1px solid var(--gmr-hairline); }
.gmr-score { font-family: var(--gmr-serif); font-weight: 600; font-size: 50px; line-height: 1; color: var(--gmr-gold-bright); }
.gmr-sinfo { display: flex; flex-direction: column; gap: 6px; }
.gmr-ssub { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--gmr-muted); }
.gmr-ssub b { color: var(--gmr-cream); font-weight: 600; }
.gmr-all { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--gmr-gold); font-weight: 500; border-bottom: 1px solid var(--gmr-hairline); padding-bottom: 4px; transition: .25s; }
.gmr-all:hover { color: var(--gmr-gold-bright); border-color: var(--gmr-gold-bright); }

/* masonry wall */
.gmr-wall { column-count: 2; column-gap: 20px; }
.gmr-card { display: block; break-inside: avoid; margin: 0 0 20px; background: var(--gmr-card); border: 1px solid var(--gmr-hairline); border-radius: 3px; padding: 24px 24px 22px; transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s; }
.gmr-card.minimal { background: transparent; border: none; border-top: 1px solid var(--gmr-hairline); border-radius: 0; padding: 22px 2px 8px; }
.gmr-card:hover { transform: translateY(-4px); border-color: rgba(196,167,107,.55); box-shadow: 0 18px 40px -22px rgba(0,0,0,.6); }
.gmr-card.minimal:hover { transform: none; border-top-color: var(--gmr-gold-bright); box-shadow: none; }
.gmr-ctop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.gmr-quote { font-family: var(--gmr-serif); font-style: italic; font-weight: 500; font-size: 18.5px; line-height: 1.5; color: rgba(242,237,227,.9); margin: 0; }
.gmr-foot { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.gmr-name { font-weight: 600; font-size: 13px; color: var(--gmr-cream); letter-spacing: .02em; }
.gmr-date { font-size: 11.5px; color: var(--gmr-muted); letter-spacing: .02em; }
.gmr-stars { display: inline-flex; align-items: center; gap: 2px; }
.gmr-mono { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 600; letter-spacing: .02em; flex: none; }
.gmr-glink { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--gmr-gold); letter-spacing: .05em; text-transform: uppercase; margin-left: auto; opacity: 0; transition: opacity .25s; }
.gmr-card:hover .gmr-glink { opacity: .85; }

/* landing pages embed the band inside the constrained content column → full-bleed it */
.gmj-landing__content #gmj-reviews { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

@media (max-width: 980px) {
	.gmr-inner { grid-template-columns: 1fr; gap: 40px; }
	.gmr-rail { position: static; }
	.gmr-feature { max-width: 640px; }
}
@media (max-width: 600px) {
	#gmj-reviews { padding: 52px 20px; }
	.gmr-wall { column-count: 1; }
	.gmr-summary { flex-wrap: wrap; gap: 14px; }
}
@media (prefers-reduced-motion: reduce) { .gmr-card { transition: none; } }

/* ── Find us on our socials ───────────────────────────────── */
.gmj-home-socials { background: #fff; padding: 2rem 0 3.5rem; text-align: center; }
.gmj-home-socials .gmj-section-title { font-size: clamp(2.4rem, 5vw, 4rem); }
.gmj-socials__sub { color: var(--gmj-navy); margin: -.5rem 0 1.5rem; }
.gmj-socials__links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.gmj-social-btn { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.6rem; border: 1px solid var(--gmj-gold); border-radius: 4px; color: var(--gmj-navy); font-weight: 600; background: #fff; }
.gmj-social-btn svg { color: var(--gmj-gold); flex: none; }
.gmj-social-btn:hover { background: var(--gmj-gold); color: #fff; text-decoration: none; }
.gmj-social-btn:hover svg { color: #fff; }
/* Instagram feed grid (own feed; replaces Elfsight) */
.gmj-ig-grid { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; }
.gmj-ig-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 4px; }
.gmj-ig-tile a { display: block; width: 100%; height: 100%; }
.gmj-ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gmj-ig-tile:hover img { transform: scale(1.06); }
.gmj-ig-tile__icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; background: rgba(15,16,29,.35); transition: opacity .25s ease; }
.gmj-ig-tile:hover .gmj-ig-tile__icon { opacity: 1; }
.gmj-ig-follow { margin-top: 1.5rem; }
@media (max-width: 860px) { .gmj-ig-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Off-canvas mobile nav ────────────────────────────────── */
/* Full-screen navy menu that FADES in. No off-screen transform anywhere (a slide-in
   panel parked off-screen was widening the page → close button drifted off-screen +
   layout broke). The nav itself is the dark backdrop; the panel just holds content. */
.gmj-mobile-nav { position: fixed; inset: 0; z-index: 1000; background: var(--gmj-navy); visibility: hidden; opacity: 0; transition: opacity .25s ease; overflow-x: hidden; overflow-y: auto; }
.gmj-mobile-nav.is-open { visibility: visible; opacity: 1; }
.gmj-mobile-nav__backdrop { display: none; }
.gmj-mobile-nav__panel { position: relative; width: 100%; min-height: 100%; background: transparent; padding: clamp(3.5rem, 13vw, 5rem) clamp(1.5rem, 7vw, 2.5rem) 2.5rem; }
.gmj-mobile-nav__close { position: absolute; top: 1.1rem; right: 1.1rem; background: none; border: 0; font-size: 2.4rem; line-height: 1; color: var(--gmj-gold); cursor: pointer; padding: .25rem .5rem; z-index: 2; }
.gmj-mobile-menu { list-style: none; margin: 0; padding: 0; }
.gmj-mobile-menu li { border-bottom: 1px solid rgba(220,184,115,.18); }
.gmj-mobile-menu a { display: block; padding: clamp(.85rem, 3.4vw, 1.25rem) .25rem; color: var(--gmj-gold); font-weight: 500; font-size: clamp(1.1rem, 4.6vw, 1.5rem); letter-spacing: .01em; line-height: 1.3; }
.gmj-mobile-menu a:hover, .gmj-mobile-menu a:focus { color: var(--gmj-cream); text-decoration: none; }
body.gmj-nav-locked { overflow: hidden; }

/* ============================================================
   Team — "Meet the family" carousel (Claude Design handoff)
   Tokens mapped to the site palette; Cormorant Garamond display.
   ============================================================ */
:root{
  --navy: var(--gmj-navy);
  --navy-deep: #0b0c16;
  --gold: var(--gmj-gold);
  --gold-bright: #e7c48f;
  --on-dark: #f3eee4;
  --on-dark-soft: #aeb7c4;
  --line-dark: rgba(255,255,255,.12);
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --r-md: 10px; --r-lg: 16px; --r-pill: 999px;
  --shadow-pop: 0 30px 70px -30px rgba(8,19,32,.45);
}
.eyebrow{ font-size:12px; letter-spacing:.32em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:14px; }

.team-x{ position:relative; width:100%; color:var(--on-dark); overflow:hidden; background:var(--navy-deep); padding-block:clamp(40px,6vw,80px); }
.team-x .bg{ position:absolute; inset:0; z-index:0; opacity:.5; }
.team-x .bg::before{ content:''; position:absolute; inset:0;
  background:radial-gradient(120% 90% at 80% 10%, rgba(198,160,82,.16), transparent 55%),
             radial-gradient(90% 80% at 0% 100%, rgba(22,38,61,.9), transparent 60%); }
.team-x .glow{ position:absolute; width:620px; height:620px; border-radius:50%; z-index:0;
  background:radial-gradient(circle, rgba(198,160,82,.12), transparent 68%);
  right:-160px; top:-160px; filter:blur(6px); transition:transform .9s cubic-bezier(.2,.7,.2,1); }
.team-x .gmj-container{ position:relative; z-index:2; }

.tx-head{ text-align:center; margin-bottom:clamp(34px,5vw,58px); }
.tx-head .eyebrow{ margin-bottom:12px; }
.tx-head h2{ font-size:clamp(28px,4.2vw,46px); color:var(--on-dark); font-weight:600; }
.tx-head h2 em{ font-family:var(--f-display); font-style:italic; color:var(--gold); font-weight:500; }

.team-x .stage{ display:grid; grid-template-columns:44px 1fr 0.92fr; gap:clamp(24px,4vw,60px); align-items:center; }

.team-x .dots{ display:flex; flex-direction:column; gap:14px; align-items:center; }
.team-x .dots button{ width:10px; height:10px; border-radius:var(--r-pill); border:0; padding:0;
  background:rgba(255,255,255,.22); cursor:pointer; transition:.35s cubic-bezier(.2,.7,.2,1); }
.team-x .dots button:hover{ background:rgba(255,255,255,.5); }
.team-x .dots button.on{ background:var(--gold); height:30px; }

.team-x .bio{ position:relative; min-height:725px; display:flex; flex-direction:column; }
.team-x .bio .index{ font-family:var(--f-display); font-size:15px; color:var(--gold); letter-spacing:.1em; margin-bottom:14px; }
.team-x .bio .index b{ font-size:26px; }
.team-x .bio .role{ font-size:12px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:8px; }
.team-x .bio h3{ font-size:clamp(28px,3.6vw,44px); line-height:1.05; margin-bottom:6px; color:var(--on-dark); font-weight:600; }
.team-x .bio .cred{ font-size:12.5px; color:var(--on-dark-soft); letter-spacing:.04em; margin-bottom:20px; min-height:18px; }
.team-x .bio p{ font-size:clamp(15px,1.5vw,17px); line-height:1.85; color:#cfd6df; max-width:48ch; }

.team-x .bio.run .anim{ animation:bioIn .6s cubic-bezier(.2,.7,.2,1) both; }
.team-x .bio.run .role{ animation-delay:.04s; } .team-x .bio.run .index{ animation-delay:0s; }
.team-x .bio.run h3{ animation-delay:.10s; } .team-x .bio.run .cred{ animation-delay:.17s; } .team-x .bio.run p{ animation-delay:.24s; }
@keyframes bioIn{ from{ transform:translateY(18px); } to{ transform:none; } }
@media (prefers-reduced-motion:reduce){ .team-x .bio.run .anim{ animation:none; } }

.team-x .controls{ display:flex; align-items:center; gap:22px; margin-top:auto; padding-top:24px; }
.team-x .arrows{ display:flex; gap:10px; }
.team-x .arrows button{ width:50px; height:50px; border-radius:50%; border:1px solid var(--line-dark);
  background:transparent; color:var(--on-dark); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:.25s; }
.team-x .arrows button:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy); transform:translateY(-2px); }
.team-x .progress{ flex:1; height:2px; background:rgba(255,255,255,.14); border-radius:2px; overflow:hidden; max-width:220px; }
.team-x .progress i{ display:block; height:100%; width:100%; background:var(--gold); transform-origin:left; transform:scaleX(0); }
.team-x.playing .progress i{ animation:fill var(--dur,6s) linear forwards; }
@keyframes fill{ from{ transform:scaleX(0); } to{ transform:scaleX(1); } }
.team-x .count{ font-family:var(--f-display); font-size:14px; color:var(--on-dark-soft); white-space:nowrap; }
.team-x .count b{ color:var(--gold); font-size:18px; }

.team-x .feature{ position:relative; }
.team-x .portrait{ position:relative; aspect-ratio:4/4.6; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-pop); background:var(--navy-soft,#16263d); }
.team-x .portrait .slide{ position:absolute; inset:0; opacity:0; z-index:0; transform:scale(1.06);
  transition:opacity .7s ease, transform 4.5s ease; }
.team-x .portrait .slide.on{ opacity:1; z-index:1; transform:scale(1); }
.team-x .portrait .slide img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.team-x .portrait .nameplate{ position:absolute; left:0; right:0; bottom:0; z-index:2; width:100%; padding:26px 24px 22px;
  background:linear-gradient(transparent, rgba(8,19,32,.88)); }
.team-x .portrait .nameplate b{ display:block; font-size:20px; color:#fff; }
.team-x .portrait .nameplate span{ font-size:12px; color:var(--gold); letter-spacing:.16em; text-transform:uppercase; }
.team-x .portrait .corner{ position:absolute; top:16px; right:16px; z-index:3; width:44px; height:44px;
  border-top:2px solid var(--gold); border-right:2px solid var(--gold); border-radius:0 8px 0 0; opacity:.8; }

.team-x .strip-wrap{ margin-top:clamp(26px,4vw,40px); position:relative; overflow:hidden; }
.team-x .strip{ display:flex; gap:14px; cursor:grab; user-select:none; transition:transform .55s cubic-bezier(.2,.7,.2,1); padding:6px 2px; }
.team-x .strip.drag{ cursor:grabbing; transition:none; }
.team-x .chip{ flex:0 0 auto; width:96px; position:relative; border-radius:var(--r-md); overflow:hidden;
  aspect-ratio:1/1.12; border:2px solid transparent; opacity:.55; transition:.4s cubic-bezier(.2,.7,.2,1); background:var(--navy-soft,#16263d); }
.team-x .chip:hover{ opacity:.85; }
.team-x .chip.on{ opacity:1; border-color:var(--gold); width:112px; }
.team-x .chip img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.team-x .chip .lab{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:18px 8px 7px; text-align:center;
  background:linear-gradient(transparent, rgba(8,19,32,.9)); }
.team-x .chip .lab b{ font-size:11.5px; color:#fff; display:block; }

@media (max-width:900px){
  .team-x .stage{ grid-template-columns:1fr; gap:30px; }
  .team-x .dots{ flex-direction:row; justify-content:center; order:3; }
  .team-x .dots button.on{ height:10px; width:30px; }
  .team-x .feature{ order:1; max-width:380px; margin-inline:auto; }
  .team-x .bio{ order:2; min-height:0; text-align:center; }
  .team-x .bio p{ margin-inline:auto; }
  .team-x .controls{ justify-content:center; }
  .team-x .progress{ display:none; }
}

/* ── Migrated content / landing pages (town · brand · service) ───────────── */
.gmj-landing-hero { background: linear-gradient(rgba(15,16,29,.74), rgba(15,16,29,.74)), url('/wp-content/uploads/2023/07/shop-scaled.webp') center / cover no-repeat; padding: 5.5rem 0 5rem; text-align: center; }
.gmj-landing-hero__title { color: var(--gmj-gold); font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.15; margin: 0; text-wrap: balance; }
.gmj-landing__content { max-width: var(--gmj-container); margin: 2.5rem auto 4rem; padding: 0 1.25rem; overflow-wrap: break-word; }
/* Prose flows at the container width (like live) — no inner cap. */
.gmj-landing__content > h2, .gmj-landing__content > h3 { color: var(--gmj-gold); text-align: left; font-size: 1.95rem; margin: 2.25rem 0 1rem; }
.gmj-landing__content > h4, .gmj-landing__content > h5 { color: var(--gmj-gold); text-align: left; font-size: 1.35rem; margin: 1.75rem 0 .75rem; }
.gmj-landing__content > ul, .gmj-landing__content > ol { text-align: left; margin-left: 0; padding-left: 1.4em; }
.gmj-landing__content p { line-height: 1.8; margin: 0 0 1.15rem; }
/* Showcase landings (category intros) centre their headings/pullquote like live. */
body.gmj-landing--centered .gmj-landing__content { text-align: center; }
body.gmj-landing--centered .gmj-landing__content > h2,
body.gmj-landing--centered .gmj-landing__content > h3,
body.gmj-landing--centered .gmj-landing__content > h4,
body.gmj-landing--centered .gmj-landing__content > h5,
body.gmj-landing--centered .gmj-landing__content .gmj-pullquote { text-align: center; }
body.gmj-landing--centered .gmj-landing__content .gmj-mig-figure img { margin-inline: auto; }

/* ── Service detail pages: live's centred-intro + 2-col image/text (CSS only, no content edits) ── */
.gmj-service-page .gmj-landing__content > h2:first-child,
.gmj-service-page .gmj-landing__content > h2:first-child + h3 { text-align: center; }
.gmj-service-page .gmj-landing__content > h2:first-child + h3::after { content: ''; display: block; width: 70px; height: 2px; background: var(--gmj-gold); margin: .75rem auto 1.75rem; }
/* lead image floats left so the body copy sits beside it (mirrors live's 2-col) — only
   on confirmed-standard pages (gmj-service-2col), so team-photo pages don't break */
.gmj-service-2col .gmj-landing__content .gmj-mig-figure:first-of-type { float: left; width: 42%; max-width: 460px; margin: .25rem 2.75rem 1.25rem 0; }
.gmj-service-2col .gmj-landing__content .gmj-mig-figure:first-of-type img { width: 100%; border-radius: 4px; }
.gmj-service-2col .gmj-landing__content > h3 { clear: both; }
/* the centred italic pullquote (<h4><em>…</em></h4>) clears the float */
.gmj-service-page .gmj-landing__content > h4:has(em) { clear: both; text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--gmj-gold); max-width: 760px; margin: 2.5rem auto; }
/* later section headings drop below the floated image */
.gmj-service-page .gmj-landing__content > h3 { clear: both; }
/* some pages (e.g. watch-servicing) were migrated into a 2-col row with an EMPTY
   first column — unwrap so content flows full-width (no empty left half). Copy untouched. */
.gmj-service-page .gmj-landing__content .gmj-row2 { display: block; }
.gmj-service-page .gmj-landing__content .gmj-row2__col { display: contents; }
/* Postal page: both lead images stack in the left column (cleared floats), text flows right. */
.gmj-service-2col-stack .gmj-landing__content .gmj-mig-figure { float: left; clear: left; width: 42%; max-width: 460px; margin: 0 2.75rem 1.5rem 0; }
.gmj-service-2col-stack .gmj-landing__content .gmj-mig-figure img { width: 100%; border-radius: 4px; display: block; }
.gmj-service-2col-stack .gmj-landing__content > h2,
.gmj-service-2col-stack .gmj-landing__content > h3 { clear: both; }
/* Mobile: collapse the 2-col image float — image full-width, text stacks below */
@media (max-width: 600px) {
	.gmj-service-2col .gmj-landing__content .gmj-mig-figure:first-of-type,
	.gmj-service-2col-stack .gmj-landing__content .gmj-mig-figure {
		float: none; width: 100%; max-width: 100%; margin: 1.5rem auto;
	}
}

/* Migrated FAQs were flattened into one paragraph (<strong>Question?<br></strong>Answer…),
   so they run together. The question <strong>s carry an inner <br> — block them out so each
   Q&A sits on its own line with spacing (matches live). Targets ONLY those strongs. */
.gmj-landing__content strong:has(br) { display: block; margin-top: 1.25rem; color: var(--gmj-navy); font-size: 1.02rem; }
.gmj-landing__content strong:has(br) br { display: none; }
/* link-list paragraphs (consecutive anchors, e.g. "Related Services") run together — stack them.
   p:has(> a + a) only matches link lists, never a body paragraph with a single inline link. */
.gmj-landing__content p:has(> a + a) a { display: block; width: fit-content; margin: .35rem 0; }
.gmj-landing__content > h5 a { color: var(--gmj-gold); }
.gmj-mig-figure { margin: 1.75rem auto; text-align: center; }
.gmj-mig-figure img { max-width: 100%; height: auto; border-radius: 4px; }
.gmj-mig-btn { text-align: center; margin: .5rem 0 2rem; }
.gmj-mig-video { position: relative; width: 100%; max-width: 760px; margin: 1.75rem auto; aspect-ratio: 16 / 9; }
.gmj-mig-video iframe, .gmj-mig-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 4px; object-fit: cover; background: #000; }

/* ── Migrated map embed ───────────────────────────────────── */
.gmj-mig-map { position: relative; width: 100%; max-width: 760px; margin: 2rem auto; aspect-ratio: 16 / 10; }
.gmj-mig-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 4px; }

/* ── Fluent Forms — light brand alignment ─────────────────── */
.gmj-landing__content .fluentform { max-width: 620px; margin: 1.5rem auto 0; text-align: left; }
.fluentform .ff-el-input--label label { font-weight: 500; color: var(--gmj-navy); }
.fluentform .ff-el-form-control { border-radius: 4px; border: 1px solid #d8d2c6; padding: .7rem .85rem; }
.fluentform .ff-el-form-control:focus { border-color: var(--gmj-gold); outline: none; box-shadow: 0 0 0 2px rgba(220,184,115,.25); }
.fluentform .ff-btn-submit { background: var(--gmj-gold) !important; color: var(--gmj-navy) !important; border: 0; border-radius: 4px; padding: .75rem 1.8rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.fluentform .ff-btn-submit:hover { background: var(--gmj-navy) !important; color: var(--gmj-gold) !important; }
/* Footer newsletter form: inline email + button on the dark footer. */
/* Footer newsletter: inline email + button, no orphaned label/asterisk (FF CSS loads
   after the theme at equal specificity, so these need !important to win). */
.gmj-newsletter .fluentform { max-width: 640px; width: 100%; }
.gmj-newsletter fieldset { display: flex; gap: .75rem; align-items: stretch; flex-wrap: nowrap; border: 0; margin: 0; padding: 0; min-width: 0; }
.gmj-newsletter .ff-el-group { margin: 0 !important; }
.gmj-newsletter .ff-el-group:not(.ff_submit_btn_wrapper) { flex: 1 1 auto; width: auto !important; min-width: 0; }
.gmj-newsletter .ff_submit_btn_wrapper { flex: 0 0 auto; }
.gmj-newsletter .ff-el-input--label { display: none !important; }
.gmj-newsletter .ff-el-form-control { background: #fff; color: var(--gmj-navy); border: 1px solid rgba(255,255,255,.25); border-radius: 3px; height: 52px; padding: 0 1rem; }
.gmj-newsletter .ff-el-form-control::placeholder { color: #8a8a8a; }
.gmj-newsletter .ff-btn-submit { background: transparent !important; color: var(--gmj-gold-deep) !important; border: 1px solid rgba(167,113,28,.55) !important; white-space: nowrap; height: 52px; padding: 0 1.7rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.gmj-newsletter .ff-btn-submit:hover { background: var(--gmj-gold) !important; color: var(--gmj-navy) !important; }
/* Keep inline content images (e.g. the shop painting) a tasteful accent, not full-bleed. */
.gmj-landing__content > .gmj-mig-figure img { max-width: min(420px, 100%); }

/* ── Contact page layout (mirrors live: form | info, then map | painting) ── */
.gmj-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.gmj-contact-row--main { margin-bottom: 2.5rem; }
@media (max-width: 820px) { .gmj-contact-row { grid-template-columns: 1fr; gap: 1.75rem; } }
.gmj-contact { background-image: radial-gradient(rgba(15,16,29,.08) 1.4px, transparent 1.4px); background-size: 22px 22px; }
.gmj-contact-form { background: var(--gmj-cream); border-radius: 6px; padding: 2.25rem; }
.gmj-contact-form .fluentform { max-width: none; margin: 0; }
.gmj-contact-form .ff-el-group { margin-bottom: 3.5rem; }
.gmj-contact-form .ff-el-form-control { padding: 1rem; }
.gmj-contact-form textarea.ff-el-form-control { min-height: 170px; resize: vertical; }
.gmj-contact-form .ff_submit_btn_wrapper { margin-bottom: 0; }
.gmj-contact-intro { color: var(--gmj-gold); font-size: 1.35rem; font-weight: 600; line-height: 1.45; border-left: 4px solid var(--gmj-gold); padding-left: 1rem; margin: 0 0 1.75rem; }
.gmj-info-card { display: flex; align-items: center; gap: 1.1rem; border: 1px solid var(--gmj-sand); border-radius: 6px; padding: 1rem 1.25rem; margin-bottom: 1rem; background: #fff; }
.gmj-info-icon { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.gmj-info-icon svg { display: none; } /* live uses plain discs */
.gmj-info-icon--gold { background: var(--gmj-gold); color: #fff; }
.gmj-info-icon--navy { background: var(--gmj-navy); color: var(--gmj-gold); }
.gmj-info-card__body h4 { color: var(--gmj-gold); margin: 0 0 .15rem; font-size: 1.02rem; }
.gmj-info-card__body p { margin: 0; font-size: .92rem; line-height: 1.45; }
.gmj-info-card__body a { color: var(--gmj-gold-deep); }
.gmj-contact-map { position: relative; aspect-ratio: 1 / 1; border-radius: 6px; overflow: hidden; }
.gmj-contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gmj-contact-painting { margin: 0; }
.gmj-contact-painting img { width: 100%; height: auto; border-radius: 6px; display: block; }

/* ── About: "Our experts" section (matches live) ──────────── */
.gmj-experts-title { text-align: center; color: var(--gmj-gold); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; font-style: italic; margin: 1.5rem 0 2.5rem; }
.gmj-experts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .gmj-experts-row { grid-template-columns: 1fr; gap: 2rem; } }
.gmj-experts-text p { line-height: 1.8; margin: 0 0 1.15rem; }
.gmj-experts-text .gmj-mig-btn { text-align: left; margin: 1.75rem 0 0; }
.gmj-experts-painting { margin: 0; text-align: center; }
.gmj-experts-painting img { width: 100%; max-width: 430px; height: auto; border-radius: 4px; display: block; margin: 0 auto; }
.gmj-about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
@media (max-width: 820px) { .gmj-about-photos { grid-template-columns: 1fr; } }
.gmj-about-photos figure { margin: 0; }
.gmj-about-photos img { width: 100%; height: auto; border-radius: 4px; display: block; }
/* solid-gold appointment button (matches live's experts-section CTA) */
.gmj-btn-solid { background: var(--gmj-gold); color: var(--gmj-navy); }
.gmj-btn-solid:hover { background: var(--gmj-navy); color: var(--gmj-gold); }

/* ── Migrated category-card grid (town pages: 4 cards in a row, like live) ── */
/* auto-fit so the row fills the width whatever the card count (3 cards = 3 cols, 4 = 4) — like live. */
.gmj-mig-cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.75rem; margin: 2.75rem 0; }
@media (max-width: 540px) { .gmj-mig-cardgrid { grid-template-columns: 1fr; } }
.gmj-mig-card { background: #fff; border-radius: 2px; padding: 1.25rem; text-align: center; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(0,0,0,.06), inset 0 -1px 0 rgba(180,138,50,.15); border-bottom: 2px solid transparent; transition: transform .35s ease, box-shadow .35s ease, border-bottom .35s ease; }
.gmj-mig-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(180,138,50,.22), inset 0 -1px 0 rgba(180,138,50,.4); border-bottom: 2px solid var(--gmj-gold-deep); }
.gmj-mig-card { cursor: pointer; }
/* LEARN MORE: arrow-alt-circle-right icon to the right (matches live) */
.gmj-mig-card .gmj-mig-btn a { display: inline-flex; align-items: center; gap: .5rem; }
.gmj-mig-card .gmj-mig-btn a::after { content: ''; width: .95em; height: .95em; flex: none; background-color: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M504 256C504 119 393 8 256 8S8 119 8 256s111 248 248 248 248-111 248-248zm-448 0c0-110.5 89.5-200 200-200s200 89.5 200 200-89.5 200-200 200S56 366.5 56 256zm72 20v-40c0-6.6 5.4-12 12-12h116v-67c0-10.7 12.9-16 20.5-8.5l99 99c4.7 4.7 4.7 12.3 0 17l-99 99c-7.6 7.6-20.5 2.2-20.5-8.5v-67H140c-6.6 0-12-5.4-12-12z'/%3E%3C/svg%3E") center / contain no-repeat; }
/* card hover fills the button gold */
.gmj-mig-card:hover .gmj-btn-outline { background: var(--gmj-gold); color: var(--gmj-navy); }
.gmj-mig-card .gmj-mig-figure { margin: 0 0 1.1rem; max-width: none; }
.gmj-mig-card .gmj-mig-figure img { max-width: 100%; }
.gmj-mig-card h2, .gmj-mig-card h3, .gmj-mig-card h4, .gmj-mig-card h5 { color: var(--gmj-gold); margin: 0 0 1.1rem; font-size: 1.15rem; }
.gmj-mig-card .gmj-mig-btn { margin: auto 0 0; }

/* ── Migrated 2-column rows (cash-for-gold / watch-servicing: text | image) ── */
.gmj-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin: 2.75rem 0; }
@media (max-width: 820px) { .gmj-row2 { grid-template-columns: 1fr; gap: 1.75rem; } }
.gmj-row2__col { min-width: 0; }
.gmj-row2__col h2, .gmj-row2__col h3, .gmj-row2__col h4, .gmj-row2__col h5 { color: var(--gmj-gold); text-align: left; margin: 0 0 1rem; }
.gmj-row2__col p { text-align: left; line-height: 1.8; margin: 0 0 1.1rem; }
.gmj-row2__col .gmj-mig-figure { margin: 0; max-width: none; text-align: center; }
.gmj-row2__col .gmj-mig-figure img { max-width: 100%; height: auto; }
.gmj-row2__col .gmj-mig-btn { text-align: left; margin: 0 0 1.25rem; }
/* Elegant italic gold display quotes (headings wrapped in “…”) — like live. */
.gmj-landing__content .gmj-pullquote { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(1.65rem, 2.4vw, 2rem); line-height: 1.28; color: var(--gmj-gold); text-align: left; margin: 1.4rem 0 .5rem; }

/* ════════ Client review fixes (Phoebe, 2026-06-19) ════════ */

/* #8 — Signet / Crest Engraving page: centre all titles (its first heading is
   an <h3>, so the generic service-page rule doesn't reach it) + centre images. */
.gmj-signet-page .gmj-landing__content > h2,
.gmj-signet-page .gmj-landing__content > h3,
.gmj-signet-page .gmj-landing__content > h4,
.gmj-signet-page .gmj-landing__content > h5 { text-align: center; }

/* Bridal hub: centre the section title(s). The card-grid titles already centre
   via .gmj-mig-card, so only the top-level headings need this. */
.gmj-bridal-page .gmj-landing__content > h2,
.gmj-bridal-page .gmj-landing__content > h3,
.gmj-bridal-page .gmj-landing__content > h4,
.gmj-bridal-page .gmj-landing__content > h5 { text-align: center; }
.gmj-signet-page .gmj-landing__content .gmj-mig-figure { text-align: center; }
.gmj-signet-page .gmj-landing__content .gmj-mig-figure img { margin-inline: auto; }
.gmj-signet-page .gmj-landing__content .gmj-mig-btn { text-align: center; }

/* #10 / #11 — centre the CTA button on the Gold Buying and Postal Watch
   Repairs pages (the only 2-col / 2-col-stack service pages carrying a button). */
.gmj-service-2col .gmj-row2__col .gmj-mig-btn,
.gmj-service-2col-stack .gmj-row2__col .gmj-mig-btn { text-align: center; }

/* #4 — Contact page: centre the info column (intro + address cards). */
.gmj-contact-info { text-align: center; }
.gmj-contact-intro { border-left: 0; padding-left: 0; }
.gmj-info-card { justify-content: center; }

/* #2 — Blog: standalone index grid + single-post layout. */
.gmj-blog-grid--index { grid-template-columns: repeat(3, 1fr); margin: 2.75rem 0 1rem; }
@media (max-width: 980px) { .gmj-blog-grid--index { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gmj-blog-grid--index { grid-template-columns: 1fr; } }
.gmj-single__content { max-width: 820px; margin: 2.5rem auto 4rem; padding: 0 1.25rem; }
.gmj-single__meta { color: var(--gmj-gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 1.25rem; }
.gmj-single__img { margin: 0 0 1.75rem; }
.gmj-single__img img { width: 100%; height: auto; border-radius: 6px; display: block; }
.gmj-single__body { line-height: 1.8; }
.gmj-single__body h2, .gmj-single__body h3, .gmj-single__body h4 { color: var(--gmj-gold); margin: 2rem 0 .75rem; }
.gmj-single__body h5 { color: var(--gmj-navy); font-size: 1.05rem; margin: 1.5rem 0 .5rem; }
.gmj-single__body p { margin: 0 0 1.15rem; }
.gmj-single__body img { max-width: 100%; height: auto; border-radius: 4px; }
.gmj-single__body ul, .gmj-single__body ol { padding-left: 1.4em; line-height: 1.8; margin: 0 0 1.15rem; }
.gmj-single__back { margin-top: 2.75rem; }
