/* =============================================================================
   Toronto Reptiles — Custom Stylesheet (Good Inside refresh)
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* -----------------------------------------------------------------------------
   Design Tokens
   ----------------------------------------------------------------------------- */
:root {
	--tr-green-900:  #0F2319;
	--tr-green-800:  #1B3A2F;
	--tr-green-700:  #2D6A4F;
	--tr-green-600:  #40916C;
	--tr-green-400:  #52B788;
	--tr-green-200:  #B7E4C7;
	--tr-green-100:  #D8F3DC;
	--tr-sage:       #F0F7F4;
	--tr-primary:    #1B3A2F;

	/* Accent palette — warm amber + soft purple */
	--tr-amber-bg:   #FFFBEB;
	--tr-amber-100:  #FEF3C7;
	--tr-amber-600:  #B45309;
	--tr-purple-bg:   #F5F0FF;
	--tr-purple-100:  #EDE9FE;
	--tr-purple-600:  #7C3AED;

	--tr-black:      #111111;
	--tr-gray-700:   #444444;
	--tr-gray-500:   #767676;
	--tr-gray-300:   #CCCCCC;
	--tr-border:     #E8EEE9;
	--tr-white:      #FFFFFF;
	--tr-cream:      #FAFCFA;

	/* Legacy aliases kept for compat */
	--tr-charcoal:   #111111;
	--tr-gold:       #40916C;
	--tr-gold-light: #52B788;
	--tr-cream-dark: #F0F7F4;

	--tr-font-heading: 'Nunito', system-ui, -apple-system, sans-serif;
	--tr-font-body:    'Nunito', system-ui, -apple-system, sans-serif;

	--tr-section-y:    clamp(3.25rem, 6vw, 5.5rem);
	--tr-radius-card:  20px;
	--tr-radius-btn:   50px;
	--tr-shadow-card:  0 2px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
	--tr-shadow-hover: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
	--tr-transition:   0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	font-family: var(--tr-font-body);
	color: var(--tr-black);
	background: var(--tr-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1rem;
	line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--tr-font-heading);
	font-weight: 800;
	line-height: 1.1;
	color: var(--tr-black);
}

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

a { transition: color var(--tr-transition); }

.wp-block-group.tr-section + .wp-block-group.tr-section { margin-top: 0; }

/* -----------------------------------------------------------------------------
   HEADER
   ----------------------------------------------------------------------------- */
.tr-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--tr-white);
	border-bottom: 1px solid var(--tr-border);
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tr-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 3rem);
	min-height: 72px;
	gap: 2rem;
}

.tr-header__brand { gap: 0.75rem; flex-shrink: 0; }

.tr-header__brand .wp-block-site-title a,
.tr-header__brand .wp-block-site-title {
	color: var(--tr-green-800) !important;
	text-decoration: none;
	font-family: var(--tr-font-heading);
	font-weight: 800;
	font-size: 1.15rem !important;
	letter-spacing: -0.01em;
}

.tr-nav .wp-block-navigation__container { gap: 2rem; }
.tr-nav .wp-block-navigation-item__content,
.tr-nav .wp-block-navigation-item__content:link,
.tr-nav .wp-block-navigation-item__content:visited {
	color: var(--tr-gray-700) !important;
	font-size: 0.875rem;
	font-weight: 700;
	padding: 0;
	text-decoration: none !important;
	transition: color var(--tr-transition);
}
.tr-nav .wp-block-navigation-item__content:hover { color: var(--tr-green-700) !important; }

/* Override WP's default white nav text so it reads on our white header */
.wp-block-navigation .wp-block-navigation-item__content {
	color: var(--tr-gray-700) !important;
	text-decoration: none !important;
}

.tr-nav .wp-block-navigation__responsive-container-open svg,
.tr-nav .wp-block-navigation__responsive-container-open svg path { color: var(--tr-black); fill: var(--tr-black); }

.tr-header__cta .wp-block-button__link {
	background: var(--tr-green-700) !important;
	color: var(--tr-white) !important;
	font-size: 0.82rem;
	font-weight: 800;
	border-radius: var(--tr-radius-btn);
	padding: 0.7rem 1.5rem;
	transition: background var(--tr-transition), transform var(--tr-transition);
	white-space: nowrap;
}
.tr-header__cta .wp-block-button__link:hover {
	background: var(--tr-green-600) !important;
	transform: translateY(-1px);
}

/* -----------------------------------------------------------------------------
   SECTION — shared
   ----------------------------------------------------------------------------- */
.tr-section {
	padding-top: var(--tr-section-y);
	padding-bottom: var(--tr-section-y);
	padding-left: clamp(1.25rem, 5vw, 3rem);
	padding-right: clamp(1.25rem, 5vw, 3rem);
}

.tr-section__header {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 680px;
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.tr-section__title {
	margin-top: 0.75rem;
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
	letter-spacing: -0.02em;
}

.tr-section__intro {
	color: var(--tr-gray-500);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-top: 0.875rem;
	margin-bottom: 0;
	font-weight: 500;
}

/* Eyebrow label */
.tr-eyebrow {
	display: inline-block;
	font-family: var(--tr-font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--tr-green-700);
	margin-bottom: 0;
	background: var(--tr-green-100);
	padding: 0.35rem 1rem;
	border-radius: 50px;
}
.tr-eyebrow--dark { color: var(--tr-green-700); background: var(--tr-green-100); }
.tr-eyebrow--light { color: var(--tr-green-700); background: var(--tr-green-100); }

.tr-text-center { text-align: center; }

/* -----------------------------------------------------------------------------
   HERO
   ----------------------------------------------------------------------------- */
.tr-hero {
	background: var(--tr-sage);
	background-image: radial-gradient(ellipse 80% 60% at 100% 50%, var(--tr-green-100) 0%, transparent 65%);
	min-height: 82vh;
	display: flex;
	align-items: center;
	padding-top: clamp(5rem, 10vw, 8rem);
	padding-bottom: clamp(5rem, 10vw, 8rem);
	position: relative;
	overflow: hidden;
}

.tr-hero__cols {
	align-items: center !important;
	gap: 4rem !important;
}

.tr-hero__text-col { position: relative; z-index: 1; }

.tr-hero__img-col {
	position: relative;
	z-index: 1;
}

.tr-hero__img {
	margin: 0 !important;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0,0,0,0.15);
	aspect-ratio: 4/5;
}

.tr-hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 24px;
}

/* placeholder while no image is uploaded */
.tr-hero__img figure:not(:has(img[src])),
.tr-hero__img img[src=""] {
	background: linear-gradient(160deg, var(--tr-green-200) 0%, var(--tr-green-400) 100%);
	min-height: 480px;
	border-radius: 24px;
	display: block;
}

.tr-hero .tr-eyebrow { margin-bottom: 1.5rem; }

.tr-hero__title {
	color: var(--tr-black) !important;
	font-size: clamp(2.8rem, 6vw, 5rem) !important;
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}
.tr-hero__title em {
	font-style: normal;
	color: var(--tr-green-700) !important;
}

.tr-hero__sub {
	color: var(--tr-gray-700) !important;
	font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
	font-weight: 500;
	line-height: 1.7;
	max-width: 560px;
	margin-bottom: 2.5rem;
}

.tr-hero__btns { gap: 1rem; margin-bottom: 3rem; }

.tr-hero__btns .wp-block-button__link {
	font-size: 0.9rem;
	font-weight: 800;
	border-radius: var(--tr-radius-btn);
	padding: 1rem 2.25rem;
	transition: all var(--tr-transition);
}

.tr-hero__btns .wp-block-button:first-child .wp-block-button__link {
	background: var(--tr-green-700) !important;
	color: var(--tr-white) !important;
	border: 2px solid var(--tr-green-700);
	box-shadow: 0 4px 20px rgba(45,106,79,0.3);
}
.tr-hero__btns .wp-block-button:first-child .wp-block-button__link:hover {
	background: var(--tr-green-600) !important;
	border-color: var(--tr-green-600);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(45,106,79,0.4);
}

.tr-btn-outline-white .wp-block-button__link {
	background: transparent !important;
	color: var(--tr-green-800) !important;
	border: 2px solid var(--tr-green-700) !important;
}
.tr-btn-outline-white .wp-block-button__link:hover {
	background: var(--tr-green-700) !important;
	color: var(--tr-white) !important;
	transform: translateY(-2px);
}

.tr-hero__trust { gap: 1.75rem; margin-top: 0; }
.tr-hero__trust-item {
	color: var(--tr-gray-500);
	font-size: 0.85rem;
	font-weight: 600;
	margin: 0;
}

/* -----------------------------------------------------------------------------
   STATS BAR
   ----------------------------------------------------------------------------- */
.tr-stats {
	background: var(--tr-white);
	border-top: 1px solid var(--tr-border);
	border-bottom: 1px solid var(--tr-border);
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.tr-stats__cols { gap: 0; }

.tr-stat {
	text-align: center;
	padding: 1.5rem 1rem;
	border-right: 1px solid var(--tr-border);
	flex: 1;
}
.tr-stat:last-child { border-right: none; }

.tr-stat__number {
	font-family: var(--tr-font-heading);
	font-size: clamp(2.25rem, 4vw, 3rem) !important;
	font-weight: 900;
	color: var(--tr-green-700) !important;
	margin: 0 0 0.25rem;
	line-height: 1;
}
.tr-stat__number span {
	font-size: 0.5em;
	vertical-align: middle;
	margin-left: 0.1em;
}

.tr-stat__label {
	color: var(--tr-gray-500);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0;
}

/* -----------------------------------------------------------------------------
   ABOUT
   ----------------------------------------------------------------------------- */
.tr-about { background: var(--tr-amber-bg); }

.tr-about__cols {
	align-items: center;
	gap: 4rem !important;
}

.tr-about__image-col { flex: 0 0 42% !important; max-width: 42%; }
.tr-about__text-col  { flex: 1 1 auto !important; }

.tr-about__image-wrap {
	position: relative;
	border-radius: var(--tr-radius-card);
	overflow: hidden;
	max-width: 420px;
	margin: 0 auto;
}

.tr-about__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: var(--tr-radius-card);
	display: block;
}

.tr-about__badge {
	position: absolute;
	bottom: 1.25rem;
	right: 1.25rem;
	background: var(--tr-green-700);
	color: var(--tr-white);
	padding: 1rem 1.25rem;
	border-radius: 14px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
	min-width: 140px;
	z-index: 2;
}
.tr-about__badge-number {
	font-family: var(--tr-font-heading);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	margin: 0;
}
.tr-about__badge-text {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.3;
	margin: 0.35rem 0 0;
	opacity: 0.85;
}

.tr-about__lead {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--tr-gray-700);
	margin-top: 1.25rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.tr-about__features {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tr-feature-row {
	display: flex !important;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	background: none;
	border: none;
	border-bottom: 1px solid var(--tr-border);
	border-radius: 0;
}
.tr-feature-row:first-child { border-top: 1px solid var(--tr-border); }

.tr-feature-icon {
	font-size: 1.35rem;
	line-height: 1;
	margin: 0 !important;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: var(--tr-green-100);
	border-radius: 50%;
}

.tr-feature-text {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--tr-gray-700);
	margin: 0 !important;
	font-weight: 500;
	flex: 1;
}
.tr-feature-text strong {
	font-weight: 800;
	color: var(--tr-black);
}

/* -----------------------------------------------------------------------------
   ANIMALS
   ----------------------------------------------------------------------------- */
.tr-animals { background: var(--tr-sage); }

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

.tr-animal-card {
	background: var(--tr-white);
	border-radius: var(--tr-radius-card);
	overflow: hidden;
	box-shadow: var(--tr-shadow-card);
	transition: box-shadow var(--tr-transition), transform var(--tr-transition);
	display: flex;
	flex-direction: column;
}
.tr-animal-card:hover {
	box-shadow: var(--tr-shadow-hover);
	transform: translateY(-5px);
}

.tr-animal-card__img-wrap { position: relative; flex-shrink: 0; }

.tr-animal-card__img {
	margin: 0;
	display: block;
	background: var(--tr-sage);
	min-height: 220px;
}
.tr-animal-card__img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.tr-animal-card__img figure:not(:has(img[src])),
.tr-animal-card__img figure img[src=""] {
	background: linear-gradient(135deg, var(--tr-green-700) 0%, var(--tr-green-800) 100%);
	min-height: 220px;
}

.tr-animal-card__meta {
	display: flex !important;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 0.25rem !important;
}
.tr-animal-card__type,
.tr-animal-card__age {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
	margin: 0;
	line-height: 1.4;
	position: static;
	width: auto;
}
.tr-animal-card__type {
	background: var(--tr-green-100);
	color: var(--tr-green-700);
}
.tr-animal-card__type a {
	color: var(--tr-green-700);
	text-decoration: none;
}
.tr-animal-card__age {
	background: var(--tr-amber-100);
	color: var(--tr-amber-600);
}
.tr-animal-card__age a {
	color: var(--tr-amber-600);
	text-decoration: none;
}

.tr-animal-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tr-animal-card__name {
	font-size: 1.3rem !important;
	font-weight: 800;
	margin: 0;
	color: var(--tr-black);
}

.tr-animal-card__desc {
	font-size: 0.9rem;
	color: var(--tr-gray-500);
	line-height: 1.65;
	margin: 0;
	flex: 1;
	font-weight: 500;
}

.tr-animals__cta {
	margin-top: 3rem;
	text-align: center;
}

.tr-btn-outline-green .wp-block-button__link {
	border: 2px solid var(--tr-green-700) !important;
	color: var(--tr-green-700) !important;
	background: transparent !important;
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.85rem 2rem;
	border-radius: var(--tr-radius-btn);
	transition: background 0.2s, color 0.2s;
}
.tr-btn-outline-green .wp-block-button__link:hover {
	background: var(--tr-green-700) !important;
	color: #fff !important;
}

/* -----------------------------------------------------------------------------
   HOW IT WORKS
   ----------------------------------------------------------------------------- */
.tr-how { background: var(--tr-purple-bg); }

.tr-steps { align-items: flex-start; gap: 2.5rem; }

.tr-step { position: relative; padding-top: 1rem; }
.tr-step::before {
	content: '';
	position: absolute;
	top: 2.6rem;
	right: -1.25rem;
	width: 1px;
	height: calc(100% - 2.6rem);
	background: var(--tr-border);
}
.tr-step:last-child::before { display: none; }

.tr-step__number {
	font-family: var(--tr-font-heading);
	font-size: 3rem;
	font-weight: 900;
	color: var(--tr-green-600);
	line-height: 1;
	margin: 0 0 1rem;
}

.tr-step__title {
	font-size: 1.3rem !important;
	font-weight: 800;
	margin: 0 0 0.75rem;
	color: var(--tr-black);
}

.tr-step__desc {
	font-size: 0.925rem;
	color: var(--tr-gray-500);
	line-height: 1.7;
	margin: 0;
	font-weight: 500;
}

/* -----------------------------------------------------------------------------
   PRICING
   ----------------------------------------------------------------------------- */
.tr-pricing { background: var(--tr-sage); }

.tr-pricing .tr-section__title { color: var(--tr-black) !important; }

.tr-pricing__intro {
	color: var(--tr-gray-700);
	font-size: 1rem;
	line-height: 1.7;
	margin-top: 1.25rem;
	font-weight: 500;
}

.tr-pricing__feature-list { display: flex; flex-direction: column; }

.tr-pricing__feature {
	color: var(--tr-gray-700);
	font-size: 0.925rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--tr-border);
	margin: 0;
	font-weight: 500;
}
.tr-pricing__feature:first-child { border-top: 1px solid var(--tr-border); }
.tr-pricing__feature strong { color: var(--tr-black); }

.tr-pricing__travel-note {
	background: var(--tr-white);
	border: 1px solid var(--tr-border);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	color: var(--tr-gray-700);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
}
.tr-pricing__travel-note strong { color: var(--tr-green-700); }

/* Price Card */
.tr-price-card {
	background: var(--tr-white);
	border-radius: var(--tr-radius-card);
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.tr-price-card__badge {
	display: inline-block;
	background: var(--tr-green-100);
	color: var(--tr-green-700);
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 0.3rem 0.875rem;
	border-radius: 50px;
	margin: 0 0 1.25rem;
}

.tr-price-card__title {
	font-size: 1.6rem !important;
	font-weight: 800;
	color: var(--tr-black) !important;
	margin: 0 0 0.5rem;
}

.tr-price-card__price {
	font-family: var(--tr-font-heading);
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--tr-green-700);
	margin: 0;
}

.tr-price-card__duration {
	color: var(--tr-gray-500);
	font-size: 0.85rem;
	margin: 0.25rem 0 0;
	font-weight: 500;
}

.tr-price-card__divider {
	border: none;
	border-top: 1px solid var(--tr-border);
	margin: 1.5rem 0;
}

.tr-price-card__includes { display: flex; flex-direction: column; gap: 0.6rem; }

.tr-price-card__item {
	font-size: 0.9rem;
	color: var(--tr-gray-700);
	margin: 0;
	font-weight: 500;
}

.tr-price-card .wp-block-button__link {
	background: var(--tr-green-700) !important;
	color: var(--tr-white) !important;
	border-radius: var(--tr-radius-btn);
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 1rem;
	transition: all var(--tr-transition);
	display: block;
	text-align: center;
}
.tr-price-card .wp-block-button__link:hover {
	background: var(--tr-green-600) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(45,106,79,0.35);
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------------------------- */
.tr-testimonials { background: var(--tr-amber-bg); }

.tr-testimonials__cols { align-items: stretch; gap: 1.5rem; }

.tr-testimonial {
	background: var(--tr-sage);
	border-radius: var(--tr-radius-card);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow var(--tr-transition), transform var(--tr-transition);
}
.tr-testimonial:hover {
	box-shadow: var(--tr-shadow-hover);
	transform: translateY(-3px);
}

.tr-testimonial__stars {
	color: var(--tr-green-600);
	font-size: 1rem;
	letter-spacing: 0.1em;
	margin: 0;
}

.tr-testimonial__quote {
	font-size: 0.97rem;
	line-height: 1.75;
	color: var(--tr-gray-700);
	font-style: italic;
	margin: 0;
	flex: 1;
	font-weight: 500;
}
.tr-testimonial__quote::before { content: '\201C'; }
.tr-testimonial__quote::after  { content: '\201D'; }

.tr-testimonial__author {
	font-size: 0.82rem;
	color: var(--tr-gray-500);
	margin: 0;
	padding-top: 1rem;
	border-top: 1px solid var(--tr-border);
	font-weight: 600;
}
.tr-testimonial__author strong { color: var(--tr-black); }

/* -----------------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------------- */
.tr-faq { background: var(--tr-white); }

.tr-faq__left { padding-right: 1rem; }

.tr-faq__left .tr-section__title {
	font-size: clamp(1.9rem, 3.5vw, 2.6rem) !important;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}

.tr-faq__left p { color: var(--tr-gray-500); font-size: 0.95rem; line-height: 1.7; font-weight: 500; }

.tr-faq__left .wp-block-button__link {
	background: var(--tr-green-700) !important;
	color: var(--tr-white) !important;
	border-radius: var(--tr-radius-btn);
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.9rem 1.75rem;
	transition: all var(--tr-transition);
}
.tr-faq__left .wp-block-button__link:hover {
	background: var(--tr-green-600) !important;
	transform: translateY(-2px);
}

.tr-faq__item {
	border-bottom: 1px solid var(--tr-border);
	padding: 0;
}
.tr-faq__item:first-child { border-top: 1px solid var(--tr-border); }

.tr-faq__item summary {
	font-family: var(--tr-font-body);
	font-size: 1rem;
	font-weight: 700;
	color: var(--tr-black);
	padding: 1.25rem 2.5rem 1.25rem 0;
	cursor: pointer;
	position: relative;
	list-style: none;
	transition: color var(--tr-transition);
}
.tr-faq__item summary::-webkit-details-marker { display: none; }
.tr-faq__item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--tr-green-600);
	line-height: 1;
	transition: transform var(--tr-transition), color var(--tr-transition);
}
.tr-faq__item[open] summary::after {
	content: '−';
	transform: translateY(-50%);
}
.tr-faq__item summary:hover { color: var(--tr-green-700); }
.tr-faq__item[open] summary { color: var(--tr-green-700); }

.tr-faq__item .wp-block-paragraph {
	padding: 0 1rem 1.5rem 0;
	font-size: 0.925rem;
	line-height: 1.75;
	color: var(--tr-gray-500);
	margin: 0;
	font-weight: 500;
}

/* -----------------------------------------------------------------------------
   CONTACT
   ----------------------------------------------------------------------------- */
.tr-contact {
	background: var(--tr-sage);
}

.tr-contact .tr-section__title { color: var(--tr-black) !important; }

.tr-contact__intro {
	color: var(--tr-gray-700);
	font-size: 1rem;
	line-height: 1.7;
	margin-top: 1.25rem;
	font-weight: 500;
}

.tr-contact__details { display: flex; flex-direction: column; }

.tr-contact__detail {
	color: var(--tr-gray-700);
	font-size: 0.9rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--tr-border);
	margin: 0;
	font-weight: 500;
}
.tr-contact__detail:first-child { border-top: 1px solid var(--tr-border); }

.tr-contact-form {
	background: var(--tr-white);
	border-radius: var(--tr-radius-card);
	padding: clamp(2rem, 4vw, 3rem);
	box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.tr-contact-form__title {
	font-family: var(--tr-font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--tr-black);
	margin: 0 0 1.75rem;
}

.tr-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.tr-contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
}
.tr-contact-form__field--full { grid-column: 1 / -1; }

.tr-contact-form__label {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tr-black);
}
.tr-contact-form__label .required { color: #E05252; margin-left: 2px; }

.tr-contact-form__input,
.tr-contact-form__select,
.tr-contact-form__textarea {
	font-family: var(--tr-font-body);
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--tr-black);
	background: var(--tr-sage);
	border: 1.5px solid var(--tr-border);
	border-radius: 12px;
	padding: 0.8rem 1rem;
	width: 100%;
	transition: border-color var(--tr-transition), box-shadow var(--tr-transition);
	-webkit-appearance: none;
}
.tr-contact-form__input:focus,
.tr-contact-form__select:focus,
.tr-contact-form__textarea:focus {
	outline: none;
	border-color: var(--tr-green-600);
	box-shadow: 0 0 0 3px rgba(64,145,108,0.15);
	background: var(--tr-white);
}
.tr-contact-form__textarea { resize: vertical; min-height: 120px; }

.tr-contact-form__submit {
	width: 100%;
	background: var(--tr-green-700);
	color: var(--tr-white);
	border: none;
	border-radius: var(--tr-radius-btn);
	font-family: var(--tr-font-body);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 1.1rem 2rem;
	cursor: pointer;
	transition: all var(--tr-transition);
	margin-top: 0.5rem;
}
.tr-contact-form__submit:hover {
	background: var(--tr-green-600);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(45,106,79,0.3);
}

.tr-notice {
	border-radius: 12px;
	padding: 1rem 1.25rem;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}
.tr-notice--success {
	background: var(--tr-green-100);
	border: 1px solid var(--tr-green-200);
	color: var(--tr-green-700);
}
.tr-notice--error {
	background: #FEF2F2;
	border: 1px solid #FECACA;
	color: #DC2626;
}

/* -----------------------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------------------- */
.tr-footer {
	background: var(--tr-green-900);
	padding: clamp(3.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem) 0;
}

.tr-footer__inner { padding-bottom: clamp(2rem, 4vw, 3rem); }
.tr-footer__cols { align-items: flex-start; }

.tr-footer__brand .wp-block-site-logo img {
	filter: brightness(0) invert(1) opacity(0.85);
}

.tr-footer__heading { margin: 0 0 1rem !important; }

.tr-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.tr-footer__list li,
.tr-footer__list li a {
	color: rgba(255,255,255,0.72) !important;
	font-size: 0.875rem;
	text-decoration: none;
	font-weight: 500;
	transition: color var(--tr-transition);
}
.tr-footer__list li a:hover { color: var(--tr-green-400) !important; }

.tr-footer__divider { border-color: rgba(255,255,255,0.1) !important; }
.tr-footer__bottom { padding-bottom: 0; }

/* -----------------------------------------------------------------------------
   GENERIC WP BUTTON OVERRIDES
   ----------------------------------------------------------------------------- */
.wp-block-button__link {
	font-family: var(--tr-font-body) !important;
	font-weight: 800 !important;
	border-radius: var(--tr-radius-btn) !important;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: var(--tr-green-700);
	color: var(--tr-white);
	transition: all var(--tr-transition);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	background: var(--tr-green-600);
	transform: translateY(-2px);
}

/* -----------------------------------------------------------------------------
   ARCHIVE / SINGLE ANIMAL
   ----------------------------------------------------------------------------- */
.tr-archive-hero {
	background: var(--tr-sage);
	background-image: radial-gradient(ellipse 70% 70% at 80% 50%, var(--tr-green-100) 0%, transparent 60%);
	padding-top: clamp(3.5rem, 7vw, 6rem);
	padding-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
	text-align: center;
}

.tr-archive-hero__cta { margin-top: 2rem !important; }

/* Reduce top padding on grid that follows the hero */
.tr-archive-grid {
	padding-top: clamp(2.5rem, 4.5vw, 3.5rem) !important;
}

.tr-archive-hero__title {
	color: var(--tr-black) !important;
	font-size: clamp(2.5rem, 5vw, 4rem) !important;
	font-weight: 900;
	letter-spacing: -0.02em;
	margin: 0.75rem 0 0;
}

.tr-archive-hero__sub {
	color: var(--tr-gray-700) !important;
	font-size: 1.1rem;
	margin-top: 1rem;
	font-weight: 500;
}

.tr-archive-grid { background: var(--tr-sage); }

.tr-archive-cta {
	background: var(--tr-white);
	text-align: center;
	border-top: 1px solid var(--tr-border);
}

/* Single animal */
.tr-animal-stats {
	background: var(--tr-white);
	border-radius: var(--tr-radius-card);
	overflow: hidden;
	box-shadow: var(--tr-shadow-card);
}

.tr-animal-stats__header {
	background: var(--tr-green-700);
	padding: 1.25rem 1.5rem;
}

.tr-animal-stats__title {
	color: var(--tr-white) !important;
	font-size: 1rem !important;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
}

.tr-animal-stats__list {
	list-style: none;
	padding: 1.25rem 1.5rem;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tr-animal-stats__item {
	display: flex;
	gap: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.tr-animal-stats__label {
	font-weight: 700;
	color: var(--tr-black);
	min-width: 90px;
	flex-shrink: 0;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.tr-animal-stats__value {
	color: var(--tr-gray-700);
	font-weight: 500;
}

.tr-animal-fun-fact {
	background: var(--tr-sage);
	border-left: 3px solid var(--tr-green-400);
	margin: 0 1.5rem 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: 0 12px 12px 0;
}

.tr-animal-kid-note {
	background: var(--tr-green-100);
	margin: 0 1.5rem 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: 12px;
}

.tr-animal-stats__cta {
	padding: 0 1.5rem 1.5rem;
}

.tr-animal-stats__cta a {
	display: block;
	background: var(--tr-green-700);
	color: var(--tr-white);
	text-align: center;
	padding: 0.9rem;
	border-radius: var(--tr-radius-btn);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: all var(--tr-transition);
}
.tr-animal-stats__cta a:hover {
	background: var(--tr-green-600);
	transform: translateY(-2px);
}

/* Card links */
.tr-animal-card__link a,
.tr-animal-card .wp-block-read-more {
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--tr-green-700);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: auto;
	display: inline-block;
	padding-top: 0.75rem;
	transition: color var(--tr-transition);
}
.tr-animal-card__link a:hover,
.tr-animal-card .wp-block-read-more:hover { color: var(--tr-green-600); }

/* No results */
.tr-no-results {
	text-align: center;
	color: var(--tr-gray-500);
	padding: 3rem;
	font-weight: 500;
}

/* -----------------------------------------------------------------------------
   SCROLL ANIMATIONS
   ----------------------------------------------------------------------------- */
.tr-animate {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}
.tr-animate.tr-in-view {
	opacity: 1;
	transform: translateY(0);
}
.tr-animals__grid .tr-animal-card:nth-child(2) { transition-delay: 0.07s; }
.tr-animals__grid .tr-animal-card:nth-child(3) { transition-delay: 0.14s; }
.tr-animals__grid .tr-animal-card:nth-child(4) { transition-delay: 0.07s; }
.tr-animals__grid .tr-animal-card:nth-child(5) { transition-delay: 0.14s; }
.tr-animals__grid .tr-animal-card:nth-child(6) { transition-delay: 0.21s; }
.tr-animals__grid .tr-animal-card:nth-child(7) { transition-delay: 0.07s; }
.tr-animals__grid .tr-animal-card:nth-child(8) { transition-delay: 0.14s; }
.tr-animals__grid .tr-animal-card:nth-child(9) { transition-delay: 0.21s; }

/* -----------------------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tr-animals__grid { grid-template-columns: repeat(2, 1fr); }
	.tr-about__badge { right: 1rem; bottom: 1rem; }
}

@media (max-width: 768px) {
	.tr-header__inner { height: 64px; }
	.tr-hero__cols { flex-direction: column-reverse !important; gap: 2.5rem !important; }
	.tr-hero__img-col { width: 100% !important; flex-basis: 100% !important; }
	.tr-hero__text-col { width: 100% !important; flex-basis: 100% !important; }
	.tr-hero__img { aspect-ratio: 3/2; max-height: 320px; }
	.tr-hero__img img { max-height: 320px; }
	.tr-animals__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
	.tr-stats__cols { flex-wrap: wrap; }
	.tr-stat {
		flex: 0 0 50%;
		border-right: 1px solid var(--tr-border);
		border-bottom: 1px solid var(--tr-border);
	}
	.tr-stat:nth-child(2n) { border-right: none; }
	.tr-stat:nth-child(3), .tr-stat:nth-child(4) { border-bottom: none; }
	.tr-about__cols,
	.tr-pricing__cols,
	.tr-faq__cols,
	.tr-contact__cols { flex-direction: column; gap: 3rem; }
	.tr-about__image-col,
	.tr-about__text-col,
	.tr-pricing__cols > .wp-block-column,
	.tr-faq__left, .tr-faq__right,
	.tr-contact__left, .tr-contact__right { flex-basis: 100% !important; }
	.tr-about__badge {
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 1rem;
		display: inline-block;
	}
	.tr-contact-form__row { grid-template-columns: 1fr; }
	.tr-footer__cols { flex-direction: column; gap: 2.5rem !important; }
	.tr-footer__cols > .wp-block-column { flex-basis: 100% !important; }
	.tr-steps { flex-direction: column; gap: 2.5rem; }
	.tr-step::before { display: none; }
	.tr-pricing__cols { flex-direction: column; }
}

@media (max-width: 480px) {
	.tr-animals__grid { grid-template-columns: 1fr; }
	.tr-hero__title { font-size: 2.3rem !important; }
	.tr-testimonials__cols { flex-direction: column; }
}

/* -----------------------------------------------------------------------------
   ACCESSIBILITY
   ----------------------------------------------------------------------------- */
:focus-visible {
	outline: 2px solid var(--tr-green-400);
	outline-offset: 3px;
}

.screen-reader-text {
	clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

html { scroll-behavior: smooth; }

/* -----------------------------------------------------------------------------
   AREA CARDS (service areas grid)
   ----------------------------------------------------------------------------- */
.tr-areas__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.tr-area-card {
	background: var(--tr-white);
	border-radius: var(--tr-radius-card);
	padding: 1.5rem 1.25rem;
	box-shadow: var(--tr-shadow-card);
	transition: box-shadow var(--tr-transition), transform var(--tr-transition);
	text-align: center;
}
.tr-area-card:hover {
	box-shadow: var(--tr-shadow-hover);
	transform: translateY(-3px);
}
.tr-area-card__name {
	font-size: 1.15rem !important;
	font-weight: 800;
	margin: 0 0 0.5rem;
	color: var(--tr-black);
}
.tr-area-card__name a { color: var(--tr-black); text-decoration: none; }
.tr-area-card__name a:hover { color: var(--tr-green-700); }
.tr-area-card__desc {
	font-size: 0.85rem;
	color: var(--tr-gray-500);
	line-height: 1.55;
	margin: 0 0 0.75rem;
	font-weight: 500;
}
.tr-area-card__link a {
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--tr-green-700);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.tr-area-card__link a:hover { color: var(--tr-green-600); }
@media (max-width: 1024px) { .tr-areas__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .tr-areas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .tr-areas__grid { grid-template-columns: 1fr; } }

/* Packages grid reuses .tr-animals__grid spacing */
.tr-packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .tr-packages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tr-packages__grid { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------------------------
   SINGLE-POST BODY (package/area)
   ----------------------------------------------------------------------------- */
.tr-single-body {
	max-width: 780px;
	margin: 0 auto;
}
.tr-single-body > * {
	margin-bottom: 1.5rem;
}
.tr-single-img img {
	border-radius: var(--tr-radius-card);
	width: 100%;
	box-shadow: var(--tr-shadow-card);
}
.tr-single-body p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--tr-gray-700);
	font-weight: 500;
}
.tr-single-cta { margin-top: 2.5rem !important; }

/* -----------------------------------------------------------------------------
   FAQ / ABOUT CONTENT SECTIONS
   ----------------------------------------------------------------------------- */
.tr-faq-content,
.tr-about-content {
	max-width: 780px;
	margin: 0 auto;
}
.tr-faq-content p,
.tr-about-content p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--tr-gray-700);
	font-weight: 500;
}
.tr-faq-content h2,
.tr-about-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

/* -----------------------------------------------------------------------------
   ACCENT COLOUR SPREADS — amber + purple carried into elements
   ----------------------------------------------------------------------------- */

/* About (amber bg): eyebrow, feature rows, badge */
.tr-about .tr-eyebrow {
	background: var(--tr-amber-100);
	color: var(--tr-amber-600);
}
/* feature rows are plain list — no coloured blocks */
.tr-about__badge {
	background: var(--tr-purple-600);
}

/* How It Works (purple bg): eyebrow, step numbers */
.tr-how .tr-eyebrow {
	background: var(--tr-purple-100);
	color: var(--tr-purple-600);
}
.tr-how .tr-step__number {
	color: var(--tr-amber-600);
	opacity: 0.55;
}
.tr-how .tr-step::before {
	background: var(--tr-purple-100);
}

/* Pricing: badge goes amber */
.tr-price-card__badge {
	background: var(--tr-amber-100);
	color: var(--tr-amber-600);
}
.tr-price-card__price {
	color: var(--tr-amber-600);
}

/* Testimonials (amber bg): cards white, stars purple */
.tr-testimonials .tr-eyebrow {
	background: var(--tr-amber-100);
	color: var(--tr-amber-600);
}
.tr-testimonials .tr-testimonial {
	background: var(--tr-white);
}
.tr-testimonial__stars {
	color: var(--tr-amber-600);
}

/* FAQ: accordion + icon amber */
.tr-faq .tr-eyebrow {
	background: var(--tr-amber-100);
	color: var(--tr-amber-600);
}
.tr-faq__item summary::after {
	color: var(--tr-amber-600);
}
.tr-faq__item[open] summary,
.tr-faq__item summary:hover {
	color: var(--tr-amber-600);
}

/* -----------------------------------------------------------------------------
   ANIMAL SELECTOR BLOCK (tr/animal-selector)
   Uses --tr-selector-cols custom prop so media queries actually work.
   ----------------------------------------------------------------------------- */
.tr-animal-selector__grid {
	display: grid;
	grid-template-columns: repeat(var(--tr-selector-cols, 3), 1fr);
	gap: 1.5rem;
}
@media (max-width: 1024px) {
	.tr-animal-selector__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.tr-animal-selector__grid {
		grid-template-columns: 1fr;
	}
}

/* =================================================================
 * Pricing Calculator Block (tr/pricing-calculator)
 * ================================================================= */

.tr-pricing {
	max-width: 1100px;
	margin: 2rem auto;
	font-family: 'Nunito', system-ui, sans-serif;
}

.tr-pricing__form { margin: 0; }

.tr-pricing__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 2rem;
	align-items: flex-start;
}

@media (max-width: 900px) {
	.tr-pricing__layout { grid-template-columns: 1fr; }
	.tr-pricing__summary { position: static !important; }
}

.tr-pricing__inputs { min-width: 0; }

.tr-pricing__field {
	border: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.tr-pricing__field legend {
	font-weight: 700;
	font-size: 1rem;
	color: var(--tr-ink, #1f2a24);
	margin-bottom: 0.6rem;
	padding: 0;
}

.tr-pricing__optional {
	font-weight: 400;
	font-size: 0.85rem;
	color: #6b7a72;
}

.tr-pricing__hint {
	font-size: 0.85rem;
	color: #6b7a72;
	margin: -0.3rem 0 0.7rem;
}

/* Radio card group (event type) */
.tr-pricing__radios--cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}
@media (max-width: 600px) {
	.tr-pricing__radios--cards { grid-template-columns: 1fr; }
}

.tr-pricing__radio-card {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem;
	border: 2px solid #e5e9e6;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.tr-pricing__radio-card:has(input:checked) {
	border-color: var(--tr-green-600, #2f7d5a);
	background: var(--tr-green-50, #f0f8f4);
	box-shadow: 0 2px 6px rgba(47, 125, 90, 0.15);
}
.tr-pricing__radio-card input { margin: 0 0 0.25rem; accent-color: var(--tr-green-600, #2f7d5a); }
.tr-pricing__radio-title { font-weight: 700; font-size: 0.95rem; }
.tr-pricing__radio-desc  { font-size: 0.8rem; color: #6b7a72; }

/* Pill radios (duration) */
.tr-pricing__radios--pills {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.tr-pricing__radios--pills label {
	flex: 1;
	min-width: 140px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border: 2px solid #e5e9e6;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.15s;
}
.tr-pricing__radios--pills label:has(input:checked) {
	border-color: var(--tr-green-600, #2f7d5a);
	background: var(--tr-green-50, #f0f8f4);
}
.tr-pricing__radios--pills label span {
	margin-left: auto;
	font-weight: 700;
	color: var(--tr-green-700, #235c42);
}
.tr-pricing__radios--pills input { accent-color: var(--tr-green-600, #2f7d5a); }

/* Custom quote notice */
.tr-pricing__custom-notice {
	padding: 2rem;
	background: var(--tr-green-50, #f0f8f4);
	border-radius: 16px;
	border: 1px solid var(--tr-green-200, #cde8d8);
}
.tr-pricing__custom-notice h3 {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	color: var(--tr-ink, #1f2a24);
}
.tr-pricing__custom-notice p { margin: 0 0 1rem; color: #3d4a43; }
.tr-pricing__custom-btn {
	display: inline-block;
	padding: 0.75rem 1.4rem;
	background: var(--tr-green-600, #2f7d5a);
	color: #fff !important;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
}
.tr-pricing__custom-btn:hover { background: var(--tr-green-700, #235c42); }

/* Age select */
.tr-pricing__age {
	width: 100%;
	max-width: 280px;
	padding: 0.7rem 1rem;
	border: 2px solid #e5e9e6;
	border-radius: 10px;
	font-size: 1rem;
	background: #fff;
	font-family: inherit;
}

/* Animal count slider */
.tr-pricing__count {
	width: 100%;
	accent-color: var(--tr-green-600, #2f7d5a);
}
.tr-pricing__count-scale {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: #6b7a72;
	margin-top: 0.35rem;
}
.tr-pricing__count-label {
	color: var(--tr-green-700, #235c42);
	font-weight: 800;
}

/* Animal picker grid */
.tr-pricing__animals {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.6rem;
	margin-top: 0.5rem;
}
.tr-pricing__animal {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	padding: 0.7rem 0.5rem;
	border: 2px solid #e5e9e6;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	text-align: center;
	transition: all 0.15s;
}
.tr-pricing__animal input {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	accent-color: var(--tr-green-600, #2f7d5a);
}
.tr-pricing__animal:has(input:checked) {
	border-color: var(--tr-green-600, #2f7d5a);
	background: var(--tr-green-50, #f0f8f4);
}
.tr-pricing__animal img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	background: #f4f6f5;
}
.tr-pricing__animal-placeholder {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f4f6f5;
	border-radius: 50%;
	font-size: 1.5rem;
}
.tr-pricing__animal-name { font-weight: 700; font-size: 0.85rem; }
.tr-pricing__animal-age { font-size: 0.7rem; color: #6b7a72; }

.tr-pricing__animal--too-young {
	opacity: 0.55;
}
.tr-pricing__animal--too-young::after {
	content: 'age ↑';
	position: absolute;
	bottom: 0.35rem;
	left: 0.4rem;
	font-size: 0.65rem;
	color: #b54708;
	background: #fff1e6;
	padding: 0.1rem 0.4rem;
	border-radius: 999px;
	font-weight: 700;
}

.tr-pricing__age-warning {
	margin-top: 0.7rem;
	padding: 0.65rem 0.9rem;
	background: #fff1e6;
	border: 1px solid #f9cfa7;
	border-radius: 8px;
	color: #7a3d0b;
	font-size: 0.875rem;
}

/* Address row */
.tr-pricing__address-row {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.tr-pricing__address {
	flex: 1;
	min-width: 220px;
	padding: 0.7rem 1rem;
	border: 2px solid #e5e9e6;
	border-radius: 10px;
	font-size: 1rem;
	font-family: inherit;
}
.tr-pricing__calc {
	padding: 0.7rem 1.1rem;
	background: var(--tr-ink, #1f2a24);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}
.tr-pricing__calc:hover { background: #0f1613; }
.tr-pricing__calc:disabled { opacity: 0.6; cursor: wait; }

.tr-pricing__distance-result {
	margin-top: 0.5rem;
	padding: 0.55rem 0.9rem;
	border-radius: 8px;
	font-size: 0.9rem;
}
.tr-pricing__distance-result--ok {
	background: var(--tr-green-50, #f0f8f4);
	color: var(--tr-green-700, #235c42);
	border: 1px solid var(--tr-green-200, #cde8d8);
}
.tr-pricing__distance-result--error {
	background: #fff1e6;
	color: #7a3d0b;
	border: 1px solid #f9cfa7;
}

/* Date + detail inputs */
.tr-pricing__date,
.tr-pricing__details-grid input,
.tr-pricing__field textarea {
	width: 100%;
	padding: 0.7rem 1rem;
	border: 2px solid #e5e9e6;
	border-radius: 10px;
	font-size: 1rem;
	font-family: inherit;
	background: #fff;
}
.tr-pricing__field textarea { resize: vertical; margin-top: 0.5rem; }

.tr-pricing__details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}
.tr-pricing__details-grid input:first-child { grid-column: 1 / -1; }
@media (max-width: 600px) {
	.tr-pricing__details-grid { grid-template-columns: 1fr; }
}

/* Submit */
.tr-pricing__submit {
	width: 100%;
	padding: 1rem 1.5rem;
	background: var(--tr-green-600, #2f7d5a);
	color: #fff !important;
	border: none;
	border-radius: 999px;
	font-size: 1.1rem;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
	margin-top: 0.5rem;
	transition: background 0.15s;
}
.tr-pricing__submit:hover { background: var(--tr-green-700, #235c42); }

.tr-pricing__fineprint {
	font-size: 0.8rem;
	color: #6b7a72;
	text-align: center;
	margin: 0.75rem 0 0;
}

/* Summary sidebar */
.tr-pricing__summary {
	position: sticky;
	top: 1.5rem;
}
.tr-pricing__summary-inner {
	padding: 1.5rem;
	background: #fff;
	border: 1px solid #e5e9e6;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.tr-pricing__summary h3 {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	color: var(--tr-ink, #1f2a24);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tr-pricing__breakdown { margin: 0 0 1rem; }
.tr-pricing__row {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.45rem 0;
	border-bottom: 1px dashed #edf0ee;
	font-size: 0.9rem;
}
.tr-pricing__row dt { color: #3d4a43; margin: 0; }
.tr-pricing__row dd { margin: 0; font-weight: 700; color: var(--tr-ink, #1f2a24); }

.tr-pricing__total-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0.9rem 0 0.2rem;
	border-top: 2px solid var(--tr-ink, #1f2a24);
	margin-top: 0.5rem;
}
.tr-pricing__total-label {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}
.tr-pricing__total-value {
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--tr-green-700, #235c42);
}
.tr-pricing__disclaimer {
	font-size: 0.75rem;
	color: #6b7a72;
	margin: 0.75rem 0 0;
}

/* Submission notices (prepended to the_content) */
.tr-inquiry-notice {
	max-width: 800px;
	margin: 1.5rem auto;
	padding: 1rem 1.25rem;
	border-radius: 12px;
	font-size: 1rem;
}
.tr-inquiry-notice--success {
	background: var(--tr-green-50, #f0f8f4);
	color: var(--tr-green-700, #235c42);
	border: 1px solid var(--tr-green-200, #cde8d8);
}
.tr-inquiry-notice--error {
	background: #fff1e6;
	color: #7a3d0b;
	border: 1px solid #f9cfa7;
}

/* =================================================================
 * Pricing Calculator — simple variant
 * ================================================================= */
.tr-pricing--simple {
	max-width: 640px;
}
.tr-pricing--simple .tr-pricing__form {
	padding: 1.75rem;
	background: #fff;
	border: 1px solid #e5e9e6;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.tr-pricing__simple-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
	margin-bottom: 1rem;
}
@media (max-width: 600px) {
	.tr-pricing__simple-grid { grid-template-columns: 1fr; }
}
.tr-pricing__simple-field {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}
.tr-pricing__simple-field--full { grid-column: 1 / -1; }
.tr-pricing__simple-field > span {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--tr-ink, #1f2a24);
}
.tr-pricing__simple-field input,
.tr-pricing__simple-field textarea {
	width: 100%;
	padding: 0.7rem 1rem;
	border: 2px solid #e5e9e6;
	border-radius: 10px;
	font-size: 1rem;
	font-family: inherit;
	background: #fff;
}
.tr-pricing__simple-field textarea { resize: vertical; }

/* Pricing calculator block — transparent background so wrapping Group can own the color */
.wp-block-tr-pricing-calculator,
.wp-block-tr-pricing-calculator.tr-pricing {
	background: transparent !important;
}
.wp-block-tr-pricing-calculator .tr-pricing__form {
	background: transparent;
}
/* Keep the simple-variant card styled unless the user explicitly clears it */
.wp-block-tr-pricing-calculator.tr-pricing--simple .tr-pricing__form {
	background: #fff;
}

/* Push the sticky quote summary below the sticky header */
.tr-pricing__summary { top: calc(80px + 1.25rem) !important; }
@media (max-width: 782px) {
	.tr-pricing__summary { top: calc(64px + 1rem) !important; }
}

/* =================================================================
 * Workshop card grid (used on terrarium workshops page)
 * ================================================================= */
.tr-workshops__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.25rem;
	max-width: 1200px;
	margin: 2rem auto 0;
}
.tr-workshop-card {
	display: flex !important;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.75rem 1.5rem !important;
	background: #fff;
	border: 1px solid #e5e9e6;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	transition: transform 0.15s, box-shadow 0.15s;
}
.tr-workshop-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.tr-workshop-card__emoji {
	font-size: 2.25rem;
	margin: 0 !important;
	line-height: 1;
}
.tr-workshop-card__title {
	margin: 0 !important;
	font-size: 1.2rem !important;
	color: var(--tr-ink, #1f2a24) !important;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.tr-workshop-card__tag {
	font-size: 0.7rem;
	font-weight: 700;
	background: var(--tr-green-600, #2f7d5a);
	color: #fff;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.tr-workshop-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 !important;
}
.tr-workshop-card__pill {
	font-size: 0.75rem;
	font-weight: 700;
	background: var(--tr-green-50, #f0f8f4);
	color: var(--tr-green-700, #235c42);
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
}
.tr-workshop-card__best {
	font-size: 0.9rem;
	color: #3d4a43;
	margin: 0.25rem 0 0 !important;
}
.tr-workshop-card p {
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0 !important;
}

/* =================================================================
 * "What's included" feature grid variant
 * ================================================================= */
.tr-about__features--grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0.75rem 1.25rem;
	max-width: 1000px;
	margin: 1.5rem auto 0 !important;
}

/* =================================================================
 * Venue partner call-out
 * ================================================================= */
.tr-venue-cta {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}
.tr-venue-cta__inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 2.5rem !important;
	background: var(--tr-ink, #1f2a24);
	border-radius: 20px;
	color: #e8efea;
}
.tr-venue-cta__inner .tr-eyebrow { color: var(--tr-green-200, #a8d6bc) !important; }
.tr-venue-cta__inner .tr-section__title { color: #fff !important; margin-bottom: 1rem !important; }
.tr-venue-cta__inner p { color: #d5dcd7; }
.tr-venue-cta__inner strong { color: #fff; }
.tr-venue-cta__inner ul { color: #d5dcd7; margin: 1rem 0; }
.tr-venue-cta__inner ul li { margin-bottom: 0.35rem; }
.tr-venue-cta__inner em { color: #a8d6bc; font-style: normal; font-size: 0.9rem; }
.tr-venue-cta__inner .wp-block-button__link {
	background: var(--tr-green-500, #3a9770) !important;
	color: #fff !important;
}
.tr-venue-cta__inner .wp-block-button__link:hover {
	background: var(--tr-green-600, #2f7d5a) !important;
}

/* Section meta line (under intro) */
.tr-section__meta {
	font-size: 0.9rem;
	color: #6b7a72;
	margin-top: 0.5rem !important;
}
@media (max-width: 600px) {
	.tr-venue-cta__inner { padding: 1.75rem !important; }
}

/* FAQ page — topical group titles */
.tr-faq__group-title {
	max-width: 800px;
	margin: 0 auto 1rem !important;
	font-size: 1.35rem !important;
	color: var(--tr-ink, #1f2a24) !important;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--tr-green-100, #d9ecdf);
}
.tr-faq-page-hero { padding-bottom: 1rem !important; }

/* Center the FAQ accordion block on the page (was stretching/offsetting) */
.wp-block-tr-faq,
.tr-faq-block {
	max-width: 800px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
	float: none !important;
	width: 100%;
}

/* Safety: hero titles should wrap inside the viewport, never overflow */
.tr-archive-hero__title {
	max-width: min(100%, 1000px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
}
.tr-archive-hero__sub {
	max-width: min(100%, 720px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
html, body { overflow-x: hidden; }

/* =================================================================
 * Blog archive (home.html) — card grid
 * ================================================================= */
.tr-blog-archive { padding-top: 2rem !important; }

.tr-blog-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}
.tr-blog-grid > li { margin: 0; }

.tr-blog-card {
	display: flex !important;
	flex-direction: column;
	gap: 0 !important;
	padding: 0 !important;
	background: #fff;
	border: 1px solid #e5e9e6;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.15s, box-shadow 0.15s;
}
.tr-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.tr-blog-card__img {
	margin: 0 !important;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f4f6f5;
}
.tr-blog-card__img img,
.tr-blog-card__img a { display: block; width: 100%; height: 100%; }
.tr-blog-card__img img { object-fit: cover; }

.tr-blog-card__body {
	padding: 1.25rem 1.25rem 1.4rem !important;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}
.tr-blog-card__cat {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tr-green-700, #235c42);
	margin: 0 !important;
}
.tr-blog-card__cat a { color: inherit !important; text-decoration: none; }
.tr-blog-card__title {
	font-size: 1.2rem !important;
	line-height: 1.3 !important;
	margin: 0 !important;
	color: var(--tr-ink, #1f2a24) !important;
}
.tr-blog-card__title a { color: inherit !important; text-decoration: none; }
.tr-blog-card__title a:hover { color: var(--tr-green-700, #235c42) !important; }
.tr-blog-card__excerpt {
	font-size: 0.92rem;
	line-height: 1.55;
	color: #3d4a43;
	margin: 0 !important;
}
.tr-blog-card__meta {
	display: flex !important;
	gap: 0.5rem;
	align-items: center;
	font-size: 0.78rem;
	color: #6b7a72;
	margin-top: auto !important;
	padding-top: 0.4rem !important;
}
.tr-blog-card__author { font-weight: 700; color: var(--tr-ink, #1f2a24); margin: 0 !important; }
.tr-blog-card__author::after { content: '•'; margin: 0 0.4rem; color: #c3c9c5; }
.tr-blog-card__date { margin: 0 !important; }

.tr-blog-pagination {
	margin-top: 3rem !important;
	gap: 0.4rem;
}
.tr-blog-pagination a,
.tr-blog-pagination .page-numbers {
	padding: 0.4rem 0.7rem;
	border-radius: 6px;
	color: var(--tr-ink, #1f2a24);
	text-decoration: none;
}
.tr-blog-pagination .current {
	background: var(--tr-green-600, #2f7d5a);
	color: #fff;
}

/* =================================================================
 * Single post (single.html)
 * ================================================================= */
.tr-blog-single { max-width: 100%; }
.tr-blog-top { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.tr-blog-top__cols {
	max-width: 1100px;
	margin: 0 auto !important;
	gap: 2.5rem;
	align-items: flex-start !important;
}
@media (max-width: 860px) {
	.tr-blog-top__cols { flex-direction: column !important; gap: 1.5rem; }
	.tr-blog-top__cols > .wp-block-column { flex-basis: 100% !important; width: 100% !important; }
}

.tr-blog-crumb {
	font-size: 0.82rem;
	color: #6b7a72;
	margin: 0 0 1rem !important;
	font-weight: 600;
}
.tr-blog-crumb a { color: #6b7a72; text-decoration: none; }
.tr-blog-crumb a:hover { color: var(--tr-green-700, #235c42); }
.tr-blog-crumb__sep { margin: 0 0.35rem; color: #c3c9c5; }
.tr-blog-crumb__cat { color: var(--tr-ink, #1f2a24); }

.tr-blog-title {
	font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
	line-height: 1.2 !important;
	color: var(--tr-ink, #1f2a24) !important;
	margin: 0 0 1.5rem !important;
	overflow-wrap: break-word;
}

.tr-blog-byline {
	margin-bottom: 1.5rem !important;
	gap: 0.25rem !important;
}
.tr-blog-byline__by {
	font-size: 0.9rem;
	color: var(--tr-ink, #1f2a24);
	font-weight: 700;
	margin: 0 !important;
}
.tr-blog-byline__by .wp-block-post-author-name a { color: inherit; text-decoration: none; }
.tr-blog-byline__meta {
	display: flex !important;
	gap: 0.5rem;
	align-items: center;
	font-size: 0.82rem;
	color: #6b7a72;
}
.tr-blog-byline__meta > * { margin: 0 !important; }
.tr-blog-byline__meta > *:not(:last-child)::after {
	content: '•';
	margin-left: 0.5rem;
	color: #c3c9c5;
}
.tr-blog-byline__read { color: #6b7a72; }

.tr-blog-share-label {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--tr-ink, #1f2a24);
	margin: 0 0 0.5rem !important;
}
.tr-blog-share {
	display: flex;
	gap: 0.6rem;
}
.tr-blog-share a,
.tr-blog-share button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: var(--tr-ink, #1f2a24);
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	text-decoration: none;
}
.tr-blog-share a:hover,
.tr-blog-share button:hover {
	background: var(--tr-green-50, #f0f8f4);
	color: var(--tr-green-700, #235c42);
}
.tr-blog-share button.is-copied {
	background: var(--tr-green-600, #2f7d5a);
	color: #fff;
}
.tr-blog-share button.is-copied::after {
	content: '✓';
	font-weight: 800;
}
.tr-blog-share button.is-copied svg { display: none; }

.tr-blog-featured img,
.tr-blog-featured {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 14px;
	background: #f4f6f5;
}
.tr-blog-featured { overflow: hidden; }

/* Body + sidebar */
.tr-blog-body { padding-top: 1rem !important; padding-bottom: 4rem !important; }
.tr-blog-body__cols {
	max-width: 1100px;
	margin: 0 auto !important;
	gap: 3rem;
	align-items: flex-start !important;
}
@media (max-width: 860px) {
	.tr-blog-body__cols { flex-direction: column !important; gap: 2rem; }
	.tr-blog-body__cols > .wp-block-column { flex-basis: 100% !important; width: 100% !important; }
}

.tr-blog-body__content {
	font-size: 1rem;
	line-height: 1.75;
	color: #3d4a43;
}
.tr-blog-body__content h2 {
	font-size: 1.5rem;
	color: var(--tr-ink, #1f2a24);
	margin: 2rem 0 0.75rem;
}
.tr-blog-body__content h3 {
	font-size: 1.2rem;
	color: var(--tr-ink, #1f2a24);
	margin: 1.5rem 0 0.5rem;
}
.tr-blog-body__content p { margin: 0 0 1.1rem; }
.tr-blog-body__content img { border-radius: 10px; height: auto; }
.tr-blog-body__content figcaption {
	font-size: 0.8rem;
	color: #6b7a72;
	border-left: 2px solid var(--tr-green-600, #2f7d5a);
	padding-left: 0.6rem;
	margin-top: 0.5rem;
}
.tr-blog-body__content blockquote {
	border-left: 3px solid var(--tr-green-600, #2f7d5a);
	padding: 0.25rem 0 0.25rem 1.25rem;
	margin: 1.5rem 0;
	font-style: italic;
	color: var(--tr-ink, #1f2a24);
}

/* Subscribe sidebar */
.tr-blog-subscribe {
	padding: 1.5rem !important;
	background: #fff;
	border: 1px solid var(--tr-ink, #1f2a24);
	border-radius: 12px;
	position: sticky;
	top: calc(80px + 1.25rem);
}
@media (max-width: 860px) {
	.tr-blog-subscribe { position: static; }
}
.tr-blog-subscribe__title {
	margin: 0 0 0.5rem !important;
	font-size: 1.1rem !important;
	color: var(--tr-ink, #1f2a24) !important;
}
.tr-blog-subscribe__lead {
	margin: 0 0 1rem !important;
	font-size: 0.88rem;
	color: #3d4a43;
}
.tr-blog-subscribe__fine {
	margin: 0.75rem 0 0 !important;
	font-size: 0.72rem;
	color: #6b7a72;
}

.tr-newsletter {
	display: flex;
	gap: 0;
	border: 1px solid #d6dad7;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.tr-newsletter input[type="email"] {
	flex: 1;
	padding: 0.65rem 0.8rem;
	border: none;
	font-size: 0.9rem;
	font-family: inherit;
	background: transparent;
	min-width: 0;
}
.tr-newsletter input[type="email"]:focus { outline: none; }
.tr-newsletter__btn {
	padding: 0.65rem 1.25rem;
	background: var(--tr-ink, #1f2a24);
	color: #fff;
	border: none;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}
.tr-newsletter__btn:hover { background: #0f1613; }

/* Blog breadcrumb — flex row with server-rendered category */
.tr-blog-crumb {
	display: flex !important;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 1rem !important;
	font-size: 0.82rem;
	color: #6b7a72;
	font-weight: 600;
}
.tr-blog-crumb > * { margin: 0 !important; }
.tr-blog-crumb__home a { color: #6b7a72; text-decoration: none; }
.tr-blog-crumb__home a:hover { color: var(--tr-green-700, #235c42); }
.tr-blog-crumb__sep { color: #c3c9c5; }
.tr-blog-crumb__cat,
.tr-blog-crumb .wp-block-post-terms {
	color: var(--tr-ink, #1f2a24);
}
.tr-blog-crumb .wp-block-post-terms a {
	color: var(--tr-ink, #1f2a24);
	text-decoration: none;
}
.tr-blog-crumb .wp-block-post-terms a:hover { color: var(--tr-green-700, #235c42); }

/* Header — 3-column layout: nav left, brand centered, FAQ+CTA right */
.tr-header__inner {
	display: grid !important;
	grid-template-columns: 1fr auto 1fr !important;
	align-items: center !important;
	gap: 1.5rem;
}
.tr-header__left { justify-self: start !important; }
.tr-header__brand { justify-self: center !important; gap: 0.65rem !important; }
.tr-header__right { justify-self: end !important; gap: 1.5rem !important; }

.tr-header__link { margin: 0 !important; }
.tr-header__link a {
	color: var(--tr-black, #111) !important;
	text-decoration: none;
	transition: color 0.15s;
}
.tr-header__link a:hover { color: var(--tr-green-700, #235c42) !important; }

.tr-header__titles { gap: 0 !important; }

@media (max-width: 860px) {
	.tr-header__inner { grid-template-columns: auto 1fr auto !important; gap: 0.75rem; }
	.tr-header__brand .tr-header__titles { display: none !important; }
	.tr-header__left { justify-self: start !important; }
	.tr-header__right .tr-header__link { display: none !important; }
}

/* Nav should stay on one row and not wrap */
.tr-header__left .wp-block-navigation,
.tr-header__left .wp-block-navigation__container {
	flex-wrap: nowrap !important;
	gap: 1.25rem !important;
	white-space: nowrap;
}
.tr-header__left .wp-block-navigation__container { align-items: center; }
.tr-header__left .wp-block-navigation-item { white-space: nowrap; }

/* Tighten right group spacing too */
.tr-header__right { gap: 1.1rem !important; }

/* If nav still overflows, allow it to scroll horizontally without wrapping */
.tr-header__left { min-width: 0; overflow-x: auto; scrollbar-width: none; }
.tr-header__left::-webkit-scrollbar { display: none; }

/* Hard-cap header columns so nav can never overlap the brand */
.tr-header__inner {
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
}
.tr-header__left {
	min-width: 0 !important;
	max-width: 100%;
	overflow: hidden !important;
}
.tr-header__left .wp-block-navigation,
.tr-header__left .wp-block-navigation__container {
	max-width: 100%;
	overflow: hidden;
}
.tr-header__right {
	min-width: 0 !important;
	max-width: 100%;
}

/* Right-align nav content within left column, match FAQ size */
.tr-header__left {
	justify-self: stretch !important;
	justify-content: flex-end !important;
	padding-right: 1.5rem;
}
.tr-header__left .wp-block-navigation,
.tr-header__left .wp-block-navigation > ul,
.tr-header__left .wp-block-navigation__container {
	justify-content: flex-end !important;
	margin-left: auto;
}

/* Match nav label size/weight exactly to the FAQ link on the right */
.tr-header__left .wp-block-navigation-item__content,
.tr-header__left .wp-block-navigation-item a {
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	line-height: 1 !important;
}
.tr-header__right .tr-header__link a {
	font-size: 0.8rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	line-height: 1 !important;
}

/* Don't clip nav labels — let items flow naturally, tighten gap */
.tr-header__left { overflow: visible !important; }
.tr-header__left .wp-block-navigation,
.tr-header__left .wp-block-navigation__container { overflow: visible !important; gap: 1rem !important; }

/* Left-align nav so it mirrors the right-edge Book Now button */
.tr-header__left {
	justify-content: flex-start !important;
	padding-right: 0 !important;
}
.tr-header__left .wp-block-navigation,
.tr-header__left .wp-block-navigation > ul,
.tr-header__left .wp-block-navigation__container {
	justify-content: flex-start !important;
	margin-left: 0 !important;
}

/* Nav hover + active: green underline indicator (like Good Inside yellow bar) */
.tr-header__left .wp-block-navigation-item__content,
.tr-header__left .wp-block-navigation-item a,
.tr-header__right .tr-header__link a {
	position: relative;
	padding-bottom: 0.5rem !important;
	transition: color 0.15s;
}
.tr-header__left .wp-block-navigation-item__content::after,
.tr-header__left .wp-block-navigation-item a::after,
.tr-header__right .tr-header__link a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 30%;
	bottom: 0;
	height: 3px;
	border-radius: 2px;
	background: var(--tr-green-600, #2f7d5a);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.18s ease;
}
.tr-header__left .wp-block-navigation-item:hover .wp-block-navigation-item__content::after,
.tr-header__left .wp-block-navigation-item:hover a::after,
.tr-header__left .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
.tr-header__left .wp-block-navigation-item.current-menu-item a::after,
.tr-header__left .current-menu-item > a::after,
.tr-header__right .tr-header__link a:hover::after {
	transform: scaleX(1);
}

/* Force inline-block on nav links so the underline pseudo-element renders */
.tr-header__left .wp-block-navigation-item__content,
.tr-header__left .wp-block-navigation-item > a,
.tr-header__right .tr-header__link a {
	display: inline-block !important;
	position: relative !important;
	padding-bottom: 0.5rem !important;
}

.tr-header__left .wp-block-navigation-item__content::after,
.tr-header__left .wp-block-navigation-item > a::after,
.tr-header__right .tr-header__link a::after {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	right: 30% !important;
	bottom: 0 !important;
	height: 3px !important;
	border-radius: 2px;
	background: var(--tr-green-600, #2f7d5a) !important;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.18s ease;
}

.tr-header__left .wp-block-navigation-item__content:hover::after,
.tr-header__left .wp-block-navigation-item:hover > a::after,
.tr-header__left .wp-block-navigation-item:hover .wp-block-navigation-item__content::after,
.tr-header__left .current-menu-item > a::after,
.tr-header__left .current-menu-item .wp-block-navigation-item__content::after,
.tr-header__right .tr-header__link a:hover::after {
	transform: scaleX(1) !important;
}

/* Clear the current-menu-item permanent underline (hover-only) and broaden selectors */
.tr-header__left .current-menu-item > a::after,
.tr-header__left .current-menu-item .wp-block-navigation-item__content::after,
.tr-header__left .current-menu-item .wp-block-navigation-item__content:not(:hover)::after {
	transform: scaleX(0) !important;
}

/* Underline applies to every anchor inside any nav-item li, regardless of WP classes */
.tr-header__left .wp-block-navigation li a {
	display: inline-block !important;
	position: relative !important;
	padding-bottom: 0.5rem !important;
}
.tr-header__left .wp-block-navigation li a::after {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	right: 30% !important;
	bottom: 0 !important;
	height: 3px !important;
	border-radius: 2px;
	background: var(--tr-green-600, #2f7d5a) !important;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.18s ease;
}
.tr-header__left .wp-block-navigation li:hover > a::after,
.tr-header__left .wp-block-navigation li a:hover::after {
	transform: scaleX(1) !important;
}

/* Logo in header — force faint outline to pop on the white background */
.tr-header__brand .custom-logo,
.tr-header__logo .custom-logo {
	width: 44px !important;
	height: 44px !important;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(17%) sepia(25%) saturate(1247%) hue-rotate(108deg) brightness(95%) contrast(92%);
}

/* Bigger logo + crop whitespace via scaling inside a fixed box */
.tr-header__brand .custom-logo,
.tr-header__logo .custom-logo {
	width: 72px !important;
	height: 72px !important;
	object-fit: contain;
	object-position: center;
	transform: scale(1.35);
	transform-origin: center;
}
.tr-header__brand .wp-block-site-logo,
.tr-header__logo {
	line-height: 0;
	margin: 0 !important;
	overflow: hidden;
	width: 72px;
	height: 72px;
}

/* Cropped logo — no scale hack needed, natural sizing */
.tr-header__brand .custom-logo,
.tr-header__logo .custom-logo {
	width: 64px !important;
	height: 64px !important;
	transform: none !important;
	object-fit: contain;
}
.tr-header__brand .wp-block-site-logo,
.tr-header__logo {
	width: 64px;
	height: 64px;
	overflow: visible;
}

/* =============================================================================
   ADOPTABLES — rescue roster (status pills, profile card, apply form)
   ============================================================================= */

/* --- Status pills (used on cards, profile card, admin) --- */
.tr-status-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.5;
}
.tr-status-pill--available { background: var(--tr-green-100); color: var(--tr-green-800); }
.tr-status-pill--pending   { background: var(--tr-amber-100); color: var(--tr-amber-600); }
.tr-status-pill--adopted   { background: var(--tr-gray-300); color: var(--tr-gray-700); }
.tr-status-pill--hold      { background: #FDE2E1; color: #7A1F1B; }

/* --- Badge overlaid on the listing card image --- */
.tr-adopt-card-link .tr-animal-card__img-wrap { position: relative; }
.tr-adopt-card-link .tr-animal-card__img-wrap .tr-status-pill {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(15, 35, 25, 0.18);
}

/* --- Single adoptable: profile / status card (sidebar) --- */
.tr-adopt-card {
	background: #fff;
	border: 1px solid var(--tr-green-100);
	border-radius: 16px;
	padding: 1.6rem 1.5rem;
	box-shadow: 0 10px 30px rgba(15, 35, 25, 0.07);
	position: sticky;
	top: 100px;
}
.tr-adopt-card__status { margin-bottom: 1.1rem; }
.tr-adopt-card__facts { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.tr-adopt-card__fact {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--tr-sage);
	font-size: 0.95rem;
}
.tr-adopt-card__fact:last-child { border-bottom: 0; }
.tr-adopt-card__label { color: var(--tr-gray-500); font-weight: 600; }
.tr-adopt-card__value { color: var(--tr-green-800); font-weight: 700; text-align: right; }
.tr-adopt-card__block { margin-top: 1.2rem; }
.tr-adopt-card__heading {
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--tr-green-700);
	margin: 0 0 0.5rem;
}
.tr-adopt-card__chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tr-adopt-chip {
	background: var(--tr-sage);
	border-radius: 8px;
	padding: 0.3rem 0.6rem;
	font-size: 0.82rem;
	color: var(--tr-gray-700);
}
.tr-adopt-chip strong { color: var(--tr-green-800); }
.tr-adopt-card__exp { margin: 0.7rem 0 0; font-size: 0.88rem; color: var(--tr-gray-700); }
.tr-adopt-card__note { margin: 0; font-size: 0.9rem; line-height: 1.55; color: var(--tr-gray-700); }
.tr-adopt-card__block--medical .tr-adopt-card__note { font-style: italic; }
.tr-adopt-card__cta { margin-top: 1.5rem; }
.tr-adopt-card__btn {
	display: block;
	text-align: center;
	background: var(--tr-green-700);
	color: #fff !important;
	font-weight: 800;
	text-decoration: none;
	padding: 0.85rem 1rem;
	border-radius: 999px;
	transition: background 0.18s ease;
}
.tr-adopt-card__btn:hover { background: var(--tr-green-800); }
.tr-adopt-card__adopted,
.tr-adopt-card__held {
	text-align: center;
	font-weight: 800;
	margin: 0;
	padding: 0.85rem;
	border-radius: 12px;
}
.tr-adopt-card__adopted { background: var(--tr-green-100); color: var(--tr-green-800); }
.tr-adopt-card__held    { background: var(--tr-amber-bg); color: var(--tr-amber-600); }

/* --- Apply-to-adopt form --- */
.tr-adopt-form {
	background: var(--tr-sage);
	border-radius: 18px;
	padding: 2.4rem 2.2rem;
}
.tr-adopt-form__title { margin: 0 0 0.6rem; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--tr-green-800); }
.tr-adopt-form__intro { margin: 0 0 1.6rem; color: var(--tr-gray-700); line-height: 1.6; }
.tr-adopt-form__row { display: flex; gap: 1rem; flex-wrap: wrap; }
.tr-adopt-form__row > label { flex: 1 1 220px; }
.tr-adopt-form label,
.tr-adopt-form__full {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--tr-green-800);
	font-size: 0.92rem;
}
.tr-adopt-form input,
.tr-adopt-form select,
.tr-adopt-form textarea {
	display: block;
	width: 100%;
	margin-top: 0.35rem;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--tr-green-200);
	border-radius: 10px;
	font: inherit;
	font-weight: 400;
	background: #fff;
}
.tr-adopt-form input:focus,
.tr-adopt-form select:focus,
.tr-adopt-form textarea:focus { outline: 2px solid var(--tr-green-400); border-color: var(--tr-green-400); }
.tr-adopt-form__submit {
	background: var(--tr-green-700);
	color: #fff;
	border: 0;
	font-weight: 800;
	font-size: 1rem;
	padding: 0.9rem 2.2rem;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.18s ease;
}
.tr-adopt-form__submit:hover { background: var(--tr-green-800); }

@media (max-width: 781px) {
	.tr-adopt-card { position: static; }
}

/* =============================================================================
   ADOPTABLE LISTING — AutoTrader-style "VDP" (single adoptable page)
   ============================================================================= */
.tr-vdp-wrap { padding-top: 1.5rem; padding-bottom: 4rem; }
.tr-vdp__crumbs { font-size: 0.85rem; color: var(--tr-gray-500); margin-bottom: 1.2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tr-vdp__crumbs a { color: var(--tr-green-700); text-decoration: none; }
.tr-vdp__crumbs a:hover { text-decoration: underline; }
.tr-vdp__crumbs-current { color: var(--tr-gray-500); }

.tr-vdp__grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 2rem; align-items: start; }

/* --- Gallery --- */
.tr-vdp-gallery__stage {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	overflow: hidden;
	background: var(--tr-green-900);
}
.tr-vdp-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-vdp-gallery__badge { position: absolute; top: 14px; left: 14px; box-shadow: 0 2px 8px rgba(15,35,25,0.25); }
.tr-vdp-gallery__count {
	position: absolute; bottom: 14px; right: 14px;
	background: rgba(15,35,25,0.78); color: #fff; font-size: 0.74rem; font-weight: 700;
	padding: 4px 10px; border-radius: 999px;
}
.tr-vdp-gallery__placeholder {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
	background: var(--tr-sage); color: var(--tr-green-700);
}
.tr-vdp-gallery__placeholder-icon { font-size: 3rem; }
.tr-vdp-gallery__placeholder-text { font-weight: 700; letter-spacing: 0.02em; }
.tr-vdp-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.tr-vdp-gallery__thumb {
	flex: 0 0 auto; width: 84px; height: 62px; border-radius: 8px; border: 0;
	background-size: cover; background-position: center; cursor: pointer; padding: 0;
	outline: 2px solid transparent; outline-offset: 2px; transition: outline-color 0.15s ease;
}
.tr-vdp-gallery__thumb.is-active { outline-color: var(--tr-green-400); }

/* --- Title --- */
.tr-vdp__head { margin: 1.6rem 0 0.4rem; }
.tr-vdp__title { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; margin: 0; color: var(--tr-green-800); }
.tr-vdp__subtitle { margin: 0.35rem 0 0; color: var(--tr-gray-500); font-size: 1.05rem; font-style: italic; }

/* --- Quick facts bar --- */
.tr-vdp-facts {
	list-style: none; margin: 1.3rem 0; padding: 1.1rem 0;
	display: flex; flex-wrap: wrap; gap: 1.5rem;
	border-top: 1px solid var(--tr-green-100); border-bottom: 1px solid var(--tr-green-100);
}
.tr-vdp-facts__item { display: flex; flex-direction: column; gap: 2px; min-width: 90px; }
.tr-vdp-facts__value { font-weight: 800; color: var(--tr-green-800); font-size: 1.02rem; }
.tr-vdp-facts__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tr-gray-500); }

/* --- Sections --- */
.tr-vdp-section { margin-top: 2.2rem; }
.tr-vdp-section__title { font-size: 1.4rem; margin: 0 0 1rem; color: var(--tr-green-800); padding-bottom: 0.5rem; border-bottom: 2px solid var(--tr-sage); }
.tr-vdp-section__body { line-height: 1.7; }
.tr-vdp-section__body p { margin: 0 0 1rem; }

.tr-vdp-specs { width: 100%; border-collapse: collapse; }
.tr-vdp-specs tr { border-bottom: 1px solid var(--tr-sage); }
.tr-vdp-specs th { text-align: left; padding: 0.7rem 1rem 0.7rem 0; color: var(--tr-gray-500); font-weight: 600; width: 42%; vertical-align: top; }
.tr-vdp-specs td { padding: 0.7rem 0; color: var(--tr-green-800); font-weight: 600; }

.tr-vdp-good { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tr-vdp-good__item {
	display: flex; align-items: center; gap: 0.5rem;
	background: var(--tr-sage); border-radius: 10px; padding: 0.6rem 0.9rem; font-size: 0.92rem;
}
.tr-vdp-good__label { color: var(--tr-gray-700); }
.tr-vdp-good__value { font-weight: 800; color: var(--tr-green-800); }
.tr-vdp-good--yes { background: var(--tr-green-100); }
.tr-vdp-good--no { background: #FDE2E1; }
.tr-vdp-good--no .tr-vdp-good__value { color: #7A1F1B; }

.tr-vdp-section--health { background: var(--tr-amber-bg); border: 1px solid var(--tr-amber-100); border-radius: 14px; padding: 1.4rem 1.6rem; }
.tr-vdp-section--health .tr-vdp-section__title { border-bottom-color: var(--tr-amber-100); }
.tr-vdp-note__h { font-size: 0.95rem; margin: 0.9rem 0 0.3rem; color: var(--tr-amber-600); }
.tr-vdp-note__p { margin: 0; line-height: 1.6; color: var(--tr-gray-700); }

/* --- Sticky sidebar --- */
.tr-vdp-cta {
	position: sticky; top: 100px;
	background: #fff; border: 1px solid var(--tr-green-100); border-radius: 16px;
	padding: 1.6rem 1.5rem; box-shadow: 0 14px 40px rgba(15,35,25,0.09);
}
.tr-vdp-cta__status { margin-bottom: 0.9rem; }
.tr-vdp-cta__fee { font-size: 2rem; font-weight: 900; color: var(--tr-green-800); margin: 0 0 1.1rem; line-height: 1.1; }
.tr-vdp-cta__fee-label { display: block; font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tr-gray-500); }
.tr-vdp-cta__btn {
	display: block; text-align: center; background: var(--tr-green-700); color: #fff !important;
	font-weight: 800; text-decoration: none; padding: 0.95rem 1rem; border-radius: 999px; transition: background 0.18s ease;
}
.tr-vdp-cta__btn:hover { background: var(--tr-green-800); }
.tr-vdp-cta__done { text-align: center; font-weight: 800; margin: 0; padding: 0.9rem; background: var(--tr-green-100); color: var(--tr-green-800); border-radius: 12px; }
.tr-vdp-cta__facts { list-style: none; margin: 1.3rem 0 0; padding: 0; }
.tr-vdp-cta__facts li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--tr-sage); font-size: 0.92rem; }
.tr-vdp-cta__facts li:last-child { border-bottom: 0; }
.tr-vdp-cta__facts span { color: var(--tr-gray-500); }
.tr-vdp-cta__facts strong { color: var(--tr-green-800); }
.tr-vdp-cta__reassure { margin: 1.1rem 0 0; font-size: 0.84rem; line-height: 1.5; color: var(--tr-gray-500); }

/* --- More reptiles --- */
.tr-vdp-more { margin-top: 3.5rem; }
.tr-vdp-more__title { font-size: 1.5rem; margin: 0 0 1.3rem; color: var(--tr-green-800); }
.tr-vdp-more__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tr-vdp-more__card { display: block; text-decoration: none; border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--tr-green-100); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.tr-vdp-more__card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,35,25,0.1); }
.tr-vdp-more__img-wrap { position: relative; aspect-ratio: 4 / 3; background: var(--tr-sage); }
.tr-vdp-more__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-vdp-more__img--ph { display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.tr-vdp-more__badge { position: absolute; top: 10px; left: 10px; }
.tr-vdp-more__body { padding: 0.9rem 1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.tr-vdp-more__name { font-weight: 800; color: var(--tr-green-800); }
.tr-vdp-more__fee { font-weight: 700; color: var(--tr-green-700); font-size: 0.92rem; }

.tr-vdp-formwrap { margin-top: 3rem; }

/* --- Responsive --- */
@media (max-width: 980px) {
	.tr-vdp__grid { grid-template-columns: 1fr; }
	.tr-vdp-cta { position: static; }
	.tr-vdp-more__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.tr-vdp-more__grid { grid-template-columns: 1fr; }
	.tr-vdp-facts { gap: 1rem 1.5rem; }
}

/* --- /adopt/ listing card spec line + fee --- */
.tr-card-spec { margin: 0.2rem 0 0.4rem; font-size: 0.84rem; color: var(--tr-gray-500); line-height: 1.4; }
.tr-card-fee { margin: 0 0 0.4rem; font-size: 1.05rem; font-weight: 800; color: var(--tr-green-700); }

/* =============================================================================
   DESIGN-CRITIQUE FIXES — visibility failsafe, touch targets, placeholder
   ============================================================================= */

/* Failsafe: never leave content stuck hidden behind a JS reveal (WP core
   .hide/.show image reveal + any scroll-reveal). Animation is enhancement only. */
.wp-block-image img.hide { visibility: visible !important; }
@media (prefers-reduced-motion: reduce) {
	[class*="reveal"], [class*="fade"], .wp-block-image img.hide, .wp-block-image img {
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
}

/* Touch targets >=44px (nav links + persistent header CTA). */
.tr-nav .wp-block-navigation-item__content {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}
.tr-header__cta .wp-block-button__link {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}
@media (max-width: 600px) {
	.wp-block-navigation__responsive-container .wp-block-navigation-item__content {
		min-height: 44px;
		display: flex;
		align-items: center;
	}
}

/* Branded placeholder silhouette (shown until a real photo is added). */
.tr-vdp-more__img--ph,
.tr-vdp-gallery__placeholder-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tr-green-400);
}
.tr-vdp-more__img--ph svg { width: 46%; height: 46%; opacity: 0.55; }
.tr-vdp-gallery__placeholder-icon svg { width: 110px; height: 110px; opacity: 0.55; }

/* =============================================================================
   HEADER v2 — Function-style: brand (left) · nav (center) · actions (right).
   Supersedes the older 3-column grid patchwork above.
   ============================================================================= */
.tr-header__inner {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1.5rem !important;
}
.tr-header__brand {
	justify-self: auto !important;
	flex: 0 0 auto !important;
	display: flex !important;
	align-items: center !important;
	gap: 0.55rem !important;
}
.tr-header__nav {
	flex: 1 1 auto !important;
	min-width: 0 !important;
	display: flex !important;
	justify-content: center !important;
	overflow: visible !important;
}
.tr-header__nav .wp-block-navigation,
.tr-header__nav .wp-block-navigation__container {
	flex-wrap: nowrap !important;
	gap: 1.6rem !important;
	justify-content: center !important;
	overflow: visible !important;
}
.tr-header__nav .wp-block-navigation-item__content {
	font-size: 0.85rem !important;
	font-weight: 700 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	color: var(--tr-gray-700) !important;
	white-space: nowrap;
}
.tr-header__nav .wp-block-navigation-item__content:hover { color: var(--tr-green-700) !important; }
.tr-header__actions {
	justify-self: auto !important;
	flex: 0 0 auto !important;
	display: flex !important;
	align-items: center !important;
	gap: 1.25rem !important;
	margin-left: 0 !important;
}
.tr-header__surrender { margin: 0 !important; font-size: 0.85rem !important; font-weight: 700 !important; }
.tr-header__surrender a { color: var(--tr-green-800) !important; text-decoration: none !important; white-space: nowrap; }
.tr-header__surrender a:hover { color: var(--tr-green-600) !important; }

/* Tablet: collapse nav to the right (hamburger), keep brand + actions visible */
@media (max-width: 900px) {
	.tr-header__inner { gap: 0.75rem !important; }
	.tr-header__nav { order: 3 !important; flex: 0 0 auto !important; }
	.tr-header__actions { order: 2 !important; }
}
@media (max-width: 600px) {
	.tr-header__surrender { display: none !important; }
}

/* =============================================================================
   VDP above-the-fold — name + key stats live in the right card (AutoTrader-style)
   ============================================================================= */
.tr-vdp-cta__title { font-size: 1.95rem; line-height: 1.1; margin: 0 0 0.2rem; color: var(--tr-green-800); font-weight: 900; letter-spacing: -0.01em; }
.tr-vdp-cta__species { margin: 0 0 0.9rem; font-size: 0.95rem; font-style: italic; color: var(--tr-gray-500); }
.tr-vdp-cta__status { margin: 0 0 0; }
/* Divider above the fee, AutoTrader-style */
.tr-vdp-cta__fee { border-top: 1px solid var(--tr-sage); padding-top: 1.1rem; margin-top: 1rem; }
/* Cap gallery height so the info card sits beside it above the fold */
.tr-vdp-gallery__stage { max-height: none; }
/* The card top-aligns with the gallery (no sticky offset jump on load) */
.tr-vdp__grid { align-items: start; }
.tr-vdp-cta { top: 88px; }
@media (max-width: 980px) {
	.tr-vdp-gallery__stage { max-height: none; }
	/* Mobile: details card sits ABOVE the image */
	.tr-vdp__side { order: -1; }
	.tr-vdp__main { order: 0; }
}


/* wpautop safety net: stray <p> must never become a grid item */
.tr-vdp__grid > p { display: none !important; }

/* =============================================================================
   FIXES 2026-06-24: clickable cards, stats wrapping, about stacking
   ============================================================================= */
/* Whole adopt/ambassador card clickable via stretched link on the title */
.tr-animal-card { position: relative; cursor: pointer; }
.tr-animal-card .tr-animal-card__name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.tr-animal-card .tr-animal-card__name a { position: static; }

/* Stats bar: fit big words, never break mid-word, go 2-up under 1000px */
.tr-stat__number { font-size: clamp(1.7rem, 3.2vw, 2.6rem) !important; word-break: keep-all !important; overflow-wrap: normal !important; hyphens: none !important; }
.tr-stat__label  { word-break: keep-all !important; overflow-wrap: normal !important; hyphens: none !important; }
@media (max-width: 1000px) {
	.tr-stats__cols { flex-wrap: wrap !important; }
	.tr-stats__cols > .tr-stat { flex: 0 0 50% !important; max-width: 50% !important; }
}

/* About section: stack cleanly under 1000px (no narrow-left / empty-right) */
@media (max-width: 1000px) {
	.tr-about__cols { flex-direction: column !important; }
	.tr-about__image-col, .tr-about__text-col { flex: 1 1 100% !important; max-width: 100% !important; }
	.tr-about__image-wrap { margin-left: auto !important; margin-right: auto !important; }
}

/* =============================================================================
   FIXES (cont.) — hero spacing, about image mobile, grid wpautop net
   ============================================================================= */
/* Tighten the awkward empty space in the home hero */
.tr-hero { min-height: auto !important; padding-top: clamp(2.5rem, 5vw, 4rem) !important; padding-bottom: clamp(2.5rem, 5vw, 4rem) !important; }
/* The About image goes full-width on mobile (was floating narrow-left) */
@media (max-width: 1000px) {
	.tr-about__image-wrap { max-width: 100% !important; margin: 0 !important; }
}
/* Safety net: a stray wpautop <p> must never become a card-grid item */
.tr-vdp-more__grid > p, .tr-adopt-grid > p, .tr-vdp__grid > p { display: none !important; }

/* ===== v42 — home "About" CTA spacing ===================================== */
/* blockGap is 0 globally, so the disclaimer + button sit flush. Give the CTA
   (and the disclaimer) breathing room from the feature list above it. */
.tr-about__disclaimer { margin-top: 1.5rem; }
.tr-about__text-col .wp-block-buttons { margin-top: 1.75rem; }
/* (Surrender page full-width handled by the page-surrender template, no CSS.) */

/* ===== v43 — Surrender hero eyebrow: contrast + center =================== */
/* Page content sets an inline pale color (#A8D5BA) on the pale pill → low
   contrast, and .tr-eyebrow is inline-block so it sits left. Fix both. */
.tr-section--hero .tr-eyebrow {
	color: #1B3A2F !important;     /* dark green on the pale-green pill = readable */
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* ===== v43 — Surrender "How Surrendering Works" steps: wider 2-up ======== */
/* 4 narrow columns made the step cards tall & skinny. Wrap to a 2x2 grid in a
   wider container on desktop; WP's native stacking still handles mobile. */
@media (min-width: 782px) {
	.tr-section--process .wp-block-columns {
		flex-wrap: wrap !important;
		max-width: 1040px !important;
		margin-left: auto;
		margin-right: auto;
		gap: 1.5rem;
	}
	.tr-section--process .wp-block-column {
		flex-basis: calc(50% - 0.75rem) !important;
		flex-grow: 1;
	}
}

/* ===== v44 — Surrender hero: small padding around the H1 / hero content === */
.tr-section--hero {
	padding-top: clamp(2.75rem, 6vw, 4.5rem) !important;
	padding-bottom: clamp(2.75rem, 6vw, 4.5rem) !important;
	padding-left: clamp(1.5rem, 6vw, 3rem) !important;
	padding-right: clamp(1.5rem, 6vw, 3rem) !important;
}
.tr-section--hero .wp-block-heading { padding-left: 0.25rem; padding-right: 0.25rem; }

/* ===== v45 — more vertical breathing room around the Surrender hero H1 ==== */
.tr-section--hero .wp-block-heading {
	margin-top: clamp(1rem, 3vw, 1.75rem);
	margin-bottom: clamp(1rem, 3vw, 1.75rem);
}
.tr-section--hero .tr-eyebrow { margin-bottom: 0.25rem; }

/* ===== v46 — Authorship: author box, team profiles, team grid ============= */
.tr-team-single, .tr-author-box, .tr-team-grid, .tr-team {
	--tr-a-green: var(--wp--preset--color--primary, #2D6A4F);
	--tr-a-dark:  var(--wp--preset--color--dark-green, #1B3A2F);
	--tr-a-sage:  var(--wp--preset--color--sage, #F0F7F4);
	--tr-a-100:   var(--wp--preset--color--green-100, #D8F3DC);
	--tr-a-border:var(--wp--preset--color--border, #E5E7EB);
	--tr-a-muted: var(--wp--preset--color--muted, #6B7280);
}

/* Avatars + monogram fallback */
.tr-avatar { display:inline-flex; align-items:center; justify-content:center; overflow:hidden; border-radius:50%; background:var(--wp--preset--color--green-100,#D8F3DC); flex:0 0 auto; }
.tr-avatar img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.tr-avatar--mono { background:var(--wp--preset--color--primary,#2D6A4F); color:#fff; font-weight:800; font-family:var(--wp--preset--font-family--heading,"Nunito",sans-serif); line-height:1; }
.tr-avatar--box  { width:84px;  height:84px;  font-size:1.6rem; }
.tr-avatar--hero { width:128px; height:128px; font-size:2.6rem; }
.tr-avatar--card { width:96px;  height:96px;  font-size:1.9rem; }

/* Shared pill buttons */
.tr-btn { display:inline-flex; align-items:center; justify-content:center; font-weight:800; border-radius:50px; padding:0.85rem 1.75rem; text-decoration:none; border:2px solid transparent; transition:background .15s, color .15s, border-color .15s; }
.tr-btn--primary { background:var(--wp--preset--color--primary,#2D6A4F); color:#fff; }
.tr-btn--primary:hover { background:var(--wp--preset--color--dark-green,#1B3A2F); color:#fff; }
.tr-btn--ghost { background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.tr-btn--ghost:hover { background:rgba(255,255,255,.12); color:#fff; }

/* Author box (bottom of blog posts) */
.tr-author-box { display:flex; gap:1.25rem; align-items:flex-start; background:var(--wp--preset--color--sage,#F0F7F4); border:1px solid var(--wp--preset--color--green-100,#D8F3DC); border-radius:18px; padding:1.5rem; margin:2.5rem 0 0; }
.tr-author-box__eyebrow { font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--wp--preset--color--primary,#2D6A4F); margin:0 0 .15rem; }
.tr-author-box__name { font-size:1.3rem; margin:0; line-height:1.1; }
.tr-author-box__title { font-size:.95rem; color:var(--wp--preset--color--muted,#6B7280); font-weight:600; margin:.1rem 0 .6rem; }
.tr-author-box__bio { font-size:.95rem; line-height:1.6; margin:0 0 .75rem; }
.tr-author-box__cta { font-weight:800; color:var(--wp--preset--color--primary,#2D6A4F); text-decoration:none; }
.tr-author-box__cta:hover { text-decoration:underline; }
@media (max-width:600px){ .tr-author-box { flex-direction:column; } }

/* Team profile page */
.tr-team { max-width:820px; margin:0 auto; }
.tr-team__hero { display:flex; gap:1.5rem; align-items:center; margin-bottom:2.5rem; }
.tr-team__back { margin:0 0 .5rem; font-size:.9rem; font-weight:700; }
.tr-team__back a { color:var(--wp--preset--color--primary,#2D6A4F); text-decoration:none; }
.tr-team__name { margin:0; line-height:1.05; }
.tr-team__role { font-size:1.05rem; font-weight:700; color:var(--wp--preset--color--primary,#2D6A4F); margin:.25rem 0 .5rem; }
.tr-team__intro { font-size:1.1rem; line-height:1.55; color:var(--wp--preset--color--muted,#6B7280); margin:0; }
.tr-team__facts { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; background:var(--wp--preset--color--sage,#F0F7F4); border-radius:16px; padding:1.5rem; margin:0 0 2.5rem; text-align:center; }
.tr-team__fact-value { display:block; font-family:var(--wp--preset--font-family--heading,"Nunito",sans-serif); font-weight:900; font-size:1.8rem; color:var(--wp--preset--color--dark-green,#1B3A2F); line-height:1; }
.tr-team__fact-label { display:block; font-size:.85rem; color:var(--wp--preset--color--muted,#6B7280); margin-top:.35rem; }
.tr-team__section-title { font-size:clamp(1.5rem,3vw,2rem); margin:0 0 1rem; }
.tr-team__bio { margin:0 0 2.5rem; }
.tr-team__bio p { margin:0 0 1rem; line-height:1.7; }
.tr-team__specs { margin:0 0 2.5rem; }
.tr-team__spec-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.tr-team__spec-card { background:#fff; border:1px solid var(--wp--preset--color--border,#E5E7EB); border-radius:14px; padding:1.25rem; }
.tr-team__spec-title { font-size:1.05rem; margin:0 0 .4rem; }
.tr-team__spec-desc { font-size:.92rem; color:var(--wp--preset--color--muted,#6B7280); margin:0; line-height:1.5; }
.tr-team__quote { border-left:4px solid var(--wp--preset--color--primary,#2D6A4F); background:var(--wp--preset--color--green-100,#D8F3DC); border-radius:0 12px 12px 0; padding:1.25rem 1.5rem; margin:0 0 2.5rem; font-size:1.15rem; font-style:italic; color:var(--wp--preset--color--dark-green,#1B3A2F); }
.tr-team__quote p { margin:0; }
.tr-team__cta { background:var(--wp--preset--color--dark-green,#1B3A2F); color:#fff; border-radius:18px; padding:2.25rem 2rem; text-align:center; }
.tr-team__cta-title { color:#fff; margin:0 0 .5rem; }
.tr-team__cta-sub { color:rgba(255,255,255,.85); max-width:36rem; margin:0 auto 1.4rem; }
.tr-team__cta-actions { display:flex; gap:.75rem; justify-content:center; flex-wrap:wrap; }
@media (max-width:700px){ .tr-team__hero { flex-direction:column; text-align:center; } .tr-team__facts, .tr-team__spec-grid { grid-template-columns:1fr; } }

/* Team grid (About page) */
.tr-team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; max-width:820px; margin:2.5rem auto 0; }
.tr-team-card { background:#fff; border:1px solid var(--wp--preset--color--green-100,#D8F3DC); border-radius:18px; padding:2rem 1.5rem; text-align:center; display:flex; flex-direction:column; align-items:center; }
.tr-team-card .tr-avatar { margin-bottom:1rem; }
.tr-team-card__name { margin:0; font-size:1.3rem; }
.tr-team-card__role { color:var(--wp--preset--color--primary,#2D6A4F); font-weight:700; margin:.2rem 0 .75rem; }
.tr-team-card__bio { font-size:.95rem; color:var(--wp--preset--color--muted,#6B7280); line-height:1.6; margin:0 0 1rem; }
.tr-team-card__link { font-weight:800; color:var(--wp--preset--color--primary,#2D6A4F); text-decoration:none; margin-top:auto; }
.tr-team-card__link:hover { text-decoration:underline; }
@media (max-width:600px){ .tr-team-grid { grid-template-columns:1fr; } }

/* Linked byline name */
.tr-byline-link { color:inherit; text-decoration:none; border-bottom:1px solid currentColor; }
.tr-byline-link:hover { color:var(--wp--preset--color--primary,#2D6A4F); }

/* ===== v48 — About-page CTA cluster: tidy one row on desktop, stack on mobile */
.tr-about-content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: stretch;
	margin-top: 1.5rem;
}
.tr-about-content .wp-block-buttons .wp-block-button { margin: 0; }
.tr-about-content .wp-block-buttons .wp-block-button__link {
	padding-left: 1.1rem;
	padding-right: 1.1rem;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 600px) {
	.tr-about-content .wp-block-buttons { flex-direction: column; align-items: stretch; }
	.tr-about-content .wp-block-buttons .wp-block-button,
	.tr-about-content .wp-block-buttons .wp-block-button__link { width: 100%; }
}

/* ===== v49 — kill wpautop stray <p> in team profile grids (phantom row) === */
.tr-team__facts > p,
.tr-team__spec-grid > p,
.tr-team__cta-actions > p,
.tr-team-grid > p { display: none !important; }

/* ===== v50 — bigger team-page avatars (profile hero + About cards) ======== */
.tr-avatar--hero { width: 184px; height: 184px; font-size: 3.4rem; }
.tr-avatar--card { width: 132px; height: 132px; font-size: 2.5rem; }
@media (max-width: 700px) {
	.tr-avatar--hero { width: 150px; height: 150px; font-size: 2.9rem; }
}

/* ===== v51 — author box: tighten spacing (article heading/p margins leaked) */
.tr-author-box .tr-author-box__eyebrow { margin: 0 0 0.25rem !important; }
.tr-author-box .tr-author-box__name    { margin: 0 0 0.35rem !important; }
.tr-author-box .tr-author-box__title   { margin: 0 0 0.7rem !important; }
.tr-author-box .tr-author-box__bio      { margin: 0 0 0.9rem !important; }

/* ===== v52 — custom mobile menu (core nav overlay unreliable on EasyWP) === */
.tr-burger { display: none; }
.tr-mobile-menu { display: none; }

@media (max-width: 900px) {
	/* Hide the inline desktop nav; our burger takes over. */
	.tr-header__nav { display: none !important; }

	.tr-burger {
		display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
		gap: 5px; width: 44px; height: 44px; flex: 0 0 auto;
		padding: 0; border: 0; background: transparent; cursor: pointer; border-radius: 10px;
	}
	.tr-burger__bar { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--tr-green-800, #1B3A2F); transition: transform .2s ease, opacity .2s ease; }
	.tr-burger.is-open .tr-burger__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
	.tr-burger.is-open .tr-burger__bar:nth-child(2) { opacity: 0; }
	.tr-burger.is-open .tr-burger__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

	.tr-mobile-menu {
		position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; border-top: 1px solid var(--tr-border, #E5E7EB);
		box-shadow: 0 14px 28px rgba(27,58,47,.14);
		flex-direction: column; padding: 0.25rem clamp(1.25rem,4vw,3rem) 1.25rem;
		z-index: 150; max-height: calc(100vh - 72px); overflow-y: auto;
	}
	.tr-mobile-menu.is-open { display: flex; }
	.tr-mobile-menu a {
		display: block; padding: 0.95rem 0.25rem; font-weight: 700; font-size: 1.05rem;
		color: var(--tr-green-800, #1B3A2F); text-decoration: none;
		border-bottom: 1px solid var(--tr-border, #E5E7EB);
	}
	.tr-mobile-menu a:hover { color: var(--tr-green-600, #40916C); }
	.tr-mobile-menu__surrender { border-bottom: 0 !important; }
}

/* Phones: icon-only logo + compact Adopt button so the burger fits. */
@media (max-width: 600px) {
	.tr-header__brand .wp-block-site-title { display: none !important; }
	.tr-header__actions { gap: 0.5rem !important; }
	.tr-header__cta .wp-block-button__link { padding: 0.55rem 1rem !important; font-size: 0.7rem !important; }
}

/* ===== v53 — stack ALL column blocks on mobile ============================ */
/* WP's native isStackedOnMobile relies on the core wp-block-columns stylesheet,
   which isn't loaded on this site — so columns stayed as N skinny columns on
   phones. Replicate core's behaviour for every column block. */
@media (max-width: 781px) {
	.wp-block-columns:not(.is-not-stacked-on-mobile) {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
}

/* ===== v54 — home Surrender CTA (.tr-pricing): full-bleed + breathing room = */
.tr-section.tr-pricing { max-width: none !important; margin: 0 auto !important; }  /* was capped 1100px + margin:2rem auto (stray calc rule) → full width, flush bands */
.tr-pricing__cols {
	max-width: 1160px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	gap: clamp(2rem, 4vw, 3.75rem) !important;               /* was 0 — separate text from card */
	align-items: start !important;
}
/* Left column: looser rhythm */
.tr-pricing__intro { margin-bottom: 1.75rem !important; }
.tr-pricing__feature-list { margin-bottom: 1.75rem !important; }
.tr-pricing__feature { padding: 0.95rem 0 !important; }
.tr-pricing__travel-note { margin-top: 0 !important; }
/* Right card: looser items + divider spacing */
.tr-price-card { padding: clamp(1.75rem, 3vw, 2.5rem) !important; }
.tr-price-card__divider { margin: 1.4rem 0 !important; }
.tr-price-card__includes { gap: 0.95rem !important; margin-bottom: 1.75rem !important; }
.tr-price-card__item { line-height: 1.4 !important; }
.tr-price-card__duration { margin-top: 0.4rem !important; }
