:root {
 --ink:        #1D1914;   /* near-black, warm charcoal */
 --ink-soft:   #2B241D;
 --walnut:     #5A3A22;   /* deep timber brown */
 --walnut-2:   #472C18;
 --amber:      #C17A3E;   /* copper/amber accent */
 --amber-light:#E3A868;
 --teal:       #35594F;   /* contrast accent for laminate/PVC range */
 --teal-light: #4E7A6D;
 --cream:      #F3ECE0;   /* sawdust cream */
 --cream-2:    #EAE0CE;
 --paper:      #FBF8F2;
 --line:       rgba(29,25,20,0.12);
 --line-light: rgba(251,248,242,0.18);
 --shadow: 0 20px 50px -20px rgba(29,25,20,0.35);
 --radius: 4px;
 --serif: 'Fraunces', Georgia, serif;
 --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 --mono: 'IBM Plex Mono', ui-monospace, monospace;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--sans);
	color: var(--ink);
	background: var(--paper);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}
section {
	position: relative;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}
.eyebrow {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
h1, h2, h3 {
	font-family: var(--serif);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.01em;
}
h2 {
	font-size: clamp(28px, 4vw, 42px);
}
h3 {
	font-size: 20px;
}
p {
	color: inherit;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 14.5px;
	padding: 15px 28px;
	border-radius: var(--radius);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
	white-space: nowrap;
}
.btn:active {
	transform: translateY(1px);
}
.btn-amber {
	background: var(--amber);
	color: var(--ink);
}
.btn-amber:hover {
	background: var(--amber-light);
}
.btn-outline {
	border-color: var(--line-light);
	color: var(--paper);
}
.btn-outline:hover {
	background: rgba(251,248,242,0.08);
}
.btn-dark {
	background: var(--ink);
	color: var(--paper);
}
.btn-dark:hover {
	background: var(--ink-soft);
}
.btn-block {
	width: 100%;
}
/* Grade-stamp signature motif */
.stamp {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: .05em;
	flex-shrink: 0;
	position: relative;
}
.stamp::before {
	content: "";
	position: absolute;
	inset: 5px;
	border: 1px dashed currentColor;
	border-radius: 50%;
	opacity: .5;
}
/* ===== Header ===== */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(29,25,20,0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line-light);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	color: var(--paper);
	gap: 12px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 700;
	color: var(--paper);
	flex-shrink: 0;
}
.logo .stamp {
	width: 32px;
	height: 32px;
	font-size: 8px;
	color: var(--amber-light);
}
.navlinks {
	display: flex;
	gap: 30px;
	font-size: 14px;
	font-weight: 600;
}
.navlinks a {
	opacity: .85;
	transition: opacity .15s;
}
.navlinks a:hover {
	opacity: 1;
	color: var(--amber-light);
}
.navcta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.navphone {
	font-family: var(--mono);
	font-size: 13.5px;
	color: var(--amber-light);
	display: none;
	white-space: nowrap;
}
.burger {
	display: none;
	background: none;
	border: 1px solid var(--line-light);
	border-radius: 4px;
	color: var(--paper);
	width: 42px;
	height: 42px;
	cursor: pointer;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	position: relative;
}
.burger span, .burger span::before, .burger span::after {
	content: "";
	position: absolute;
	width: 19px;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.burger span {
	top: 20px;
}
.burger span::before {
	content: "";
	top: -6px;
	left: 0;
}
.burger span::after {
	content: "";
	top: 6px;
	left: 0;
}
.burger.open span {
	background: transparent;
}
.burger.open span::before {
	top: 0;
	transform: rotate(45deg);
}
.burger.open span::after {
	top: 0;
	transform: rotate(-45deg);
}
.mobile-menu {
	max-height: 0;
	overflow: hidden;
	background: var(--ink-soft);
	transition: max-height .32s ease;
}
.mobile-menu-inner {
	padding: 6px 28px 26px;
	display: flex;
	flex-direction: column;
}
.mobile-menu a.mlink {
	padding: 14px 0;
	font-size: 15.5px;
	font-weight: 700;
	color: var(--paper);
	border-bottom: 1px solid var(--line-light);
}
.mobile-menu a.mlink:active {
	color: var(--amber-light);
}
.mobile-phone-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0 4px;
}
.mobile-phone-row a {
	font-family: var(--mono);
	font-size: 14px;
	color: var(--amber-light);
	font-weight: 600;
}
.mobile-menu .btn {
	margin-top: 14px;
}

@media(max-width:900px) {
.navlinks {
	display: none;
}
.navphone {
	display: none;
}
.navcta .btn-amber {
	display: none;
}
.burger {
	display: flex;
}
}

@media(min-width:901px) {
.mobile-menu {
	display: none;
}
}
/* ===== Hero ===== */
.hero {
	background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 55%, var(--walnut-2) 100%);
	color: var(--paper);
	overflow: hidden;
}
.hero-grid {
	display: grid;
grid-template-columns:1.05fr .95fr;
	gap: 56px;
	align-items: center;
	padding: 88px 28px 76px;
	max-width: 1180px;
	margin: 0 auto;
}
.hero-eyebrow {
	color: var(--amber-light);
	margin-bottom: 22px;
}
.hero h1 {
	font-size: clamp(36px, 5.2vw, 58px);
	margin-bottom: 22px;
}
.hero h1 em {
	font-style: normal;
	color: var(--amber-light);
}
.hero p.lead {
	font-size: 17px;
	color: rgba(251,248,242,0.78);
	max-width: 520px;
	margin-bottom: 34px;
}
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}
.hero-trust {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	border-top: 1px solid var(--line-light);
	padding-top: 26px;
}
.hero-trust div {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: .02em;
	color: rgba(251,248,242,0.6);
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero-trust strong {
	display: block;
	font-family: var(--serif);
	font-size: 24px;
	color: var(--paper);
	font-weight: 600;
}
.hero-visual {
	position: relative;
}
.hero-photo {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 4/5;
	position: relative;
}
.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-badge {
	position: absolute;
	bottom: -22px;
	left: -22px;
	background: var(--amber);
	color: var(--ink);
	padding: 18px;
	border-radius: 50%;
	width: 108px;
	height: 108px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: var(--shadow);
	font-family: var(--serif);
	border: 2px dashed rgba(29,25,20,0.3);
}
.hero-badge strong {
	font-size: 26px;
	line-height: 1;
	display: block;
}
.hero-badge span {
	font-family: var(--mono);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 4px;
}

@media(max-width:860px) {
.hero-grid {
	grid-template-columns: 1fr;
	padding-top: 56px;
}
.hero-visual {
	order: -1;
	max-width: 340px;
}
.hero-badge {
	width: 88px;
	height: 88px;
	left: -14px;
	bottom: -14px;
}
}
/* ===== Marquee strip ===== */
.strip {
	background: var(--amber);
	color: var(--ink);
	overflow: hidden;
	border-bottom: 1px solid rgba(29,25,20,0.15);
	border-top: 1px solid rgba(29,25,20,0.15);
}
.strip-track {
	display: flex;
	gap: 52px;
	padding: 13px 0;
	white-space: nowrap;
	animation: scroll 26s linear infinite;
	width: max-content;
}
.strip-track span {
	font-family: var(--mono);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .05em;
	display: flex;
	align-items: center;
	gap: 10px;
}
.strip-track span::before {
	content: "■";
	font-size: 8px;
}
 @keyframes scroll {
from {
transform:translateX(0);
}
to {
transform:translateX(-50%);
}
}
/* ===== Section headers ===== */
.section-head {
	max-width: 640px;
	margin-bottom: 52px;
}
.section-head .eyebrow {
	margin-bottom: 14px;
}
.section-head p {
	color: rgba(29,25,20,0.65);
	margin-top: 14px;
	font-size: 15.5px;
}
.light .section-head p {
	color: rgba(29,25,20,0.65);
}
.dark-sec .section-head p {
	color: rgba(251,248,242,0.7);
}
/* ===== Products ===== */
.products {
	background: var(--cream);
	padding: 96px 0;
}
.products .eyebrow {
	color: var(--walnut);
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.p-card {
	background: var(--paper);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	transition: transform .22s ease, box-shadow .22s ease;
}
.p-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 40px -24px rgba(29,25,20,0.3);
}
.p-media {
	aspect-ratio: 16/11;
	overflow: hidden;
	position: relative;
	background: var(--ink);
}
.p-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.p-card:hover .p-media img {
	transform: scale(1.06);
}
.p-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(29,25,20,0.82);
	color: var(--paper);
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: .05em;
	padding: 5px 10px;
	border-radius: 2px;
}
.p-body {
	padding: 22px 22px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.p-body h3 {
	margin-bottom: 8px;
}
.p-body p {
	font-size: 14px;
	color: rgba(29,25,20,0.68);
	margin-bottom: 16px;
	flex: 1;
}
.p-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}
.p-specs span {
	font-family: var(--mono);
	font-size: 11px;
	background: var(--cream-2);
	padding: 4px 9px;
	border-radius: 2px;
	color: var(--walnut-2);
}
.p-link {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--walnut);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.p-link:hover {
	color: var(--amber);
}
/* PVC louvers illustrated card */
.louver-illust {
	width: 100%;
	height: 100%;
	background: var(--teal);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	padding: 18px;
}
.louver-illust i {
	display: block;
	height: 9px;
	background: linear-gradient(180deg, rgba(251,248,242,.55), rgba(251,248,242,.28));
	border-radius: 2px;
}
.laminate-illust {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.laminate-illust b {
	display: block;
}
.laminate-illust b:nth-child(1) {
	background: #8C5A34;
}
.laminate-illust b:nth-child(2) {
	background: #C17A3E;
}
.laminate-illust b:nth-child(3) {
	background: #EDE3D3;
}
.laminate-illust b:nth-child(4) {
	background: #35594F;
}
.laminate-illust b:nth-child(5) {
	background: #1D1914;
}

@media(max-width:940px) {
.product-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:620px) {
.product-grid {
	grid-template-columns: 1fr;
}
}
/* ===== Why us ===== */
.why {
	background: var(--walnut-2);
	color: var(--paper);
	padding: 96px 0;
}
.why .eyebrow {
	color: var(--amber-light);
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line-light);
	border: 1px solid var(--line-light);
	margin-top: 20px;
}
.why-item {
	background: var(--walnut-2);
	padding: 34px 26px;
}
.why-item .stamp {
	color: var(--amber-light);
	margin-bottom: 18px;
}
.why-item strong {
	display: block;
	font-family: var(--serif);
	font-size: 32px;
	margin-bottom: 6px;
}
.why-item span {
	font-size: 13.5px;
	color: rgba(251,248,242,0.68);
}

@media(max-width:900px) {
.why-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:520px) {
.why-grid {
	grid-template-columns: 1fr;
}
}
/* ===== Process ===== */
.process {
	background: var(--paper);
	padding: 96px 0;
}
.process .eyebrow {
	color: var(--teal);
}
.proc-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	counter-reset: step;
	margin-top: 10px;
}
.proc-item {
	position: relative;
	padding-top: 18px;
	border-top: 2px solid var(--ink);
}
.proc-item span.num {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--amber);
	display: block;
	margin-bottom: 14px;
}
.proc-item h3 {
	margin-bottom: 8px;
	font-size: 18px;
}
.proc-item p {
	font-size: 14px;
	color: rgba(29,25,20,0.62);
}

@media(max-width:820px) {
.proc-row {
	grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:520px) {
.proc-row {
	grid-template-columns: 1fr;
}
}
/* ===== Gallery ===== */
.gallery {
	background: var(--ink);
	color: var(--paper);
	padding: 96px 0;
}
.gallery .eyebrow {
	color: var(--amber-light);
}
.g-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 150px;
	gap: 12px;
	margin-top: 10px;
}
.g-grid a {
	overflow: hidden;
	border-radius: 2px;
	position: relative;
}
.g-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.g-grid a:hover img {
	transform: scale(1.08);
}
.g-grid .tall {
	grid-row: span 2;
}
.g-grid a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(20,17,13,0.55) 0%, rgba(20,17,13,0) 45%);
	opacity: 0;
	transition: opacity .25s ease;
}
.g-grid a:hover::after {
	opacity: 1;
}
.g-grid a .g-expand {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(251,248,242,0.92);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .2s ease, transform .2s ease;
}
.g-grid a:hover .g-expand {
	opacity: 1;
	transform: translateY(0);
}

@media(max-width:820px) {
.g-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
/* ===== Enquiry ===== */
.enquiry {
	background: var(--cream);
	padding: 96px 0 100px;
}
.enq-grid {
	display: grid;
grid-template-columns:.85fr 1.15fr;
	gap: 0;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: var(--shadow);
}
.enq-info {
	background: var(--ink);
	color: var(--paper);
	padding: 52px 42px;
	display: flex;
	flex-direction: column;
}
.enq-info .eyebrow {
	color: var(--amber-light);
	margin-bottom: 16px;
}
.enq-info h2 {
	font-size: 30px;
	margin-bottom: 16px;
}
.enq-info p {
	color: rgba(251,248,242,0.72);
	font-size: 14.5px;
	margin-bottom: 36px;
}
.enq-contact {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
	border-top: 1px solid var(--line-light);
	padding-top: 28px;
}
.enq-contact div {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
}
.enq-contact strong {
	display: block;
	font-size: 12px;
	font-family: var(--mono);
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--amber-light);
	margin-bottom: 3px;
}
.enq-form {
	background: var(--paper);
	padding: 52px 42px;
}
.f-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.f-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 16px;
}
.f-field label {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--walnut-2);
}
.f-field input, .f-field select, .f-field textarea {
	font-family: var(--sans);
	font-size: 14.5px;
	padding: 12px 14px;
	border: 1.5px solid var(--line);
	border-radius: 3px;
	background: var(--paper);
	color: var(--ink);
	transition: border-color .15s;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
	outline: none;
	border-color: var(--amber);
}
.f-field textarea {
	resize: vertical;
	min-height: 96px;
}
.f-note {
	font-size: 12px;
	color: rgba(29,25,20,0.5);
	margin-top: 14px;
	text-align: center;
}
#formStatus {
	margin-top: 16px;
	padding: 13px 16px;
	border-radius: 3px;
	font-size: 13.5px;
	font-weight: 600;
	display: none;
}
#formStatus.ok {
	display: block;
	background: #DDEBE5;
	color: var(--teal);
	border: 1px solid var(--teal-light);
}
#formStatus.err {
	display: block;
	background: #F4DCD4;
	color: #8C2E1B;
	border: 1px solid #C0533A;
}

@media(max-width:900px) {
.enq-grid {
	grid-template-columns: 1fr;
}
}

@media(max-width:560px) {
.f-row {
	grid-template-columns: 1fr;
}
}
/* ===== Footer ===== */
footer {
	background: var(--ink);
	color: rgba(251,248,242,0.65);
	padding: 56px 0 28px;
	font-size: 13.5px;
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 36px;
	margin-bottom: 44px;
}
.foot-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--serif);
	font-size: 20px;
	color: var(--paper);
	margin-bottom: 14px;
	font-weight: 700;
}
.foot-logo .stamp {
	width: 30px;
	height: 30px;
	font-size: 8px;
	color: var(--amber-light);
}
.foot-col h4 {
	font-family: var(--mono);
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: rgba(251,248,242,0.85);
	margin-bottom: 16px;
}
.foot-col ul li {
	margin-bottom: 10px;
}
.foot-col a:hover {
	color: var(--amber-light);
}
.foot-bottom {
	border-top: 1px solid var(--line-light);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

@media(max-width:820px) {
.foot-grid {
	grid-template-columns: 1fr 1fr;
}
}
/* WhatsApp float */
.wa-float {
	position: fixed;
	bottom: 26px;
	right: 26px;
	z-index: 200;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #2E7D5B;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 26px -8px rgba(0,0,0,0.45);
	transition: transform .18s ease;
}
.wa-float:hover {
	transform: scale(1.07);
}
/* ===== Lightbox ===== */
.g-grid a {
	cursor: zoom-in;
}
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: rgba(20,17,13,0.94);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 70px 24px;
}
.lightbox.active {
	display: flex;
}
.lightbox-stage {
	position: relative;
	max-width: min(1100px, 92vw);
	max-height: 82vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lightbox img {
	max-width: 100%;
	max-height: 82vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
	position: fixed;
	background: rgba(251,248,242,0.1);
	color: var(--paper);
	border: 1px solid var(--line-light);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
	background: var(--amber);
	color: var(--ink);
	border-color: var(--amber);
}
.lightbox-close {
	top: 24px;
	right: 28px;
}
.lightbox-prev {
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-next {
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-count {
	position: fixed;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--mono);
	font-size: 12.5px;
	color: rgba(251,248,242,0.65);
	letter-spacing: .04em;
}

@media(max-width:640px) {
.lightbox-prev {
	left: 12px;
	width: 38px;
	height: 38px;
}
.lightbox-next {
	right: 12px;
	width: 38px;
	height: 38px;
}
.lightbox-close {
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
}
}
/* Reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
html {
	scroll-behavior: auto;
}
.reveal {
	opacity: 1;
	transform: none;
	transition: none;
}
.strip-track {
	animation-duration: 60s;
}
}
/* Toast notification */
.toast {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 400;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--ink);
	color: var(--paper);
	padding: 16px 18px;
	border-radius: 6px;
	box-shadow: 0 20px 40px -14px rgba(0,0,0,0.4);
	border-left: 4px solid var(--teal-light);
	max-width: 340px;
	transform: translateX(120%);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.toast.show {
	transform: translateX(0);
}
.toast.err {
	border-left-color: #C0533A;
}
.toast-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	background: var(--teal-light);
	color: var(--ink);
}
.toast.err .toast-icon {
	background: #C0533A;
	color: var(--paper);
}
.toast-body {
	font-size: 13.5px;
	line-height: 1.4;
}
.toast-body strong {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
	font-family: var(--serif);
}
.toast-close {
	margin-left: auto;
	background: none;
	border: none;
	color: rgba(251,248,242,0.6);
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 0 0 0 8px;
	flex-shrink: 0;
}
.toast-close:hover {
	color: var(--paper);
}

@media(max-width:480px) {
.toast {
	left: 16px;
	right: 16px;
	top: 16px;
	max-width: none;
}
}
