/* ===== Base / Reset ===== */
*,
*::before,
*::after {
	box-sizing: border-box
}

:root {
	--brand: #19c6cd;
	/* turquoise */
	--brand-2: #0e8b91;
	/* deep teal */
	--brand-dark: #042c2d;
	--ink: var(--brand-dark);
	--accent: #ffd44d;
	/* warm yellow */
	--bg: #0a1014;
	--bg-2: #122025;
	--text: #f7fafc;
	--muted: #cfd6dc;
    --tan: #d5cda6;
	--maxw: 1120px;
	--radius: 16px;
	--shadow: 0 10px 30px rgba(0, 0, 0, .25);
  --header-height: 64px;
	color-scheme: dark;
}

html {
	scroll-behavior: smooth
}

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

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
	line-height: 1.6;
	color: var(--text);
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%)
}

img {
	max-width: 100%;
	height: auto;
	display: block
}

a {
	color: var(--accent);
	text-decoration: none
}

a:hover {
	text-decoration: underline
}

/* Visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
	border-radius: 10px
}

.container {
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 1rem
}

/* General flow utility - but not for section headers which have their own layout */
.flow:not(section header .flow)>*+* {
	margin-top: 1rem
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h5, h6 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Buttons */

.btn {
	display: inline-block;
	padding: .6rem 1.2rem;
	border-radius: 999px;
	background: var(--brand);
	color: #042c2d;
	font-weight: 700;
	border: 2px solid transparent;
	box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn:hover {
	background: transparent;
	border-color: var(--brand);
	color: var(--text);
	text-decoration: none;
}

.btn:focus-visible {
	outline-offset: 2px
}

.btn-outline {
	background: transparent;
	border-color: var(--brand);
	color: var(--text)
}

.btn-light {
	background: transparent;
	border-color: var(--brand-dark);
	color: var(--text)
}

.btn-light:hover {
	background: var(--brand-dark);
	color: var(--text)
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem .8rem;
	border-radius: 999px;
	background: #12282c;
	border: 1px solid #1f3a40;
	font-weight: 600
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0
}

/* Skip link */
.skip-link {
	position: fixed;
	left: -999px;
	top: 0;
	background: #000;
	color: #fff;
	padding: .6rem 1rem;
	border-radius: 0 0 8px 0;
	z-index: 9999
}

.skip-link:focus {
	left: 0
}

/* Header / Nav */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 16, 20, .8);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #1b2b2d
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .6rem 0
}

.brand {
	display: flex;
	align-items: center;
	gap: .75rem;
	font-weight: 900;
	letter-spacing: .3px
}

.brand .logo {
	inline-size: 44px;
	block-size: 44px;
	display: grid;
	place-items: center
}

.brand-title {
	color: var(--accent)
}

nav ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	padding: 0;
	margin: 0
}

nav a {
	font-weight: 700;
	padding: .6rem .8rem;
	border-radius: 999px;
	transition: all 0.3s ease;
	position: relative;
	color: var(--text);
}

nav a:hover {
	background: #0f1c1f;
	text-decoration: none
}

nav a.active {
	background: var(--accent);
	color: var(--brand-dark);
}

nav a.active:hover {
	background: #e6b82e;
	color: var(--brand-dark);
	text-decoration: underline;
}

@media (max-width:860px) {
	nav a.active {
		background: var(--accent);
		color: var(--brand-dark);
		padding-left: 1.2rem;
	}
	
	nav a.active::before {
		content: "";
		position: absolute;
		left: 0.4rem;
		top: 50%;
		transform: translateY(-50%);
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: var(--brand-dark);
	}
}

.nav-toggle {
	display: none;
	color: white;
	background: transparent;
	border: 1px solid var(--brand);
	border-radius: 999px;
	padding: .6rem 1rem;
	font-weight: 700;
	transition: all 0.3s ease;
}

.nav-toggle:hover {
	background: var(--brand);
	color: var(--brand-dark);
}

.nav-toggle .menu-icon {
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.nav-toggle:hover .menu-icon {
	stroke: var(--brand-dark);
}

.nav-toggle .close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .hamburger {
	display: none;
}

.nav-toggle[aria-expanded="true"] .close {
	display: block;
}

@media (max-width:860px) {
	nav {
		position: fixed;
		inset: 60px 1rem auto 1rem;
		background: #0f1c1f;
		border: 1px solid #1b2b2d;
		border-radius: 12px;
		padding: 1rem;
		display: none
	}

	nav[aria-expanded="true"] {
		display: block
	}

	nav ul {
		flex-direction: column
	}

	.nav-toggle {
		display: inline-flex;
		align-items: center;
		gap: .5rem
	}
}


/* ===== hero ===== */
.hero {
	isolation: isolate;
	position: relative
}

.hero-content {
	max-width: 60ch;
}

.hero .inner {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 2rem;
	align-items: center;
	padding: 4rem 0
}

.hero h1 {
	font-size: clamp(2rem, 3vw + 1rem, 3.6rem);
	line-height: 1.05;
	margin: .2rem 0
}

.hero p {
	max-width: 60ch
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 1.1rem
}

.dog-badge {
	aspect-ratio: 1/1;
	border-radius: 28px;
	border: 3px solid var(--ink);
	background: linear-gradient(180deg, #fff, #f7fbfb);
	display: grid;
	place-items: center;
	box-shadow: var(--shadow)
}

.dog-badge img {
	width: 200px;
	max-width: 86%
}

.hero .squiggle {
	height: 10px;
	background: repeating-linear-gradient(90deg, var(--ink) 0 16px, transparent 16px 32px);
	mask: radial-gradient(6px, #000 98%, transparent) 0 50%/32px 20px repeat-x;
	-webkit-mask: radial-gradient(6px, #000 98%, transparent) 0 50%/32px 20px repeat-x
}

@media (max-width: 980px) {

	.hero-content {
		max-width: 100%;
		padding: 1rem;
	}

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

	.dog-badge {
		order: -1;
		margin: 0 auto;
		max-width: 360px
	}
}

/* Sections */
section {
	padding: 3.5rem 0;
  scroll-margin-top: var(--header-height);
}

section header{
    position: relative;
    z-index: 1;
    background: none !important;
}

section header.flow {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

section header.flow::before {
	content: "";
	display: block;
	width: 64px;
	height: 64px;
	background-image: url('images/leash1.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
	opacity: 0.8;
	filter: brightness(1.2);
	margin-top: 0.2rem;
}

/* The header-content wrapper takes up the remaining space */
.header-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 0 0 20px 0;
}

section header .header-content p {
	color: var(--muted);
	max-width: 70ch;
    font-size: 1.1rem;
	line-height: 1.3;
	margin: 0 0 0 0;
}

.section-title {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
	font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
	margin: 0;
	color: var(--accent);
}

@media (max-width: 768px) {
	section header.flow::before {
		width: 48px;
		height: 48px
	}
	
	section header.flow {
		gap: 1.25rem
	}
}

@media (max-width: 480px) {
	section header.flow::before {
		width: 36px;
		height: 36px
	}
	
	section header.flow {
		gap: 1rem
	}
	
	.section-title {
		font-size: clamp(1.4rem, 4vw, 2rem)
	}
}




/* Biography */
.bio-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem
}

.bio-card {
	background: --tan;
	border: 1px solid #1b2b2d;
	border-radius: var(--radius);
	padding: 1.2rem;
	box-shadow: var(--shadow)
}

.bio-card h3 {
	margin-top: 0;
	color: var(--brand)
}

.bio-cta {
	margin-top: 1rem
}

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

/* Services */
.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem
}

.card {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: var(--radius);
	padding: 1.2rem;
	box-shadow: var(--shadow)
}

.card h4 {
	margin: .2rem 0;
    font-weight: 600;
	color: var(--brand)
}

.price {
	font-weight: 900;
	font-size: 1.1rem;
	color: var(--accent)
}

.features {
	margin: .5rem 0 0 1rem
}

.features li {
	margin: .2rem 0
}

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

@media (max-width:680px) {
	.cards {
		grid-template-columns: 1fr
	}
}

/* Callouts */
.callout {
	background: #0d171b;
	border-block: 1px solid #1b2b2d
}

.callout-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	padding: 1rem 0
}

.callout .item {
	display: flex;
	gap: .9rem;
	align-items: center;
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: 12px;
	padding: .9rem
}

.callout .item svg {
	flex: 0 0 28px;
	color: var(--brand)
}

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

/* Steps */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2rem
}

.step {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: var(--radius);
	padding: 1.2rem;
	display: flex;
	gap: .9rem
}

.step svg {
	flex: 0 0 28px;
	color: var(--brand)
}

.step strong {
	display: block;
	color: var(--brand)
}

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

@media (max-width:640px) {
	.steps {
		grid-template-columns: 1fr
	}
}

/* Emergency Procedures */
.emergency-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem
}

.emergency-card {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: var(--radius);
	padding: 1.2rem;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	box-shadow: var(--shadow)
}

.emergency-icon {
	flex: 0 0 40px;
	height: 40px;
	display: grid;
	place-items: center;
	background: rgba(25, 198, 205, 0.1);
	border-radius: 50%;
	color: var(--brand)
}

.emergency-icon svg {
	width: 24px;
	height: 24px
}

.emergency-card h3 {
	margin: 0 0 0.5rem 0;
	color: var(--brand);
	font-size: 1.1rem
}

.emergency-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5
}

@media (max-width: 768px) {
	.emergency-grid {
		grid-template-columns: 1fr
	}
}

/* Availability/Booking */
.availability-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem
}

.schedule-overview {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow)
}

.schedule-overview h3 {
	margin-top: 0;
	color: var(--brand)
}

.time-slots {
	display: grid;
	gap: 1rem;
	margin-top: 1rem
}

.time-slot {
	background: #0d171b;
	border: 1px solid #1b2b2d;
	border-radius: 12px;
	padding: 1rem;
	position: relative
}

.time-slot strong {
	display: block;
	color: var(--text);
	margin-bottom: 0.3rem
}

.time-range {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 0.3rem
}

.availability-status {
	font-size: 0.85rem;
	font-weight: 600
}

.time-slot.available .availability-status {
	color: #4ade80
}

.time-slot.limited .availability-status {
	color: var(--accent)
}

.time-slot.weekend .availability-status {
	color: var(--brand)
}

.booking-info {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow)
}

.booking-info h3 {
	margin-top: 0;
	color: var(--brand)
}

.booking-rules {
	margin: 1rem 0;
	padding-left: 1rem
}

.booking-rules li {
	margin: 0.5rem 0;
	font-size: 0.95rem
}

.booking-rules strong {
	color: var(--accent)
}

.quick-booking {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #1b2b2d
}

.quick-booking h4 {
	margin: 0 0 1rem 0;
	color: var(--brand);
	font-size: 1rem
}

.booking-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem
}

.booking-buttons .btn {
	font-size: 0.9rem;
	padding: 0.7rem 1rem;
	text-align: center
}

@media (max-width: 1024px) {
	.availability-content {
		grid-template-columns: 1fr;
		gap: 1.5rem
	}
}

@media (max-width: 640px) {
	.booking-buttons {
		gap: 0.7rem
	}
	
	.booking-buttons .btn {
		font-size: 0.85rem
	}
}

/* FAQ */
.faq {
	margin-top: 2rem
}

details {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: 12px;
	padding: 1rem
}

details+details {
	margin-top: .8rem
}

details[open] {
	outline: 2px solid #1f3a40
}

summary {
	cursor: pointer;
	font-weight: 800
}

/* Portfolio */
.portfolio {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1rem;
	margin-top: 2rem
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .6rem
}

.gallery img {
	border-radius: 12px;
	height: 100%;
	object-fit: cover
}

.testimonials {
	display: grid;
	gap: 1rem
}

blockquote {
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: 12px;
	padding: 1rem;
	margin: 0
}

blockquote footer {
	color: var(--muted);
	margin-top: .6rem
}

@media (max-width:1024px) {
	.portfolio {
		grid-template-columns: 1fr
	}

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

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

/* Client bar */
.clientbar {
	background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
	color: #082326
}

.clientbar .container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1rem
}

.clientbar .links {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem
}

/* Only color pill links, not all links within the bar */
.clientbar .links a {
	color: #082326;
	font-weight: 800
}

.clientbar .links a {
	background: rgba(255, 255, 255, .7);
	padding: .6rem .9rem;
	border-radius: 999px
}

/* Ensure readable text on dark hover background */
.clientbar .links a:hover {
	color: var(--text)
}

/* Contact */
form {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem
}

.grid-2 {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr
}

.grid-3 {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, 1fr)
}

@media (max-width:720px) {

	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr
	}
}

label {
	display: block;
	font-weight: 700;
	margin-bottom: .3rem
}

input,
select,
textarea {
	width: 100%;
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: 12px;
	padding: .8rem;
	color: var(--text)
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--brand);
	outline-offset: 2px
}

textarea {
	min-height: 150px
}

.note {
	color: var(--muted);
	font-size: .95rem
}

/* Links */
.linkgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 1.2rem
}

.linkgrid a {
	display: block;
	background: #102225;
	border: 1px solid #1b2b2d;
	border-radius: 12px;
	padding: 1rem;
	font-weight: 700
}

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

/* Footer */
footer {
	background: #0c1618;
	border-top: 1px solid #1b2b2d;
	padding: 2rem 0;
	margin-top: 2rem
}

.footgrid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 1rem
}

.footgrid a {
	color: var(--muted)
}

.sub {
	color: #98a0a8;
	font-size: .9rem;
	margin-top: .1rem
}

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