:root {
	--page-bg: #10342e;
	--cream: #f1e3c9;
	--cream-2: #f8efd9;
	--ink: #123832;
	--green: #244d43;
	--green-dark: #17372f;
	--green-deep: #0f2d27;
	--olive: #7d8f2b;
	--gold: #d79622;
	--gold-dark: #9e6314;
	--line: #cdbb96;
	--muted: #665d4c;
	--error-bg: #ff9191;
	--error-text: #444;
	--radius-lg: 18px;
	--radius-md: 12px;
	--shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

* {
	box-sizing: border-box;
}

@font-face {
	font-family: 'hobo';
	src:
		url('../_fonts/Hobo.woff2') format('woff2'),
		url('../_fonts/Hobo.woff') format('woff');
	font-display: swap;
}

html {
	font-size: 16px;
}

body {
	margin: 0;
	background: var(--page-bg);
	color: var(--ink);
	font-family: 'hobo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
	margin: 20px 0 0 0;
}
img {
	max-width: 100%;
	display: block;
}
img.waja-thumbnail {
	width: 150px;
	height: 109px;
	object-fit: cover;
}

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

.fade-10 { opacity: .1 }
.fade-20 { opacity: .2 }
.fade-30 { opacity: .3 }
.fade-40 { opacity: .4 }
.fade-50 { opacity: .5 }
.fade-60 { opacity: .6 }
.fade-70 { opacity: .7 }
.fade-80 { opacity: .8 }
.fade-90 { opacity: .9 }

.m-r-10 { margin-right: 10px }
.m-l-10 { margin-left: 10px }
.m-t-10 { margin-top: 10px }
.m-b-10 { margin-bottom: 10px }
.m-tb-10 { margin: 10px 0 }

.m-r-20 { margin-right: 20px }
.m-l-20 { margin-left: 20px }
.m-t-20 { margin-top: 20px }
.m-b-20 { margin-bottom: 20px }
.m-tb-20 { margin: 20px 0 }

.m-l-50 { margin-left: 50px }

.align-center { text-align: center }
.position-relative { position: relative }
.position-absolute { position: absolute }

.page-wrap {
	width: min(1220px, calc(100% - 28px));
	margin: 14px auto 80px;
	background: var(--cream);
	border: 4px solid #1f463d;
	border-radius: 20px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.ajax-wrapper {
	text-align: center;
}
.ajax-wrapper > div {
	border: 1px solid var(--line);
	padding: 10px;
	margin: 10px;
}

/* HERO */
.hero {
	position: relative;
	min-height: 520px;
	padding: clamp(24px, 4vw, 58px);
	background: url("/_images/landing_2026/hero_desktop_bg2.png") center / cover no-repeat;
	background-position: 0% center;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	isolation: isolate;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(280px, 320px);
	gap: clamp(22px, 4vw, 58px);
	align-items: start;
}
.hero-wolf {
	position: absolute;
	top: 10%;
	right: 30%;
	pointer-events: none;
	z-index: -1;
}

.brand {
	margin-top: -2em;
	max-width: 520px;
	text-align: center;
	color: var(--ink);
	text-shadow: none;
}

.logo {
	--hue-rotate: 0deg;
	/* margin-top: 70px; */
	font-size: clamp(4rem, 9vw, 7rem);
	line-height: .85;
	font-weight: 900;
	letter-spacing: .04em;
	filter: hue-rotate(var(--hue-rotate, 0deg));
}

.tagline {
	/* margin-top: 20px; */
	font-size: 1.55em;
  	font-weight: 800;
	letter-spacing: .04em;
	text-shadow: -1px -1px 5px #f2f3ee, 
			1px -1px 5px #f2f3ee, 
			-1px 1px 4px #f2f3ee, 
			1px 1px 5px #f2f3ee, 
			0px 3px 4px rgba(0,0,0,.35)
}

.hero-copy {
	max-width: 480px;
	/* margin-top: clamp(34px, 6vw, 74px); */
	text-align: center;
}
.hero-copy h1,
.hero-copy p {
	text-shadow: -1px -1px 5px #f2f3ee, 
			1px -1px 5px #f2f3ee, 
			-1px 1px 4px #f2f3ee, 
			1px 1px 5px #f2f3ee, 
			0px 3px 4px rgba(0,0,0,.35)
}


.tag {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	display: inline-block;
	font-style: normal;
	margin: 0px 2px;
	padding: 1px 7px;
	border: 1px solid var(--gold-dark);
	border-radius: 8px;
	color: var(--gold-dark);
	font-size: 11px;
	line-height: normal;
	text-transform: uppercase;
}

.button-row {
	margin-top: 1em;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 22px;
	border: 1px solid rgba(0,0,0,.3);
	border-radius: 10px;
	background: #f2ead9;
	color: var(--ink);
	font-weight: 900;
	letter-spacing: 0.4px;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 2px 0 rgba(0,0,0,.22);
	cursor: pointer;
}

.btn-green {
	background: linear-gradient(#78802A, #475A21);
	color: #fff8e2;
}

.btn-gold {
	background: linear-gradient(#ebb13a, #c47d18);
	color: #fff8e2;
}

.login-panel {
	background: rgba(24, 55, 47, .96);
	border: 1px solid #bca66e;
	border-radius: 12px;
	padding: 18px 18px 22px;
	color: #fff8e5;
	box-shadow: var(--shadow);
}

.login-panel h2 {
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 3px solid rgba(220, 188, 108, .45);
	text-align: center;
	font-size: 1.5rem;
}

.form-row {
	margin-bottom: 12px;
}

.label-line {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 5px;
	font-weight: 900;
}

.label-line a {
	color: #e5c65c;
	font-style: italic;
}

.login-panel input[type="text"],
.login-panel input[type="password"],
.signup-form input[type="text"],
.signup-form input[type="password"],
.lost-password-column input[type="text"] {
	width: 100%;
	height: 34px;
	border: 0;
	border-radius: 6px;
	background: #fff2da;
	padding: 6px 10px;
	letter-spacing: 1px;
}
input[type="password"] {
  letter-spacing: 3px;
}
.lost-password-column input[type="text"] {
	border: 1px solid var(--line);
	background: #ffffff;
}

.remember {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: .9rem;
	font-weight: 800;
}

.login-panel .btn {
	width: 100%;
	margin-top: 12px;
}

.new-user {
	margin: 20px 0 10px;
	text-align: center;
	font-size: .9rem;
	font-weight: 900;
}

/* CONTENT */
.content {
	padding: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 68px) 30px;
}

.notice-slot {
	width: min(900px, 90%);
	aspect-ratio: 680 / 102;
	margin: 0 auto 1em;
	border-radius: 12px;
	overflow: hidden;
	background-image: url("/_images/landing_2026/banner.png");
	background-size: cover;
	background-position: center;
}

.feature-list {
	margin-top: 8px;
}

.intro-section {
	display: none;
	/* min-height: 126px; */
	margin-top: 8px;
	text-align: center;
	margin: 10px auto;
	width: min(700px, 90%);
}
@media (max-width: 1220px) {
	.hero-copy h1,
	.hero-copy p {
		display: none;
	}
	.button-row {
		margin-top: 4em;
	}
	.intro-section {
		display: block;
	}
}

.intro-section h1 {
	margin: 0;
	font-size: clamp(1.5rem, 5vw, 4rem);
	line-height: 1;
}

.feature-card {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	min-height: 126px;
	margin-top: 8px;
	padding: 14px 22px;
	background: rgba(255, 249, 231, .65);
	border: 2px solid var(--line);
	border-radius: 14px;
}

.feature-icon {
	width: 96px;
	aspect-ratio: 1;
	border: 4px solid #8c856c;
	border-radius: 50%;
	background: #fffef3 url("images/icon-placeholder.png") center / 70% no-repeat;
}
.feature-icon.create {
	border: none;
	border-radius: 0;
	background: url("/_images/landing_2026/create.png") center / 100% no-repeat;
}
.feature-icon.connect {
	border: none;
	border-radius: 0;
	background: url("/_images/landing_2026/connect.png") center / 100% no-repeat;
}
.feature-icon.free {
	border: none;
	border-radius: 0;
	background: url("/_images/landing_2026/free.png") center / 100% no-repeat;
}
.feature-icon.preview {
	border: none;
	border-radius: 0;
	background: url("/_images/landing_2026/preview.png") center / 100% no-repeat;
}

.feature-text h2 {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1;
}

.feature-text p {
	max-width: 520px;
	margin: 0;
	font-weight: 800;
	line-height: 1.25;
}

.feature-art {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
	min-width: 280px;
}

.thumb {
	width: 96px;
	aspect-ratio: 1;
	border-radius: 12px;
	background: linear-gradient(135deg, #385e80, #9ed3b6) center / cover no-repeat;
	box-shadow: inset 0 0 0 3px #9c8a5a;
}
.thumb.slideshow-19 {
	background-image: url("/_images/landing_2026/slideshow/19.png");
}
.thumb.slideshow-20 {
	background-image: url("/_images/landing_2026/slideshow/20.png");
}
.thumb.slideshow-21 {
	background-image: url("/_images/landing_2026/slideshow/21.png");
}

.connect-banner {
	width: 320px;
	height: 88px;
	background: url("/_images/landing_2026/talkingbanner3.png") center / contain no-repeat;
}
.item-pile {
	width: 330px;
	height: 95px;
	background: url("/_images/landing_2026/item_pile.png") center / contain no-repeat;
}

.fa-paw {
	color: #947D54; 
}

.paws {
	min-width: 150px;
	height: 58px;
	color: #665d4c;
}

/* COMMUNITY */
.community {
	position: relative;
	margin-top: 12px;
	padding: 18px 30px 18px 60px;
	border: 4px solid #bd9f40;
	border-radius: 14px;
	background:
		url("/_images/landing_2026/flourishes_left.png") left center / auto 100% no-repeat,
		url("/_images/landing_2026/flourishes_right.png") right center / auto 100% no-repeat,	
		url("/_images/landing_2026/community_bg.png") center / cover no-repeat,
		linear-gradient(rgba(16, 61, 54, .9), rgba(16, 61, 54, .9));
	color: #fff8e7;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
}
.sleeping-pup {
	position: absolute;
	bottom: -90px;
	left: 0;
	height: auto;
}

.community-grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 18px;
	align-items: center;
}

.community-copy h2 {
	margin: 0 0 10px;
	font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.community-copy p {
	margin: 0 0 14px;
	font-weight: 800;
	line-height: 1.25;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.gallery-card {
	aspect-ratio: 1.05;
	border: 3px solid #d1a947;
	border-radius: 10px;
	background: linear-gradient(135deg, #222, #c9ecff);
	background-repeat: no-repeat;
	background-size: cover;
}

/* FINAL CTA */
.final-cta {
	position: relative;
	top: -30px;
	display: grid;
	grid-template-columns: 260px 1fr auto 64px;
	gap: 18px;
	align-items: center;
	padding: 0 28px 20px;
}

.sleeping-pup {
	height: 120px;
	/* background: url("/_images/landing_2026/sleeping_pup3.png") center / contain no-repeat; */
}

.final-copy {
	text-align: center;
	color: #665d4c;
	font-weight: 900;
}

.final-copy h2 {
	margin: 10px 0 6px;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.final-copy p {
	margin: 0;
}

.arrow {
	position: absolute;
	top: 0;
	right: -10px;
	pointer-events: none;
}

.footer-bottom {
	position: relative;
	color: var(--cream);
	background: #16302D;
	min-height: 100px;
}
.footer-bottom a {
	text-decoration: none;
}
.footer-bottom a:hover {
	text-decoration: underline;
}
.copyright {
	text-align: center;
}
.copyright .copyright-logo {
	display: block;
	width: 70%;
	margin-left: 10%;
}
.footer-links {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 260px 1fr 1fr 1fr;
	grid-template-areas: "a b c d";
	gap: 18px;
	align-items: center;
	padding: 0 28px 20px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 14px;
}
.footer-links h3 {
	margin-bottom: 0.3em;
}
.footer-links2 {
	position: relative;
	display: flex;
	justify-content: space-evenly;
	padding: 0 10px 10px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 14px;
	z-index: 10;
}
.footer-links a {
	display: block;
}
.footer-links2 a {
	display: block;
	text-align: center;
}
.copyright { grid-area: a; }
.links-a   { grid-area: b; }
.links-b   { grid-area: c; }
.links-c   { grid-area: d; text-align: center; }
.links-a,
.links-b {
	margin-left: 20%;
}
.links-c {
	margin-right: 30%;
}
.links-c a {
	display: inline;
}
.social-logo {
	display: initial;
	margin: 5px 5px;
	width: 40px;
	height: 40px;
}

@media (max-width: 930px) {
	.footer-links {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-areas:
			"a a a"
			"b c d";
		gap: 18px;
	}
	.links-a,
	.links-b {
		margin-left: 20%;
	}
}
@media (max-width: 500px) {
	.notice-slot {
		background-image: url("/_images/landing_2026/banner_small.png");
	}
	.footer-links {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"a a"
			"b c"
			"d d";
		gap: 18px;
	}
	
}

.footer-vine {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 205px;
	height: 160px;
	background: url("/_images/landing_2026/footer_vine.png") center / cover no-repeat;
	pointer-events: none;
}
.footer-flowers {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 400px;
	aspect-ratio: 435 / 199;
	background: url("/_images/landing_2026/footer_flowers.png") center / cover no-repeat;
	pointer-events: none;
}




@media (max-width: 1100px) {
	.arrow {
		display: none;
	}
	.links-c {
		margin-right: 0;
	}
	.footer-flowers {
		width: 300px;
	}
}


/*
	REGISTRATION FORM
*/

.signup-form {
	margin: 20px 0 50px;
	padding: 14px 22px;
	background: rgba(24, 55, 47, .96);
	border: 1px solid #bca66e;
	border-radius: 12px;
	padding: 18px 18px 22px;
	color: #fff8e5;
	box-shadow: var(--shadow);
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	min-height: 36px;
	padding: 6px 38px 6px 10px;
	margin-right: 8px;

	border: 0;
	border-radius: 6px;
	background:
		linear-gradient(45deg, transparent 50%, #fff8e5 50%) right 16px center / 7px 7px no-repeat,
		linear-gradient(135deg, #fff8e5 50%, transparent 50%) right 10px center / 7px 7px no-repeat,
		#fff2da;

	color: #123832;
	font-family: 'hobo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	font-weight: 800;
	box-shadow:
		inset 0 1px 1px rgba(0, 0, 0, .18),
		0 1px 0 rgba(255, 255, 255, .25);

	cursor: pointer;
}

select:focus {
	outline: 2px solid #d79622;
	outline-offset: 2px;
}

select:disabled {
	opacity: .65;
	cursor: not-allowed;
}
.reg-row {
	/* display: flex;
	flex-wrap: wrap; */
	padding: 0 10px;
	margin-bottom: 10px;
	position: relative;
	align-items: center;
}
/* .reg-field { } */
.reg-field label {
    display: inline-block;
    min-width: 20em;
}
.reg-field input {
	border: none;
}
.reg-birthday {
	display: flex;
}
.reg-button {
	font-size: 13px;
}
.help {
	float: right;
	opacity: 0.6;
}
.help:hover {
	opacity: 1;
}
.help-text {
	display: block;
	min-width: 400px;
	margin: 20px 0;
	position: relative;
	background-color: #83b893;
	color: rgba(255, 255, 255, 0.8);
}
.help-text .text {
	padding: 5px 30px 5px 5px;
}
.help-text .close {
	position: absolute;
	right: 6px;
	top: 0;
	font-size: 1.1em;
	cursor: pointer;
}
.error {
	background-color: var(--error-bg);
	color: var(--error-text);
	padding: 5px 10px;
	border-radius: 6px;
	margin-top: 5px;
}

.clickable {
	cursor: pointer;
}

.cancel-link {
	font-size: 13px;
	margin-left: 40px;
}

.tos-text {
	font-family:Verdana, Geneva, Tahoma, sans-serif;
}

/** MODAL **/
.modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	padding: 24px;
}

.modal.is-open {
	display: grid;
	place-items: center;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 20, 17, .72);
	backdrop-filter: blur(3px);
}

.modal-window {
	position: relative;
	width: min(760px, 100%);
	max-height: min(760px, calc(100vh - 48px));
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;

	background: #f1e3c9;
	border: 4px solid #bd9f40;
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
	overflow: hidden;
}

.modal-window::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(36, 77, 67, .35);
	border-radius: 10px;
	pointer-events: none;
}

.modal-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	padding: 16px 20px;
	background: linear-gradient(#31594f, #183a33);
	color: #fff8e5;
	border-bottom: 3px solid #bd9f40;
}

.modal-header h2 {
	margin: 0;
	font-size: clamp(1.4rem, 4vw, 2rem);
	line-height: 1;
}

.modal-close {
	width: 38px;
	height: 38px;
	background: none;
	border: none;
	color: #fff8e5;
	opacity: 0.7;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.modal-close:hover {
	opacity: 1;
}

.modal-body {
	position: relative;
	padding: 22px 26px;
	overflow: auto;
	color: #123832;
	line-height: 1.45;
}

.modal-body h3 {
	margin: 0 0 8px;
	color: #17372f;
}

.modal-body h3 + p {
	margin-top: 0;
}

.modal-footer {
	position: relative;
	display: flex;
	justify-content: flex-end;
	gap: 12px;

	padding: 14px 20px;
	background: #e7d6b6;
	border-top: 1px solid #cdbb96;
}


/** CHECKBOX **/
.w-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-weight: 800;
	user-select: none;
}

.w-checkbox input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.checkmark {
	width: 22px;
	height: 22px;
	flex-shrink: 0;

	border: 2px solid #b99d56;
	border-radius: 5px;

	background:
		linear-gradient(#fff8e7, #e8d8b8);

	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.7),
		0 1px 2px rgba(0,0,0,.2);

	position: relative;
	transition: .15s;
}

.w-checkbox:hover .checkmark {
	border-color: #d79622;
}

.w-checkbox input:checked + .checkmark {
	background:
		linear-gradient(#31594f, #183a33);
	border-color: #d8af48;
}

.w-checkbox input:checked + .checkmark::after {
	content: "";
	position: absolute;

	left: 6px;
	top: 2px;

	width: 5px;
	height: 11px;

	border-right: 3px solid #fff8e5;
	border-bottom: 3px solid #fff8e5;

	transform: rotate(45deg);
}

.w-checkbox input:focus-visible + .checkmark {
	outline: 2px solid #d79622;
	outline-offset: 2px;
}

.w-checkbox input:disabled + .checkmark {
	opacity: .5;
}



/* Mobile */
@media (max-width: 560px) {
	.modal {
		padding: 10px;
	}

	.modal-window {
		max-height: calc(100vh - 20px);
		border-width: 3px;
		border-radius: 12px;
	}

	.modal-header {
		padding: 14px 16px;
	}

	.modal-body {
		padding: 18px 16px;
	}

	.modal-footer {
		display: grid;
		grid-template-columns: 1fr;
		padding: 12px 16px;
	}

	.modal-footer .btn {
		width: 100%;
	}
}




/* TABLET */
@media (max-width: 920px) {
	.page-wrap {
		width: min(760px, calc(100% - 22px));
	}
	.hero-wolf {
		display: none;
	}
	.hero {
		min-height: auto;
		background-position: 70% bottom;
	}
	.hero-wolf {
		top: 0%;
		left: 45%;
		transform: translateX(-20%);
	}

	.button-row {
		margin-top:20px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.brand,
	.hero-copy {
		margin-left: auto;
		margin-right: auto;
	}

	.login-panel {
		width: min(420px, 100%);
		margin: 0 auto;
	}

	.feature-card {
		grid-template-columns: 90px 1fr;
		gap: 18px;
	}

	.feature-icon {
		width: 82px;
	}

	.feature-art {
		grid-column: 1 / -1;
		justify-content: center;
		min-width: 0;
	}

	.community-grid {
		grid-template-columns: 1fr;
	}

	.community-copy {
		text-align: center;
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.community {
		background:
			url("/_images/landing_2026/community_bg.png") center / cover no-repeat,
			linear-gradient(rgba(16, 61, 54, .9), rgba(16, 61, 54, .9));
	}

	.final-cta {
		grid-template-columns: 180px 1fr;
	}

	.final-cta .btn {
		justify-self: center;
	}

	.final-cta .paws {
		display: none;
	}
}

/* MOBILE */
@media (max-width: 560px) {
	.page-wrap {
		width: 100%;
		margin: 0;
		border-width: 0;
		border-radius: 0;
	}

	.hero {
		padding: 24px 16px 28px;
		background: url("/_images/landing_2026/hero_phone_bg.png") center / cover no-repeat;
		background-position: 46% center;
	}
	.hero-wolf {
		top: 3%;
		left: 50%;
		transform: translateX(-50%);
	}

	.logo {
		font-size: 4rem;
	}

	.brand {
		/* color: #e9eee9; */
		text-shadow: 0 3px 3px rgba(0, 0, 0, .45);
	}
	.hero-copy {
		margin-top: 32px;
	}

	.button-row,
	.final-cta {
		display: grid;
		grid-template-columns: 1fr;
	}

	.btn {
		width: 100%;
	}

	.content {
		padding: 18px 12px 24px;
	}

	.notice-slot {
		width: 100%;
		/* height: 86px; */
	}

	.feature-card {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 18px 14px;
	}

	.feature-icon {
		margin: 0 auto;
	}

	.feature-text p {
		margin-left: auto;
		margin-right: auto;
	}

	.feature-art {
		flex-wrap: wrap;
	}

	.thumb {
		width: 30%;
		min-width: 78px;
	}

	.item-pile {
		width: 100%;
		max-width: 300px;
	}

	.paws {
		display: none;
	}

	.community {
		padding: 14px;
	}

	/* .gallery {
		grid-template-columns: 1fr;
	} */

	.gallery {
		display: block;
	}

	.gallery-card {
		max-width: 303px;
		margin: 20px auto;
	}

	.final-cta {
		padding: 16px;
	}

	.sleeping-pup {
		height: 105px;
	}
	.footer-flowers {
		width: 200px;
	}
}


@media (min-width: 1000px) {
	.reg-field {
		display: flex;
		align-items: flex-start;
		flex-wrap: nowrap;
	}
}
