:root {
	--primary: #684A34;
	--secondary: #958071;
	--third: #C3B7AE;
	--fourth: #D9D2CC;
	--fifth: #F0EDEB;
	--link: #5E432F;
	--link-hover: #3E2C1F;
	--link-active: #2F2117;
	--font-display: 'Fraunces', serif;
	--font-body: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }

/* Guarantees any element with the "hidden" attribute is actually hidden,
   even if it also has a class that sets its own "display" value (like
   .btn_primary's display:inline-flex) - without this, such classes can
   silently override the browser's default [hidden] styling. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--link-active);
	background: var(--fifth);
	line-height: 1.6;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
a:active { color: var(--link-active); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ---------- Nav ---------- */

header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--fifth);
	border-bottom: 1px solid var(--fourth);
}

nav.wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	padding-bottom: 16px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 20px;
	color: var(--primary);
}

.brand_logo { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; }

.nav_links {
	display: flex;
	gap: 28px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.nav_links a { color: var(--link-active); }
.nav_links a:hover { color: var(--primary); }

.nav_cta {
	background: var(--primary);
	color: #fff !important;
	padding: 10px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
}

.nav_cta:hover { background: var(--link-hover); }

.nav_toggle { display: none; }

@media (max-width: 760px) {
	.nav_links { display: none; }
	.nav_toggle {
		display: block;
		background: none;
		border: none;
		font-size: 22px;
		color: var(--primary);
		cursor: pointer;
	}
}

/* ---------- Hero (Ken Burns image slider) ---------- */

.hero {
	position: relative;
	height: 92vh;
	min-height: 560px;
	max-height: 820px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	color: #fff;
}

.hero_slides {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero_slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1200ms ease;
}

.hero_slide.active { opacity: 1; }

.hero_slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	display: block;
	background: var(--link-active);
	transform: scale(1);
	will-change: transform;
}

/* Ken Burns: two alternating zoom directions so consecutive slides
   don't feel identical, applied only while a slide is active */

@keyframes kenburns-in {
	from { transform: scale(1) translate(0, 0); }
	to   { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

@keyframes kenburns-in-alt {
	from { transform: scale(1) translate(0, 0); }
	to   { transform: scale(1.14) translate(1.5%, 1%); }
}

.hero_slide.active img.kb-a {
	animation-name: kenburns-in;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.hero_slide.active img.kb-b {
	animation-name: kenburns-in-alt;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.hero_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(47, 33, 23, 0.82) 0%, rgba(47, 33, 23, 0.45) 45%, rgba(47, 33, 23, 0.25) 100%);
}

.hero_content {
	position: relative;
	z-index: 2;
	padding-bottom: 64px;
	max-width: 620px;
}

.eyebrow {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fourth);
	margin: 0 0 14px;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.08;
	color: #fff;
	margin: 0 0 20px;
	font-weight: 700;
}

.hero h1 em {
	font-style: italic;
	color: var(--third);
}

.hero p.lede {
	font-size: 16px;
	color: var(--fourth);
	max-width: 460px;
	margin: 0 0 28px;
}

.hero_actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn_primary,
.btn_ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	border: none;
	transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn_primary {
	background: var(--primary);
	color: #fff;
}
.btn_primary:hover {
	background: var(--link-hover);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(47, 33, 23, 0.35);
}

.btn_primary_light {
	background: var(--fifth);
	color: var(--primary);
}
.btn_primary_light:hover {
	background: #fff;
	color: var(--link-hover);
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.btn_ghost {
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	color: #fff;
}
.btn_ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-3px);
}

.nav_cta {
	transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.nav_cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(104, 74, 52, 0.3);
}

/* Wax-seal stamp badge, floating top-right of hero */

.stamp_badge {
	position: absolute;
	top: 28px;
	right: 28px;
	z-index: 3;
}

.stamp {
	width: 108px;
	height: 108px;
	border-radius: 50%;
	display: block;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

@media (max-width: 640px) {
	.stamp { width: 78px; height: 78px; }
	.stamp_badge { top: 16px; right: 16px; }
}

/* Hero slide dot controls */

.hero_dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 8px;
}

.hero_dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 200ms ease, transform 200ms ease;
}

.hero_dot.active {
	background: #fff;
	transform: scale(1.3);
}

@media (max-width: 640px) {
	.hero_dots { bottom: 16px; }
}

/* ---------- Wave divider (signature motif: curled leash line) ---------- */

.leash_divider {
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
}

/* ---------- Services (ticket stubs) ---------- */

.services { padding: 88px 0 96px; background: var(--fourth); }

.section_head { max-width: 560px; margin: 0 auto 52px; text-align: center; }

.section_head .eyebrow { text-align: center; }

.section_head h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 38px);
	color: var(--link-active);
	margin: 0 0 12px;
}

.section_head p { color: var(--link); font-size: 15px; }

.pet_card_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 880px;
	margin: 0 auto;
}

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

.pet_card {
	background: var(--fifth);
	border-radius: 18px;
	padding: 32px;
	box-shadow: 0 12px 28px rgba(104, 74, 52, 0.1);
	transition: transform 250ms ease, box-shadow 250ms ease;
}

.pet_card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(104, 74, 52, 0.16);
}

.pet_card_header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.pet_card_icon {
	width: 32px;
	height: 32px;
	font-size: 28px;
	line-height: 1;
	color: var(--primary);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pet_card_header h3 {
	font-family: var(--font-display);
	font-size: 24px;
	color: var(--link-active);
	margin: 0;
}

.pet_card_tabs {
	display: flex;
	background: var(--fourth);
	border-radius: 999px;
	padding: 4px;
	margin-bottom: 22px;
}

.pet_tab {
	flex: 1;
	border: none;
	background: none;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--link);
	cursor: pointer;
	transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.pet_tab.active {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 4px 10px rgba(104, 74, 52, 0.15);
}

.pet_tab_panel { display: none; }
.pet_tab_panel.active { display: block; animation: fade_in_panel 300ms ease; }

@keyframes fade_in_panel {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

.pet_tab_panel p {
	font-size: 14px;
	color: var(--link);
	margin: 0 0 18px;
}

.pet_flat_price {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 26px;
	color: var(--primary);
	margin-bottom: 10px;
}

.pet_flat_price_tbd {
	font-size: 15px;
	font-style: italic;
	color: var(--secondary);
}

.ticket_badge {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.price_table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.price_table td {
	padding: 8px 0;
	border-bottom: 1px dotted var(--third);
}

.price_table td:first-child {
	color: var(--link-active);
	font-weight: 500;
}

.price_table td:last-child {
	text-align: right;
	color: var(--primary);
	font-weight: 700;
	font-family: var(--font-display);
}

.price_table tr:last-child td {
	border-bottom: none;
}

/* ---------- Why us ---------- */

.why { padding: 96px 0; }

.why_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 48px;
}

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

.why_item { text-align: center; }

.why_icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	color: var(--primary);
}

.why_item h4 {
	font-family: var(--font-display);
	font-size: 18px;
	margin: 0 0 8px;
	color: var(--link-active);
}

.why_item p { font-size: 14px; color: var(--link); margin: 0; }

/* ---------- Story (van) section ---------- */

.story { padding: 96px 0; }

.story_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

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

.story_image {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 44px rgba(104, 74, 52, 0.2);
}

.story_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.story_content .eyebrow { color: var(--secondary); }

.story_content h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.6vw, 38px);
	color: var(--link-active);
	margin: 0 0 20px;
}

.story_content p {
	font-size: 15px;
	color: var(--link);
	margin: 0 0 16px;
	text-align: justify;
	text-justify: inter-word;
}

.story_signoff {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 600;
	color: var(--primary);
	font-size: 17px;
	text-align: left;
}

/* ---------- Gallery grid ---------- */

.gallery { padding: 0 0 96px; }

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

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

.gallery_card {
	aspect-ratio: 3/4;
	border-radius: 12px;
	display: block;
	position: relative;
	overflow: hidden;
	background: var(--fourth);
	border: none;
	padding: 0;
	cursor: pointer;
}

.gallery_card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 350ms ease;
}

.gallery_card:hover img { transform: scale(1.06); }

.gallery_card:focus-visible {
	outline: 3px solid var(--primary);
	outline-offset: 2px;
}

/* ---------- Lightbox ---------- */

.lightbox_overlay {
	position: fixed;
	inset: 0;
	background: rgba(47, 33, 23, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 100;
	padding: 24px;
}

.lightbox_overlay.visible { display: flex; }

.lightbox_image {
	max-width: 90vw;
	max-height: 88vh;
	object-fit: contain;
	border-radius: 6px;
}

.lightbox_close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

/* ---------- Location / map ---------- */

.location { padding: 88px 0; }

.location_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

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

.location .eyebrow { color: var(--secondary); }

.location h2 {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.6vw, 34px);
	color: var(--link-active);
	margin: 0 0 16px;
}

.location_address {
	font-size: 16px;
	font-weight: 600;
	color: var(--link-active);
	margin: 0 0 14px;
}

.location_note {
	font-size: 14px;
	color: var(--link);
	margin: 0 0 24px;
	max-width: 420px;
}

.location_map {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(104, 74, 52, 0.15);
	aspect-ratio: 4/3;
}

.location_map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ---------- Booking CTA banner ---------- */

.booking { padding: 72px 0; background: var(--primary); color: var(--fifth); }

.booking_cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.booking_cta .eyebrow { color: var(--fourth); }

.booking_cta h2 {
	font-family: var(--font-display);
	font-size: clamp(24px, 3.2vw, 32px);
	color: #fff;
	margin: 0 0 8px;
}

.booking_cta p { color: var(--fourth); font-size: 15px; margin: 0; max-width: 440px; }

/* ---------- Booking modal ---------- */

.booking_modal_overlay {
	position: fixed;
	inset: 0;
	background: rgba(47, 33, 23, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 200;
	padding: 20px;
}

.booking_modal_overlay.visible { display: flex; }

.booking_modal {
	position: relative;
	background: var(--fifth);
	border-radius: 18px;
	max-width: 560px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 36px;
	box-shadow: 0 30px 70px rgba(47, 33, 23, 0.4);
}

.booking_modal_close {
	position: absolute;
	top: 16px;
	right: 18px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	color: var(--secondary);
	cursor: pointer;
}
.booking_modal_close:hover { color: var(--link-active); }

.booking_modal_header {
	text-align: center;
	margin-bottom: 24px;
}

.booking_modal_header h3 {
	font-family: var(--font-display);
	font-size: 24px;
	color: var(--link-active);
	margin: 0 0 16px;
}

/* Step dots */

.step_dots {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.step_dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--fourth);
	border: none;
	padding: 0;
	cursor: default;
	transition: background 200ms ease, transform 200ms ease;
}

.step_dot.active { background: var(--primary); transform: scale(1.3); }
.step_dot.done { background: var(--secondary); cursor: pointer; }

/* Steps */

.booking_step { display: none; }
.booking_step.active { display: block; }

.step_label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--secondary);
	margin: 0 0 16px;
}

/* Bulleted option cards (steps 1 & 2) */

.option_list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 8px;
}

.option_card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-align: left;
	width: 100%;
	padding: 16px;
	background: #fff;
	border: 1.5px solid var(--fourth);
	border-radius: 12px;
	cursor: pointer;
	transition: border-color 200ms ease, background 200ms ease, transform 150ms ease;
}

.option_card:hover {
	border-color: var(--secondary);
	transform: translateY(-2px);
}

.option_card.selected {
	border-color: var(--primary);
	background: var(--fifth);
}

.option_bullet {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--third);
	margin-top: 2px;
	position: relative;
	transition: border-color 200ms ease;
}

.option_card.selected .option_bullet { border-color: var(--primary); }

.option_card.selected .option_bullet::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--primary);
}

.size_pill_group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.size_pill {
	padding: 10px 20px;
	border-radius: 999px;
	border: 1.5px solid var(--fourth);
	background: #fff;
	color: var(--link-active);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 150ms ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.3;
}

.size_pill_price {
	font-size: 11px;
	font-weight: 500;
	opacity: 0.75;
}

.size_pill:hover:not(.disabled) {
	border-color: var(--secondary);
	transform: translateY(-2px);
}

.size_pill.selected {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}

.size_pill.disabled {
	background: var(--fourth);
	color: var(--secondary);
	border-color: var(--fourth);
	cursor: not-allowed;
	opacity: 0.6;
	transform: none;
}

.option_text { display: flex; flex-direction: column; gap: 2px; }
.option_text strong { font-size: 15px; color: var(--link-active); }

.option_price {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--primary);
	font-size: 14px;
}

.option_desc { font-size: 13px; color: var(--link); }

/* Step 3 form fields reuse .form_row / label / input styles below */

.form_row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

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

label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--link-active);
	margin-bottom: 6px;
}

input, select, textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 8px;
	border: 1.5px solid var(--fourth);
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--link-active);
	background: #fff;
}

input:focus, select:focus, textarea:focus {
	outline: 2px solid var(--primary);
	outline-offset: 1px;
	border-color: var(--primary);
}

textarea { min-height: 100px; resize: vertical; }

.phone_input_group {
	display: flex;
	align-items: stretch;
	gap: 8px;
}

.phone_prefix {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1.5px solid var(--fourth);
	background: var(--fifth);
	font-size: 14px;
	font-weight: 600;
	color: var(--link-active);
	white-space: nowrap;
	flex-shrink: 0;
}

.phone_input_group input {
	flex: 1;
	min-width: 0;
}

/* ---------- Calendar popup ---------- */

.calendar_field { position: relative; }

.calendar_field input { cursor: pointer; }

.calendar_popup {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 16px 36px rgba(47, 33, 23, 0.25);
	padding: 16px;
	width: 280px;
}

.calendar_popup.visible { display: block; }

.calendar_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.calendar_month_label {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
	color: var(--link-active);
}

.calendar_nav {
	background: var(--fourth);
	border: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-size: 16px;
	line-height: 1;
	color: var(--link-active);
	cursor: pointer;
}
.calendar_nav:hover { background: var(--secondary); color: #fff; }

.calendar_weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 4px;
}

.calendar_days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}

.calendar_day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	border: none;
	background: none;
	border-radius: 50%;
	cursor: pointer;
	color: var(--link-active);
	transition: background 150ms ease, color 150ms ease;
}

.calendar_day:hover:not(.calendar_day_disabled):not(.calendar_day_empty) {
	background: var(--fourth);
}

.calendar_day_empty { cursor: default; }

.calendar_day_disabled {
	color: var(--third);
	cursor: not-allowed;
}

.calendar_day_today { border: 1.5px solid var(--secondary); }

.calendar_day_selected {
	background: var(--primary);
	color: #fff;
}
.calendar_day_selected:hover { background: var(--link-hover); }

/* Modal step navigation buttons */

.booking_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.btn_ghost_dark {
	background: transparent;
	border: 1.5px solid var(--fourth);
	color: var(--link-active);
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: border-color 200ms ease, transform 200ms ease;
}
.btn_ghost_dark:hover { border-color: var(--primary); transform: translateY(-2px); }


.field { margin-bottom: 16px; }

.lookup_btn {
	margin-top: 8px;
	font-size: 12px;
	padding: 8px 14px;
}

.lookup_status {
	font-size: 12px;
	margin: 6px 0 0;
	min-height: 16px;
}

.lookup_status.found { color: #2f9e44; font-weight: 600; }
.lookup_status.not_found { color: var(--secondary); }
.lookup_status.error { color: var(--link-hover); }

.location_field {
	background: var(--fourth);
	border-radius: 10px;
	padding: 14px 16px;
}

.required_mark { color: var(--link-hover); }

.location_hint {
	font-size: 12px;
	color: var(--secondary);
	margin: 0 0 10px;
}

.location_actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.location_status {
	font-size: 13px;
	color: var(--primary);
	font-weight: 600;
}

.location_status.error { color: var(--link-hover); }
.location_status.shared { color: #2f9e44; font-weight: 700; }

.form_submit {
	margin-top: 0;
	padding: 13px 26px;
	border-radius: 999px;
	border: none;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: background 200ms ease, transform 200ms ease;
}

.form_submit:hover { background: var(--link-hover); transform: translateY(-2px); }

.booking_nav .btn_primary,
.booking_nav .form_submit {
	margin-left: auto;
}

.form_status {
	margin-top: 16px;
	font-size: 14px;
	text-align: center;
	color: var(--link-hover);
	display: none;
}

.form_status.visible { display: block; }

/* ---------- Footer ---------- */

footer {
	background: var(--link-active);
	color: var(--fourth);
	padding: 48px 0 28px;
}

.footer_grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

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

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

.footer_brand {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
}

.footer_logo_rect {
	max-width: 200px;
	height: auto;
	display: block;
	border-radius: 8px;
}

@media (max-width: 500px) {
	.footer_logo_rect { max-width: 160px; }
}

footer h5 {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--secondary);
	margin: 0 0 14px;
}

footer p, footer a { font-size: 14px; color: var(--fourth); }
footer a:hover { color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }

.social_icons_row {
	display: flex;
	gap: 12px;
}

.social_icon {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(217, 210, 204, 0.12);
	color: var(--fourth);
	transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.social_icon svg { width: 18px; height: 18px; }

.social_icon:hover {
	background: var(--primary);
	color: #fff;
	transform: translateY(-2px);
}

.footer_bottom {
	border-top: 1px solid rgba(217, 210, 204, 0.15);
	padding-top: 20px;
	font-size: 12px;
	color: var(--secondary);
	text-align: center;
}

/* ---------- WhatsApp floater ---------- */

.whatsapp_floater {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
	z-index: 60;
	transition: transform 200ms ease;
	animation: whatsapp_pulse 2.4s ease-in-out infinite;
}

.whatsapp_floater svg {
	width: 30px;
	height: 30px;
	color: #fff;
}

.whatsapp_floater:hover { transform: scale(1.08); }

@keyframes whatsapp_pulse {
	0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.5); }
	50% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
	.whatsapp_floater { bottom: 16px; right: 16px; width: 50px; height: 50px; }
	.whatsapp_floater svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero_slide,
	.hero_slide img,
	.gallery_card img,
	.carousel_slide,
	.whatsapp_floater {
		transition: none !important;
		animation: none !important;
	}
}
