/* ============================================================
   Freaura — HOME page components (page 547)
   Ported from freaura-spa.html and tokenized. Applied to
   Elementor containers via CSS classes set in _elementor_data.
   SPA-only entrance-animation delays (which assumed the curtain
   timeline) are dropped; hover/scroll interactions are kept.
   ============================================================ */

/* Shared section rhythm — top padding only (per client) to cut gaps */
.frx-section { padding: 90px 50px 0; }
.frx-section-narrow { padding: 90px 50px 0; }
.frx-section:last-child, .frx-newsletter { padding-bottom: 90px; }
/* Inaugural Three: space below the "View Every Piece" link before the services strip */
.frx-section:has(.collection-grid) { padding-bottom: 90px; }
/* section-head gap under title reduced */
.section-head { text-align: center; margin-bottom: 40px; }
.section-sub {
	font-family: var(--font-serif); font-style: italic; font-size: 18px;
	color: var(--ink-soft); margin: 12px auto 0; max-width: 560px;
	line-height: 1.5;
}
.section-eyebrow {
	font-family: var(--font-sans); font-size: 12px; font-weight: 400; letter-spacing: 0.5em;
	text-transform: uppercase; color: var(--brass); margin-bottom: 20px;
}
.section-title {
	font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px);
	font-weight: 400; line-height: 1.05; color: var(--ink);
	text-transform: none; /* Astra capitalizes headings; wireframe uses natural case */
}
/* Collections uses the smaller "categories-title" scale from the wireframe */
.frx-collections-title { font-size: clamp(36px, 4.5vw, 56px); }
/* Reset Astra's heading capitalize across all Freaura display headings */
.frx-hero h1,
.section-title,
.featured-name,
.category-name,
.piece-name,
.editorial-wide-content h2,
.frx-newsletter h2,
.service h3 { text-transform: none; }
.section-title .it { font-style: italic; color: var(--emerald); }

/* ---- Buttons (shared) ---- */
.btn {
	display: inline-flex; align-items: center; gap: 16px; padding: 18px 44px;
	background: var(--midnight); color: var(--cream); font-family: var(--font-sans);
	font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
	border: 0.5px solid var(--midnight); position: relative; overflow: hidden;
	transition: color 0.4s; cursor: pointer; text-decoration: none;
	isolation: isolate; /* new stacking context so ::before can sit behind bare text nodes */
}
.btn::before {
	content: ''; position: absolute; inset: 0; background: var(--emerald);
	transform: translateY(101%); transition: transform 0.5s cubic-bezier(.76,0,.24,1);
	z-index: -1; /* behind ALL button content incl. bare text nodes */
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--cream); } /* text stays cream over the emerald fill */
.btn > * { position: relative; z-index: 1; }
.btn-arrow { font-size: 16px; transition: transform 0.5s cubic-bezier(.2,.7,.2,1); }
.btn:hover .btn-arrow { transform: translateX(6px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--cream); }
.btn-link {
	display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-sans);
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
	padding-bottom: 6px; border-bottom: 0.5px solid var(--ink);
	transition: color 0.3s, border-color 0.3s, gap 0.4s;
	text-decoration: none !important; /* the line is the border-bottom, not an underline */
}
.btn-link:hover { color: var(--brass); border-color: var(--brass); gap: 20px; }

/* ---- HERO ---- */
.frx-hero {
	position: relative; height: 92vh; min-height: 700px; overflow: hidden;
	background: var(--midnight);
}
.frx-hero .hero-media { position: absolute; inset: 0; overflow: hidden; }
.frx-hero .hero-media img {
	width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
	z-index: 1; animation: heroZoom 20s ease-in-out infinite alternate;
}
.frx-hero .hero-media::after {
	/* Strengthened + starts earlier (was transparent until 55%, capped at
	   0.6 opacity) so the eyebrow/tag text sitting near the bottom keeps
	   reliable contrast regardless of how bright that area of the photo is.
	   Ramp now starts at 35% (was 45%) since on some hero photos the
	   eyebrow's actual position lands right where the old ramp had barely
	   begun — verified against the live photo in the browser, not just
	   assumed. */
	content: ''; position: absolute; inset: 0; z-index: 3;
	background: linear-gradient(to bottom, rgba(10,9,8,0.25) 0%, transparent 28%, transparent 35%, rgba(10,9,8,0.78) 100%);
}
.frx-hero .hero-content {
	position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column;
	justify-content: flex-end; align-items: center; padding: 0 40px 120px;
	text-align: center; color: var(--cream);
	background: #00000066;
}
/* Staggered fadeUp entrance (wireframe): eyebrow 2s → h1 2.2s → tag 2.5s →
   cta 2.8s. Elements start at opacity:0 / translateY and settle via @keyframes
   fadeUp. */
.frx-hero .hero-eyebrow {
	/* Bumped from 10px and added a soft text-shadow — at that size + the
	   muted gold color it was getting lost against brighter areas of the
	   photo even with the gradient scrim behind it. */
	font-family: var(--font-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.5em;
	text-transform: uppercase; color: #f4ede0; margin-bottom: 24px;
	/* 4-directional hairline "stroke" (simulated via multiple offset
	   shadows, since CSS has no real text-stroke that renders crisply at
	   small sizes) + a soft wider glow behind it. The tail end of this text
	   ("...COLLECTION 2026") lands over a near-white overexposed patch on
	   some hero photos — a single soft shadow wasn't dark/tight enough
	   there (light-gold-on-white). A hard outline guarantees legibility on
	   any background, not just darker ones. */
	/* text-shadow:
		0.5px 0.5px 0 rgba(0,0,0,0.85), -0.5px -0.5px 0 rgba(0,0,0,0.85),
		0.5px -0.5px 0 rgba(0,0,0,0.85), -0.5px 0.5px 0 rgba(0,0,0,0.85),
		0 2px 16px rgba(10,9,8,0.6); */
	opacity: 0; transform: translateY(30px);
	animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 2s forwards;
}
.frx-hero h1 {
	font-family: var(--font-display); font-size: clamp(56px, 9vw, 132px); font-weight: 400;
	line-height: 0.95; margin-bottom: 28px; color: var(--ivory);
	white-space: nowrap;  /* keep "The art of staying in." on one line */
	opacity: 0; transform: translateY(30px);
	animation: fadeUp 1.4s cubic-bezier(.2,.7,.2,1) 2.2s forwards;
}
.frx-hero h1 .it { font-style: italic; color: var(--brass-pale); font-weight: 400; }
.frx-hero .hero-tag {
	/* Bumped from 18px + added text-shadow, same reasoning as hero-eyebrow
	   above — legibility shouldn't depend on how bright a given hero photo
	   happens to be in that spot. */
	font-family: var(--font-serif); font-size: 21px; font-weight: 500; font-style: italic; color: var(--cream);
	margin-bottom: 44px; max-width: 480px;
	text-shadow: 0 2px 16px rgba(10,9,8,0.5);
	opacity: 0; transform: translateY(30px);
	animation: fadeUp 1.2s cubic-bezier(.2,.7,.2,1) 2.5s forwards;
}
.frx-hero .hero-cta {
	display: inline-flex; align-items: center; gap: 16px; padding: 16px 44px;
	color: var(--cream); font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.4em;
	text-transform: uppercase; border: 0.5px solid var(--cream); position: relative;
	overflow: hidden; transition: color 0.5s; text-decoration: none;
	isolation: isolate; /* new stacking context so ::before sits behind bare text */
	opacity: 0; transform: translateY(30px);
	animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 2.8s forwards;
}
.frx-hero .hero-cta::before {
	content: ''; position: absolute; inset: 0; background: var(--cream);
	transform: translateY(101%); transition: transform 0.5s cubic-bezier(.76,0,.24,1);
	z-index: -1; /* behind ALL cta content incl. bare text nodes */
}
.frx-hero .hero-cta:hover { color: var(--ink); }   /* text darkens over cream fill */
.frx-hero .hero-cta:hover::before { transform: translateY(0); }
.frx-hero .hero-cta,
.frx-hero .hero-cta:hover { text-decoration: none !important; }
.frx-hero .hero-cta span { text-decoration: none !important; border-bottom: none; }
.frx-hero .hero-cta > * { position: relative; z-index: 1; }

/* ---- SCROLL INDICATOR (bottom of hero) ---- */
.frx-hero .scroll-indicator {
	position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
	z-index: 5; color: var(--brass-pale); font-family: var(--font-sans);
	font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
	animation: bobble 3s ease-in-out infinite;
}
.frx-hero .scroll-indicator::after {
	content: ''; display: block; width: 0.5px; height: 32px; background: var(--brass-pale);
	margin: 14px auto 0; opacity: 0.6;
}
body.scrolled .frx-hero .scroll-indicator { opacity: 0; transition: opacity 0.4s ease; }
@keyframes bobble {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- COLLECTION / PIECE cards (The Inaugural Three) ---- */
.collection-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
	max-width: 1500px; margin: 0 auto;
}
a.piece, a.piece:hover, a.piece:focus { display: block; position: relative; text-decoration: none !important; }
a.piece * { text-decoration: none !important; }
.piece-img {
	aspect-ratio: 3/4; overflow: hidden; position: relative;
	background: var(--cream-deep); margin-bottom: 22px;
}
.piece-img img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.piece:hover .piece-img img { transform: scale(1.06); }
.piece-tag {
	position: absolute; top: 18px; left: 18px; background: var(--cream);
	color: var(--emerald); font-family: var(--font-sans); font-size: 9px;
	letter-spacing: 0.32em; text-transform: uppercase; padding: 6px 14px;
	z-index: 3; font-weight: 500;
}
.piece-quick {
	position: absolute; bottom: 0; left: 0; right: 0; background: var(--cream);
	color: var(--ink); padding: 14px 20px; font-family: var(--font-sans); font-size: 11px;
	letter-spacing: 0.32em; text-transform: uppercase; text-align: center;
	transform: translateY(100%); transition: transform 0.5s cubic-bezier(.2,.7,.2,1); z-index: 3;
}
.piece:hover .piece-quick { transform: translateY(0); }
.piece-name { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 5px; color: var(--ink); }
.piece-name .it { font-style: italic; color: var(--emerald); }
.piece-meta { font-family: var(--font-serif); font-style: italic; font-size: 18px; font-weight: 400; color: var(--ink-soft); margin-bottom: 8px; }
.piece-price { font-family: var(--font-sans); font-size: 14px; color: var(--ink); }

/* ---- CATEGORY tiles (The Collections) ---- */
.category-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	max-width: 1500px; margin: 0 auto;
}
.category {
	position: relative; aspect-ratio: 3/4; overflow: hidden;
	background: var(--midnight); display: block;
}
.category img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.category:hover img { transform: scale(1.08); }
.category-overlay {
	position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
	justify-content: flex-end; padding: 50px 40px;
	background: linear-gradient(to bottom, transparent 60%, rgba(10,9,8,0.75) 100%);
}
.category-name { font-family: var(--font-display); font-size: 38px; font-style: italic; color: var(--cream); margin-bottom: 22px; }
/* Full button treatment (matches .frx-hero .hero-cta) instead of the old
   plain underlined-text link — border box + cream hover-fill sweep. */
.category-link {
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	color: var(--cream); font-family: var(--font-sans); font-size: 11px;
	letter-spacing: 0.32em; text-transform: uppercase; align-self: flex-start;
	padding: 14px 28px; border: 0.5px solid var(--cream); position: relative;
	overflow: hidden; isolation: isolate; transition: color 0.4s, gap 0.4s;
}
.category-link::before {
	content: ''; position: absolute; inset: 0; background: var(--cream);
	transform: translateY(101%); transition: transform 0.5s cubic-bezier(.76,0,.24,1); z-index: -1;
}
.category-link > * { position: relative; z-index: 1; }
.category:hover .category-link,
.category-link:hover { gap: 18px; color: var(--ink); }
.category:hover .category-link::before,
.category-link:hover::before { transform: translateY(0); }

/* ---- FEATURED spread ---- */
.frx-featured { background: var(--cream); padding: 90px 50px 0; }
/* kill Astra's underline on the featured Shop the Set button */
a.frx-featured .btn, .frx-featured a.btn, .frx-featured a.btn:hover, .frx-featured .btn span { text-decoration: none !important; }
.featured-wrap {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
	max-width: 1500px; margin: 0 auto; align-items: center;
}
.featured-img { aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s cubic-bezier(.2,.7,.2,1); }
.featured-img:hover img { transform: scale(1.04); }
/* padding:0 aligns the detail list flush with the paragraph above it */
.featured-content { padding: 0; }
/* clear space between the detail list and the Shop the Set button */
.featured-content .btn, .featured-content .frx-btn { margin-top: 12px; }
.featured-eyebrow { font-family: var(--font-sans); font-size: 12px; font-weight: 400; letter-spacing: 0.5em; text-transform: uppercase; color: var(--brass); margin-bottom: 22px; }
/* WooCommerce grid CSS sets `.woocommerce-js h2 { margin-bottom:0.7em }` (~45px)
   which overrode our gap. Match a higher-specificity selector so the wireframe's
   tight title→meta gap holds. */
.woocommerce-js h2.featured-name,
.featured-name { font-family: var(--font-display); font-size: clamp(42px, 4.8vw, 64px); font-weight: 400; line-height: 1.1; margin-bottom: 12px; color: var(--ink); }
.featured-name .it { font-style: italic; color: var(--emerald); }
.featured-meta { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--ink-soft); margin-bottom: 22px; }
.featured-price { font-family: var(--font-sans); font-size: 16px; margin-bottom: 28px; color: var(--ink); }
.featured-desc { font-family: var(--font-serif); font-size: 17px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.featured-details { list-style: none; margin: 0 0 40px; padding: 0 0 30px; border-bottom: 0.5px solid var(--line); }
.featured-details li { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); padding: 7px 0; display: flex; gap: 14px; }
.featured-details li::before { content: '\25C6'; color: var(--brass); font-size: 8px; }

/* ---- SERVICES strip ---- */
.frx-services { background: var(--emerald); color: var(--cream); padding: 90px 50px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; max-width: 1300px; margin: 0 auto; text-align: center; }
.service-icon {
	width: 56px; height: 56px; margin: 0 auto 22px; border: 0.5px solid var(--brass-pale);
	display: flex; align-items: center; justify-content: center; color: var(--brass-pale);
	transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.4s;
}
.service-icon svg { width: 24px; height: 24px; }
.service:hover .service-icon { transform: rotate(45deg); border-color: var(--cream); }
.service h3 { font-family: var(--font-display); font-size: 24px; font-style: italic; font-weight: 400; margin-bottom: 12px; color: var(--cream); }
.service p { font-family: var(--font-serif); font-size: 17px; color: var(--brass-pale); line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* ---- EDITORIAL WIDE ---- */
/* min-height (not fixed height) so the sub-text + Read Our Story button
   are never clipped; image is absolutely positioned to fill. */
.frx-editorial-wide { position: relative; min-height: 80vh; overflow: hidden; background: var(--midnight); }
.frx-editorial-wide img { position: absolute; inset: 0; }
.frx-editorial-wide .editorial-wide-content { position: relative; min-height: 80vh; padding-top: 60px; padding-bottom: 60px; }
.frx-editorial-wide img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 30s ease-in-out infinite alternate; }
.frx-editorial-wide::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to right, rgba(10,9,8,0.6) 0%, rgba(10,9,8,0.2) 50%, transparent 100%); }
.editorial-wide-content { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 0 8%; max-width: 650px; color: var(--cream); }
.editorial-wide-eyebrow { font-family: var(--font-sans); font-size: 13px; font-weight: 400; letter-spacing: 0.5em; text-transform: uppercase; color: var(--brass-pale); margin-bottom: 24px; }
.editorial-wide-content h2 { font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 66px); font-weight: 400; line-height: 1.08; color: var(--ivory); }
.editorial-wide-content h2 .it { font-style: italic; color: var(--brass-pale); }
.editorial-wide-content p {
	font-family: var(--font-serif); font-size: 21px; font-weight: 500; font-style: italic;
	color: rgba(244,237,224,0.82); line-height: 1.7; margin-top: 24px; max-width: 480px;
}
/* "Read Our Story" button on the dark editorial band: cream outline that
   fills cream on hover with dark text (wireframe .btn on dark bg). */
.frx-editorial-btn {
	display: inline-flex; align-items: center; gap: 16px; padding: 16px 40px;
	background: transparent; color: var(--cream); font-family: var(--font-sans);
	font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
	border: 0.5px solid var(--cream); position: relative; overflow: hidden;
	isolation: isolate; transition: color 0.5s; text-decoration: none;
}
.frx-editorial-btn::before {
	content: ''; position: absolute; inset: 0; background: var(--cream);
	transform: translateY(101%); transition: transform 0.5s cubic-bezier(.76,0,.24,1); z-index: -1;
}
.frx-editorial-btn:hover { color: var(--ink); }
.frx-editorial-btn:hover::before { transform: translateY(0); }
a.frx-editorial-btn, a.frx-editorial-btn:hover { text-decoration: none !important; }
.frx-editorial-btn span { position: relative; z-index: 1; text-decoration: none !important; }
.frx-editorial-btn .btn-arrow { transition: transform 0.4s cubic-bezier(.2,.7,.2,1); }
.frx-editorial-btn:hover .btn-arrow { transform: translateX(6px); }

/* ---- PRESS / testimonial ---- */
/* extra vertical padding so the top/bottom accent lines clear the quote + attribution */
.frx-press { background: var(--cream); text-align: center; padding: 120px 50px; position: relative; }
.frx-press .press-attr { margin-top: 4px; }
.frx-press::before, .frx-press::after {
	content: ''; position: absolute; left: 50%; transform: translateX(-50%);
	width: 1px; height: 50px; background: var(--brass); opacity: 0.5;
}
.frx-press::before { top: 60px; }
.frx-press::after { bottom: 60px; }
.frx-press blockquote {
	font-family: var(--font-display); font-style: italic; font-size: clamp(26px, 3.2vw, 42px);
	line-height: 1.4; max-width: 960px; margin: 0 auto 36px; color: var(--ink);
	border: none; padding: 0; background: none; /* kill Astra's default blockquote left border/bg */
	quotes: none;
}
.frx-press blockquote::before, .frx-press blockquote::after { content: none; }
.frx-press .press-attr {
	font-family: var(--font-sans); font-size: 12px; font-weight: 400; letter-spacing: 0.5em;
	text-transform: uppercase; color: var(--brass);
}
.frx-press .press-attr em {
	font-family: var(--font-serif); font-style: italic; font-size: 16px; font-weight: 400; text-transform: none;
	letter-spacing: 0.06em; margin: 0 12px; color: var(--ink);
}

/* ---- NEWSLETTER ---- */
.frx-newsletter { background: var(--cream-deep); text-align: center; padding: 120px 50px; }
.frx-newsletter h2 { font-family: var(--font-display); font-size: clamp(38px, 4.8vw, 60px); font-weight: 400; margin-bottom: 22px; line-height: 1.1; color: var(--ink); }
.frx-newsletter h2 .it { font-style: italic; color: var(--emerald); }
.frx-newsletter p { font-family: var(--font-serif); color: var(--ink-soft); max-width: 480px; margin: 0 auto 40px; font-size: 19px; font-weight: 400; font-style: italic; }
.frx-newsletter .newsletter-form { display: flex; max-width: 520px; margin: 0 auto; border-bottom: 0.5px solid var(--ink); }
.frx-newsletter .newsletter-form input {
	flex: 1; background: transparent; border: none; padding: 14px 0;
	font-family: var(--font-sans); font-size: 14px; color: var(--ink); outline: none;
}
.frx-newsletter .newsletter-form input::placeholder { color: var(--ink-soft); }
.frx-newsletter .newsletter-form button {
	background: transparent; border: none; padding: 14px 0 14px 24px; font-size: 10px;
	letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink); cursor: pointer;
	font-family: var(--font-sans); font-weight: 500; transition: color 0.3s;
}
.frx-newsletter .newsletter-form button:hover { color: var(--brass); }

/* ---- FULL-WIDTH ENFORCEMENT ----
   Astra's .ast-container caps content at ~1240px. On the Home page
   we break the Elementor content out to the full viewport so the
   wireframe's edge-to-edge sections render correctly. */
.home #content .ast-container,
.page-id-547 #content .ast-container,
.page-id-1285 #content .ast-container {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}
.home #primary,
.page-id-547 #primary,
.page-id-1285 #primary { margin: 0; padding: 0; }
.home .elementor,
.page-id-547 .elementor,
.page-id-1285 .elementor { width: 100%; }
/* Each home section container: full width, no inherited Elementor gutter */
.home .elementor > .elementor-element,
.page-id-547 .elementor > .elementor-element,
.page-id-1285 .elementor > .elementor-element { max-width: 100%; width: 100%; }

/* ---- keyframes ---- */
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.12); } }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---- Responsive ---- */
@media (max-width: 921px) {
	.frx-section, .frx-section-narrow, .frx-services, .frx-newsletter { padding: 70px 24px; }
	.collection-grid, .category-grid, .services-grid { grid-template-columns: 1fr; gap: 24px; }
	.featured-wrap { grid-template-columns: 1fr; gap: 40px; }
	.featured-content { padding: 0; }
	.editorial-wide-content { padding: 0 28px; }

	/* ---- Hero: make the headline responsive so it never overflows ---- */
	.frx-hero .hero-content { padding: 0 24px 90px; }
	.frx-hero h1 {
		/* allow wrapping (was nowrap → overflowed on phones) and scale down */
		white-space: normal;
		font-size: clamp(38px, 12vw, 72px);
		line-height: 1.02;
		margin-bottom: 22px;
		max-width: 100%;
		overflow-wrap: break-word;
	}
	.frx-hero .hero-eyebrow { font-size: 11px; letter-spacing: 0.4em; margin-bottom: 18px; }
	.frx-hero .hero-tag { font-size: 18px; margin-bottom: 34px; max-width: 90%; }
	.frx-hero .hero-cta { padding: 14px 32px; font-size: 10px; letter-spacing: 0.3em; }
}
@media (max-width: 480px) {
	.frx-hero h1 { font-size: clamp(32px, 11vw, 52px); }
	.frx-hero .hero-content { padding: 0 20px 76px; }

	/* Featured spread ("The Cherubin Set"): the base rule's 50px side
	   padding left almost no room for content on 320px phones — shrink it. */
	.frx-featured { padding: 60px 22px 0; }

	/* "Shop the Set" was wrapping to 2 lines ("SHOP" / "THE SET") at this
	   width because the desktop button (44px padding, 0.4em tracking) is
	   too wide for a 320px column. Shrink just this featured-section button
	   and force one line. */
	.featured-content .btn {
		padding: 13px 22px;
		font-size: 9px;
		letter-spacing: 0.2em;
		gap: 10px;
		white-space: nowrap;
	}
	.featured-content .btn-arrow { font-size: 13px; }
}
