/* ®WISE STOREFRONT: homepage. Mobile first. Everything is scoped under .wsf-home so the theme is never affected. */

.wsf-home {
	--ink: #0d0d0f;
	--muted: #5d5a55;
	--paper: #fff;
	--cream: #fbf5ec;
	--line: #ebe5db;
	--red: #db1215;
	--gutter: clamp(16px, 4vw, 48px);
	--maxw: 1320px;
	--r-xl: clamp(22px, 3vw, 36px);
	--r-lg: clamp(18px, 2.2vw, 28px);
	--ease: cubic-bezier(.2, .75, .2, 1);
	--shadow: 0 1px 2px rgba(20, 16, 10, .04), 0 14px 34px -16px rgba(20, 16, 10, .28);

	color: var(--ink);
	font-family: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

:where(.wsf-home) *, :where(.wsf-home) *::before, :where(.wsf-home) *::after { box-sizing: border-box; }
:where(.wsf-home) img { max-width: 100%; height: auto; display: block; }
:where(.wsf-home) ul { list-style: none; margin: 0; padding: 0; }
:where(.wsf-home) figure { margin: 0; }
:where(.wsf-home) h1, :where(.wsf-home) h2, :where(.wsf-home) p { margin: 0; }
:where(.wsf-home) a { text-decoration: none; }
.wsf-home a:focus-visible, .wsf-home button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 8px; }

.wsf-container { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.wsf-section { padding-block: clamp(56px, 8vw, 110px); }
.wsf-arrivals, .wsf-story, .wsf-gallery { content-visibility: auto; contain-intrinsic-size: auto 720px; }

/* ---------- Type ---------- */
.wsf-eyebrow {
	display: inline-flex; align-items: center; gap: .6em;
	font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.wsf-eyebrow--light { color: rgba(255, 255, 255, .72); }
.wsf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(219, 18, 21, .5); animation: wsf-ping 2.4s var(--ease) infinite; }
@keyframes wsf-ping { 0% { box-shadow: 0 0 0 0 rgba(219, 18, 21, .45); } 70%, 100% { box-shadow: 0 0 0 10px rgba(219, 18, 21, 0); } }

.wsf-h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); line-height: 1.02; font-weight: 800; letter-spacing: -.035em; color: var(--ink); margin-top: 10px; }
.wsf-br { display: none; }
@media (min-width: 700px) { .wsf-br { display: inline; } }

.wsf-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px 28px; margin-bottom: clamp(24px, 3.5vw, 44px); }

.wsf-link { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-size: 15px; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 2px; transition: color .25s, border-color .25s, gap .3s var(--ease); }
.wsf-link:hover { color: var(--red); border-color: var(--red); gap: .7em; }

/* ---------- Buttons ---------- */
.wsf-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .6em;
	min-height: 52px; padding: 0 28px; border-radius: 999px; border: 2px solid transparent;
	font: 700 16px/1 'Albert Sans', system-ui, sans-serif; letter-spacing: -.005em; cursor: pointer;
	transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wsf-btn__arrow { display: inline-block; transition: transform .3s var(--ease); }
.wsf-btn:hover .wsf-btn__arrow { transform: translateX(5px); }
.wsf-btn--primary { background: var(--ink); color: #fff; }
.wsf-btn--primary:hover { background: var(--red); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(219, 18, 21, .7); }
.wsf-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.wsf-btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.wsf-btn--light { background: #fff; color: var(--ink); }
.wsf-btn--light:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.wsf-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Hero ---------- */
.wsf-hero { padding-block: clamp(10px, 1.6vw, 22px) clamp(24px, 3.5vw, 48px); }
.wsf-hero__grid { display: grid; gap: clamp(12px, 1.5vw, 20px); position: relative; }

.wsf-hero__copy {
	position: relative; display: flex; flex-direction: column; justify-content: center; gap: clamp(16px, 2vw, 26px);
	background: var(--cream); border-radius: var(--r-xl); padding: clamp(26px, 4.6vw, 64px); overflow: hidden;
}
.wsf-hero__copy::after { /* soft colour bloom behind the type */
	content: ''; position: absolute; width: 60%; aspect-ratio: 1; right: -22%; bottom: -30%;
	background: radial-gradient(closest-side, rgba(255, 196, 160, .55), rgba(255, 196, 160, 0)); pointer-events: none;
}
.wsf-hero__title {
	font-size: clamp(2.9rem, 12.5vw, 4.9rem); line-height: .93; font-weight: 800; letter-spacing: -.05em; color: var(--ink);
	text-wrap: balance;
}
.wsf-hero__title em { font-style: normal; color: var(--red); display: inline-block; }
.wsf-hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.45; color: #3f3b36; max-width: 30ch; }

.wsf-facts { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; position: relative; z-index: 1; }
.wsf-facts li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #3f3b36; }
.wsf-facts svg { width: 22px; height: 22px; flex: none; color: var(--red); }

.wsf-hero__media { display: grid; grid-template-columns: 1fr 1fr; gap: inherit; position: relative; }
.wsf-photo { position: relative; overflow: hidden; border-radius: var(--r-xl); background: #efe7dc; }
.wsf-photo__img, .wsf-story__img, .wsf-shot__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); transition: transform 1.4s var(--ease); }
.wsf-photo:hover .wsf-photo__img { transform: scale(1.045); }
.wsf-photo--a { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.wsf-photo--b, .wsf-photo--c { aspect-ratio: 1; }

.wsf-sticker { position: absolute; z-index: 3; width: clamp(84px, 11vw, 124px); right: 8px; top: -18px; filter: drop-shadow(0 8px 14px rgba(20, 16, 10, .25)); }
.wsf-sticker svg { width: 100%; height: auto; display: block; animation: wsf-spin 22s linear infinite; }
.wsf-sticker text { fill: #fff; font: 800 9.4px 'Albert Sans', Arial, sans-serif; text-transform: uppercase; }
.wsf-sticker__star { font-size: 26px !important; letter-spacing: 0 !important; }
@keyframes wsf-spin { to { transform: rotate(360deg); } }

@media (min-width: 1000px) {
	.wsf-hero__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); min-height: min(700px, calc(100svh - 150px)); }
	.wsf-hero__title { font-size: clamp(3rem, 4.5vw, 5.2rem); }
	.wsf-hero__media { grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; }
	.wsf-photo--a { grid-column: 1; grid-row: 1 / 3; aspect-ratio: auto; }
	.wsf-photo--b, .wsf-photo--c { aspect-ratio: auto; }
	.wsf-sticker { left: -62px; right: auto; top: 12%; }
}

/* ---------- Trust strip ---------- */
.wsf-usp { border-block: 1px solid var(--line); background: #fff; }
.wsf-usp__list { display: grid; grid-template-columns: 1fr 1fr; }
.wsf-usp__list li { display: flex; align-items: center; gap: 14px; padding: 20px 6px; }
.wsf-usp__list li:nth-child(n+3) { border-top: 1px solid var(--line); }
.wsf-usp__list svg { width: 30px; height: 30px; flex: none; color: var(--ink); }
.wsf-usp__list strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.wsf-usp__list span { display: block; font-size: 13px; color: var(--muted); margin-top: 1px; }
@media (min-width: 900px) {
	.wsf-usp__list { grid-template-columns: repeat(4, 1fr); }
	.wsf-usp__list li { padding: 26px 20px; justify-content: center; }
	.wsf-usp__list li:nth-child(n+3) { border-top: 0; }
	.wsf-usp__list li + li { border-left: 1px solid var(--line); }
}

/* ---------- Vibes ---------- */
.wsf-vibes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .wsf-vibes { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.wsf-vibe {
	position: relative; display: flex; flex-direction: column; gap: 2px; aspect-ratio: 4 / 5; isolation: isolate; overflow: hidden;
	background: var(--c); color: var(--ink); border-radius: var(--r-lg); padding: clamp(14px, 1.7vw, 24px);
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.wsf-vibe__label { font-size: clamp(1.1rem, 1.7vw, 1.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.wsf-vibe__count { font-size: 12px; font-weight: 700; opacity: .6; letter-spacing: .02em; }
.wsf-vibe__img {
	position: absolute; z-index: -1; left: 4%; right: 4%; bottom: -2%; width: 92%; height: 80%; object-fit: contain; object-position: center bottom;
	mix-blend-mode: multiply; filter: brightness(1.025); transition: transform .8s var(--ease);
}
.wsf-vibe__go {
	position: absolute; top: clamp(12px, 1.5vw, 20px); right: clamp(12px, 1.5vw, 20px); width: 38px; height: 38px; border-radius: 50%;
	display: grid; place-items: center; background: rgba(255, 255, 255, .75); font-size: 16px; font-weight: 700;
	transform: scale(.85); opacity: 0; transition: transform .4s var(--ease), opacity .3s, background-color .3s, color .3s;
}
.wsf-vibe:hover, .wsf-vibe:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); }
.wsf-vibe:hover .wsf-vibe__img { transform: scale(1.08) rotate(-3deg); }
.wsf-vibe:hover .wsf-vibe__go, .wsf-vibe:focus-visible .wsf-vibe__go { transform: none; opacity: 1; background: var(--ink); color: #fff; }
@media (hover: none) { .wsf-vibe__go { opacity: 1; transform: none; } }

/* ---------- New arrivals (theme product cards, restyled) ---------- */
.wsf-arrivals { background: linear-gradient(#fff, #faf6ef 60%, #fff); }
.wsf-arrivals ul.products { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
.wsf-arrivals ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
@media (min-width: 800px) { .wsf-arrivals ul.products { grid-template-columns: repeat(4, 1fr); gap: 34px 20px; } }

/* ---------- Gift card band ---------- */
.wsf-gift { padding-block: clamp(20px, 4vw, 40px); }
.wsf-gift__box {
	display: grid; gap: 26px; align-items: center; background: var(--ink); color: #fff; border-radius: var(--r-xl);
	padding: clamp(28px, 5vw, 72px); overflow: hidden; position: relative;
}
.wsf-gift__box::before {
	content: ''; position: absolute; inset: auto -10% -60% auto; width: 70%; aspect-ratio: 1;
	background: radial-gradient(closest-side, rgba(219, 18, 21, .55), rgba(219, 18, 21, 0)); pointer-events: none;
}
.wsf-gift__copy { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.wsf-gift__copy .wsf-h2 { color: #fff; }
.wsf-gift__copy p:not(.wsf-eyebrow) { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.5; color: rgba(255, 255, 255, .8); max-width: 34ch; }
.wsf-gift__copy .wsf-btn { margin-top: 8px; }
.wsf-gift__art { position: relative; justify-self: center; width: min(100%, 340px); }
.wsf-gift__img { width: 100%; border-radius: 22px; box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .7); transform: rotate(-4deg); transition: transform .8s var(--ease); }
.wsf-gift__box:hover .wsf-gift__img { transform: rotate(0deg) scale(1.03); }
@media (min-width: 800px) { .wsf-gift__box { grid-template-columns: 1.1fr .9fr; } .wsf-gift__art { justify-self: end; } }

/* ---------- Story ---------- */
.wsf-story__grid { display: grid; gap: clamp(24px, 4vw, 64px); align-items: center; }
.wsf-story__photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3; background: #f1e7d8; --pos: 50% 55%; }
.wsf-story__photo:hover .wsf-story__img { transform: scale(1.04); }
.wsf-story__copy { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.wsf-story__copy p:not(.wsf-eyebrow) { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.6; color: #3f3b36; max-width: 52ch; }
.wsf-story__where { margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 15px !important; }
.wsf-story__where .wsf-link { margin-top: 8px; }
@media (min-width: 900px) { .wsf-story__grid { grid-template-columns: 1.05fr 1fr; } .wsf-story__photo { aspect-ratio: 5 / 4; } }

/* ---------- Gallery ---------- */
.wsf-gallery { padding-top: 0; }
.wsf-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 900px) { .wsf-gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.wsf-shot { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4 / 5; background: #eee; }
.wsf-shot:hover .wsf-shot__img { transform: scale(1.06); }

/* ---------- Reveal on scroll (only when JS is running) ---------- */
.wsf-js .wsf-home [data-wsf-reveal] { opacity: 0; transform: translateY(22px); }
.wsf-js .wsf-home [data-wsf-reveal].is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
	.wsf-home *, .wsf-home *::before, .wsf-home *::after { animation: none !important; transition: none !important; }
	.wsf-js .wsf-home [data-wsf-reveal] { opacity: 1; transform: none; }
}

/* ---------- About page ---------- */
.wsf-about-hero { padding-block: clamp(10px, 1.6vw, 22px) 0; }
.wsf-about-hero__box {
	position: relative; overflow: hidden; background: var(--cream); border-radius: var(--r-xl);
	padding: clamp(32px, 6vw, 88px); display: flex; flex-direction: column; gap: clamp(16px, 2vw, 26px);
}
.wsf-about-hero__box::after {
	content: ''; position: absolute; width: 55%; aspect-ratio: 1; right: -12%; top: -40%;
	background: radial-gradient(closest-side, rgba(255, 196, 160, .6), rgba(255, 196, 160, 0)); pointer-events: none;
}
.wsf-about-hero__title { position: relative; font-size: clamp(2.4rem, 6.6vw, 5.6rem); line-height: .96; font-weight: 800; letter-spacing: -.045em; max-width: 16ch; text-wrap: balance; }
.wsf-about-hero__title em { font-style: normal; color: var(--red); }
.wsf-about-hero__lead { position: relative; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.5; color: #3f3b36; max-width: 46ch; }

.wsf-values { padding-bottom: clamp(24px, 4vw, 56px); }
.wsf-values__grid { display: grid; gap: 12px; }
@media (min-width: 800px) { .wsf-values__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.wsf-value { background: var(--c); border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 36px); min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.wsf-value:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wsf-value h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.wsf-value p { margin: 0; font-size: 15px; line-height: 1.5; color: #3f3b36; max-width: 30ch; }

.wsf-visit__grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .wsf-visit__grid { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; } }
.wsf-visit__facts { margin: 0; display: grid; }
.wsf-visit__facts > div { display: grid; gap: 4px; padding: 18px 0; border-top: 1px solid var(--line); }
.wsf-visit__facts > div:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 600px) { .wsf-visit__facts > div { grid-template-columns: 180px 1fr; gap: 24px; } }
.wsf-visit__facts dt { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.wsf-visit__facts dd { margin: 0; font-size: 1.05rem; line-height: 1.5; }
.wsf-visit__facts .wsf-link { margin-top: 6px; }
