﻿:root {
	--blue-950: #08233f;
	--blue-800: #0d4c84;
	--blue-600: #0f8cd6;
	--cyan-100: #dff7ff;
	--cyan-50: #f1fbff;
	--ink: #112235;
	--muted: #607086;
	--white: #ffffff;
	--shadow: 0 24px 80px rgba(8, 35, 63, .15);
	--water-cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M16 2 C12 8 7 13 7 20 a9 9 0 0 0 18 0 C25 13 20 8 16 2Z' fill='%238ee5ff' stroke='%230f8cd6' stroke-width='2'/%3E%3Ccircle cx='13' cy='17' r='3' fill='white' fill-opacity='.72'/%3E%3C/svg%3E") 16 3;
}

@property --water-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

* { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	background: #061a30;
	scrollbar-color: rgba(142,229,255,.55) #061a30;
	cursor: var(--water-cursor), auto;
}
body {
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: #061a30;
	cursor: var(--water-cursor), auto;
}
a, button, [role="button"], input[type="submit"], input[type="button"] {
	cursor: var(--water-cursor), pointer;
}
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: #061a30; }
body::-webkit-scrollbar-thumb { background: rgba(142,229,255,.55); border-radius: 999px; border: 3px solid #061a30; }
main { background: linear-gradient(180deg, #f8fdff 0%, #ffffff 42%, #effaff 100%); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.success-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 22px;
	background: rgba(6,26,48,.66);
	backdrop-filter: blur(10px);
}
.success-modal.is-hidden {
	display: none;
}
.success-modal-card {
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(240px, .9fr) minmax(280px, 1fr);
	width: min(860px, 100%);
	border: 1px solid rgba(142,229,255,.42);
	border-radius: 34px;
	background: var(--white);
	box-shadow: 0 34px 90px rgba(4,18,35,.38);
	animation: kirkland-modal-in .28s ease both;
}
.success-modal-card img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}
.success-modal-copy {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: clamp(26px, 5vw, 46px);
}
.success-modal-copy h2 {
	margin-bottom: 0;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.success-modal-copy p:not(.eyebrow) {
	margin: 0;
	font-size: 1.1rem;
}
.success-modal-copy .button {
	margin-top: 8px;
	width: 100%;
}

.site-header {
	position: fixed;
	top: 14px;
	left: 50%;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1120px, calc(100% - 32px));
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(6,26,48,.62), rgba(255,255,255,.10));
	backdrop-filter: blur(18px) saturate(1.35);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 0 26px rgba(120,226,255,.18), 0 18px 55px rgba(4,18,35,.30);
	transform: translateX(-50%);
}
.site-header::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	padding: 2px;
	background:
		conic-gradient(from var(--water-angle, 0deg), rgba(13,76,132,.22), rgba(142,229,255,.92), rgba(255,255,255,1), rgba(33,181,242,.84), rgba(13,76,132,.18), rgba(142,229,255,.88), rgba(255,255,255,.95), rgba(13,76,132,.22));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	filter: drop-shadow(0 0 8px rgba(142,229,255,.52));
	animation: kirkland-water-border 4.8s linear infinite;
}
.site-header::after {
	content: "";
	position: absolute;
	inset: -3px;
	border-radius: inherit;
	padding: 3px;
	background:
		radial-gradient(circle at 12px 50%, rgba(255,255,255,.95) 0 4px, rgba(142,229,255,.65) 5px 10px, transparent 12px),
		radial-gradient(circle at 72px 52%, rgba(142,229,255,.72) 0 6px, transparent 12px),
		radial-gradient(circle at 128px 48%, rgba(255,255,255,.72) 0 3px, transparent 9px),
		linear-gradient(90deg, transparent, rgba(121,221,255,.65), rgba(255,255,255,.84), rgba(15,140,214,.48), transparent);
	background-size: 180px 100%, 220px 100%, 260px 100%, 240% 100%;
	background-position: 0 0, 80px 0, 150px 0, 0 0;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: .9;
	pointer-events: none;
	animation: kirkland-liquid-run 2.1s linear infinite, kirkland-water-glow 3.6s ease-in-out infinite;
}
.site-header > * {
	position: relative;
	z-index: 1;
}
.island-water-drop {
	position: absolute;
	z-index: 0;
	width: var(--drop-size);
	height: var(--drop-size);
	border-radius: 58% 42% 62% 38%;
	background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.98), rgba(142,229,255,.86) 46%, rgba(15,140,214,.55));
	box-shadow: 0 0 10px rgba(142,229,255,.55);
	pointer-events: none;
	opacity: 0;
	animation: kirkland-island-drop var(--drop-duration) ease-in infinite;
	animation-delay: var(--drop-delay);
}
.brand { display: inline-flex; gap: 12px; align-items: center; }
.brand-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
	color: var(--white);
	font-weight: 900;
}
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { color: var(--white); }
.brand small { color: rgba(255,255,255,.70); }
.main-nav { display: flex; gap: 8px; color: #0787d8; font-weight: 800; }
.main-nav a {
	position: relative;
	overflow: hidden;
	padding: 10px 14px;
	border-radius: 999px;
	background: transparent;
	color: #0787d8;
	text-shadow: 0 1px 8px rgba(255,255,255,.35);
	transition: color .2s ease, text-shadow .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
	color: #00cfff;
	text-shadow: 0 0 15px rgba(0,207,255,.72), 0 1px 8px rgba(255,255,255,.45);
	outline: none;
}
.nav-water-particle {
	position: absolute;
	z-index: -1;
	left: var(--nav-drop-x);
	top: var(--nav-drop-y);
	width: var(--nav-drop-size);
	height: var(--nav-drop-size);
	border-radius: 55% 45% 63% 37%;
	background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.98), rgba(142,229,255,.9) 45%, rgba(8,132,210,.62));
	box-shadow: 0 0 10px rgba(125,220,255,.65);
	pointer-events: none;
	animation: kirkland-nav-drop .9s ease-out forwards;
}

.hero {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	gap: clamp(24px, 5vw, 56px);
	align-items: center;
	min-height: 92vh;
	margin-top: -2px;
	padding: 108px clamp(18px, 5vw, 72px) 56px;
	overflow: hidden;
	background: #061a30;
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -3;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(2,10,20,.92) 0, rgba(2,10,20,.50) 72px, transparent 150px),
		radial-gradient(circle at 12% 18%, rgba(15, 140, 214, .46), transparent 32%),
		linear-gradient(90deg, rgba(4, 18, 35, .88), rgba(4, 18, 35, .56) 48%, rgba(4, 18, 35, .30));
	z-index: -2;
}
.hero-with-video .hero-copy,
.hero-with-video .hero-copy h1,
.hero-with-video .hero-copy h2,
.hero-with-video .hero-copy h3 {
	color: var(--white);
}
.hero-with-video .hero-copy p:not(.eyebrow) {
	color: rgba(255,255,255,.84);
}
.hero-with-video .eyebrow {
	color: #8ee5ff;
}
.hero-with-video .trust-list li {
	background: rgba(255,255,255,.14);
	color: var(--white);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.18);
}
.hero-copy,
.hero-card {
	position: relative;
	z-index: 1;
}
.eyebrow {
	margin: 0 0 10px;
	color: var(--blue-600);
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .78rem;
}
h1, h2, h3 { color: var(--blue-950); line-height: 1.04; margin-top: 0; }
h1 { font-size: clamp(3rem, 6.8vw, 5.9rem); margin-bottom: 18px; letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin-bottom: 18px; letter-spacing: -.04em; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.hero-copy > p:not(.eyebrow) { max-width: 680px; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions, .form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	font-weight: 900;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); color: var(--white); box-shadow: 0 16px 36px rgba(15, 140, 214, .28); }
.button.secondary { background: var(--cyan-100); color: var(--blue-950); }
.trust-list { display: flex; gap: 12px; flex-wrap: wrap; padding: 0; margin: 26px 0 0; list-style: none; }
.trust-list li { padding: 10px 14px; border-radius: 999px; background: var(--white); color: var(--blue-800); font-weight: 800; box-shadow: 0 8px 28px rgba(8,35,63,.08); }
.hero-card { position: relative; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); min-height: 470px; }
.hero-card img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.water-bottle {
	position: absolute;
	top: 22px;
	right: 22px;
	display: grid;
	justify-items: center;
	filter: drop-shadow(0 18px 30px rgba(8,35,63,.22));
}
.bottle-neck {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(255,255,255,.88);
	border-bottom: 0;
	border-radius: 12px 12px 0 0;
	background: rgba(255,255,255,.42);
}
.bottle-body {
	position: relative;
	width: 92px;
	height: 136px;
	overflow: hidden;
	border: 3px solid rgba(255,255,255,.9);
	border-radius: 28px 28px 34px 34px;
	background: rgba(255,255,255,.28);
	backdrop-filter: blur(8px);
}
.water-fill {
	position: absolute;
	right: -35%;
	bottom: -6px;
	left: -35%;
	height: 68%;
	background: linear-gradient(180deg, rgba(125,221,255,.88), rgba(12,135,211,.92));
	animation: kirkland-wave 3.6s ease-in-out infinite;
}
.water-fill::before,
.water-fill::after {
	content: "";
	position: absolute;
	top: -18px;
	left: 0;
	width: 200%;
	height: 34px;
	background: rgba(255,255,255,.58);
	border-radius: 45%;
	animation: kirkland-swell 5s linear infinite;
}
.water-fill::after {
	top: -13px;
	opacity: .48;
	animation-duration: 7s;
	animation-direction: reverse;
}
.bubble {
	position: absolute;
	bottom: 16px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,.8);
	animation: kirkland-bubble 3s ease-in infinite;
}
.bubble-one { left: 24px; animation-delay: .2s; }
.bubble-two { left: 48px; width: 7px; height: 7px; animation-delay: 1s; }
.bubble-three { left: 65px; animation-delay: 1.8s; }
.price-badge { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 20px; border-radius: 24px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.price-badge span, .price-badge strong { display: block; }
.price-badge span { color: var(--muted); }
.price-badge strong { color: var(--blue-950); font-size: 1.35rem; }
.notice { margin: 0 clamp(18px, 5vw, 72px) 20px; padding: 18px 22px; border-radius: 18px; background: #dcfce7; color: #14532d; font-weight: 800; }
.process-strip {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: min(1120px, calc(100% - 36px));
	margin: -44px auto 18px;
	padding: 16px;
	border: 1px solid rgba(15,140,214,.16);
	border-radius: 30px;
	background: rgba(255,255,255,.9);
	box-shadow: var(--shadow);
	backdrop-filter: blur(16px);
}
.process-strip div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 12px;
	align-items: center;
	padding: 16px;
	border-radius: 22px;
	background: linear-gradient(180deg, #fff, var(--cyan-50));
}
.process-strip span {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--blue-800);
	color: var(--white);
	font-weight: 900;
}
.process-strip strong {
	color: var(--blue-950);
	font-size: 1.05rem;
}
.process-strip p {
	margin: 0;
	font-size: .92rem;
	line-height: 1.45;
}
.section { padding: 70px clamp(18px, 5vw, 72px); scroll-margin-top: 98px; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-grid article, .schedule-card, .form-card, .map-card { background: var(--white); border: 1px solid rgba(15,140,214,.12); border-radius: 28px; box-shadow: 0 18px 50px rgba(8,35,63,.08); }
.service-grid article { padding: 28px; }
.image-band { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 16px; padding: 0 clamp(18px, 5vw, 72px); }
.image-band img { width: 100%; height: 330px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 560px); gap: clamp(28px, 5vw, 64px); align-items: start; }
.location-section { align-items: center; }
.map-card { overflow: hidden; padding: 12px; }
.kirkland-map {
	width: 100%;
	min-height: 380px;
	border-radius: 22px;
	overflow: hidden;
	background: var(--cyan-50);
	z-index: 1;
}
.schedule-card { padding: 22px; margin-top: 24px; color: var(--blue-950); }
.delivery-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 0 clamp(18px, 5vw, 72px) 28px;
	margin-top: -28px;
}
.delivery-highlights article {
	position: relative;
	overflow: hidden;
	min-height: 150px;
	padding: 24px;
	border: 1px solid rgba(15,140,214,.14);
	border-radius: 28px;
	background:
		radial-gradient(circle at 88% 10%, rgba(142,229,255,.38), transparent 34%),
		linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,251,255,.92));
	box-shadow: 0 18px 50px rgba(8,35,63,.08);
}
.delivery-highlights article::after {
	content: "";
	position: absolute;
	right: -28px;
	bottom: -44px;
	width: 130px;
	height: 130px;
	border-radius: 48% 52% 45% 55%;
	background: rgba(142,229,255,.25);
	filter: blur(1px);
}
.delivery-highlights span {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--blue-600);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.delivery-highlights strong {
	display: block;
	color: var(--blue-950);
	font-size: 1.15rem;
	line-height: 1.2;
}
.delivery-highlights p {
	position: relative;
	z-index: 1;
	margin: 10px 0 0;
	font-size: .95rem;
	line-height: 1.55;
}
.form-card { display: grid; gap: 16px; padding: clamp(22px, 4vw, 34px); }
.form-step {
	display: grid;
	gap: 16px;
	animation: kirkland-step-in .28s ease both;
}
.form-step[hidden] {
	display: none;
}
.form-card label { display: grid; gap: 8px; color: var(--blue-950); font-weight: 800; }
.form-card input, .form-card textarea { width: 100%; border: 1px solid rgba(96,112,134,.24); border-radius: 16px; padding: 14px 15px; font: inherit; background: #fbfdff; color: var(--ink); }
.form-card input:focus, .form-card textarea:focus { outline: 3px solid rgba(15,140,214,.16); border-color: var(--blue-600); }
.form-row label { flex: 1 1 180px; }
.form-help {
	color: var(--blue-800);
	font-weight: 800;
}
.wizard-actions {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 8px;
}
.wizard-actions .button {
	min-width: 190px;
}
.wizard-actions.two-buttons {
	justify-content: space-between;
}
.map-picker {
	display: grid;
	gap: 12px;
	padding: 14px;
	border: 1px solid rgba(15,140,214,.16);
	border-radius: 22px;
	background: linear-gradient(180deg, var(--cyan-50), #fff);
}
.map-picker-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	color: var(--blue-950);
}
.map-picker p { margin: 0; font-size: .95rem; }
.map-picker .kirkland-map { min-height: 320px; }
.map-picker .kirkland-map.has-map-point {
	outline: 4px solid rgba(15,140,214,.20);
}
.map-button {
	min-height: 48px;
	padding: 0 22px;
	background: var(--blue-950);
	color: var(--white);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 14px 34px rgba(8,35,63,.22);
}
.map-coordinates {
	color: var(--blue-800);
	font-weight: 800;
}
.contact-section { background: var(--blue-950); }
.contact-section h2, .contact-section .eyebrow { color: var(--white); }
.contact-section p { color: #cde7f7; }
.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px clamp(18px, 5vw, 72px);
	background: #061a30;
	color: var(--white);
}
.site-footer p { color: #d9ebf8; margin: 6px 0; }
.footer-app-teaser {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 310px;
	padding: 12px 18px 12px 12px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.footer-app-teaser strong {
	display: block;
	color: #8ee5ff;
}
.footer-app-teaser p {
	margin: 2px 0 0;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.footer-phone-image {
	width: 74px;
	height: 74px;
	border: 2px solid rgba(142,229,255,.55);
	border-radius: 18px;
	object-fit: cover;
	box-shadow: 0 0 24px rgba(142,229,255,.22);
}
.phone-icon {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 48px;
	border: 3px solid #8ee5ff;
	border-radius: 12px;
	box-shadow: 0 0 18px rgba(142,229,255,.36);
}
.phone-icon::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 50%;
	width: 12px;
	height: 3px;
	border-radius: 999px;
	background: #8ee5ff;
	transform: translateX(-50%);
}
.phone-icon::after {
	content: "";
	position: absolute;
	right: 7px;
	bottom: 5px;
	left: 7px;
	height: 14px;
	border-radius: 8px 8px 10px 10px;
	background: linear-gradient(180deg, rgba(142,229,255,.22), rgba(15,140,214,.78));
}
.water-particles {
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0;
	overflow: hidden;
	transition: opacity .45s ease;
	z-index: 5;
}
.show-water-particles .water-particles {
	opacity: 1;
}
.water-particle {
	position: absolute;
	top: -12vh;
	left: var(--x);
	width: var(--size);
	height: var(--size);
	border-radius: 58% 42% 62% 38%;
	background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.95), rgba(117,219,255,.72) 44%, rgba(15,140,214,.25));
	box-shadow: 0 0 18px rgba(117,219,255,.28);
	animation: kirkland-rain var(--duration) linear infinite;
	animation-delay: var(--delay);
	transform: rotate(18deg);
}
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes kirkland-wave {
	0%, 100% { transform: translateX(-4%) rotate(-1deg); }
	50% { transform: translateX(4%) rotate(1deg); }
}

@keyframes kirkland-swell {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes kirkland-bubble {
	0% { transform: translateY(0) scale(.7); opacity: 0; }
	20% { opacity: .9; }
	100% { transform: translateY(-86px) scale(1.15); opacity: 0; }
}

@keyframes kirkland-rain {
	0% { transform: translate3d(0, -12vh, 0) rotate(18deg); opacity: 0; }
	12% { opacity: .9; }
	100% { transform: translate3d(-8vw, 116vh, 0) rotate(18deg); opacity: 0; }
}

@keyframes kirkland-water-border {
	0% { --water-angle: 0deg; }
	100% { --water-angle: 360deg; }
}

@keyframes kirkland-water-glow {
	0%, 100% { filter: saturate(1) brightness(1); opacity: .68; }
	50% { filter: saturate(1.45) brightness(1.18); opacity: 1; }
}

@keyframes kirkland-liquid-run {
	0% {
		background-position: 0 0, 80px 0, 150px 0, 0 0;
	}
	100% {
		background-position: 180px 0, 300px 0, 410px 0, 240% 0;
	}
}

@keyframes kirkland-island-drop {
	0% {
		opacity: 0;
		transform: translate3d(0, 0, 0) scale(.45) rotate(10deg);
	}
	18% {
		opacity: .95;
	}
	100% {
		opacity: 0;
		transform: translate3d(var(--drop-drift), 46px, 0) scale(1.1) rotate(38deg);
	}
}

@keyframes kirkland-nav-drop {
	0% {
		opacity: 0;
		transform: translate3d(0, 6px, 0) scale(.45) rotate(0deg);
	}
	18% {
		opacity: .95;
	}
	100% {
		opacity: 0;
		transform: translate3d(var(--nav-drop-drift), -18px, 0) scale(1.1) rotate(32deg);
	}
}

@keyframes kirkland-step-in {
	0% {
		opacity: 0;
		transform: translateY(14px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kirkland-modal-in {
	0% {
		opacity: 0;
		transform: translateY(18px) scale(.96);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 900px) {
	.site-header {
		align-items: flex-start;
		border-radius: 28px;
		flex-direction: column;
	}
	.main-nav { flex-wrap: wrap; }
	.hero, .split, .service-grid, .image-band, .process-strip, .delivery-highlights { grid-template-columns: 1fr; }
	.hero { min-height: auto; padding-top: 142px; }
	.hero-card, .hero-card img { min-height: 380px; }
	.image-band img { height: 260px; }
	.water-bottle { transform: scale(.86); transform-origin: top right; }
	.process-strip { margin-top: -24px; }
	.delivery-highlights { margin-top: -18px; }
	.wizard-actions,
	.wizard-actions.two-buttons {
		flex-direction: column;
	}
	.wizard-actions .button {
		width: 100%;
	}
	.success-modal-card {
		grid-template-columns: 1fr;
		max-height: calc(100vh - 44px);
		overflow: auto;
	}
	.success-modal-card img {
		min-height: 230px;
		max-height: 280px;
	}
	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer-app-teaser {
		width: 100%;
	}
}
