@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

	:root {
		--sage: #7A9B7E;
		--sage-light: #A8C5A9;
		--sage-dark: #5A7B5D;
		--terracotta: #D4785C;
		--terracotta-light: #E19A86;
		--cream: #FBF7F0;
		--cream-dark: #F3EBE1;
		--charcoal: #2D3436;
		--slate: #636E72;
		--white: #FFFFFF;
		--shadow-soft: 0 4px 24px rgba(122, 155, 126, 0.12);
		--shadow-hover: 0 12px 40px rgba(122, 155, 126, 0.18);
		--shadow-card: 0 2px 16px rgba(45, 52, 54, 0.06);
	}

	html {
		scroll-behavior: smooth;
	}

	* {
		box-sizing: border-box;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	body {
		margin: 0;
		padding: 0;
		padding-left: env(safe-area-inset-left);
		padding-right: env(safe-area-inset-right);
		background: var(--cream);
		font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
		color: var(--charcoal);
		line-height: 1.7;
		min-height: 100vh;
		overflow-x: hidden;
		cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' fill='%237A9B7E' opacity='0.5'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%237A9B7E'/%3E%3C/svg%3E") 12 12, auto;
	}

	body::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 60vh;
		background: radial-gradient(ellipse at top, rgba(168, 197, 169, 0.15) 0%, transparent 60%),
		            linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
		z-index: -1;
	}

	body::after {
		content: '';
		position: fixed;
		bottom: -200px;
		right: -200px;
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, rgba(212, 120, 92, 0.08) 0%, transparent 70%);
		border-radius: 50%;
		z-index: -1;
		pointer-events: none;
	}

	/* Decorative paw prints in background */
	body::before {
		content: '🐾';
		position: fixed;
		top: 10%;
		left: 5%;
		font-size: 40px;
		opacity: 0.1;
		transform: rotate(-25deg);
		pointer-events: none;
		z-index: -1;
		animation: float 6s ease-in-out infinite;
	}

	h1 {
		margin: 0;
		font-family: 'Crimson Pro', Georgia, serif;
		font-weight: 700;
		letter-spacing: -0.5px;
	}

	h2 {
		margin: 0;
		font-family: 'Crimson Pro', Georgia, serif;
		font-weight: 600;
		letter-spacing: -0.3px;
	}

	main {
		max-width: 1100px;
		margin: 0 auto;
		padding: 80px 40px;
		position: relative;
	}

	/* Header Section */
	.header {
		text-align: center;
		margin-bottom: 80px;
		animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.logo {
		width: 110px;
		height: 110px;
		background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
		border-radius: 32px;
		margin: 0 auto 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 52px;
		box-shadow: var(--shadow-soft);
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		position: relative;
		transform: rotate(-5deg);
		cursor: pointer;
	}

	.logo::before {
		content: '';
		position: absolute;
		inset: -3px;
		border-radius: 35px;
		background: linear-gradient(135deg, var(--sage-light), var(--terracotta-light));
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: -1;
		filter: blur(12px);
	}

	.logo::after {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: 32px;
		background: radial-gradient(circle at center, transparent 0%, rgba(255,255,255,0.3) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.logo:hover {
		transform: rotate(0deg) translateY(-8px) scale(1.05);
		box-shadow: var(--shadow-hover);
	}

	.logo:hover::before {
		opacity: 0.4;
	}

	.logo:hover::after {
		opacity: 1;
		animation: shimmer 1.5s ease-in-out infinite;
	}

	.logo:active {
		transform: rotate(0deg) translateY(-6px) scale(1.02);
	}

	.welcome {
		font-family: 'DM Sans', sans-serif;
		font-size: clamp(18px, 3vw, 22px);
		color: var(--sage-dark);
		margin: 20px 0 12px;
		text-align: center;
		font-weight: 500;
		letter-spacing: 2px;
		text-transform: uppercase;
		opacity: 0.85;
	}

	.practice-name {
		font-family: 'Crimson Pro', Georgia, serif;
		font-size: clamp(36px, 6vw, 56px);
		color: var(--charcoal);
		margin: 25px 0 18px;
		text-align: center;
		font-weight: 700;
		line-height: 1.15;
		letter-spacing: -1px;
	}

	.practice-name strong {
		background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--terracotta) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		display: block;
		filter: drop-shadow(0 2px 4px rgba(122, 155, 126, 0.1));
		transition: filter 0.3s ease;
	}

	.practice-name:hover strong {
		filter: drop-shadow(0 4px 8px rgba(122, 155, 126, 0.2));
	}

	.subtitle {
		font-family: 'DM Sans', sans-serif;
		font-size: 18px;
		color: var(--slate);
		font-weight: 400;
		margin-top: 15px;
		font-style: italic;
	}

	/* Info Banner */
	.info_text {
		background: linear-gradient(135deg, #FEF7E7 0%, #FCE8C5 100%);
		border: 2px solid var(--terracotta-light);
		border-radius: 24px;
		padding: 32px 40px;
		margin: 30px 0;
		box-shadow: var(--shadow-card);
		animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
		position: relative;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.info_text:hover {
		box-shadow: var(--shadow-hover);
		transform: translateY(-2px);
	}

	.info_text::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.83 60h2.828zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83z' fill='%23D4785C' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
		opacity: 1;
		z-index: 0;
	}

	.info_text p {
		margin: 0;
		color: #8B5A3C;
		font-size: 17px;
		font-weight: 500;
		line-height: 1.7;
		position: relative;
		z-index: 1;
	}

	.info_note {
		font-size: 15px;
		font-weight: normal;
		color: #A0653E;
		margin-top: 15px;
	}

	/* Alert/Notification Banner Styles */
	.alert-banner {
		background: var(--white);
		border: 2px solid #F5BDB4;
		border-radius: 24px;
		padding: 30px 40px;
		margin: 20px 0;
		box-shadow: var(--shadow-card);
		animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
		position: relative;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.alert-banner:hover {
		box-shadow: var(--shadow-hover);
		transform: translateY(-2px);
	}

	.alert-banner::before {
		content: '';
		position: absolute;
		top: 24px;
		left: 24px;
		width: 36px;
		height: 36px;
		background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z' fill='%23D4785C' opacity='0.9'/%3E%3C/svg%3E");
		background-size: contain;
		background-repeat: no-repeat;
		animation: pulse 2s ease-in-out infinite;
	}

	.alert-banner::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background: linear-gradient(135deg, rgba(212, 120, 92, 0.05) 0%, transparent 50%);
		z-index: 0;
	}

	.alert-banner strong {
		color: #B8503C;
		font-size: 17px;
		font-weight: 600;
		line-height: 1.7;
		display: block;
		padding-left: 60px;
		position: relative;
		z-index: 1;
	}

	/* Success/Info Banner */
	.info-banner {
		background: var(--white);
		border: 2px solid var(--sage-light);
		border-radius: 24px;
		padding: 30px 40px;
		margin: 20px 0;
		box-shadow: var(--shadow-card);
		animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
		position: relative;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.info-banner:hover {
		box-shadow: var(--shadow-hover);
		transform: translateY(-2px);
	}

	.info-banner::before {
		content: '';
		position: absolute;
		top: 24px;
		left: 24px;
		width: 36px;
		height: 36px;
		background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%237A9B7E' opacity='0.9'/%3E%3Cpath d='M11 7h2v2h-2zm0 4h2v6h-2z' fill='white'/%3E%3C/svg%3E");
		background-size: contain;
		background-repeat: no-repeat;
		animation: float 3s ease-in-out infinite;
	}

	.info-banner::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background: linear-gradient(135deg, rgba(122, 155, 126, 0.05) 0%, transparent 50%);
		z-index: 0;
	}

	.info-banner strong {
		color: var(--sage-dark);
		font-size: 17px;
		font-weight: 600;
		line-height: 1.7;
		display: block;
		padding-left: 60px;
		position: relative;
		z-index: 1;
	}

	/* Contact Cards */
	.contact-section {
		display: grid;
		grid-template-columns: 1fr;
		gap: 28px;
		margin: 50px 0;
	}

	.contact-card {
		background: var(--white);
		border: 2px solid rgba(122, 155, 126, 0.15);
		border-radius: 28px;
		padding: 40px;
		box-shadow: var(--shadow-card);
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		animation: fadeInUp 0.8s ease-out;
		animation-fill-mode: both;
		position: relative;
		overflow: hidden;
		cursor: pointer;
	}

	.contact-card:nth-child(1) { animation-delay: 0.1s; }
	.contact-card:nth-child(2) { animation-delay: 0.2s; }
	.contact-card:nth-child(3) { animation-delay: 0.3s; }

	.contact-card::before {
		content: '';
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		background: linear-gradient(135deg, var(--sage-light), var(--terracotta-light));
		border-radius: 28px;
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: -1;
	}

	.contact-card::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(122, 155, 126, 0.2) 0%, transparent 70%);
		transform: translate(-50%, -50%);
		transition: width 0.6s ease, height 0.6s ease;
		pointer-events: none;
		z-index: 0;
	}

	.contact-card:hover::after {
		width: 500px;
		height: 500px;
	}

	.contact-card:hover {
		transform: translateY(-12px);
		box-shadow: var(--shadow-hover);
		border-color: transparent;
		background: linear-gradient(135deg, #FFFFFF 0%, #F8FAF9 100%);
	}

	.contact-card:hover::before {
		opacity: 1;
	}

	.contact-card:hover .card-content,
	.contact-card:hover address {
		color: var(--charcoal);
	}

	.contact-card > * {
		position: relative;
		z-index: 1;
	}

	.card-icon {
		width: 80px;
		height: 80px;
		background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
		border-radius: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 28px;
		font-size: 38px;
		box-shadow: 0 8px 20px rgba(212, 120, 92, 0.25);
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
		position: relative;
	}

	.icon-svg {
		width: 36px;
		height: 36px;
		transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.card-icon-small .icon-svg {
		width: 30px;
		height: 30px;
	}

	.contact-card:hover .icon-svg {
		transform: scale(1.15) rotate(-5deg);
		filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
	}

	.card-icon::before {
		content: '';
		position: absolute;
		inset: -4px;
		background: inherit;
		border-radius: 26px;
		filter: blur(16px);
		opacity: 0;
		transition: opacity 0.5s ease;
		z-index: -1;
	}

	.contact-card:hover .card-icon {
		transform: scale(1.1) rotate(-8deg);
		box-shadow: 0 12px 30px rgba(212, 120, 92, 0.35);
	}

	.contact-card:hover .card-icon::before {
		opacity: 0.7;
	}

	.card-title {
		font-family: 'Crimson Pro', Georgia, serif;
		font-size: 24px;
		font-weight: 600;
		color: var(--sage-dark);
		margin-bottom: 20px;
		text-align: center;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.contact-card:hover .card-title {
		color: var(--sage);
		transform: translateY(-3px) scale(1.05);
		text-shadow: 0 2px 12px rgba(122, 155, 126, 0.3);
		letter-spacing: 0.5px;
	}

	/* Compact Contact Card Styles */
	.contact-card-compact {
		display: flex;
		align-items: center;
		gap: 20px;
		padding: 28px 32px;
		text-align: left;
	}

	.card-icon-small {
		width: 65px;
		height: 65px;
		font-size: 32px;
		margin: 0;
		flex-shrink: 0;
	}

	.card-compact-content {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.card-title-inline {
		font-family: 'Crimson Pro', Georgia, serif;
		font-size: 18px;
		font-weight: 600;
		color: var(--sage-dark);
		margin: 0;
		text-align: left;
		opacity: 0.8;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		font-size: 13px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.contact-card:hover .card-title-inline {
		color: var(--white);
		opacity: 1;
		letter-spacing: 1.5px;
		transform: translateY(-2px);
		text-shadow: 0 2px 8px rgba(122, 155, 126, 0.4);
		background: linear-gradient(135deg, var(--sage), var(--terracotta));
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
	}

	.contact-link-prominent {
		color: var(--charcoal);
		text-decoration: none;
		font-weight: 600;
		font-size: 20px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		display: inline-flex;
		align-items: center;
		-webkit-tap-highlight-color: transparent;
		position: relative;
		cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%237A9B7E' opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%237A9B7E'/%3E%3C/svg%3E") 12 12, pointer;
		padding: 8px 12px;
		margin: -8px -12px;
		border-radius: 8px;
		background: transparent;
	}

	.contact-link-prominent::before {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: 8px;
		background: linear-gradient(135deg, rgba(122, 155, 126, 0.15), rgba(168, 197, 169, 0.2));
		opacity: 0;
		transition: opacity 0.3s ease;
		z-index: -1;
	}

	.contact-link-prominent::after {
		content: '';
		position: absolute;
		bottom: 8px;
		left: 12px;
		right: 12px;
		height: 3px;
		background: linear-gradient(90deg, var(--sage), var(--terracotta));
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 2px 8px rgba(122, 155, 126, 0.3);
	}

	.contact-link-prominent:hover {
		color: var(--white);
		transform: translateX(4px);
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	}

	.contact-link-prominent:hover::before {
		opacity: 1;
		background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
	}

	.contact-link-prominent:hover::after {
		transform: scaleX(1);
	}

	.contact-link-prominent span {
		position: relative;
		z-index: 1;
	}

	.contact-link-prominent:active {
		transform: translateX(2px) scale(0.98);
	}

	.card-content {
		text-align: center;
		color: var(--charcoal);
		font-size: 16px;
		line-height: 1.8;
	}

	.card-content strong {
		transition: all 0.3s ease;
		display: inline-block;
	}

	.contact-card:hover .card-content strong {
		color: var(--sage);
		transform: translateY(-1px);
		text-shadow: 0 1px 4px rgba(122, 155, 126, 0.2);
	}

	/* Address Card - Make clickable */
	.address-card {
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		display: block;
		text-decoration: none;
		color: inherit;
	}

	.address-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 36px rgba(122, 155, 126, 0.25);
	}

	.address-card address {
		transition: all 0.3s ease;
	}

	.address-card:hover address {
		text-decoration: underline;
		text-decoration-color: var(--sage);
		text-underline-offset: 3px;
	}

	.address {
		font-style: normal;
	}

	.contact-link {
		color: var(--sage-dark);
		text-decoration: none;
		font-weight: 600;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		display: inline-flex;
		align-items: center;
		gap: 5px;
		-webkit-tap-highlight-color: transparent;
		padding: 14px 28px;
		border-radius: 16px;
		background: linear-gradient(135deg, rgba(122, 155, 126, 0.12) 0%, rgba(168, 197, 169, 0.08) 100%);
		border: 2px solid rgba(122, 155, 126, 0.2);
		position: relative;
		overflow: hidden;
		cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%237A9B7E' opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%237A9B7E'/%3E%3C/svg%3E") 12 12, pointer;
	}

	.contact-link::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: linear-gradient(135deg, var(--sage), var(--sage-light));
		transform: translate(-50%, -50%);
		transition: width 0.5s ease, height 0.5s ease;
	}

	.contact-link:hover::before {
		width: 300px;
		height: 300px;
	}

	.contact-link:hover {
		color: var(--white);
		background: transparent;
		border-color: var(--sage);
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(122, 155, 126, 0.3);
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	}

	.contact-link span {
		position: relative;
		z-index: 1;
	}

	.contact-link:active {
		transform: translateY(0) scale(0.98);
	}

	/* Focus states for accessibility */
	.contact-link:focus-visible,
	.contact-card:focus-visible,
	.logo:focus-visible {
		outline: 3px solid var(--sage-light);
		outline-offset: 4px;
		border-radius: 18px;
	}

	.hours-list li:focus-within {
		border-color: var(--sage);
		box-shadow: 0 0 0 4px rgba(122, 155, 126, 0.1);
	}

	/* Office Hours Styling */
	.office_hours {
		background: linear-gradient(135deg, rgba(168, 197, 169, 0.15) 0%, rgba(122, 155, 126, 0.08) 100%);
		border: 2px solid var(--sage-light);
		border-radius: 28px;
		padding: 40px;
		margin: 28px 0;
		box-shadow: var(--shadow-card);
		position: relative;
		overflow: hidden;
		animation: fadeInUp 0.8s ease-out 0.4s both;
	}

	.office_hours::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237A9B7E' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
		opacity: 1;
		z-index: 0;
	}

	.office_hours::after {
		content: '🐾';
		position: absolute;
		bottom: 24px;
		right: 24px;
		font-size: 72px;
		opacity: 0.08;
		z-index: 0;
		transition: transform 0.3s ease;
	}

	.office_hours:hover::after {
		transform: rotate(-10deg) scale(1.05);
	}

	.office_hours strong {
		color: var(--sage-dark);
		font-family: 'Crimson Pro', Georgia, serif;
		font-size: 28px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-bottom: 30px;
		text-align: center;
		position: relative;
		z-index: 1;
	}

	.hours-icon {
		width: 32px;
		height: 32px;
		color: var(--sage);
		transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	}

	.office_hours:hover .hours-icon {
		transform: rotate(360deg);
	}

	.hours-details {
		color: var(--charcoal);
		font-size: 16px;
		line-height: 1.8;
		position: relative;
		z-index: 1;
	}

	.hours-list {
		list-style: none;
		padding: 0;
		margin: 0;
		text-align: left;
		max-width: 650px;
		margin-left: auto;
		margin-right: auto;
	}

	.hours-list li {
		padding: 18px 28px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-radius: 18px;
		margin-bottom: 12px;
		background: var(--white);
		border: 2px solid rgba(122, 155, 126, 0.15);
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 2px 8px rgba(45, 52, 54, 0.04);
		position: relative;
		overflow: hidden;
		cursor: default;
	}

	.hours-list li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 0;
		background: linear-gradient(90deg, var(--sage-light), transparent);
		transition: width 0.4s ease;
		opacity: 0.2;
	}

	.hours-list li:hover::before {
		width: 100%;
	}

	.hours-list li:hover {
		background: linear-gradient(135deg, #FFFFFF 0%, #F8FBF9 100%);
		border-color: var(--sage-light);
		transform: translateX(8px);
		box-shadow: 0 4px 16px rgba(122, 155, 126, 0.15);
	}

	.hours-list li:last-child {
		margin-bottom: 0;
	}

	.hours-day {
		font-weight: 600;
		color: var(--sage-dark);
		min-width: 130px;
		font-size: 16px;
		display: flex;
		align-items: center;
		gap: 12px;
		position: relative;
		z-index: 1;
		transition: all 0.3s ease;
	}

	.hours-day::before {
		content: '🐾';
		font-size: 16px;
		opacity: 0.5;
		transition: all 0.3s ease;
		flex-shrink: 0;
	}

	.hours-list li:hover .hours-day {
		transform: translateX(4px);
		color: var(--sage);
	}

	.hours-list li:hover .hours-day::before {
		opacity: 1;
		transform: scale(1.2) rotate(-10deg);
	}

	.hours-time {
		color: var(--charcoal);
		text-align: right;
		font-size: 15px;
		font-weight: 500;
		position: relative;
		z-index: 1;
		transition: color 0.3s ease;
	}

	.hours-list li:hover .hours-time {
		color: var(--charcoal);
		font-weight: 600;
	}

	/* Emergency Service Styling */
	.emergency-service {
		background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
		border: 2px solid #FCA5A5;
		border-radius: 28px;
		padding: 40px;
		margin: 40px 0 28px;
		box-shadow: var(--shadow-card);
		position: relative;
		overflow: hidden;
		animation: fadeInUp 0.8s ease-out 0.5s both;
	}

	.emergency-service::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23EF4444' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
		opacity: 1;
		z-index: 0;
	}

	.emergency-service strong {
		color: #991B1B;
		font-family: 'Crimson Pro', Georgia, serif;
		font-size: 28px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-bottom: 20px;
		text-align: center;
		position: relative;
		z-index: 1;
	}

	.emergency-icon {
		width: 32px;
		height: 32px;
		color: #DC2626;
		transition: transform 0.3s ease;
	}

	.emergency-service:hover .emergency-icon {
		transform: scale(1.1);
	}

	.emergency-content {
		position: relative;
		z-index: 1;
		text-align: center;
	}

	.emergency-link {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 16px 32px;
		background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
		color: white;
		text-decoration: none;
		border-radius: 16px;
		font-weight: 600;
		font-size: 18px;
		transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
		box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
		position: relative;
		overflow: hidden;
	}

	.emergency-link::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.2);
		transform: translate(-50%, -50%);
		transition: width 0.5s ease, height 0.5s ease;
	}

	.emergency-link:hover::before {
		width: 300px;
		height: 300px;
	}

	.emergency-link:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
	}

	.emergency-link:active {
		transform: translateY(-1px);
	}

	.link-icon {
		width: 20px;
		height: 20px;
		position: relative;
		z-index: 1;
		transition: transform 0.3s ease;
	}

	.emergency-link:hover .link-icon {
		transform: translateX(3px) translateY(-3px);
	}

	.emergency-link span {
		position: relative;
		z-index: 1;
	}

	/* Footer Styling */
	.footer {
		background: linear-gradient(135deg, var(--charcoal) 0%, #1F2937 100%);
		color: var(--cream);
		margin-top: 80px;
		position: relative;
		overflow: hidden;
	}

	.footer::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, var(--sage), var(--terracotta), var(--sage));
	}

	.footer-content {
		max-width: 1100px;
		margin: 0 auto;
		padding: 60px 40px 40px;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 40px;
	}

	.footer-section {
		animation: fadeInUp 0.8s ease-out;
	}

	.footer-title {
		font-family: 'Crimson Pro', Georgia, serif;
		font-size: 20px;
		font-weight: 600;
		color: var(--sage-light);
		margin-bottom: 16px;
		letter-spacing: -0.3px;
	}

	.footer-text {
		color: rgba(251, 247, 240, 0.8);
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.footer-address {
		color: rgba(251, 247, 240, 0.7);
		font-size: 15px;
		line-height: 1.7;
		font-style: normal;
	}

	.footer-contact {
		margin-bottom: 12px;
	}

	.footer-link {
		color: rgba(251, 247, 240, 0.8);
		text-decoration: none;
		font-size: 15px;
		transition: all 0.3s ease;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.footer-link:hover {
		color: var(--sage-light);
		transform: translateX(3px);
	}

	.footer-icon {
		width: 18px;
		height: 18px;
		opacity: 0.7;
		transition: opacity 0.3s ease;
	}

	.footer-link:hover .footer-icon {
		opacity: 1;
	}

	.footer-links {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.footer-links li {
		margin-bottom: 10px;
	}

	.footer-bottom {
		border-top: 1px solid rgba(251, 247, 240, 0.1);
		padding: 24px 40px;
		text-align: center;
		max-width: 1100px;
		margin: 0 auto;
	}

	.footer-bottom p {
		color: rgba(251, 247, 240, 0.6);
		font-size: 14px;
		margin: 0;
	}

	/* Divider */
	.divider {
		height: 2px;
		background: linear-gradient(90deg, transparent 0%, var(--sage-light) 50%, transparent 100%);
		margin: 60px 0;
		opacity: 0.4;
	}

	/* Animations */
	@keyframes fadeInDown {
		from {
			opacity: 0;
			transform: translateY(-30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

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

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

	@keyframes shimmer {
		0% {
			transform: translateX(-100%) translateY(-100%) rotate(45deg);
		}
		100% {
			transform: translateX(100%) translateY(100%) rotate(45deg);
		}
	}

	@keyframes pulse {
		0%, 100% {
			opacity: 1;
		}
		50% {
			opacity: 0.7;
		}
	}

	@keyframes float {
		0%, 100% {
			transform: translateY(0px);
		}
		50% {
			transform: translateY(-10px);
		}
	}

	/* Responsive Design */
	@media (min-width: 768px) {
		main {
			padding: 100px 50px;
		}

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

		.address-card {
			grid-column: 1 / -1;
		}
	}

	/* Mobile Optimizations */
	@media (max-width: 767px) {
		main {
			padding: 40px 24px;
		}

		body::after {
			width: 400px;
			height: 400px;
			bottom: -150px;
			right: -150px;
		}

		.logo {
			width: 95px;
			height: 95px;
			font-size: 46px;
			border-radius: 26px;
		}

		.practice-name {
			font-size: 30px;
			margin: 22px 0 14px;
		}

		.welcome {
			font-size: 16px;
			letter-spacing: 1.5px;
			margin: 18px 0 10px;
		}

		.subtitle {
			font-size: 16px;
		}

		.header {
			margin-bottom: 50px;
		}

		.alert-banner,
		.info-banner {
			padding: 24px 28px;
			margin: 18px 0;
			border-radius: 20px;
		}

		.alert-banner::before,
		.info-banner::before {
			width: 32px;
			height: 32px;
			top: 20px;
			left: 20px;
		}

		.alert-banner strong,
		.info-banner strong {
			font-size: 16px;
			padding-left: 56px;
		}

		.info_text {
			padding: 26px 28px;
			margin: 22px 0;
			border-radius: 20px;
		}

		.info_text p {
			font-size: 16px;
		}

		.contact-card {
			padding: 32px 28px;
			border-radius: 22px;
		}

		.contact-card-compact {
			flex-direction: column;
			align-items: center;
			text-align: center;
			gap: 16px;
			padding: 28px 24px;
		}

		.card-compact-content {
			align-items: center;
			text-align: center;
		}

		.card-title-inline {
			text-align: center;
		}

		.contact-link-prominent {
			font-size: 18px;
			text-align: center;
		}

		.card-icon {
			width: 70px;
			height: 70px;
			font-size: 34px;
			border-radius: 20px;
			margin-bottom: 24px;
		}

		.card-icon-small {
			width: 60px;
			height: 60px;
			font-size: 30px;
		}

		.card-title {
			font-size: 21px;
			margin-bottom: 18px;
		}

		.card-content {
			font-size: 15px;
		}

		.contact-link {
			font-size: 16px;
			padding: 12px 22px;
		}

		.office_hours {
			padding: 32px 28px;
			border-radius: 22px;
		}

		.office_hours::after {
			font-size: 56px;
			bottom: 18px;
			right: 18px;
		}

		.office_hours strong {
			font-size: 23px;
			margin-bottom: 24px;
		}

		.hours-icon {
			width: 26px;
			height: 26px;
		}

		.hours-list li {
			flex-direction: column;
			align-items: flex-start;
			gap: 8px;
			padding: 16px 20px;
			border-radius: 14px;
		}

		.hours-day {
			min-width: auto;
		}

		.hours-time {
			text-align: left;
			padding-left: 28px;
		}

		.divider {
			margin: 45px 0;
		}

		.emergency-service {
			padding: 32px 28px;
			border-radius: 22px;
			margin: 35px 0 24px;
		}

		.emergency-service strong {
			font-size: 23px;
			margin-bottom: 20px;
		}

		.emergency-icon {
			width: 26px;
			height: 26px;
		}

		.emergency-link {
			font-size: 16px;
			padding: 14px 24px;
			border-radius: 14px;
		}

		.link-icon {
			width: 18px;
			height: 18px;
		}

		.footer {
			margin-top: 50px;
		}

		.footer-content {
			padding: 50px 28px 30px;
			gap: 35px;
			grid-template-columns: 1fr;
		}

		.footer-title {
			font-size: 18px;
		}

		.footer-bottom {
			padding: 20px 28px;
		}
	}

	/* Extra small devices */
	@media (max-width: 480px) {
		main {
			padding: 30px 20px;
		}

		.practice-name {
			font-size: 26px;
			margin: 20px 0 12px;
		}

		.welcome {
			font-size: 15px;
		}

		.subtitle {
			font-size: 15px;
			padding: 0 10px;
		}

		.alert-banner,
		.info-banner {
			padding: 22px 24px;
		}

		.alert-banner strong,
		.info-banner strong {
			font-size: 15px;
			padding-left: 52px;
		}

		.info_text {
			padding: 24px 24px;
		}

		.contact-card {
			padding: 28px 24px;
		}

		.contact-card-compact {
			padding: 24px 20px;
		}

		.contact-link-prominent {
			font-size: 17px;
		}

		.office_hours {
			padding: 28px 24px;
		}

		.hours-list li {
			padding: 14px 18px;
		}

		.emergency-service {
			padding: 28px 24px;
		}

		.emergency-link {
			font-size: 15px;
			padding: 12px 20px;
		}

		.footer-content {
			padding: 40px 24px 25px;
			gap: 30px;
		}

		.footer-title {
			font-size: 17px;
		}

		.footer-text,
		.footer-address,
		.footer-link {
			font-size: 14px;
		}

		.footer-bottom {
			padding: 18px 24px;
		}

		.footer-bottom p {
			font-size: 13px;
		}
	}

	/* Landscape mobile optimization */
	@media (max-width: 767px) and (orientation: landscape) {
		.logo {
			width: 80px;
			height: 80px;
			font-size: 38px;
			margin-bottom: 20px;
		}

		.practice-name {
			font-size: 26px;
			margin: 18px 0 10px;
		}

		.welcome {
			font-size: 16px;
		}

		.header {
			margin-bottom: 40px;
		}
	}

	/* Touch device optimizations */
	@media (hover: none) and (pointer: coarse) {
		.contact-link {
			padding: 16px 30px;
			margin: 12px 0;
			min-width: 240px;
			font-size: 17px;
		}

		.contact-link-prominent {
			padding: 12px 0;
			font-size: 19px;
		}

		.contact-card {
			transition: none;
		}

		.contact-card:active {
			transform: scale(0.98);
		}

		.card-content {
			padding: 12px 0;
		}

		.card-icon,
		.card-title,
		.card-title-inline {
			user-select: none;
			-webkit-user-select: none;
		}
	}

	/* Hide noscript content by default */
	.no-js-contact {
		display: block;
		font-size: 14px;
		color: var(--text-light);
		margin-top: 5px;
	}

	/* Show noscript only when JS is disabled */
	noscript .no-js-contact {
		display: block;
	}

	/* Anti-crawler: hide from screen readers when empty */
	#phone-display:empty,
	#email-display:empty {
		display: none;
	}

	/* Reverse text direction protection */
	.rtl-protect {
		unicode-bidi: bidi-override;
		direction: rtl;
	}

	/* Additional anti-crawler protection */
	#phone-link::before,
	#email-link::before {
		content: '';
		position: absolute;
		width: 0;
		height: 0;
		opacity: 0;
	}

	/* Hide from print to prevent OCR harvesting */
	@media print {
		#phone-link,
		#email-link {
			display: none;
		}

		.contact-card::after {
			content: 'Kontaktdaten auf www.tierarztpraxis-kny.de';
			display: block;
			font-size: 12px;
			color: #666;
		}
	}