:root {
 --paper:#EAE3D3;
 --paper-dim:#DDD4BE;
 --ink:#211A13;
 --ink-soft:#4a4238;
 --walnut:#5B3A22;
 --walnut-dark:#3E2716;
 --birch:#D8BD8E;
 --birch-light:#EFE2C4;
 --stamp:#A63C28;
 --stamp-dark:#7E2C1C;
 --slate:#435049;
 --line:rgba(33,26,19,0.14);
 --shadow:0 18px 40px -20px rgba(33,26,19,0.35);
 --maxw:1240px;
 --display:'Big Shoulders Display', sans-serif;
 --body:'Inter', sans-serif;
 --mono:'IBM Plex Mono', monospace;
}
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--body);
	background: var(--paper);
	color: var(--ink);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}
h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 800;
	line-height: 1.02;
	margin: 0;
	letter-spacing: 0.2px;
}
p {
	margin: 0;
}
.eyebrow {
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stamp);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--stamp);
	display: inline-block;
}
:focus-visible {
outline:3px solid var(--stamp);
outline-offset:3px;
}

@media (prefers-reduced-motion: reduce) {
* {
	animation-duration: 0.001ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.001ms !important;
	scroll-behavior: auto !important;
}
}
.ply-divider {
	height: 16px;
	width: 100%;
	background: repeating-linear-gradient(to bottom, var(--birch) 0 3px, var(--walnut) 3px 5px, var(--birch-light) 5px 8px, var(--walnut-dark) 8px 9px, var(--birch) 9px 12px, var(--walnut) 12px 13px, var(--birch-light) 13px 16px);
	background-size: 100% 16px;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 78px;
	gap: 20px;
}
.logo {
	font-family: var(--display);
	font-weight: 900;
	font-size: 24px;
	letter-spacing: 0.5px;
	color: var(--walnut-dark);
}
.logo span {
	color: var(--stamp);
}
.nav {
	display: flex;
	gap: 30px;
}
.nav a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink-soft);
	position: relative;
	padding: 4px 0;
}
.nav a:hover, .nav a.current {
	color: var(--walnut-dark);
}
.nav a.current::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: var(--stamp);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}
.phone {
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 600;
	color: var(--walnut-dark);
	white-space: nowrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 14.5px;
	padding: 12px 22px;
	border-radius: 3px;
	border: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .15s ease, background .15s ease;
}
.btn-stamp {
	background: var(--stamp);
	color: var(--birch-light);
}
.btn-stamp:hover {
	background: var(--stamp-dark);
	transform: translateY(-2px);
}
.btn-outline {
	border-color: var(--walnut);
	color: var(--walnut-dark);
	background: transparent;
}
.btn-outline:hover {
	background: var(--walnut);
	color: var(--birch-light);
	transform: translateY(-2px);
}
.hamburger {
	display: none;
	background: none;
	border: 2px solid var(--walnut);
	width: 44px;
	height: 44px;
	border-radius: 3px;
	cursor: pointer;
	position: relative;
}
.hamburger span {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	height: 2px;
	background: var(--walnut-dark);
	top: 21px;
}
.hamburger span::before, .hamburger span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--walnut-dark);
}
.hamburger span::before {
	top: -7px;
}
.hamburger span::after {
	top: 7px;
}
.btn-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.stamp-badge {
	width: 118px;
	height: 118px;
	border-radius: 50%;
	border: 2px dashed var(--stamp);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-shrink: 0;
	font-family: var(--mono);
	color: var(--stamp-dark);
	background: radial-gradient(circle, rgba(166,60,40,0.06), transparent 70%);
}
.stamp-badge b {
	font-family: var(--display);
	font-size: 26px;
	font-weight: 900;
	color: var(--stamp);
	line-height: 1;
	display: block;
}
.stamp-badge small {
	font-size: 9.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: block;
	margin-top: 4px;
	padding: 0 8px;
}
.site-footer {
	background: var(--walnut-dark);
	color: var(--birch-light);
	padding: 64px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(216,189,142,0.18);
}
.footer-grid h5 {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--birch);
	margin-bottom: 18px;
}
.footer-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-grid a {
	font-size: 14px;
	color: rgba(239,226,196,0.85);
}
.footer-grid a:hover {
	color: #fff;
}
.footer-brand .logo {
	color: var(--birch-light);
}
.footer-brand p {
	margin-top: 14px;
	font-size: 14px;
	color: rgba(239,226,196,0.75);
	max-width: 320px;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	font-size: 13px;
	color: rgba(239,226,196,0.6);
	flex-wrap: wrap;
	gap: 10px;
}
.footer-bottom a {
	color: var(--birch);
	font-weight: 600;
}
.wa-float {
	position: fixed;
	bottom: 26px;
	right: 26px;
	z-index: 60;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #3E8E5B;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 26px -8px rgba(0,0,0,0.5);
	transition: transform .15s ease;
}
.wa-float:hover {
	transform: scale(1.08);
}

@media (max-width:960px) {
.nav {
	position: fixed;
	top: 78px;
	left: 0;
	right: 0;
	background: var(--paper);
	flex-direction: column;
	gap: 0;
	border-bottom: 1px solid var(--line);
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.nav.open {
	max-height: 400px;
}
.nav a {
	padding: 16px 28px;
	border-top: 1px solid var(--line);
	display: block;
}
.phone {
	display: none;
}
.hamburger {
	display: block;
}
.footer-grid {
	grid-template-columns: 1fr 1fr;
}
}

@media (max-width:600px) {
.footer-grid {
	grid-template-columns: 1fr;
}
.wrap {
	padding: 0 20px;
}
}
/* ---- homepage specific ---- */
.hero {
	padding: 70px 0 0;
	overflow: hidden;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 0.95fr;
	gap: 56px;
	align-items: center;
	padding-bottom: 56px;
}
.hero h1 {
	font-size: clamp(40px, 5.6vw, 74px);
	color: var(--walnut-dark);
}
.hero h1 em {
	font-style: normal;
	color: var(--stamp);
}
.hero-sub {
	margin-top: 22px;
	font-size: 17.5px;
	color: var(--ink-soft);
	max-width: 480px;
}
.hero .btn-row {
	margin-top: 32px;
}
.hero-figure {
	position: relative;
}
.hero-figure img {
	border-radius: 2px;
	box-shadow: var(--shadow);
}
.hero-figure .stamp-badge {
	position: absolute;
	bottom: -24px;
	left: -24px;
	background: var(--paper);
	transform: rotate(-8deg);
	box-shadow: var(--shadow);
}
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	padding: 36px 0 56px;
	border-top: 1px solid var(--line);
}
.stat {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}
.stat .stamp-badge {
	width: 88px;
	height: 88px;
	transform: rotate(-4deg);
}
.stat-copy {
	min-width: 0;
}
.stat .stamp-badge:nth-child(1) {
	transform: rotate(-4deg);
}
.stat-copy b {
	display: block;
	font-family: var(--display);
	font-size: 15px;
	color: var(--walnut-dark);
}
.stat-copy span {
	font-size: 13px;
	color: var(--ink-soft);
}
.section {
	padding: 80px 0;
}
.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}
.section-head h2 {
	font-size: clamp(30px, 4vw, 44px);
	color: var(--walnut-dark);
	max-width: 640px;
}
.section-head p {
	color: var(--ink-soft);
	font-size: 15.5px;
	max-width: 380px;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.product-card {
	background: var(--birch-light);
	border: 1px solid var(--line);
	border-radius: 2px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.product-card .pc-media {
	position: relative;
	height: 190px;
	overflow: hidden;
}
.product-card .pc-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-card .pc-num {
	position: absolute;
	top: 12px;
	left: 12px;
	font-family: var(--mono);
	font-size: 12px;
	background: var(--walnut-dark);
	color: var(--birch-light);
	padding: 4px 9px;
	border-radius: 2px;
	letter-spacing: 0.06em;
}
.product-card .pc-swatch {
	height: 190px;
	position: relative;
}
.pc-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.pc-body h3 {
	font-size: 22px;
	color: var(--walnut-dark);
}
.pc-body p {
	font-size: 14.5px;
	color: var(--ink-soft);
}
.pc-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: auto;
	padding-top: 6px;
}
.pc-tags span {
	font-family: var(--mono);
	font-size: 11px;
	background: rgba(91,58,34,0.09);
	color: var(--walnut-dark);
	padding: 5px 9px;
	border-radius: 2px;
}
.pc-link {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--stamp);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}
.pc-link:hover {
	color: var(--stamp-dark);
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.why-card {
	background: var(--walnut-dark);
	color: var(--birch-light);
	padding: 32px 26px;
	border-radius: 2px;
	position: relative;
}
.why-card b {
	font-family: var(--display);
	font-size: 42px;
	color: var(--birch);
	display: block;
}
.why-card h4 {
	font-size: 16px;
	margin-top: 10px;
	color: #fff;
}
.why-card p {
	margin-top: 10px;
	font-size: 13.5px;
	color: rgba(239,226,196,0.72);
}
.process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.process-list::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--line);
}
.process-step {
	position: relative;
	padding-right: 20px;
}
.process-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--paper);
	border: 2px solid var(--stamp);
	color: var(--stamp);
	font-family: var(--mono);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
}
.process-step h4 {
	font-size: 18px;
	color: var(--walnut-dark);
	margin-bottom: 8px;
}
.process-step p {
	font-size: 14px;
	color: var(--ink-soft);
}
.gallery-preview {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 130px;
	gap: 14px;
}
.gallery-preview a {
	overflow: hidden;
	border-radius: 2px;
	position: relative;
}
.gallery-preview a:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}
.gallery-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.gallery-preview a:hover img {
	transform: scale(1.08);
}
.cta-band {
	background: var(--stamp);
	color: var(--birch-light);
	border-radius: 2px;
	padding: 56px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}
.cta-band h3 {
	font-size: clamp(26px, 3.4vw, 38px);
	color: #fff;
	max-width: 560px;
}
.cta-band p {
	margin-top: 10px;
	color: rgba(239,226,196,0.9);
	font-size: 15px;
}
.cta-band .btn-outline {
	border-color: #fff;
	color: #fff;
}
.cta-band .btn-outline:hover {
	background: #fff;
	color: var(--stamp-dark);
}

@media (max-width:960px) {
.hero-grid {
	grid-template-columns: 1fr;
}
.hero-figure {
	order: -1;
}
.stats-row {
	grid-template-columns: repeat(2, 1fr);
}
.product-grid {
	grid-template-columns: repeat(2, 1fr);
}
.why-grid {
	grid-template-columns: repeat(2, 1fr);
}
.process-list {
	grid-template-columns: repeat(2, 1fr);
	row-gap: 36px;
}
.process-list::before {
	display: none;
}
.gallery-preview {
	grid-template-columns: repeat(3, 1fr);
}
.cta-band {
	flex-direction: column;
	align-items: flex-start;
}
}

@media (max-width:600px) {
.product-grid, .why-grid {
	grid-template-columns: 1fr;
}
.stats-row {
	grid-template-columns: 1fr;
	gap: 18px;
}
.stat .stamp-badge {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
}
.stat {
	padding-left: 0 !important;
}
.stat::before {
	display: none;
}
.gallery-preview {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-preview a:nth-child(1) {
	grid-column: span 2;
}
.section {
	padding: 56px 0;
}
.cta-band {
	padding: 34px 24px;
}
}
/* ---- richer hero: collage + backdrop ---- */
.hero {
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 640px;
	background-image: radial-gradient(rgba(33,26,19,0.05) 1px, transparent 1px);
	background-size: 16px 16px;
	mask-image: linear-gradient(to bottom, black, transparent 85%);
	pointer-events: none;
	z-index: 0;
}
.hero-grid {
	position: relative;
	z-index: 1;
}
.hero-figure {
	position: relative;
	padding: 6px 30px 46px 0;
}
.hero-figure::before {
	content: "";
	position: absolute;
	top: 36px;
	right: -22px;
	width: 78%;
	height: 88%;
	background: repeating-linear-gradient(115deg, var(--birch) 0 10px, var(--walnut) 10px 14px, var(--birch-light) 14px 26px, var(--walnut-dark) 26px 29px, var(--birch) 29px 40px);
	border-radius: 2px;
	z-index: 0;
	opacity: 0.9;
}
.hc-main {
	position: relative;
	z-index: 2;
	border-radius: 2px;
	box-shadow: var(--shadow);
	width: 100%;
}
.hc-accent {
	position: absolute;
	z-index: 3;
	width: 44%;
	left: -24px;
	bottom: -30px;
	border: 6px solid var(--paper);
	border-radius: 2px;
	box-shadow: var(--shadow);
	transform: rotate(-7deg);
	transition: transform .3s ease;
}
.hero-figure:hover .hc-accent {
	transform: rotate(-3deg) scale(1.03);
}
.hc-badge {
	position: absolute;
	z-index: 4;
	top: -20px;
	right: -8px;
	background: var(--paper);
	box-shadow: var(--shadow);
	transform: rotate(7deg);
}
/* ---- grade ticker marquee ---- */
.ticker {
	background: var(--walnut-dark);
	overflow: hidden;
	position: relative;
	border-top: 1px solid rgba(216,189,142,0.15);
	border-bottom: 1px solid rgba(216,189,142,0.15);
}
.ticker::before, .ticker::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}
.ticker::before {
	left: 0;
	background: linear-gradient(to right, var(--walnut-dark), transparent);
}
.ticker::after {
	right: 0;
	background: linear-gradient(to left, var(--walnut-dark), transparent);
}
.ticker-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: ticker-scroll 22s linear infinite;
}
.ticker-track span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--birch-light);
	padding: 15px 34px;
	white-space: nowrap;
	flex-shrink: 0;
}
.ticker-track span::before {
	content: "◆";
	color: var(--stamp);
	font-size: 9px;
}
@keyframes ticker-scroll {
from {
transform:translate3d(0, 0, 0);
}
to {
transform:translate3d(-50%, 0, 0);
}
}

@media (prefers-reduced-motion: reduce) {
.ticker-track {
	animation-duration: 22s !important;
	animation-iteration-count: infinite !important;
	animation-play-state: running !important;
}
}
/* ---- dark "by the numbers" band ---- */
.why-dark {
	background: var(--walnut-dark);
	position: relative;
	overflow: hidden;
}
.why-dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, rgba(216,189,142,0.04) 0 2px, transparent 2px 22px);
	pointer-events: none;
}
.why-dark .wrap {
	position: relative;
	z-index: 1;
}
.why-dark .eyebrow {
	color: var(--birch);
}
.why-dark .eyebrow::before {
	background: var(--birch);
}
.why-dark .section-head h2 {
	color: #fff;
}
.why-dark .section-head p {
	color: rgba(239,226,196,0.72);
}
.why-grid-alt {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(216,189,142,0.16);
	border-radius: 2px;
	overflow: hidden;
}
.why-cell {
	background: var(--walnut-dark);
	padding: 36px 28px;
	transition: background .2s ease;
}
.why-cell:hover {
	background: #2f1c10;
}
.why-cell b {
	font-family: var(--display);
	font-size: 48px;
	color: var(--stamp);
	display: block;
	line-height: 1;
}
.why-cell h4 {
	font-size: 16px;
	margin-top: 14px;
	color: #fff;
}
.why-cell p {
	margin-top: 10px;
	font-size: 13.5px;
	color: rgba(239,226,196,0.68);
}
/* ---- cut-sheet corner detail on cards ---- */
.product-card {
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.product-card .pc-media img {
	transition: transform .4s ease;
}
.product-card:hover .pc-media img {
	transform: scale(1.08);
}
.cta-band {
	clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}
/* ---- ticket-stub stats ---- */
.stats-row {
	position: relative;
}
.stat {
	position: relative;
	padding-left: 22px;
}
.stat:first-child {
	padding-left: 0;
}
.stat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 0;
	border-left: 2px dashed var(--line);
}
.stat:first-child::before {
	display: none;
}
/* ---- scroll reveal ---- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
.reveal.show {
	opacity: 1;
	transform: translateY(0);
}
.reveal-group .reveal:nth-child(1) {
	transition-delay: 0s;
}
.reveal-group .reveal:nth-child(2) {
	transition-delay: .08s;
}
.reveal-group .reveal:nth-child(3) {
	transition-delay: .16s;
}
.reveal-group .reveal:nth-child(4) {
	transition-delay: .24s;
}
.reveal-group .reveal:nth-child(5) {
	transition-delay: .32s;
}
.reveal-group .reveal:nth-child(6) {
	transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {
.reveal {
	opacity: 1;
	transform: none;
	transition: none;
}
}

@media (max-width:960px) {
.why-grid-alt {
	grid-template-columns: repeat(2, 1fr);
}
.hero-figure::before {
	display: none;
}
.hc-accent {
	width: 50%;
}
}

@media (max-width:600px) {
.why-grid-alt {
	grid-template-columns: 1fr;
}
.hero-figure {
	padding: 6px 12px 40px 0;
}
.ticker-track span {
	padding: 13px 22px;
	font-size: 11.5px;
}
}
/* ---- full-width banner slider ---- */
.banner-slider {
	position: relative;
	width: 100%;
	height: 540px;
	overflow: hidden;
	background: var(--walnut-dark);
}
.banner-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .9s ease;
}
.banner-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
.banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(20,15,10,0.82) 0%, rgba(20,15,10,0.5) 42%, rgba(20,15,10,0.14) 72%);
}
.banner-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
	color: #fff;
	padding-left: max(28px, calc((100vw - 1240px) / 2 + 28px));
	padding-right: 28px;
}
.banner-content .eyebrow {
	color: var(--birch);
}
.banner-content .eyebrow::before {
	background: var(--birch);
}
.banner-content h2 {
	font-size: clamp(28px, 4.2vw, 46px);
	color: #fff;
	max-width: 480px;
	line-height: 1.05;
}
.banner-content p {
	margin-top: 16px;
	font-size: 15.5px;
	color: rgba(255,255,255,0.85);
	max-width: 420px;
}
.banner-content .btn-row {
	margin-top: 28px;
}
.banner-index {
	position: absolute;
	top: 26px;
	right: max(28px, calc((100vw - 1240px) / 2 + 28px));
	z-index: 3;
	font-family: var(--mono);
	font-size: 12px;
	color: #fff;
	background: rgba(0,0,0,0.3);
	border: 1px solid rgba(255,255,255,0.25);
	padding: 6px 13px;
	border-radius: 20px;
	letter-spacing: 0.08em;
}
.banner-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	border: 1.5px solid rgba(255,255,255,0.35);
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s ease, transform .15s ease;
}
.banner-arrow:hover {
	background: rgba(255,255,255,0.26);
	transform: translateY(-50%) scale(1.06);
}
.banner-prev {
	left: 26px;
}
.banner-next {
	right: 26px;
}
.banner-dots {
	position: absolute;
	bottom: 26px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 3;
}
.banner-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease;
}
.banner-dot.active {
	background: var(--stamp);
	transform: scale(1.3);
}
.banner-slider:focus-within .banner-arrow, .banner-slider:hover .banner-arrow {
opacity:1;
}

@media (max-width:900px) {
.banner-slider {
	height: 460px;
}
.banner-content h2 {
	max-width: 100%;
}
}

@media (max-width:600px) {
.banner-slider {
	height: 420px;
}
.banner-content {
	padding-left: 20px;
	padding-right: 20px;
}
.banner-arrow {
	width: 40px;
	height: 40px;
	font-size: 16px;
}
.banner-prev {
	left: 12px;
}
.banner-next {
	right: 12px;
}
.banner-index {
	top: 16px;
	right: 16px;
	font-size: 10.5px;
	padding: 5px 10px;
}
}
.logo img{
	width:120px;
}