/* Shared mock stylesheet — mobile-first. */

:root {
	--bg: #fbf7f2;
	--surface: #ffffff;
	--ink: #2a2420;
	--ink-soft: #6a5f57;
	--ink-faint: #a99e93;
	--line: #e8ded0;
	--accent: #a8623b;
	--accent-soft: #f2dccb;
	--accent-ink: #7a3f1e;
	--ok: #6b9a67;
	--ok-soft: #e0eede;
	--warn: #b58540;
	--warn-soft: #f8ecd0;
	--danger: #b56b6b;
	--danger-soft: #f5dede;
	--radius: 10px;
	--shadow: 0 1px 2px rgba(60, 40, 20, 0.04), 0 4px 12px rgba(60, 40, 20, 0.05);
}

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

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
}

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

h1, h2, h3 {
	font-family: "Iowan Old Style", "Georgia", "Times New Roman", serif;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0;
}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.15rem; }
h3 { font-size: 1rem; }

.container {
	max-width: 720px;
	margin: 0 auto;
	padding: 1rem 0.75rem 3rem;
}

/* Site header */
.site-header {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 10;
}
.site-header .inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0.75rem 0.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Iowan Old Style", Georgia, serif;
	font-size: 1.15rem;
	color: var(--ink);
}
.brand .glyph {
	width: 30px; height: 30px;
	background: var(--accent-soft);
	color: var(--accent-ink);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
.site-header .signin {
	font-size: 0.85rem;
	color: var(--ink-soft);
}
.brand .admin-badge {
	background: var(--accent-soft);
	color: var(--accent-ink);
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 0.25rem;
}
.signout {
	font-size: 0.85rem;
	color: var(--ink-soft);
	padding: 0.5rem;
	margin: -0.5rem;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}
.header-nav {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}
.header-nav a {
	font-size: 0.85rem;
	color: var(--ink-soft);
	padding: 0.5rem;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}
.header-nav a:hover { color: var(--ink); text-decoration: none; }

/* Admin action row */
.action-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.action-btn {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.75rem 0.5rem;
	color: var(--ink);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: center;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	box-shadow: var(--shadow);
}
.action-btn.primary {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}
.action-btn:hover { text-decoration: none; }

/* Admin day cells */
.cal td.day-partial { background: var(--warn-soft); }
.cal td.day-full { background: var(--danger-soft); }
.cal td.day-partial .day-num,
.cal td.day-full .day-num { font-weight: 600; }
.dog-count {
	position: absolute;
	bottom: 4px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 0.7rem;
	color: var(--ink-soft);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.cal td.day-full .dog-count { color: #8f4a4a; font-weight: 600; }
.cal td.day-partial .dog-count { color: #7a5a20; }

/* Section list */
.section {
	margin-top: 1.5rem;
}
.section h2 {
	margin-bottom: 0.5rem;
	padding: 0 0.25rem;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.section h2 .count {
	font-family: ui-sans-serif, system-ui, sans-serif;
	font-size: 0.8rem;
	color: var(--ink-faint);
	font-weight: 400;
}
.card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.item {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	display: block;
	color: inherit;
	text-decoration: none;
	box-shadow: var(--shadow);
}
.item:hover { text-decoration: none; border-color: var(--accent); }
.item .item-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.15rem;
}
.item .item-title {
	font-weight: 600;
	color: var(--ink);
}
.item .item-dogs {
	font-size: 0.8rem;
	color: var(--ink-soft);
	white-space: nowrap;
}
.item .item-dates {
	color: var(--ink-soft);
	font-size: 0.9rem;
}
.item .item-notes {
	color: var(--ink-soft);
	font-size: 0.85rem;
	margin-top: 0.3rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.item.block-item .item-title {
	font-weight: 500;
}
.item.block-item::before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 100%;
	background: var(--danger);
	border-radius: 3px;
	margin-right: 0.5rem;
	vertical-align: middle;
}

/* Client list item */
.item .item-sub {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	color: var(--ink-soft);
	font-size: 0.85rem;
	margin-top: 0.15rem;
}
.item .item-sub .sep { color: var(--ink-faint); }
.item .item-upcoming {
	color: var(--accent-ink);
	font-size: 0.85rem;
	margin-top: 0.3rem;
	font-weight: 500;
}

/* Search bar */
.search {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.search .field-input { flex: 1; }
.search .btn-primary {
	flex: 0 0 auto;
	padding: 0 1rem;
	font-size: 0.95rem;
	min-height: 48px;
}

/* Meta list (client detail) */
.meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
	color: var(--ink-soft);
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}
.meta-row .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.meta-row .meta-item strong { color: var(--ink); font-weight: 600; }

/* Login */
.auth-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem 3rem;
}
.auth-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.auth-brand .glyph {
	width: 52px;
	height: 52px;
	font-size: 1.6rem;
	background: var(--accent-soft);
	color: var(--accent-ink);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.auth-brand .name {
	font-family: "Iowan Old Style", Georgia, serif;
	font-size: 1.4rem;
	color: var(--ink);
}
.auth-card {
	width: 100%;
	max-width: 380px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}
.auth-card h1 {
	font-size: 1.3rem;
	margin-bottom: 1.25rem;
	text-align: center;
}
.form-error {
	background: var(--danger-soft);
	border: 1px solid #e6b8b8;
	color: #8f4a4a;
	padding: 0.6rem 0.85rem;
	border-radius: var(--radius);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

/* Home page */
.hero {
	text-align: center;
	padding: 1.5rem 0 2rem;
}
.hero h1 {
	font-size: 1.9rem;
	margin-bottom: 0.75rem;
	line-height: 1.2;
}
.hero h1 .hero-sub {
	display: inline-block;
	font-size: 1.15rem;
	color: var(--ink-soft);
	font-weight: 400;
	font-style: italic;
	margin-top: 0.35rem;
}
.hero p.tagline {
	color: var(--ink-soft);
	font-size: 1.05rem;
	margin: 0 auto;
	max-width: 32rem;
}
.hero .primary-cta {
	display: inline-block;
	margin-top: 1.5rem;
	background: var(--accent);
	color: #fff;
	padding: 0.9rem 1.5rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	min-height: 50px;
	line-height: 1;
	text-decoration: none;
}
.hero .primary-cta:hover { text-decoration: none; opacity: 0.9; }

.photo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin: 1.5rem 0 2rem;
}
.photo {
	margin: 0;
	background: var(--accent-soft);
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
}
.photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.photo-hero {
	margin: 1.5rem 0 0.75rem;
	aspect-ratio: 3 / 2;
}

/* Small sticker used inline as a bullet next to section headings. */
.h2-sticker {
	display: inline-block;
	width: 66px;
	height: 66px;
	object-fit: contain;
	vertical-align: middle;
	margin-right: 0.35rem;
}
@media (min-width: 640px) {
	.h2-sticker { width: 78px; height: 78px; }
}

.copy-block { margin: 2rem 0; }
.copy-block h2 { margin-bottom: 0.75rem; }
.copy-block p {
	margin: 0 0 1rem;
	color: var(--ink-soft);
	font-size: 1rem;
}
.copy-block p:last-child { margin-bottom: 0; }
.copy-block ul {
	color: var(--ink-soft);
	padding-left: 1.25rem;
	margin: 0.25rem 0 0;
}
.copy-block ul li { margin-bottom: 0.35rem; }
.copy-block ul li:last-child { margin-bottom: 0; }
.copy-block ul strong { color: var(--ink); }

.home-cta {
	background: var(--accent-soft);
	border: 1px solid #e9c9b1;
	border-radius: var(--radius);
	padding: 1.5rem;
	text-align: center;
	margin: 2rem 0;
}
.home-cta h2 { color: var(--accent-ink); margin-bottom: 0.5rem; }
.home-cta p { margin: 0 0 1rem; color: var(--accent-ink); }
.home-cta .btn-primary {
	background: var(--accent);
	color: #fff;
	padding: 0.85rem 1.25rem;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 600;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-strip {
	border-top: 1px solid var(--line);
	padding: 1.5rem 0;
	margin-top: 2rem;
	text-align: center;
	color: var(--ink-soft);
}
.contact-strip a {
	display: block;
	padding: 0.5rem;
	margin: 0.25rem 0;
	color: var(--accent-ink);
	font-size: 1rem;
}
.contact-strip .contact-primary {
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 0.5rem;
}
.contact-strip .contact-secondary {
	font-size: 0.9rem;
	color: var(--ink-soft);
}

@media (min-width: 640px) {
	.photo-grid { grid-template-columns: 1fr 1fr; }
}
.empty-state {
	background: var(--surface);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 1.25rem;
	text-align: center;
	color: var(--ink-faint);
	font-size: 0.9rem;
}

/* Page header with back + title */
.page-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.page-head .back {
	color: var(--ink);
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.5rem;
	margin: -0.5rem;
	min-height: 44px;
	min-width: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.page-head h1 {
	font-size: 1.35rem;
	flex: 1;
}

/* Form */
.form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.field-label {
	font-size: 0.85rem;
	color: var(--ink-soft);
	font-weight: 500;
	letter-spacing: 0.02em;
}
.field-input,
.field-select,
.field-textarea {
	width: 100%;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.75rem 0.85rem;
	font: inherit;
	font-size: 1rem;
	color: var(--ink);
	min-height: 48px;
	appearance: none;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-textarea {
	min-height: 96px;
	resize: vertical;
	font-family: inherit;
}
.field-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236a5f57' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.25rem;
}
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.field-hint {
	font-size: 0.8rem;
	color: var(--ink-faint);
	margin-top: 0.15rem;
}

/* Segmented control */
.segmented {
	display: flex;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 3px;
	gap: 3px;
}
.segmented button {
	flex: 1;
	background: transparent;
	border: none;
	padding: 0.6rem;
	border-radius: 6px;
	font: inherit;
	font-size: 0.95rem;
	color: var(--ink-soft);
	cursor: pointer;
	min-height: 42px;
}
.segmented button[aria-pressed="true"],
.segmented input:checked + label {
	background: var(--surface);
	color: var(--ink);
	font-weight: 600;
	box-shadow: 0 1px 2px rgba(60, 40, 20, 0.08);
}
.segmented label {
	flex: 1;
	background: transparent;
	padding: 0.6rem;
	border-radius: 6px;
	font-size: 0.95rem;
	color: var(--ink-soft);
	cursor: pointer;
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

/* Availability panel (styled variant of mocks palette) */
.avail-card {
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	font-size: 0.95rem;
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	line-height: 1.4;
}
.avail-card .icon {
	font-size: 1.1rem;
	line-height: 1;
	margin-top: 0.1rem;
}
.avail-ok {
	background: var(--ok-soft);
	color: #2d5b2b;
	border: 1px solid #bcd9b8;
}
.avail-warn {
	background: var(--warn-soft);
	color: #6a4a10;
	border: 1px solid #e8d4a0;
}
.avail-idle {
	background: var(--bg);
	color: var(--ink-faint);
	border: 1px dashed var(--line);
	font-style: italic;
}
.overlap-body { flex: 1; }
.overlap-list {
	margin: 0.4rem 0 0;
	padding-left: 1.1rem;
}
.overlap-list li { margin-top: 0.25rem; }
.overlap-list a { color: var(--accent-ink); font-weight: 500; }

/* Form actions */
.form-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.btn-primary,
.btn-secondary {
	padding: 0.9rem 1rem;
	border-radius: var(--radius);
	font: inherit;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	min-height: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
}
.btn-primary {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}
.btn-secondary {
	background: transparent;
	color: var(--ink-soft);
	border-color: var(--line);
}
.btn-primary:hover,
.btn-secondary:hover { text-decoration: none; opacity: 0.9; }
.btn-danger {
	background: transparent;
	color: var(--danger);
	border: 1px solid var(--danger);
	padding: 0.9rem 1rem;
	border-radius: var(--radius);
	font: inherit;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	min-height: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}
.btn-danger:hover { background: var(--danger-soft); text-decoration: none; }

.danger-zone {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.danger-zone .label {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

/* Filter row */
.filter-row {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.75rem 0.9rem;
	box-shadow: var(--shadow);
	margin-bottom: 1rem;
}
.filter-row .label {
	color: var(--ink-soft);
	font-size: 0.9rem;
	display: block;
	margin-bottom: 0.5rem;
}
.chip-group {
	display: flex;
	gap: 0.3rem;
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 4px;
	width: 100%;
}
.chip {
	flex: 1;
	background: transparent;
	border: none;
	padding: 0.55rem 0;
	border-radius: 999px;
	cursor: pointer;
	font: inherit;
	color: var(--ink-soft);
	min-height: 44px;
	font-size: 1rem;
}
.chip[aria-pressed="true"],
.chip-group input:checked + .chip {
	background: var(--accent);
	color: #fff;
	font-weight: 600;
}
.chip-group input,
.segmented input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.chip-group .chip { display: flex; align-items: center; justify-content: center; }
.filter-summary {
	color: var(--ink-soft);
	font-size: 0.85rem;
	margin-top: 0.6rem;
	text-align: center;
}
.filter-summary strong { color: var(--ink); }

/* Calendar nav */
.month-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
	gap: 0.5rem;
}
.month-nav .arrow {
	background: var(--surface);
	border: 1px solid var(--line);
	color: var(--ink);
	padding: 0.6rem 0.8rem;
	border-radius: var(--radius);
	cursor: pointer;
	text-decoration: none;
	font-size: 0.95rem;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}
.month-nav h1 {
	text-align: center;
	font-size: 1.25rem;
	flex: 1;
}

/* Calendar grid */
.cal {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	table-layout: fixed;
}
.cal th {
	font-weight: 500;
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-faint);
	padding: 0.45rem 0;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}
.cal td {
	height: 52px;
	vertical-align: top;
	padding: 0.3rem 0;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--surface);
	position: relative;
	text-align: center;
}
.cal td:last-child { border-right: none; }
.cal tr:last-child td { border-bottom: none; }
.day-num {
	font-size: 0.9rem;
	color: var(--ink);
	line-height: 1;
	padding-top: 0.15rem;
}
.today .day-num {
	background: var(--accent);
	color: #fff;
	width: 26px; height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	padding: 0;
}
.outside .day-num { color: var(--ink-faint); }
.outside { background: #faf5ed; opacity: 0.6; }
.unavailable { background: repeating-linear-gradient(45deg, #fff, #fff 6px, #f5eee2 6px, #f5eee2 12px); }
.unavailable .day-num { color: var(--ink-faint); }
.available .status-dot {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--ok);
}
.unavailable .status-dot {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--danger);
	opacity: 0.6;
}
.blocked .badge {
	position: absolute;
	bottom: 2px;
	left: 0;
	right: 0;
	text-align: center;
	color: var(--ink-faint);
	font-size: 1rem;
	line-height: 1;
	font-weight: 400;
}

/* Legend */
.legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin: 0.75rem 0.25rem 1.25rem;
	font-size: 0.8rem;
	color: var(--ink-soft);
}
.legend > span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.legend .swatch {
	width: 12px; height: 12px;
	border-radius: 3px;
	flex-shrink: 0;
}
.legend .dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}
.dot-ok { background: var(--ok); }
.dot-na { background: var(--danger); opacity: 0.6; }
.legend .x-mark {
	width: 12px;
	height: 12px;
	line-height: 12px;
	text-align: center;
	color: var(--ink-faint);
	font-size: 14px;
	flex-shrink: 0;
}
.swatch.ok { background: var(--ok); }
.swatch.na { background: repeating-linear-gradient(45deg, #fff, #fff 3px, #d8cebc 3px, #d8cebc 6px); border: 1px solid var(--line); }

/* CTA card */
.cta {
	margin-top: 1.5rem;
	background: var(--accent-soft);
	border: 1px solid #e9c9b1;
	border-radius: var(--radius);
	padding: 1.25rem;
	text-align: center;
}
.cta h2 { color: var(--accent-ink); margin-bottom: 0.25rem; }
.cta p { margin: 0 0 1rem; color: var(--accent-ink); font-size: 0.95rem; }
.cta .contact {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	align-items: stretch;
}
.cta .phone-btn, .cta .email-btn {
	display: block;
	padding: 0.85rem;
	background: var(--accent);
	color: #fff;
	border-radius: var(--radius);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	min-height: 48px;
}
.cta .call-link {
	color: var(--accent-ink);
	font-size: 0.9rem;
	padding: 0.5rem;
	text-align: center;
}
.cta .phone-btn:hover { text-decoration: none; opacity: 0.9; }

/* Desktop enhancement */
@media (min-width: 640px) {
	html, body { font-size: 16px; }
	.container { padding: 1.5rem 1.25rem 4rem; }
	h1 { font-size: 1.9rem; }
	.site-header .inner { padding: 1.25rem; }
	.brand { font-size: 1.3rem; }
	.filter-row {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 0.9rem 1.25rem;
	}
	.filter-row .label { margin-bottom: 0; }
	.chip-group { width: auto; }
	.chip { flex: none; padding: 0.4rem 1rem; }
	.filter-summary { margin-top: 0; margin-left: auto; text-align: right; }
	.month-nav h1 { font-size: 1.5rem; }
	.cal td { height: 88px; padding: 0.5rem 0.55rem; text-align: left; }
	.day-num { font-size: 0.95rem; padding-top: 0; }
	.available .status-dot,
	.unavailable .status-dot { bottom: 0.6rem; left: 0.55rem; transform: none; width: 8px; height: 8px; }
	.blocked .badge { font-size: 1.1rem; left: 0.55rem; right: auto; text-align: left; bottom: 0.35rem; }
	.cta {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
		text-align: left;
	}
	.cta p { margin: 0; }
	.cta .contact { flex-direction: row; gap: 0.5rem; }
}
