/* =====================================================================
   Solie Prints — a sunlit gallery.
   Palette: dusk navy · deep sea · solar gold · sunrise amber · warm sand
   Type: Fraunces (display) · Manrope (body) · Space Grotesk (labels/data)
   ===================================================================== */

:root {
	--navy:  #0E1A2B;
	--sea:   #16283F;
	--gold:  #E8A317;
	--amber: #F2C14E;
	--sand:  #FBF6EC;
	--cream: #FFFDF7;
	--line:  #E7DFCD;
	--ink:   #1B2432;
	--slate: #6C7B8F;
	--sun:   radial-gradient(circle at 50% 50%, #FBE08A 0%, #F2C14E 26%, #E8A317 46%, rgba(232,163,23,0) 72%);

	--display: "Fraunces", Georgia, "Times New Roman", serif;
	--body: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
	--mono: "Space Grotesk", ui-monospace, monospace;

	--wrap: 1160px;
	--radius: 18px;
	--shadow: 0 24px 60px rgba(14, 26, 43, .16);
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0; background: var(--cream); color: var(--ink);
	font-family: var(--body); font-size: 17px; line-height: 1.65;
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #c98c00; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; color: var(--navy); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
.spt-main { display: block; }
.spt-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.spt-skip { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.spt-skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* eyebrows / section heads */
.spt-eyebrow { font-family: var(--mono); text-transform: uppercase; letter-spacing: .26em; font-size: 12px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px; }
.spt-eyebrow-dark { color: #B4801A; }
.spt-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(232,163,23,.2); }
.spt-sec-head { max-width: 640px; margin-bottom: 42px; }
.spt-sec-title { font-size: clamp(28px, 4.4vw, 46px); }

/* ---------- buttons ---------- */
.spt-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--body); font-weight: 700; font-size: 15px; line-height: 1;
	padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
	cursor: pointer; transition: transform .16s var(--ease), box-shadow .16s, background .16s, color .16s;
	white-space: nowrap;
}
.spt-btn-lg { padding: 17px 32px; font-size: 16px; }
.spt-btn-gold { background: linear-gradient(180deg, var(--amber), var(--gold)); color: #3A2B00; box-shadow: 0 14px 30px rgba(232,163,23,.34); }
.spt-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(232,163,23,.42); color: #3A2B00; }
.spt-btn-ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.spt-btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* =====================================================================
   Header
   ===================================================================== */
.spt-header { position: sticky; top: 0; z-index: 100; background: var(--navy); transition: background .3s, box-shadow .3s; }
.spt-header.is-stuck { background: rgba(11,20,34,.9); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
/* Front page: sit transparently over the hero, then pin on scroll. */
.spt-header[data-transparent="true"] { position: absolute; left: 0; right: 0; background: transparent; }
.spt-header[data-transparent="true"].is-stuck { position: fixed; background: rgba(11,20,34,.92); }
.spt-header-inner { max-width: var(--wrap); margin-inline: auto; padding: 16px clamp(20px, 5vw, 40px); display: flex; align-items: center; gap: 24px; }
.spt-header-brand { flex: none; }
.spt-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-family: var(--display); font-weight: 600; font-size: 22px; }
.spt-brand:hover { color: #fff; }
.custom-logo-link { display: inline-block; }
.spt-sun { width: 30px; height: 30px; fill: var(--gold); }
.spt-sun-rays { transform-origin: 16px 16px; }
.spt-brand-sun { filter: drop-shadow(0 0 10px rgba(232,163,23,.5)); }

.spt-nav { margin-left: auto; }
.spt-menu { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.spt-menu a { color: rgba(255,255,255,.82); font-weight: 600; font-size: 15px; padding: 8px 14px; border-radius: 999px; transition: color .15s, background .15s; }
.spt-menu a:hover, .spt-menu .current-menu-item > a { color: #fff; background: rgba(255,255,255,.08); }
.spt-header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.spt-burger { display: none; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,.08); border-radius: 12px; cursor: pointer; padding: 0; }
.spt-burger span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; transition: transform .2s, opacity .2s; }
.spt-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.spt-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.spt-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.spt-mobile { background: var(--sea); padding: 14px clamp(20px,5vw,40px) 22px; border-top: 1px solid rgba(255,255,255,.08); }
.spt-mobile-menu { list-style: none; margin: 0 0 14px; padding: 0; }
.spt-mobile-menu a { display: block; color: #fff; font-weight: 600; padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
.spt-mobile-cta { width: 100%; }

/* =====================================================================
   Hero
   ===================================================================== */
.spt-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #0B1626 0%, var(--navy) 60%, #10233A 100%); color: #fff; padding: clamp(120px, 16vh, 180px) 0 clamp(80px, 12vh, 130px); }
.spt-hero-sun { position: absolute; width: min(720px, 90vw); aspect-ratio: 1; right: -8%; top: 8%; background: var(--sun); filter: blur(6px); opacity: .9; animation: spt-breathe 8s ease-in-out infinite; pointer-events: none; }
.spt-grain { position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.spt-hero-inner { position: relative; z-index: 2; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px,5vw,40px); display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.spt-hero-title { font-size: clamp(40px, 7vw, 82px); font-weight: 500; color: #fff; line-height: 1.02; letter-spacing: -.02em; margin-bottom: 22px; }
.spt-hero-title em { font-style: italic; font-weight: 400; color: var(--amber); }
.spt-hero-sub { font-size: clamp(17px, 2.1vw, 20px); color: rgba(255,255,255,.8); max-width: 30ch; margin: 0 0 30px; }
.spt-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.spt-hero-trust { font-size: 14px; color: rgba(255,255,255,.62); font-family: var(--mono); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.spt-check { color: var(--amber); }
.spt-dot { opacity: .5; }

/* framed canvases */
.spt-hero-art { position: relative; min-height: 420px; }
.spt-frame { position: absolute; border-radius: 12px; background: #fff; padding: 12px; box-shadow: var(--shadow); }
.spt-frame::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(0,0,0,.06); border-radius: 5px; pointer-events: none; }
.spt-canvas { border-radius: 6px; aspect-ratio: 4/5; background-size: cover;
	background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 1px, transparent 1px 3px), repeating-linear-gradient(-45deg, rgba(0,0,0,.05) 0 1px, transparent 1px 3px), linear-gradient(160deg, #FBE08A, #E8731F 45%, #7A3B6B 88%); }
.spt-canvas-2 { aspect-ratio: 1; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 1px, transparent 1px 3px), repeating-linear-gradient(-45deg, rgba(0,0,0,.05) 0 1px, transparent 1px 3px), linear-gradient(160deg, #9AD0E6, #2E5A8A 60%, #16283F); }
.spt-frame-a { width: 60%; left: 6%; top: 4%; transform: rotate(-4deg); animation: spt-float 7s ease-in-out infinite; }
.spt-frame-b { width: 42%; right: 4%; bottom: 6%; transform: rotate(5deg); animation: spt-float 7s ease-in-out infinite 1.2s; }
.spt-frame-tag { position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); background: var(--navy); color: var(--amber); font-family: var(--mono); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }

.spt-chip { position: absolute; background: rgba(255,255,255,.96); color: var(--navy); border-radius: 14px; padding: 10px 14px; box-shadow: 0 14px 30px rgba(0,0,0,.22); display: flex; flex-direction: column; line-height: 1.2; }
.spt-chip b { font-size: 14px; }
.spt-chip span { font-size: 11.5px; color: var(--slate); }
.spt-chip-1 { top: 0; right: 8%; animation: spt-float 6s ease-in-out infinite .5s; }
.spt-chip-2 { bottom: -6px; left: 2%; animation: spt-float 6.5s ease-in-out infinite 1.6s; }

.spt-scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 999px; z-index: 3; }
.spt-scroll-hint span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--amber); border-radius: 2px; transform: translateX(-50%); animation: spt-scroll 1.8s ease-in-out infinite; }

@keyframes spt-breathe { 0%,100% { transform: scale(1); opacity: .82; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes spt-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes spt-scroll { 0% { top: 8px; opacity: 0; } 30% { opacity: 1; } 100% { top: 24px; opacity: 0; } }

/* =====================================================================
   How it works
   ===================================================================== */
.spt-how { background: var(--cream); padding: clamp(64px, 9vw, 104px) 0; }
.spt-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.spt-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 28px; }
.spt-step-no { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.spt-step-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--sand); color: var(--gold); display: grid; place-items: center; font-size: 24px; margin: 14px 0 16px; }
.spt-step h3 { font-size: 22px; margin-bottom: 8px; }
.spt-step p { color: var(--slate); font-size: 15.5px; margin: 0; }
.spt-how-cta { margin-top: 34px; }

/* =====================================================================
   What we print
   ===================================================================== */
.spt-what { background: var(--navy); color: #fff; padding: clamp(64px, 9vw, 104px) 0; }
.spt-what .spt-sec-title { color: #fff; }
.spt-cards { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
.spt-card { display: flex; flex-direction: column; background: var(--sea); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; color: #fff; transition: transform .18s var(--ease), border-color .18s; }
.spt-card:hover { transform: translateY(-5px); border-color: var(--amber); color: #fff; }
.spt-card-art { aspect-ratio: 16/10; position: relative; }
.spt-card-feature .spt-card-art { aspect-ratio: 16/13; }
.spt-card-art::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 4px); }
.spt-art-canvas { background: linear-gradient(150deg, #FBE08A, #E8731F 50%, #7A3B6B); }
.spt-art-photo { background: linear-gradient(150deg, #9AD0E6, #2E5A8A 70%, #16283F); }
.spt-art-gift { background: linear-gradient(150deg, #F2C14E, #C0392B 90%); }
.spt-card-body { padding: 22px 24px 26px; }
.spt-card-body h3 { color: #fff; font-size: 23px; }
.spt-card-body p { color: rgba(255,255,255,.72); font-size: 15px; margin: 0 0 14px; }
.spt-card-link { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--amber); letter-spacing: .02em; }

/* =====================================================================
   Gallery band
   ===================================================================== */
.spt-gallery { background: var(--sand); padding: 54px 0 40px; overflow: hidden; }
.spt-gallery-track { display: flex; gap: 20px; width: max-content; padding-inline: 20px; animation: spt-marquee 40s linear infinite; }
.spt-gframe { width: 220px; height: 260px; border-radius: 12px; background: #fff; padding: 10px; box-shadow: 0 16px 36px rgba(14,26,43,.14); flex: none; }
.spt-gframe::before { content: ""; display: block; width: 100%; height: 100%; border-radius: 6px; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 1px, transparent 1px 3px), var(--g); }
.spt-gframe-1 { --g: linear-gradient(160deg, #FBE08A, #E8731F 60%, #7A3B6B); }
.spt-gframe-2 { --g: linear-gradient(160deg, #9AD0E6, #2E5A8A 70%, #16283F); }
.spt-gframe-3 { --g: linear-gradient(160deg, #F5C15A, #C0392B); }
.spt-gframe-4 { --g: linear-gradient(160deg, #BFE3C9, #1FB37A 70%, #16283F); }
.spt-gframe-5 { --g: linear-gradient(160deg, #E8A317, #7A3B6B); }
.spt-gframe-6 { --g: linear-gradient(160deg, #F2C14E, #2E5A8A); }
.spt-gframe:nth-child(even) { transform: translateY(14px); }
.spt-gallery-cap { text-align: center; margin-top: 26px; font-family: var(--display); font-style: italic; color: var(--slate); font-size: 18px; }
@keyframes spt-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   Why + quote
   ===================================================================== */
.spt-why { background: var(--cream); padding: clamp(64px, 9vw, 108px) 0; }
.spt-why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.spt-why-lead { font-size: 18px; color: var(--slate); margin: 0 0 22px; }
.spt-why-list { list-style: none; margin: 0; padding: 0; }
.spt-why-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.spt-why-list li span { color: var(--gold); }
.spt-quote { margin: 0; position: relative; background: linear-gradient(155deg, var(--sea), var(--navy)); color: #fff; border-radius: 22px; padding: 44px 40px 36px; box-shadow: var(--shadow); overflow: hidden; }
.spt-quote::before { content: ""; position: absolute; width: 300px; height: 300px; right: -80px; top: -120px; background: var(--sun); opacity: .5; }
.spt-quote-mark { position: relative; font-family: var(--display); font-size: 90px; line-height: .5; color: var(--amber); height: 40px; }
.spt-quote blockquote { position: relative; margin: 0 0 18px; font-family: var(--display); font-size: 23px; line-height: 1.4; font-weight: 500; }
.spt-quote figcaption { position: relative; font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--amber); text-transform: uppercase; }

/* =====================================================================
   Final CTA
   ===================================================================== */
.spt-cta { position: relative; background: var(--navy); color: #fff; padding: clamp(72px, 11vw, 128px) 0; text-align: center; overflow: hidden; }
.spt-cta-sun { position: absolute; width: 640px; height: 640px; left: 50%; bottom: -60%; transform: translateX(-50%); background: var(--sun); opacity: .55; }
.spt-cta-inner { position: relative; z-index: 2; }
.spt-cta-title { color: #fff; font-size: clamp(32px, 5.5vw, 60px); font-weight: 500; margin-bottom: 14px; }
.spt-cta-sub { color: rgba(255,255,255,.78); font-size: 19px; max-width: 44ch; margin: 0 auto 30px; }

/* =====================================================================
   Footer
   ===================================================================== */
.spt-footer { position: relative; background: #0A1421; color: #fff; padding: 64px 0 0; overflow: hidden; }
.spt-sunburst { position: absolute; width: 500px; height: 500px; right: -140px; top: -240px; background: var(--sun); opacity: .28; pointer-events: none; }
.spt-footer-inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding: 0 clamp(20px,5vw,40px) 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.spt-footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.spt-footer-sun { width: 40px; height: 40px; filter: drop-shadow(0 0 10px rgba(232,163,23,.5)); }
.spt-footer-name { font-family: var(--display); font-size: 22px; font-weight: 600; }
.spt-footer-tag { color: rgba(255,255,255,.6); font-size: 14.5px; margin: 4px 0 0; max-width: 34ch; }
.spt-footer h4 { color: #fff; font-family: var(--body); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; }
.spt-footer-menu { list-style: none; margin: 0; padding: 0; }
.spt-footer-menu a { display: block; color: rgba(255,255,255,.72); padding: 6px 0; font-size: 15px; }
.spt-footer-menu a:hover { color: var(--amber); }
.spt-footer-contact a { display: block; color: rgba(255,255,255,.82); font-size: 15px; padding: 3px 0; }
.spt-footer-contact a:hover { color: var(--amber); }
.spt-footer-lead { color: rgba(255,255,255,.55); font-family: var(--mono); font-size: 12.5px; margin: 12px 0 0; }
.spt-footer-bottom { position: relative; border-top: 1px solid rgba(255,255,255,.08); padding: 20px clamp(20px,5vw,40px); max-width: var(--wrap); margin-inline: auto; display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.5); font-size: 13px; font-family: var(--mono); flex-wrap: wrap; }
.spt-widget { margin-bottom: 18px; }
.spt-widget-title { color: #fff; }

/* =====================================================================
   Shop page (full-width, light canvas for the plugin storefront)
   ===================================================================== */
.spt-shop-hero { position: relative; background: linear-gradient(180deg, var(--navy), #12243A); color: #fff; padding: clamp(84px, 12vh, 128px) 0 clamp(40px, 6vh, 64px); overflow: hidden; }
.spt-shop-hero-sun { position: absolute; width: 520px; height: 520px; right: -120px; top: -180px; background: var(--sun); opacity: .6; }
.spt-shop-hero .spt-eyebrow { position: relative; }
.spt-shop-hero-title { position: relative; color: #fff; font-size: clamp(34px, 6vw, 60px); font-weight: 500; margin: 0; }
.spt-shop-canvas { background: var(--sand); padding: clamp(36px, 6vw, 64px) 0 clamp(64px, 9vw, 96px); }
.spt-shop-wrap { max-width: 1220px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
/* On shop pages, drop the front hero paddings and let the plugin breathe. */
.spt-shop-page .spt-main { background: var(--sand); }

/* =====================================================================
   Pages, prose, blog
   ===================================================================== */
.spt-page-hero { background: var(--sand); padding: clamp(60px, 9vh, 104px) 0 clamp(24px, 4vh, 40px); border-bottom: 1px solid var(--line); }
.spt-page-title { font-size: clamp(30px, 5vw, 52px); margin: 0; }
.spt-archive-desc { color: var(--slate); margin: 12px 0 0; }
.spt-page-media { margin-top: 30px; }
.spt-page-media img { border-radius: var(--radius); width: 100%; }
.spt-prose { max-width: 760px; padding-top: 40px; padding-bottom: 64px; font-size: 18px; }
.spt-prose > * { margin: 0 0 1.1em; }
.spt-prose h2 { font-size: 30px; margin: 1.6em 0 .5em; }
.spt-prose h3 { font-size: 23px; margin: 1.4em 0 .4em; }
.spt-prose a { text-decoration: underline; text-underline-offset: 3px; }
.spt-prose img { border-radius: 12px; }
.spt-prose blockquote { border-left: 3px solid var(--gold); margin-inline: 0; padding: 6px 0 6px 22px; font-family: var(--display); font-style: italic; color: var(--sea); }
.spt-prose code { background: var(--sand); padding: 2px 6px; border-radius: 5px; font-size: .9em; }
.spt-prose ul, .spt-prose ol { padding-left: 1.3em; }

.spt-posts { padding: 48px clamp(20px,5vw,40px) 72px; }
.spt-post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.spt-post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .16s var(--ease), box-shadow .16s; }
.spt-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.spt-post-thumb { display: block; aspect-ratio: 16/10; background: var(--sand); overflow: hidden; }
.spt-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.spt-post-noimg { display: grid; place-items: center; height: 100%; font-size: 46px; color: var(--amber); }
.spt-post-body { padding: 20px 22px 24px; }
.spt-post-meta { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--slate); margin: 0 0 8px; }
.spt-post-title { font-size: 22px; margin: 0 0 8px; }
.spt-post-title a { color: var(--navy); }
.spt-post-title a:hover { color: var(--gold); }
.spt-post-excerpt { color: var(--slate); font-size: 15px; margin: 0 0 12px; }

.spt-pagination { margin-top: 40px; }
.spt-pagination .page-numbers { display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; margin: 0 3px; color: var(--navy); font-weight: 600; }
.spt-pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.spt-empty { text-align: center; padding: 80px 20px; }

.spt-single-foot { padding-bottom: 40px; display: flex; flex-direction: column; gap: 18px; }
.spt-tags a { display: inline-block; background: var(--sand); border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px; font-size: 13px; margin: 0 6px 6px 0; }
.spt-single-nav { display: flex; justify-content: space-between; gap: 16px; font-weight: 600; }
.spt-comments { padding-bottom: 64px; max-width: 760px; }

/* =====================================================================
   Reveal-on-scroll
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
	.spt-hero-inner { grid-template-columns: 1fr; gap: 48px; }
	.spt-hero-art { min-height: 340px; max-width: 460px; }
	.spt-why-grid { grid-template-columns: 1fr; gap: 32px; }
	.spt-cards { grid-template-columns: 1fr 1fr; }
	.spt-card-feature { grid-column: 1 / -1; }
	.spt-card-feature .spt-card-art { aspect-ratio: 16/7; }
}
@media (max-width: 760px) {
	.spt-nav { display: none; }
	.spt-header-cta { display: none; }
	.spt-burger { display: block; }
	.spt-steps { grid-template-columns: 1fr; }
	.spt-cards { grid-template-columns: 1fr; }
	.spt-footer-inner { grid-template-columns: 1fr; gap: 28px; }
	.spt-hero { padding-top: 108px; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.spt-hero-sun, .spt-frame-a, .spt-frame-b, .spt-chip-1, .spt-chip-2, .spt-gallery-track, .spt-scroll-hint span { animation: none !important; }
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.spt-card:hover, .spt-post-card:hover, .spt-btn-gold:hover { transform: none; }
}

/* ---------- language switcher (EN · FR · KR) ---------- */
.spt-lang { display: inline-flex; align-items: center; gap: 2px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 3px; }
.spt-lang-btn { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.7); padding: 5px 10px; border-radius: 999px; line-height: 1; transition: color .15s, background .15s; }
.spt-lang-btn:hover { color: #fff; }
.spt-lang-btn.is-on { background: linear-gradient(180deg, var(--amber), var(--gold)); color: #3A2B00; }
.spt-lang-mobile { display: inline-flex; margin: 2px 0 16px; }
@media (max-width: 760px) {
	.spt-header-actions .spt-lang { display: none; }
}

/* =====================================================================
   Page template: Contact
   ===================================================================== */
.spt-contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; padding: 48px clamp(20px,5vw,40px) 72px; max-width: var(--wrap); }
.spt-contact-body { padding: 0; max-width: none; }
.spt-contact-card { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--sea), var(--navy)); color: #fff; border-radius: 22px; padding: 34px 30px; box-shadow: var(--shadow); position: sticky; top: 96px; }
.spt-contact-sun { width: 38px; height: 38px; filter: drop-shadow(0 0 10px rgba(232,163,23,.5)); margin-bottom: 12px; }
.spt-contact-card h2 { color: #fff; font-size: 24px; margin-bottom: 18px; }
.spt-contact-list { list-style: none; margin: 0 0 24px; padding: 0; }
.spt-contact-list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }
.spt-contact-list li:last-child { border-bottom: 0; }
.spt-contact-list a { color: #fff; }
.spt-contact-list a:hover { color: var(--amber); }
.spt-contact-ic { width: 34px; height: 34px; flex: none; display: grid; place-items: center; background: rgba(232,163,23,.16); color: var(--amber); border-radius: 10px; font-size: 16px; }
.spt-contact-cta { width: 100%; }

/* =====================================================================
   Page template: About / Story
   ===================================================================== */
.spt-about-hero { position: relative; overflow: hidden; background: var(--sand); padding: clamp(72px,10vh,120px) 0 clamp(30px,5vh,48px); border-bottom: 1px solid var(--line); text-align: center; }
.spt-about-hero-sun { position: absolute; width: 420px; height: 420px; left: 50%; top: -220px; transform: translateX(-50%); background: var(--sun); opacity: .4; pointer-events: none; }
.spt-about-hero .spt-eyebrow { position: relative; justify-content: center; }
.spt-about-title { position: relative; font-size: clamp(34px, 6vw, 62px); font-weight: 500; margin: 0; }
.spt-about-media { margin-top: 34px; }
.spt-about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.spt-about-body { margin-inline: auto; padding-top: 44px; padding-bottom: 64px; text-align: left; }
.spt-about-cta { margin-top: 0; }

@media (max-width: 860px) {
	.spt-contact-grid { grid-template-columns: 1fr; gap: 28px; }
	.spt-contact-card { position: static; }
}
