@font-face {
	font-family: "STL Display";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/display.woff2") format("woff2");
}

@font-face {
	font-family: "STL Body";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/body-regular.woff") format("woff");
}

@font-face {
	font-family: "STL Body";
	font-style: normal;
	font-weight: 600 800;
	font-display: swap;
	src: url("../fonts/body-semibold.woff") format("woff");
}

@font-face {
	font-family: "STL Hand";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/handwritten.woff") format("woff");
}

:root {
	--stl-navy: #0b3f8c;
	--stl-blue: #2c70b8;
	--stl-sky: #dff2ff;
	--stl-sky-soft: #eff9ff;
	--stl-cream: #fffaf0;
	--stl-ink: #121922;
	--stl-orange: #f36d21;
	--stl-mint: #a8f0df;
	--stl-line: rgba(11, 63, 140, 0.23);
	--stl-shadow: 0 24px 80px rgba(15, 49, 83, 0.14);
	--stl-header-h: 76px;
}

html {
	scroll-behavior: smooth;
}

body.seasoned-teri-landing-page {
	margin: 0;
	background: var(--stl-cream);
}

body.admin-bar .stl-header {
	top: 32px;
}

.stl-site,
.stl-site *,
.stl-site *::before,
.stl-site *::after {
	box-sizing: border-box;
}

.stl-site {
	position: relative;
	min-width: 0;
	overflow: clip;
	color: var(--stl-ink);
	background: var(--stl-cream);
	font-family: "STL Body", Georgia, serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.stl-site h1,
.stl-site h2,
.stl-site h3,
.stl-site p {
	margin: 0;
}

.stl-site a {
	color: inherit;
	text-decoration: none;
}

.stl-site img,
.stl-site svg {
	display: block;
	max-width: 100%;
}

.stl-site button {
	color: inherit;
	font: inherit;
}

.stl-skip-link {
	position: fixed;
	z-index: 999999;
	top: 8px;
	left: 8px;
	padding: 10px 14px;
	transform: translateY(-150%);
	border-radius: 999px;
	color: #fff;
	background: var(--stl-navy);
}

.stl-skip-link:focus {
	transform: translateY(0);
}

.stl-scroll-progress {
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: transparent;
	pointer-events: none;
}

.stl-scroll-progress span {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--stl-orange);
}

.stl-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	width: 100%;
	min-height: var(--stl-header-h);
	padding: 10px clamp(20px, 4vw, 64px);
	border-bottom: 1px solid transparent;
	transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, min-height 0.35s ease;
}

.stl-header.is-scrolled,
.stl-header.is-menu-open {
	min-height: 66px;
	border-bottom-color: rgba(11, 63, 140, 0.12);
	background: rgba(255, 250, 240, 0.92);
	box-shadow: 0 12px 40px rgba(16, 45, 76, 0.08);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.stl-brand {
	display: inline-flex;
	align-items: baseline;
	justify-self: start;
	gap: 9px;
	color: var(--stl-navy);
}

.stl-brand-mark {
	font-family: "STL Display", "Arial Rounded MT Bold", sans-serif;
	font-size: 31px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
}

.stl-brand-sub {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.stl-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 3vw, 42px);
	justify-self: center;
}

.stl-nav a {
	position: relative;
	padding: 10px 0;
	color: var(--stl-navy);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stl-nav a::after {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 2px;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	background: var(--stl-orange);
	transition: transform 0.25s ease;
}

.stl-nav a:hover::after,
.stl-nav a:focus-visible::after,
.stl-nav a.is-active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.stl-header-actions {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 10px;
}

.stl-header-cta {
	padding: 10px 18px;
	border-radius: 999px;
	color: #fff !important;
	background: var(--stl-navy);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.2s ease, background 0.2s ease;
}

.stl-header-cta:hover,
.stl-header-cta:focus-visible {
	transform: translateY(-2px);
	background: var(--stl-orange);
}

.stl-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(11, 63, 140, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}

.stl-menu-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	margin: 5px auto;
	background: var(--stl-navy);
	transition: transform 0.25s ease;
}

.stl-menu-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.stl-menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

.stl-section {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	padding: clamp(100px, 12vw, 156px) clamp(24px, 7vw, 112px);
	overflow: hidden;
	isolation: isolate;
	scroll-margin-top: 66px;
}

.stl-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	place-items: center;
	color: var(--stl-navy);
	background: #fff;
}

.stl-hero::after {
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 54px;
	content: "";
	background: var(--stl-sky);
	clip-path: polygon(0 78%, 8% 65%, 17% 76%, 27% 46%, 38% 68%, 50% 38%, 62% 65%, 75% 45%, 87% 70%, 100% 50%, 100% 100%, 0 100%);
}

.stl-hero-wave {
	position: absolute;
	z-index: -2;
	top: 13%;
	left: 50%;
	width: min(1100px, 92vw);
	transform: translateX(-50%);
	opacity: 0.11;
}

.stl-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1180px;
	min-width: 0;
	text-align: center;
}

.stl-eyebrow {
	margin-bottom: clamp(14px, 2vw, 26px) !important;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.stl-hero h1 {
	margin-top: clamp(22px, 3vw, 44px) !important;
	max-width: 100%;
	font-family: "STL Display", "Arial Rounded MT Bold", sans-serif;
	font-size: clamp(118px, 22vw, 300px);
	font-weight: 800;
	line-height: 0.78;
	letter-spacing: -0.075em;
	text-shadow: 0 10px 0 rgba(6, 39, 85, 0.1);
}

.stl-hero h1.stl-hero-title--long {
	overflow-wrap: anywhere;
	font-size: clamp(72px, 8.5vw, 170px);
	line-height: 0.84;
	letter-spacing: -0.045em;
}

.stl-hero h1.stl-hero-title--extra-long {
	overflow-wrap: anywhere;
	font-size: clamp(58px, 6.6vw, 132px);
	line-height: 0.88;
	letter-spacing: -0.035em;
}

.stl-hero h1 span {
	display: inline-block;
	animation: stl-hero-drift 5s ease-in-out infinite;
}

.stl-hero-subtitle {
	max-width: 100%;
	margin-top: clamp(30px, 5vw, 54px) !important;
	overflow-wrap: anywhere;
	font-family: "STL Hand", "Trebuchet MS", sans-serif;
	font-size: clamp(22px, 3.4vw, 48px);
	font-weight: 400;
	letter-spacing: 0.015em;
}

.stl-brush-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	margin-top: 36px;
	padding: 16px 26px;
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stl-brush-button::before {
	position: absolute;
	z-index: -1;
	inset: -13px -27px;
	content: "";
	transform: rotate(-2deg);
	background: var(--stl-orange);
	clip-path: polygon(4% 22%, 96% 3%, 91% 25%, 100% 42%, 93% 58%, 98% 82%, 67% 75%, 44% 94%, 6% 78%, 11% 58%, 0 43%);
	transition: transform 0.25s ease, background 0.25s ease;
}

.stl-brush-button:hover::before,
.stl-brush-button:focus-visible::before {
	transform: rotate(1deg) scale(1.07);
	background: var(--stl-navy);
}

.stl-hero-label {
	position: absolute;
	font-size: clamp(11px, 1.5vw, 17px);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.stl-label-a { top: 13%; left: 4%; }
.stl-label-b { top: 13%; right: 4%; }
.stl-label-c { right: 4%; bottom: 12%; }
.stl-label-d { bottom: 12%; left: 4%; }

.stl-scroll-cue {
	position: absolute;
	z-index: 3;
	bottom: 24px;
	left: 50%;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transform: translateX(-50%);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stl-scroll-cue svg {
	width: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	animation: stl-bob 1.6s ease-in-out infinite;
}

.stl-sourcing {
	display: grid;
	place-items: center;
	background: var(--stl-sky);
}

.stl-sourcing-ocean {
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		linear-gradient(rgba(19, 117, 161, 0.16), rgba(19, 117, 161, 0.16)),
		var(--stl-ocean-image, url("../images/ocean-water.jpg")) center / cover no-repeat;
	filter: saturate(1.2) contrast(0.95);
}

.stl-sourcing::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
	background: linear-gradient(120deg, rgba(6, 64, 102, 0.16), transparent 42%, rgba(255, 255, 255, 0.16));
}

.stl-sourcing-scene {
	position: relative;
	width: min(960px, 86vw);
	perspective: 1200px;
}

.stl-sourcing-frame {
	position: relative;
	z-index: 2;
	display: block;
	width: min(860px, 100%);
	margin: 0 auto;
	padding: clamp(12px, 1.5vw, 20px);
	border: 0;
	text-align: left;
	background: rgba(255, 250, 240, 0.95);
	box-shadow: 0 38px 100px rgba(2, 37, 64, 0.3);
	cursor: pointer;
	touch-action: manipulation;
	transform: rotate(-0.7deg);
	transform-origin: 50% 80%;
	transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.55s ease;
}

.stl-sourcing-frame > img {
	width: 100%;
	aspect-ratio: 1.48;
	object-fit: cover;
	transition: filter 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stl-sourcing-frame:hover,
.stl-sourcing-frame:focus-visible {
	transform: translateY(-9px) rotate(0.4deg);
	box-shadow: 0 48px 120px rgba(2, 37, 64, 0.36);
}

.stl-sourcing-frame:focus-visible {
	outline: 4px solid var(--stl-orange);
	outline-offset: 7px;
}

.stl-sourcing-frame.is-playful {
	animation: stl-photo-click 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	box-shadow: 0 54px 130px rgba(2, 37, 64, 0.4);
}

.stl-sourcing-frame.is-playful > img {
	filter: saturate(1.14) contrast(1.04);
	transform: scale(1.012);
}

.stl-photo-splash {
	position: absolute;
	z-index: 4;
	top: 18%;
	right: 12%;
	width: 120px;
	height: 120px;
	pointer-events: none;
}

.stl-photo-splash i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	transform: translate(-50%, -50%) scale(0);
	border: 3px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	opacity: 0;
}

.stl-sourcing-frame.is-playful .stl-photo-splash i {
	animation: stl-photo-ripple 1.15s ease-out both;
}

.stl-sourcing-frame.is-playful .stl-photo-splash i:nth-child(2) {
	animation-delay: 0.16s;
}

.stl-sourcing-frame.is-playful .stl-photo-splash i:nth-child(3) {
	animation-delay: 0.32s;
}

.stl-photo-caption {
	position: absolute;
	z-index: 3;
	right: clamp(-72px, -5vw, -26px);
	bottom: 8%;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: min(280px, 34vw);
	padding: 18px;
	color: var(--stl-navy);
	background: var(--stl-cream);
	box-shadow: 0 18px 50px rgba(4, 40, 68, 0.18);
}

.stl-photo-caption span {
	padding-top: 3px;
	color: var(--stl-orange);
	font-size: 11px;
	font-weight: 800;
}

.stl-photo-caption p {
	font-size: clamp(13px, 1.5vw, 18px);
	line-height: 1.35;
}

.stl-organic-line {
	position: absolute;
	z-index: 1;
	right: -9%;
	bottom: -9%;
	width: 56%;
	height: 27%;
	background: var(--stl-organic-line-image, url("../images/organic-line.svg")) left center / contain no-repeat;
	opacity: 0.55;
	pointer-events: none;
}

.stl-story {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	align-items: center;
	gap: clamp(40px, 7vw, 110px);
	background: var(--stl-sky-soft);
}

.stl-story::before {
	position: absolute;
	z-index: -1;
	top: -14%;
	left: -10%;
	width: 48vw;
	height: 48vw;
	content: "";
	border: 1px solid rgba(44, 112, 184, 0.12);
	border-radius: 50%;
}

.stl-story-waves {
	position: relative;
	width: min(640px, 100%);
	height: 92px;
	margin-top: 24px;
	overflow: hidden;
	opacity: 0.48;
	pointer-events: none;
}

.stl-story-wave-track {
	display: flex;
	align-items: center;
	width: 200%;
	height: 100%;
	animation: stl-wave-slide 20s linear infinite;
}

.stl-story-wave-track img {
	flex: 0 0 50%;
	width: 50%;
	height: 100%;
	max-width: none;
	object-fit: contain;
}

.stl-kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px !important;
	color: var(--stl-navy);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.stl-kicker span {
	display: inline-grid;
	place-items: center;
	width: 31px;
	height: 31px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 9px;
}

.stl-story h2,
.stl-section-heading h2,
.stl-price-intro h2,
.stl-order h2,
.stl-contact h2 {
	color: var(--stl-ink);
	font-family: "STL Hand", "Trebuchet MS", sans-serif;
	font-size: clamp(64px, 9vw, 132px);
	font-weight: 400;
	line-height: 0.82;
	letter-spacing: -0.045em;
}

.stl-story h2 em,
.stl-order h2 em {
	color: var(--stl-navy);
	font-style: normal;
}

.stl-story-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 4vw, 54px);
	margin-top: 42px;
}

.stl-story-columns p {
	font-size: clamp(15px, 1.4vw, 19px);
	line-height: 1.65;
}

.stl-story-art {
	position: relative;
	align-self: center;
}

.stl-story-art img {
	position: relative;
	z-index: 2;
	width: 100%;
	filter: drop-shadow(0 28px 40px rgba(11, 63, 140, 0.12));
}

.stl-art-current {
	position: absolute;
	z-index: 1;
	inset: 3% -7% -8%;
	overflow: hidden;
	pointer-events: none;
}

.stl-art-current span {
	position: absolute;
	right: -12%;
	width: 92%;
	height: 22px;
	border-radius: 50%;
	border-top: 5px solid rgba(44, 112, 184, 0.28);
	animation: stl-current-drift 7s ease-in-out infinite;
}

.stl-art-current span:nth-child(1) {
	top: 18%;
}

.stl-art-current span:nth-child(2) {
	top: 52%;
	right: 4%;
	width: 72%;
	animation-delay: -2.4s;
}

.stl-art-current span:nth-child(3) {
	bottom: 5%;
	width: 62%;
	animation-delay: -4.8s;
}

.stl-art-current svg {
	position: absolute;
	top: 7%;
	right: 2%;
	width: 74px;
	fill: none;
	stroke: rgba(11, 63, 140, 0.42);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	animation: stl-fish-swim 9s ease-in-out infinite;
}

.stl-art-note {
	position: absolute;
	z-index: 3;
	right: -12%;
	bottom: -10%;
	padding: 15px 19px;
	transform: rotate(-4deg);
	color: #fff;
	background: var(--stl-navy);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.stl-variants {
	background: var(--stl-cream);
}

.stl-section-heading {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	margin-bottom: clamp(46px, 7vw, 90px);
}

.stl-section-heading .stl-kicker {
	grid-column: 1 / -1;
}

.stl-section-heading h2 {
	font-size: clamp(72px, 10vw, 148px);
}

.stl-section-heading > p:last-child {
	max-width: 270px;
	padding-bottom: 8px;
	color: #5a6773;
	font-size: 15px;
	text-align: right;
}

.stl-variant-grid {
	display: grid;
	grid-template-columns: repeat(var(--stl-variant-count, 3), minmax(0, 1fr));
	gap: clamp(15px, 2.5vw, 38px);
}

.stl-variant-grid--count-1 {
	width: min(520px, 100%);
	margin-inline: auto;
}

.stl-variant-grid--count-2 {
	width: min(1200px, 100%);
	margin-inline: auto;
}

.stl-variant-card {
	position: relative;
	display: grid;
	grid-template-rows: minmax(220px, 24vw) auto;
	min-height: 520px;
	border: 0;
	border-radius: 22px;
	outline: none;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	touch-action: manipulation;
	transition: filter 0.35s ease;
}

.stl-variant-card:focus-visible {
	outline: 3px solid var(--stl-orange);
	outline-offset: 6px;
}

.stl-variant-number {
	position: absolute;
	z-index: 3;
	top: 17px;
	left: 17px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(11, 63, 140, 0.2);
	border-radius: 50%;
	color: var(--stl-navy);
	font-size: 10px;
	font-weight: 800;
}

.stl-variant-art {
	display: grid;
	place-items: center;
	overflow: visible;
	background: transparent;
}

.stl-variant-art img {
	width: 78%;
	max-height: 82%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stl-variant-teduh .stl-variant-art img {
	width: 88%;
	aspect-ratio: auto;
	object-fit: contain;
	filter: none;
}

.stl-variant-ombak .stl-variant-art {
	background: transparent;
}

.stl-variant-badai .stl-variant-art {
	background: transparent;
}

.stl-variant-badai .stl-variant-art img {
	width: 64%;
	aspect-ratio: auto;
	object-fit: contain;
	filter: none;
}

.stl-variant-card.is-variant-active {
	z-index: 4;
}

.stl-variant-teduh.is-variant-active .stl-variant-art img {
	animation: stl-teduh-touch 1.2s ease-in-out both;
}

.stl-variant-ombak.is-variant-active .stl-variant-art img {
	animation: stl-ombak-touch 1.1s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.stl-variant-badai.is-variant-active .stl-variant-art img {
	animation: stl-badai-touch 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.stl-variant-teduh.is-variant-active .stl-variant-number {
	animation: stl-teduh-number 1.2s ease-out both;
}

.stl-variant-ombak.is-variant-active .stl-variant-number {
	animation: stl-ombak-number 1.1s ease-out both;
}

.stl-variant-badai.is-variant-active .stl-variant-number {
	animation: stl-badai-number 1s ease-out both;
}

@media (hover: hover) and (pointer: fine) {
	.stl-variant-teduh:hover .stl-variant-art img {
		animation: stl-teduh-hover 2.8s ease-in-out infinite;
	}

	.stl-variant-ombak:hover .stl-variant-art img {
		animation: stl-ombak-hover 1.45s ease-in-out infinite;
	}

	.stl-variant-badai:hover .stl-variant-art img {
		animation: stl-badai-hover 0.82s ease-in-out infinite;
	}
}

.stl-variant-body {
	padding: 28px clamp(22px, 2.5vw, 38px) 34px;
}

.stl-variant-body > div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.stl-variant-body small {
	color: #69737c;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stl-heat {
	display: flex;
	gap: 4px;
}

.stl-heat i {
	width: 6px;
	height: 15px;
	transform: skew(-12deg);
	border-radius: 4px;
	background: #d9e1e7;
}

.stl-heat i.is-hot {
	background: var(--stl-orange);
}

.stl-variant-body h3 {
	margin-bottom: 12px;
	color: var(--stl-navy);
	font-family: "STL Body", Georgia, serif;
	font-size: clamp(42px, 4vw, 64px);
	font-weight: 700;
	line-height: 1;
}

.stl-variant-body p {
	color: #4f5f6d;
	font-size: 15px;
	line-height: 1.6;
}

.stl-pricing {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	align-items: center;
	gap: clamp(48px, 6vw, 92px);
	background: var(--stl-sky);
}

.stl-pricing::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
	background: var(--stl-pricing-wave-image, url("../images/brand-waves.svg")) center / 115% auto no-repeat;
	opacity: 0.055;
}

.stl-price-intro h2 {
	color: var(--stl-navy);
	font-size: clamp(68px, 7.4vw, 108px);
	overflow-wrap: anywhere;
}

.stl-price-intro {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.stl-price-intro > p:last-child {
	max-width: 300px;
	margin-top: 30px;
	color: #506679;
}

.stl-price-list {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.stl-price-row {
	display: grid;
	grid-template-columns: 1fr auto 50px;
	align-items: center;
	gap: 20px;
	padding: clamp(22px, 3vw, 36px) 0;
	border-bottom: 1px solid rgba(11, 63, 140, 0.34);
	color: var(--stl-navy);
	transition: padding 0.25s ease, background 0.25s ease;
}

.stl-price-row:first-child {
	border-top: 1px solid rgba(11, 63, 140, 0.34);
}

.stl-price-row:hover {
	padding-right: 15px;
	padding-left: 15px;
	background: rgba(255, 255, 255, 0.42);
}

.stl-price-row > div {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: baseline;
	min-width: 0;
}

.stl-price-row > div span {
	grid-row: 1 / 3;
	color: var(--stl-orange);
	font-size: 10px;
	font-weight: 800;
}

.stl-price-row strong {
	font-family: "STL Body", Georgia, serif;
	font-size: clamp(32px, 3.4vw, 52px);
	line-height: 1;
	overflow-wrap: anywhere;
}

.stl-price-row small {
	margin-top: 5px;
	color: #657b8d;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stl-price-row b {
	font-family: "STL Body", serif;
	font-size: clamp(19px, 2.2vw, 30px);
	font-weight: 400;
	white-space: nowrap;
}

.stl-price-row > a {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 23px;
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.stl-price-row > a:hover,
.stl-price-row > a:focus-visible {
	transform: rotate(45deg);
	color: #fff;
	background: var(--stl-orange);
}

.stl-price-boat {
	position: absolute;
	z-index: 0;
	bottom: 2%;
	left: -8%;
	width: 31%;
	opacity: 0.13;
	pointer-events: none;
}

.stl-order {
	display: grid;
	grid-template-columns: minmax(310px, 0.8fr) minmax(440px, 1.2fr);
	align-items: center;
	gap: clamp(48px, 10vw, 160px);
	background: var(--stl-sky-soft);
}

.stl-order::after {
	position: absolute;
	z-index: -1;
	top: 11%;
	right: 7%;
	width: clamp(230px, 27vw, 520px);
	aspect-ratio: 1;
	content: "";
	border: 2px solid rgba(255, 207, 84, 0.12);
	border-radius: 50%;
	background:
		repeating-conic-gradient(from 0deg, rgba(255, 207, 84, 0.11) 0 1.2deg, transparent 1.2deg 12deg);
	-webkit-mask: radial-gradient(circle, transparent 0 29%, #000 30% 31%, transparent 32% 47%, #000 48% 49%, transparent 50%);
	mask: radial-gradient(circle, transparent 0 29%, #000 30% 31%, transparent 32% 47%, #000 48% 49%, transparent 50%);
}

.stl-order-fish {
	position: absolute;
	z-index: -1;
	top: 10%;
	left: -13%;
	width: 48%;
	opacity: 0.09;
	filter: invert(1);
	mix-blend-mode: multiply;
}

.stl-order-fish--single {
	clip-path: inset(0 50% 0 0);
}

.stl-bottle-stage {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 560px;
}

.stl-bottle-stage > img {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 1500px;
	max-width: none;
	pointer-events: none;
	filter: drop-shadow(0 32px 27px rgba(20, 39, 51, 0.24));
	animation: stl-float-crop 5.5s ease-in-out infinite;
}

.stl-bottle-halo {
	position: absolute;
	width: min(470px, 96%);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 246, 190, 0.88) 0, rgba(255, 236, 137, 0.38) 32%, rgba(255, 244, 190, 0.12) 57%, transparent 72%);
	box-shadow: none;
}

.stl-bottle-note {
	position: absolute;
	z-index: 3;
	right: 1%;
	bottom: 13%;
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	transform: rotate(9deg);
	border-radius: 50%;
	color: #fff;
	background: var(--stl-orange);
	font-size: 13px;
	font-weight: 800;
}

.stl-order-copy {
	position: relative;
	z-index: 2;
}

.stl-order-script {
	max-width: 760px;
	margin-bottom: 24px !important;
	color: var(--stl-ink);
	font-family: "STL Hand", "Trebuchet MS", sans-serif;
	font-size: clamp(58px, 7.2vw, 114px);
	line-height: 0.9;
	letter-spacing: -0.035em;
}

.stl-order h2 {
	color: var(--stl-navy);
	font-family: "STL Body", Georgia, serif;
	font-size: clamp(24px, 3vw, 48px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.015em;
}

.stl-order-copy > p:not(.stl-kicker):not(.stl-order-script) {
	max-width: 700px;
	margin-top: 34px;
	color: #465968;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.72;
}

.stl-order-button {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	margin-top: 38px;
	padding: 18px 22px 18px 28px;
	border-radius: 999px;
	color: #fff !important;
	background: var(--stl-navy);
	font-size: 15px;
	font-weight: 800;
	transition: gap 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.stl-order-button svg {
	width: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.stl-order-button:hover,
.stl-order-button:focus-visible {
	gap: 30px;
	transform: translateY(-3px);
	background: var(--stl-orange);
}

.stl-contact {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(440px, 1.15fr);
	align-items: center;
	gap: clamp(60px, 10vw, 160px);
	padding-bottom: 130px;
	background: var(--stl-cream);
}

.stl-contact-wave {
	position: absolute;
	z-index: -1;
	right: -4%;
	top: 8%;
	width: 42%;
	opacity: 0.12;
}

.stl-contact h2 {
	color: var(--stl-navy);
	font-size: clamp(64px, 7.5vw, 118px);
	white-space: nowrap;
}

.stl-contact-heading > p:last-child {
	max-width: 390px;
	margin-top: 32px;
	color: #5d6870;
	font-size: 17px;
}

.stl-contact-links {
	width: 100%;
	min-width: 0;
	border-top: 1px solid var(--stl-line);
}

.stl-contact-links a {
	display: grid;
	grid-template-columns: minmax(150px, 180px) minmax(0, 1fr) 32px;
	align-items: center;
	gap: clamp(14px, 2vw, 24px);
	min-width: 0;
	padding: 29px 0;
	border-bottom: 1px solid var(--stl-line);
	color: var(--stl-navy);
	transition: padding 0.25s ease, color 0.25s ease;
}

.stl-contact-links a:hover,
.stl-contact-links a:focus-visible {
	padding-right: 10px;
	padding-left: 10px;
	color: var(--stl-orange);
}

.stl-contact-links span {
	color: #6d7780;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.stl-contact-links strong {
	min-width: 0;
	overflow-wrap: anywhere;
	font-family: "STL Body", Georgia, serif;
	font-size: clamp(21px, 1.85vw, 30px);
	font-weight: 700;
	line-height: 1.15;
}

.stl-contact-links a[href^="mailto"] {
	grid-template-columns: minmax(150px, 180px) minmax(0, 1fr) 32px;
}

.stl-contact-links a[href^="mailto"] strong {
	font-size: clamp(18px, 1.7vw, 26px);
}

.stl-contact-links i {
	font-size: 23px;
	font-style: normal;
	text-align: right;
}

.stl-footer {
	position: absolute;
	right: clamp(24px, 7vw, 112px);
	bottom: 30px;
	left: clamp(24px, 7vw, 112px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	border-top: 1px solid var(--stl-line);
	color: #68737b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.stl-section-dots {
	position: fixed;
	z-index: 980;
	top: 50%;
	right: 18px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	transform: translateY(-50%);
}

.stl-section-dots a {
	width: 7px;
	height: 7px;
	border: 1px solid var(--stl-navy);
	border-radius: 50%;
	background: transparent;
	transition: height 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.stl-section-dots a.is-active {
	height: 24px;
	border-radius: 8px;
	background: var(--stl-navy);
}

.stl-floating-wrap {
	position: fixed;
	z-index: 990;
	right: 26px;
	bottom: 24px;
}

.stl-floating-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px 10px 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	color: #fff !important;
	background: #168f55;
	box-shadow: 0 14px 35px rgba(17, 100, 61, 0.28);
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stl-floating-whatsapp svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.stl-floating-whatsapp:hover,
.stl-floating-whatsapp:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 18px 42px rgba(17, 100, 61, 0.38);
}

.stl-wa-popup {
	position: absolute;
	right: 0;
	bottom: calc(100% + 14px);
	width: min(320px, calc(100vw - 30px));
	padding: 20px;
	border: 1px solid rgba(11, 63, 140, 0.13);
	border-radius: 19px;
	color: var(--stl-ink);
	background: #fff;
	box-shadow: 0 24px 70px rgba(16, 45, 76, 0.2);
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transform: translateY(14px) scale(0.94);
	transform-origin: right bottom;
	transition:
		opacity 0.28s ease,
		transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28),
		visibility 0s linear 0.32s;
}

.stl-wa-popup.is-visible {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 0s;
}

.stl-wa-popup::after {
	position: absolute;
	right: 28px;
	bottom: -7px;
	width: 14px;
	height: 14px;
	content: "";
	transform: rotate(45deg);
	border-right: 1px solid rgba(11, 63, 140, 0.13);
	border-bottom: 1px solid rgba(11, 63, 140, 0.13);
	background: #fff;
}

.stl-wa-popup strong,
.stl-wa-popup > span,
.stl-wa-popup a {
	display: block;
}

.stl-wa-popup strong {
	margin-bottom: 5px;
	color: var(--stl-navy);
	font-family: "STL Hand", "Trebuchet MS", sans-serif;
	font-size: 25px;
	line-height: 1.1;
}

.stl-wa-popup > span {
	color: #516170;
	font-size: 13px;
	line-height: 1.55;
}

.stl-wa-popup a {
	margin-top: 16px;
	padding-top: 13px;
	border-top: 1px solid rgba(11, 63, 140, 0.11);
	color: var(--stl-orange);
	font-size: 13px;
	font-weight: 800;
}

.stl-toast {
	position: fixed;
	z-index: 1100;
	right: 24px;
	bottom: 92px;
	max-width: 280px;
	padding: 13px 16px;
	transform: translateY(12px);
	border-radius: 12px;
	color: #fff;
	background: var(--stl-navy);
	box-shadow: var(--stl-shadow);
	font-size: 13px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.stl-toast.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.stl-site.js [data-reveal] {
	transform: translateY(34px);
	opacity: 0;
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stl-site.js [data-reveal].is-visible {
	transform: translateY(0);
	opacity: 1;
}

@keyframes stl-float {
	0%, 100% { transform: translateY(0) rotate(-0.3deg); }
	50% { transform: translateY(-13px) rotate(0.4deg); }
}

@keyframes stl-hero-drift {
	0%, 100% { transform: translateY(0) rotate(-0.15deg); }
	50% { transform: translateY(-4px) rotate(0.15deg); }
}

@keyframes stl-float-crop {
	0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(-0.3deg); }
	50% { transform: translate(-50%, -50%) translateY(-13px) rotate(0.4deg); }
}

@keyframes stl-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(5px); }
}

@keyframes stl-spin {
	to { transform: rotate(360deg); }
}

@keyframes stl-wave-slide {
	to { transform: translateX(-50%); }
}

@keyframes stl-current-drift {
	0%, 100% { transform: translateX(0) scaleX(1); }
	50% { transform: translateX(-12%) scaleX(0.92); }
}

@keyframes stl-fish-swim {
	0%, 100% { transform: translate(0, 0) rotate(-2deg); }
	50% { transform: translate(-45px, 18px) rotate(3deg); }
}

@keyframes stl-photo-click {
	0%, 100% {
		transform: rotate(-0.7deg) translateY(0) scale(1);
	}
	28% {
		transform: translateY(-14px) rotate(1.8deg) scale(1.018);
	}
	52% {
		transform: translateY(-7px) rotate(-1.1deg) scale(1.01);
	}
	74% {
		transform: translateY(-10px) rotate(0.7deg) scale(1.014);
	}
}

@keyframes stl-photo-ripple {
	0% {
		transform: translate(-50%, -50%) scale(0.3);
		opacity: 0;
	}
	20% {
		opacity: 0.9;
	}
	100% {
		transform: translate(-50%, -50%) scale(6);
		opacity: 0;
	}
}

@keyframes stl-teduh-hover {
	0%, 100% { transform: translateY(0) rotate(-0.4deg) scale(1); }
	50% { transform: translateY(-8px) rotate(0.5deg) scale(1.035); }
}

@keyframes stl-ombak-hover {
	0%, 100% { transform: translateX(0) translateY(0) rotate(-1deg) scale(1); }
	35% { transform: translateX(8px) translateY(-7px) rotate(1.5deg) scale(1.045); }
	70% { transform: translateX(-6px) translateY(-2px) rotate(-0.8deg) scale(1.02); }
}

@keyframes stl-badai-hover {
	0%, 100% { transform: rotate(-1.5deg) scale(1); }
	25% { transform: rotate(2.2deg) scale(1.04); }
	50% { transform: rotate(-2deg) scale(1.055); }
	75% { transform: rotate(1.6deg) scale(1.03); }
}

@keyframes stl-teduh-touch {
	0%, 100% { transform: translateY(0) rotate(0) scale(1); filter: saturate(1); }
	38% { transform: translateY(-15px) rotate(-1deg) scale(1.075); filter: saturate(1.12); }
	70% { transform: translateY(-5px) rotate(0.7deg) scale(1.035); filter: saturate(1.06); }
}

@keyframes stl-ombak-touch {
	0%, 100% { transform: translateX(0) translateY(0) rotate(0) scale(1); }
	20% { transform: translateX(-13px) translateY(-4px) rotate(-2deg) scale(1.035); }
	42% { transform: translateX(16px) translateY(-12px) rotate(2.8deg) scale(1.085); }
	65% { transform: translateX(-8px) translateY(-5px) rotate(-1.4deg) scale(1.04); }
	82% { transform: translateX(5px) translateY(-2px) rotate(0.8deg) scale(1.02); }
}

@keyframes stl-badai-touch {
	0%, 100% { transform: rotate(0) scale(1); filter: saturate(1); }
	14% { transform: rotate(-7deg) scale(1.045); }
	30% { transform: rotate(8deg) scale(1.1); filter: saturate(1.2); }
	48% { transform: rotate(-6deg) scale(1.075); }
	65% { transform: rotate(5deg) scale(1.055); }
	82% { transform: rotate(-2deg) scale(1.025); }
}

@keyframes stl-teduh-number {
	0%, 100% { transform: scale(1); background: transparent; }
	45% { transform: scale(1.12); background: rgba(168, 240, 223, 0.38); }
}

@keyframes stl-ombak-number {
	0%, 100% { transform: translateY(0) scale(1); background: transparent; }
	38% { transform: translateY(-7px) scale(1.09); background: rgba(223, 242, 255, 0.8); }
	70% { transform: translateY(2px) scale(1.03); }
}

@keyframes stl-badai-number {
	0%, 100% { transform: rotate(0) scale(1); background: transparent; }
	30% { transform: rotate(-10deg) scale(1.1); background: rgba(243, 109, 33, 0.16); }
	58% { transform: rotate(9deg) scale(1.13); }
	80% { transform: rotate(-3deg) scale(1.04); }
}

@media (max-width: 1080px) {
	.stl-header {
		grid-template-columns: 1fr auto;
	}

	.stl-nav {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px 20px;
		border: 1px solid rgba(11, 63, 140, 0.12);
		border-radius: 18px;
		background: rgba(255, 250, 240, 0.98);
		box-shadow: var(--stl-shadow);
	}

	.stl-nav.is-open {
		display: flex;
	}

	.stl-nav a {
		padding: 13px 2px;
		border-bottom: 1px solid rgba(11, 63, 140, 0.09);
	}

	.stl-nav a:last-child {
		border-bottom: 0;
	}

	.stl-menu-toggle {
		display: block;
	}

	.stl-story {
		grid-template-columns: 1fr;
	}

	.stl-story-art {
		width: min(560px, 70vw);
		justify-self: center;
	}

	.stl-variant-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stl-variant-grid--count-1 {
		grid-template-columns: 1fr;
	}

	.stl-variant-grid--count-3 .stl-variant-card:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 19px);
		justify-self: center;
	}

	.stl-pricing,
	.stl-order,
	.stl-contact {
		grid-template-columns: 1fr;
	}

	.stl-price-intro > p:last-child {
		max-width: 500px;
	}

	.stl-bottle-stage {
		min-height: 490px;
	}

	.stl-bottle-stage > img {
		width: 1200px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .stl-header {
		top: 46px;
	}

	.stl-header {
		min-height: 66px;
		padding: 9px 16px;
	}

	.stl-brand-sub,
	.stl-section-dots {
		display: none;
	}

	.stl-header-cta {
		padding: 9px 15px;
	}

	.stl-section {
		min-height: auto;
		padding: 100px 22px;
	}

	.stl-hero {
		min-height: 100vh;
		min-height: 100svh;
	}

	.stl-hero h1 {
		margin-top: 34px !important;
		font-size: clamp(108px, 39vw, 190px);
		line-height: 0.78;
	}

	.stl-hero h1.stl-hero-title--long {
		font-size: clamp(48px, 16vw, 86px);
		line-height: 0.9;
	}

	.stl-hero h1.stl-hero-title--extra-long {
		font-size: clamp(42px, 12vw, 68px);
		line-height: 0.94;
	}

	.stl-hero-subtitle {
		font-size: clamp(21px, 8vw, 34px);
		line-height: 1.05;
	}

	.stl-hero-label {
		font-size: 10px;
	}

	.stl-label-a,
	.stl-label-b {
		top: 14%;
	}

	.stl-label-a,
	.stl-label-d {
		left: 16px;
	}

	.stl-label-b,
	.stl-label-c {
		right: 16px;
		text-align: right;
	}

	.stl-label-c,
	.stl-label-d {
		bottom: 13%;
	}

	.stl-scroll-cue {
		bottom: 19px;
	}

	.stl-scroll-cue span {
		display: none;
	}

	.stl-sourcing {
		min-height: 760px;
	}

	.stl-sourcing-scene {
		width: 100%;
	}

	.stl-sourcing-frame {
		width: 100%;
	}

	.stl-sourcing-frame > img {
		aspect-ratio: 0.9;
	}

	.stl-photo-caption {
		right: -2px;
		bottom: -55px;
		width: 78%;
	}

	.stl-organic-line {
		right: -12%;
		bottom: -12%;
		width: 68%;
		height: 24%;
	}

	.stl-story {
		gap: 70px;
	}

	.stl-story h2,
	.stl-section-heading h2,
	.stl-price-intro h2,
	.stl-contact h2 {
		font-size: clamp(58px, 19vw, 93px);
	}

	.stl-story-columns {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-top: 30px;
	}

	.stl-story-art {
		width: 88vw;
	}

	.stl-story-waves {
		width: 100%;
		height: 76px;
		margin-top: 26px;
		opacity: 0.35;
	}

	.stl-art-note {
		right: 0;
	}

	.stl-section-heading {
		display: block;
	}

	.stl-section-heading > p:last-child {
		margin-top: 20px;
		text-align: left;
	}

	.stl-variant-grid {
		width: 100%;
		margin-inline: 0;
		grid-template-columns: 1fr;
	}

	.stl-variant-card,
	.stl-variant-grid--count-3 .stl-variant-card:last-child {
		grid-column: auto;
		width: 100%;
		min-height: 520px;
	}

	.stl-variant-grid--count-3 .stl-variant-card:last-child {
		justify-self: stretch;
	}

	.stl-variant-card {
		grid-template-rows: 280px auto;
	}

	.stl-variant-badai .stl-variant-art img {
		width: min(100%, 380px);
		max-height: 96%;
	}

	.stl-price-row {
		grid-template-columns: 1fr auto 42px;
		gap: 10px;
	}

	.stl-price-row > div {
		grid-template-columns: 25px 1fr;
	}

	.stl-price-row > a {
		width: 39px;
		height: 39px;
	}

	.stl-price-boat {
		bottom: 16px;
		left: -24%;
		width: 58%;
		opacity: 0.09;
	}

	.stl-order {
		gap: 35px;
	}

	.stl-order::after {
		top: 12%;
		right: -18%;
		width: 290px;
		height: auto;
	}

	.stl-bottle-stage {
		min-height: 410px;
	}

	.stl-bottle-stage > img {
		width: 1050px;
	}

	.stl-bottle-halo {
		width: 330px;
	}

	.stl-order-script {
		font-size: clamp(54px, 17vw, 84px);
	}

	.stl-order h2 {
		font-size: clamp(24px, 7vw, 36px);
	}

	.stl-contact {
		padding-bottom: 180px;
	}

	.stl-contact h2 {
		font-size: clamp(48px, 14vw, 78px);
	}

	.stl-contact-links a {
		grid-template-columns: 1fr 32px;
	}

	.stl-contact-links a[href^="mailto"] {
		grid-template-columns: 1fr 32px;
	}

	.stl-contact-links a span {
		grid-column: 1 / -1;
	}

	.stl-contact-links strong {
		font-size: 22px;
	}

	.stl-footer {
		right: 22px;
		bottom: 28px;
		left: 22px;
		flex-direction: column;
		align-items: flex-start;
		gap: 7px;
	}

	.stl-floating-wrap {
		right: 15px;
		bottom: 15px;
	}

	.stl-floating-whatsapp {
		padding-right: 11px;
	}

	.stl-floating-whatsapp span {
		display: none;
	}
}

@media (max-width: 440px) {
	.stl-brand-mark {
		font-size: 27px;
	}

	.stl-header-actions {
		gap: 7px;
	}

	.stl-header-cta {
		font-size: 10px;
	}

	.stl-hero-label {
		max-width: 105px;
	}

	.stl-price-row b {
		font-size: 17px;
	}

	.stl-bottle-stage {
		min-height: 370px;
	}

	.stl-bottle-stage > img {
		width: 900px;
	}

	.stl-bottle-halo {
		width: 275px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.stl-site *,
	.stl-site *::before,
	.stl-site *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.stl-site.js [data-reveal] {
		transform: none;
		opacity: 1;
	}
}
