/* =============================================================
   TROPICAL BLEND — BLOCK STYLES
   All custom block component styles in one file.
   ============================================================= */

/* ── Shared tokens ─────────────────────────────────────────── */
:root {
	--tb-forest:      #1B5E20;
	--tb-sage:        #4A7C59;
	--tb-light-sage:  #A8C5A0;
	--tb-cream:       #FAF7F2;
	--tb-off-white:   #F3EDE4;
	--tb-dark:        #1A1E1A;
	--tb-charcoal:    #2A2F2A;
	--tb-terracotta:  #C17D3E;
	--tb-muted:       #7A8078;
	--tb-border:      #E8E4DC;
	--tb-font-h:      'Cormorant Garamond', Georgia, serif;
	--tb-font-b:      'Raleway', system-ui, sans-serif;
	--tb-trust-bar-h: 36px;
	--tb-header-h:    72px;
	--tb-ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Layout helpers ─────────────────────────────────────────── */
.tb-wrap {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.tb-section { padding-block: 5rem; }
.tb-section--cream  { background: var(--tb-cream); }
.tb-section--white  { background: #fff; }

.tb-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	border-bottom: 1px solid var(--tb-border);
	padding-bottom: 1.25rem;
	margin-bottom: 2.5rem;
}

.tb-section-title {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	color: var(--tb-dark);
	margin: 0;
	letter-spacing: -0.01em;
}

.tb-eyebrow {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--tb-sage);
	margin-bottom: 0.5rem;
}
.tb-eyebrow--light { color: var(--tb-light-sage); }

.tb-view-all {
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tb-charcoal);
	text-decoration: none;
	opacity: 0.55;
	white-space: nowrap;
	transition: opacity 0.2s;
}
.tb-view-all:hover { opacity: 1; color: var(--tb-charcoal); }

.tb-empty-msg {
	text-align: center;
	color: var(--tb-muted);
	font-family: var(--tb-font-b);
	padding: 4rem 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.tb-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.9rem 2.25rem;
	border-radius: 2px;
	border: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	line-height: 1;
}
.tb-btn--dark   { background: var(--tb-dark);        color: #fff; }
.tb-btn--dark:hover { background: var(--tb-forest);  color: #fff; }
.tb-btn--amber  { background: var(--tb-terracotta);  color: #fff; }
.tb-btn--amber:hover { background: #a8662e;           color: #fff; }
.tb-btn--ghost  { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.22); }
.tb-btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
.tb-btn--primary { background: var(--tb-forest); color: #fff; }
.tb-btn--primary:hover { background: var(--tb-sage); color: #fff; }

/* ── Pill (search suggestions) ──────────────────────────────── */
.tb-pill {
	display: inline-block;
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	padding: 0.3rem 0.85rem;
	border: 1px solid var(--tb-border);
	border-radius: 999px;
	color: var(--tb-charcoal);
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}
.tb-pill:hover { background: var(--tb-off-white); border-color: #ccc; color: var(--tb-charcoal); }

/* =============================================================
   SITE HEADER BLOCK
   ============================================================= */

.tb-skip {
	position: absolute;
	top: -100%;
	left: 1rem;
	padding: 0.5rem 1.5rem;
	background: var(--tb-forest);
	color: #fff;
	font-weight: 600;
	border-radius: 4px;
	z-index: 9999;
	text-decoration: none;
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
}
.tb-skip:focus { top: 1rem; }

/* Trust bar */
.tb-trust-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 101;
	height: var(--tb-trust-bar-h);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tb-dark);
	color: var(--tb-light-sage);
	font-family: var(--tb-font-b);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-align: center;
	padding: 0 1.5rem;
}
.tb-trust-bar__inner {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Header */
.tb-header {
	position: fixed;
	top: var(--tb-trust-bar-h);
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	height: var(--tb-header-h);
	background: rgba(250, 247, 242, 0.94);
	backdrop-filter: blur(16px) saturate(1.4);
	-webkit-backdrop-filter: blur(16px) saturate(1.4);
	box-shadow: 0 2px 12px rgba(30,42,30,0.06);
	transition: box-shadow 0.3s var(--tb-ease);
}

/* Offset page content so it doesn't hide behind the fixed trust bar + header */
body {
	padding-top: calc(var(--tb-trust-bar-h) + var(--tb-header-h));
}

/* Extra breathing room below the fixed header for all page content */
.wp-block-group[id="main-content"],
#main-content {
	padding-top: 3.5rem !important;
}

/* WordPress admin bar offset when logged in */
body.admin-bar .tb-trust-bar { top: 32px; }
body.admin-bar .tb-header    { top: calc(32px + var(--tb-trust-bar-h)); }
@media screen and (max-width: 782px) {
	body.admin-bar .tb-trust-bar { top: 46px; }
	body.admin-bar .tb-header    { top: calc(46px + var(--tb-trust-bar-h)); }
}
.tb-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(30,42,30,0.1);
}
.tb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1.5rem;
	height: 100%;
}

/* Logo */
.tb-logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	flex-shrink: 0;
}
.tb-logo__name {
	font-family: var(--tb-font-h);
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--tb-forest);
	letter-spacing: -0.01em;
	line-height: 1;
}
.tb-logo:hover .tb-logo__name { color: var(--tb-sage); }

/* Primary nav */
.tb-nav { flex: 1; display: flex; justify-content: center; }
.tb-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.tb-nav__item { position: relative; }
.tb-nav__link,
.tb-nav .tb-nav__list li a {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tb-charcoal);
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
	transition: color 0.15s, background 0.15s;
}
.tb-nav__list li a:hover,
.tb-nav__link:hover { color: var(--tb-forest); background: rgba(74,124,89,0.06); }
.tb-nav__list li.current-menu-item > a { color: var(--tb-forest); }

/* Header actions */
.tb-header__actions { display: flex; align-items: center; gap: 0.25rem; }

.tb-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: none;
	background: transparent;
	color: var(--tb-charcoal);
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	position: relative;
}
.tb-icon-btn:hover { background: rgba(74,124,89,0.08); color: var(--tb-forest); }

/* Cart count badge */
.tb-cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 16px;
	height: 16px;
	background: var(--tb-terracotta);
	color: #fff;
	font-family: var(--tb-font-b);
	font-size: 0.6rem;
	font-weight: 700;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	line-height: 1;
}
.tb-cart-count[hidden] { display: none; }

/* Search drawer */
.tb-search-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(26, 30, 26, 0.6);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: calc(var(--tb-header-h) + 2rem);
	opacity: 0;
	transition: opacity 0.22s var(--tb-ease);
	pointer-events: none;
}
.tb-search-drawer:not([hidden]) { pointer-events: auto; }
.tb-search-drawer.is-open { opacity: 1; }

.tb-search-drawer__box {
	background: #fff;
	border-radius: 8px;
	padding: 1.5rem;
	width: min(560px, calc(100vw - 3rem));
	box-shadow: 0 20px 60px rgba(0,0,0,0.18);
	transform: translateY(-8px);
	transition: transform 0.22s var(--tb-ease);
}
.tb-search-drawer.is-open .tb-search-drawer__box { transform: translateY(0); }

.tb-search-drawer__form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-bottom: 2px solid var(--tb-border);
	padding-bottom: 0.75rem;
}
.tb-search-drawer__input {
	flex: 1;
	border: none;
	outline: none;
	font-family: var(--tb-font-b);
	font-size: 1rem;
	color: var(--tb-dark);
	background: transparent;
}
.tb-search-drawer__input::placeholder { color: var(--tb-muted); }
.tb-search-drawer__suggestions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}
.tb-search-drawer__label {
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	color: var(--tb-muted);
}

/* Overlay */
.tb-overlay {
	position: fixed;
	inset: 0;
	z-index: 150;
	background: rgba(26,30,26,0.55);
	backdrop-filter: blur(2px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s var(--tb-ease);
}
.tb-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* Mobile menu */
.tb-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 160;
	width: min(320px, 90vw);
	background: #fff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s var(--tb-ease);
	box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.tb-mobile-menu:not([hidden]) { display: flex; }
.tb-mobile-menu.is-open { transform: translateX(0); }

.tb-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.25rem 1rem;
	border-bottom: 1px solid var(--tb-border);
}
.tb-mobile-menu__body { padding: 1.25rem; overflow-y: auto; flex: 1; }

.tb-mobile-menu__list,
.tb-mobile-menu__body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tb-mobile-menu__body li a,
.tb-mobile-menu__body .tb-mobile-menu__list li a {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--tb-charcoal);
	text-decoration: none;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--tb-border);
	transition: color 0.15s;
}
.tb-mobile-menu__body li a:hover { color: var(--tb-forest); }

/* Desktop: hide mobile toggle */
@media (min-width: 769px) { .tb-hide-desktop { display: none !important; } }
@media (max-width: 768px) {
	.tb-nav { display: none; }
	.tb-hide-mobile { display: none !important; }
}

/* =============================================================
   HERO BLOCK
   ============================================================= */

.tb-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 82vh;
	background: var(--tb-dark);
}

.tb-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6rem 4rem 6rem 5rem;
}

.tb-hero .tb-eyebrow {
	color: var(--tb-light-sage);
	padding-left: 2rem;
	position: relative;
	margin-bottom: 1.75rem;
}
.tb-hero .tb-eyebrow::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.25rem;
	height: 1px;
	background: var(--tb-light-sage);
}

.tb-hero__heading {
	font-family: var(--tb-font-h);
	font-size: clamp(3.5rem, 6vw, 6rem);
	font-weight: 300;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
	margin: 0 0 2rem;
}
.tb-hero__heading em { font-style: italic; color: var(--tb-light-sage); }

.tb-hero__desc {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	font-weight: 300;
	color: rgba(255,255,255,0.6);
	line-height: 1.75;
	max-width: 380px;
	margin: 0 0 2.5rem;
}

.tb-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.tb-hero__visual {
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #1C3A14 0%, #2D5C1E 45%, #1a3010 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.tb-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tb-hero__slides {
	position: absolute;
	inset: 0;
}
.tb-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.2s ease;
}
.tb-hero__slide.is-active { opacity: 1; }
.tb-hero__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tb-hero__botanical {
	width: 78%;
	max-width: 420px;
	height: auto;
	opacity: 0.9;
}
.tb-hero__badge {
	position: absolute;
	bottom: 2.5rem;
	right: 2.5rem;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 6px;
	padding: 1rem 1.25rem;
	text-align: center;
}
.tb-hero__badge-num {
	display: block;
	font-family: var(--tb-font-h);
	font-size: 2rem;
	font-weight: 400;
	color: #fff;
	line-height: 1;
	margin-bottom: 0.25rem;
}
.tb-hero__badge-txt {
	font-family: var(--tb-font-b);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.65);
}

/* =============================================================
   TRUST STRIP BLOCK
   ============================================================= */

.tb-trust-strip {
	background: #fff;
	border-bottom: 1px solid var(--tb-border);
}
.tb-trust-strip__inner {
	display: flex;
	flex-wrap: wrap;
}
.tb-trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 1;
	min-width: 200px;
	padding: 1.25rem 2rem;
	border-right: 1px solid var(--tb-border);
}
.tb-trust-item:last-child { border-right: none; }
.tb-trust-item__icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	background: #F0F5EF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tb-trust-item__text { display: flex; flex-direction: column; gap: 2px; }
.tb-trust-item__label {
	font-family: var(--tb-font-b);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--tb-dark);
	letter-spacing: 0.02em;
}
.tb-trust-item__sub {
	font-family: var(--tb-font-b);
	font-size: 0.7rem;
	color: var(--tb-muted);
}

/* =============================================================
   CATEGORY GRID BLOCK
   ============================================================= */

.tb-cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}
.tb-cat-card { display: block; text-decoration: none; border-radius: 6px; overflow: hidden; }
.tb-cat-card__img {
	aspect-ratio: 3 / 4;
	position: relative;
	overflow: hidden;
}
.tb-cat-card__img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--tb-ease);
}
.tb-cat-card:hover .tb-cat-card__img img { transform: scale(1.05); }
.tb-cat-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
}
.tb-cat-card__text {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 1.25rem;
}
.tb-cat-card__name {
	font-family: var(--tb-font-h);
	font-size: 1.3rem;
	font-weight: 400;
	color: #fff;
	margin: 0 0 3px;
	line-height: 1.2;
}
.tb-cat-card__sub {
	font-family: var(--tb-font-b);
	font-size: 0.7rem;
	color: rgba(255,255,255,0.65);
	margin: 0;
}

/* =============================================================
   FEATURED PRODUCTS BLOCK
   ============================================================= */

.tb-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.tb-product-card { display: block; text-decoration: none; color: inherit; }

.tb-product-card__img {
	aspect-ratio: 4 / 5;
	background: var(--tb-off-white);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	margin-bottom: 1rem;
}
.tb-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--tb-ease);
}
.tb-product-card:hover .tb-product-card__img img { transform: scale(1.04); }
.tb-product-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tb-product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--tb-terracotta);
	color: #fff;
	font-family: var(--tb-font-b);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	border-radius: 2px;
}
.tb-product-card__cat {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--tb-sage);
	margin-bottom: 0.35rem;
}
.tb-product-card__name {
	font-family: var(--tb-font-h);
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--tb-dark);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
.tb-product-card__price {
	font-family: var(--tb-font-b);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--tb-charcoal);
}

/* =============================================================
   PROMO STATS BLOCK
   ============================================================= */

.tb-promo {
	background: var(--tb-forest);
	padding-block: 5.5rem;
	overflow: hidden;
	position: relative;
}
.tb-promo::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 50%, rgba(168,197,160,0.12) 0%, transparent 50%),
		radial-gradient(circle at 85% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
	pointer-events: none;
}
.tb-promo__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
}
.tb-promo__left {}
.tb-promo__heading {
	font-family: var(--tb-font-h);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	color: #fff;
	line-height: 1.1;
	margin: 0 0 1.5rem;
	letter-spacing: -0.01em;
}
.tb-promo__heading em { font-style: italic; color: var(--tb-light-sage); }
.tb-promo__body {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	font-weight: 300;
	color: rgba(255,255,255,0.6);
	line-height: 1.75;
	margin: 0 0 2rem;
}
.tb-promo__perks { list-style: none; margin: 0 0 2.5rem; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.tb-promo__perk {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	color: rgba(255,255,255,0.75);
}
.tb-promo__perk-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--tb-light-sage);
	flex-shrink: 0;
}
.tb-promo__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.tb-stat-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.tb-stat-card__num {
	font-family: var(--tb-font-h);
	font-size: 2.5rem;
	font-weight: 400;
	color: #fff;
	line-height: 1;
}
.tb-stat-card__label {
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	color: rgba(255,255,255,0.5);
	letter-spacing: 0.05em;
}

/* =============================================================
   WHY CHOOSE US BLOCK
   ============================================================= */

.tb-why {
	background: var(--tb-dark);
	padding-block: 5rem;
}
.tb-why__head {
	text-align: center;
	margin-bottom: 3.5rem;
}
.tb-why__title {
	font-family: var(--tb-font-h);
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	color: #fff;
	margin: 0;
	letter-spacing: -0.01em;
}
.tb-why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.tb-why__card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 8px;
	padding: 2rem 1.5rem;
	transition: background 0.2s;
}
.tb-why__card:hover { background: rgba(255,255,255,0.07); }
.tb-why__icon {
	width: 46px;
	height: 46px;
	background: rgba(74,124,89,0.18);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}
.tb-why__card-title {
	font-family: var(--tb-font-h);
	font-size: 1.2rem;
	font-weight: 400;
	color: #fff;
	margin: 0 0 0.75rem;
}
.tb-why__card-body {
	font-family: var(--tb-font-b);
	font-size: 0.825rem;
	color: rgba(255,255,255,0.5);
	line-height: 1.75;
	margin: 0;
}

/* =============================================================
   NEWSLETTER BLOCK
   ============================================================= */

.tb-newsletter {
	background: var(--tb-cream);
	padding-block: 6rem;
}
.tb-newsletter__inner { text-align: center; }
.tb-newsletter__title {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 400;
	color: var(--tb-dark);
	margin: 0 0 0.75rem;
	letter-spacing: -0.01em;
}
.tb-newsletter__desc {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: var(--tb-muted);
	margin: 0 auto 2rem;
	max-width: 480px;
	line-height: 1.7;
}
.tb-newsletter__form {
	display: flex;
	max-width: 460px;
	margin-inline: auto;
	box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.tb-newsletter__input {
	flex: 1;
	padding: 0.9rem 1.25rem;
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	border: 1px solid var(--tb-border);
	border-right: none;
	border-radius: 2px 0 0 2px;
	background: #fff;
	outline: none;
	color: var(--tb-dark);
}
.tb-newsletter__input:focus { border-color: var(--tb-sage); }
.tb-newsletter__input::placeholder { color: var(--tb-muted); }
.tb-newsletter__btn {
	border-radius: 0 2px 2px 0;
	padding-inline: 1.75rem;
	white-space: nowrap;
}
.tb-newsletter__note {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	color: var(--tb-muted);
	margin-top: 0.75rem;
}
.tb-newsletter__success {
	font-family: var(--tb-font-b);
	font-size: 1rem;
	color: var(--tb-forest);
	font-weight: 600;
	padding: 1.25rem 2rem;
	background: rgba(74,124,89,0.1);
	border: 1px solid rgba(74,124,89,0.2);
	border-radius: 6px;
	display: inline-block;
}

/* =============================================================
   SITE FOOTER BLOCK
   ============================================================= */

.tb-footer {
	background: var(--tb-dark);
	color: var(--tb-light-sage);
	padding-block: 4rem 2.5rem;
}
.tb-footer__inner {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
.tb-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr;
	gap: 3rem;
	margin-bottom: 3rem;
}
.tb-footer__logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	margin-bottom: 1rem;
}
.tb-footer__logo span {
	font-family: var(--tb-font-h);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--tb-light-sage);
}
.tb-footer__tagline {
	font-family: var(--tb-font-b);
	font-size: 0.8rem;
	color: rgba(168,197,160,0.7);
	line-height: 1.7;
	max-width: 260px;
	margin-bottom: 1.5rem;
}
.tb-footer__social {
	display: flex;
	gap: 0.6rem;
}
.tb-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(168,197,160,0.08);
	color: var(--tb-light-sage);
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
}
.tb-footer__social-link:hover { background: rgba(168,197,160,0.18); color: #fff; }

.tb-footer__col-title {
	font-family: var(--tb-font-b);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(168,197,160,0.5);
	margin: 0 0 1.25rem;
}
.tb-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.tb-footer__links li a,
.tb-footer__links a {
	font-family: var(--tb-font-b);
	font-size: 0.825rem;
	color: rgba(168,197,160,0.7);
	text-decoration: none;
	transition: color 0.15s;
}
.tb-footer__links li a:hover,
.tb-footer__links a:hover { color: #fff; }

.tb-footer__contact { display: flex; flex-direction: column; gap: 0.85rem; }
.tb-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--tb-font-b);
	font-size: 0.8rem;
	color: rgba(168,197,160,0.7);
}
.tb-footer__contact-item a { color: inherit; text-decoration: none; }
.tb-footer__contact-item a:hover { color: #fff; }
.tb-footer__contact-item svg { flex-shrink: 0; color: var(--tb-sage); }

.tb-footer__payments { margin-top: 1.25rem; }
.tb-footer__payments-label {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(168,197,160,0.4);
	margin-bottom: 0.5rem;
}
.tb-footer__payment-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tb-footer__payment-badge {
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(168,197,160,0.1);
	border-radius: 4px;
	padding: 3px 7px;
	font-family: var(--tb-font-b);
	font-size: 0.6rem;
	font-weight: 700;
	color: var(--tb-cream);
	letter-spacing: 0.05em;
}

.tb-footer__bottom {
	border-top: 1px solid rgba(168,197,160,0.12);
	padding-top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}
.tb-footer__bottom p,
.tb-footer__bottom-links {
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	color: rgba(168,197,160,0.5);
	margin: 0;
}
.tb-footer__bottom-links { display: flex; align-items: center; gap: 0.65rem; }
.tb-footer__bottom-links a { color: inherit; text-decoration: none; }
.tb-footer__bottom-links a:hover { color: rgba(168,197,160,0.85); }

/* =============================================================
   PAGE HERO (About / Contact)
   ============================================================= */

.tb-page-hero {
	padding: 7rem 0 5rem;
	text-align: center;
}
.tb-page-hero--dark {
	background: var(--tb-dark);
	color: #fff;
}
.tb-page-hero--light {
	background: var(--tb-cream);
	color: var(--tb-charcoal);
}
.tb-page-hero .tb-eyebrow {
	display: inline-block;
	margin-bottom: 1.25rem;
}
.tb-page-hero--dark .tb-eyebrow { color: var(--tb-light-sage); }
.tb-page-hero--light .tb-eyebrow { color: var(--tb-sage); }
.tb-page-hero__title {
	font-family: var(--tb-font-h);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
}
.tb-page-hero--dark .tb-page-hero__title { color: #fff; }
.tb-page-hero--dark .tb-page-hero__title em { color: var(--tb-light-sage); font-style: italic; }
.tb-page-hero--light .tb-page-hero__title { color: var(--tb-dark); }
.tb-page-hero--light .tb-page-hero__title em { color: var(--tb-sage); font-style: italic; }
.tb-page-hero__lead {
	font-family: var(--tb-font-b);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	max-width: 560px;
	margin: 0 auto;
	opacity: 0.75;
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */

.tb-about-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}
.tb-about-story__text h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 300;
	letter-spacing: -0.02em;
	color: var(--tb-dark);
	margin: 0.5rem 0 1.25rem;
}
.tb-about-story__text p {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.8;
	color: var(--tb-muted);
	margin: 0 0 1rem;
}
.tb-about-story__visual { position: relative; }
.tb-about-story__img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.tb-about-story__placeholder {
	width: 100%;
	height: 520px;
	border-radius: 4px;
	overflow: hidden;
	background: #E8F0E4;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tb-about-story__placeholder svg { width: 70%; height: auto; }

/* Stats bar */
.tb-about-stats {
	background: var(--tb-forest);
	padding: 4rem 0;
}
.tb-about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}
.tb-about-stats__num {
	display: block;
	font-family: var(--tb-font-h);
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 300;
	color: #fff;
	line-height: 1;
	margin-bottom: 0.5rem;
}
.tb-about-stats__num em { font-style: normal; color: var(--tb-light-sage); }
.tb-about-stats__label {
	font-family: var(--tb-font-b);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}

/* Values grid */
.tb-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}
.tb-value-card {
	padding: 2rem 1.5rem;
	border: 1px solid var(--tb-border);
	border-radius: 4px;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tb-value-card:hover { box-shadow: 0 8px 24px rgba(27,94,32,0.08); transform: translateY(-2px); }
.tb-value-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #E8F0E4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tb-forest);
	margin-bottom: 1.25rem;
}
.tb-value-card h3 {
	font-family: var(--tb-font-h);
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--tb-dark);
	margin: 0 0 0.75rem;
}
.tb-value-card p {
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--tb-muted);
	margin: 0;
}

/* About CTA */
.tb-about-cta {
	background: var(--tb-dark);
	padding: 6rem 0;
}
.tb-about-cta__inner {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}
.tb-about-cta__inner h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 300;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}
.tb-about-cta__inner p {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: rgba(255,255,255,0.6);
	margin: 0 0 2rem;
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */

.tb-contact-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 5rem;
	align-items: start;
}

/* Form */
.tb-contact-form-wrap__title {
	font-family: var(--tb-font-h);
	font-size: 1.75rem;
	font-weight: 300;
	color: var(--tb-dark);
	margin: 0 0 2rem;
}
.tb-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.tb-form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.tb-form-row--2col { flex-direction: row; gap: 1.25rem; }
.tb-form-row--2col .tb-form-field { flex: 1; }

.tb-form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.tb-form-field label {
	font-family: var(--tb-font-b);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--tb-charcoal);
}
.tb-form-field label span { color: var(--tb-terracotta); }
.tb-form-field input,
.tb-form-field select,
.tb-form-field textarea {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	font-weight: 300;
	color: var(--tb-dark);
	background: #fff;
	border: 1px solid #D4D8D2;
	border-radius: 3px;
	padding: 0.75rem 1rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	width: 100%;
	outline: none;
	appearance: none;
}
.tb-form-field input:focus,
.tb-form-field select:focus,
.tb-form-field textarea:focus {
	border-color: var(--tb-sage);
	box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.tb-form-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8078' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}
.tb-form-field textarea { resize: vertical; min-height: 140px; }

.tb-contact-form .tb-btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Alerts */
.tb-alert {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	border-radius: 4px;
	font-family: var(--tb-font-b);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}
.tb-alert--success { background: #E8F5E9; border: 1px solid #A5D6A7; color: #2E7D32; }
.tb-alert--error   { background: #FFF3E0; border: 1px solid #FFCC80; color: #E65100; }
.tb-alert svg { flex-shrink: 0; margin-top: 1px; }

/* Contact info sidebar */
.tb-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.tb-contact-info__card {
	background: #fff;
	border: 1px solid var(--tb-border);
	border-radius: 4px;
	padding: 1.5rem;
}
.tb-contact-info__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #E8F0E4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tb-forest);
	margin-bottom: 1rem;
}
.tb-contact-info__card h3 {
	font-family: var(--tb-font-b);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--tb-muted);
	margin: 0 0 0.4rem;
}
.tb-contact-info__card a {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--tb-forest);
	text-decoration: none;
	display: block;
	margin-bottom: 0.25rem;
}
.tb-contact-info__card a:hover { text-decoration: underline; }
.tb-contact-info__card p,
.tb-contact-info__card address {
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	color: var(--tb-muted);
	font-weight: 300;
	margin: 0;
	font-style: normal;
}
.tb-contact-info__hours {
	list-style: none;
	margin: 0.25rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.tb-contact-info__hours li {
	display: flex;
	justify-content: space-between;
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	color: var(--tb-muted);
}
.tb-contact-info__hours li span:first-child { font-weight: 500; color: var(--tb-charcoal); }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
	.tb-cat-grid        { grid-template-columns: repeat(2, 1fr); }
	.tb-product-grid    { grid-template-columns: repeat(2, 1fr); }
	.tb-why__grid       { grid-template-columns: repeat(2, 1fr); }
	.tb-promo__inner    { grid-template-columns: 1fr; gap: 3rem; }
	.tb-promo__stats    { grid-template-columns: repeat(4, 1fr); }
	.tb-footer__grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
	.tb-values-grid     { grid-template-columns: repeat(2, 1fr); }
	.tb-about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
	.tb-contact-layout  { grid-template-columns: 1fr; gap: 3rem; }
	.tb-about-story     { gap: 3rem; }
}

@media (max-width: 768px) {
	.tb-hero { grid-template-columns: 1fr; min-height: auto; }
	.tb-hero__content { padding: 4rem 1.5rem 3rem; }
	.tb-hero__visual { min-height: 300px; }
	.tb-hero__badge { bottom: 1.5rem; right: 1.5rem; }
	.tb-trust-strip__inner { flex-direction: column; }
	.tb-trust-item { border-right: none; border-bottom: 1px solid var(--tb-border); width: 100%; }
	.tb-trust-item:last-child { border-bottom: none; }
	.tb-section-head { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
	.tb-promo__stats { grid-template-columns: repeat(2, 1fr); }
	.tb-about-story { grid-template-columns: 1fr; }
	.tb-about-story__img,
	.tb-about-story__placeholder { height: 320px; }
	.tb-page-hero { padding: 5rem 0 3.5rem; }
	.tb-form-row--2col { flex-direction: column; }
}

@media (max-width: 480px) {
	.tb-section { padding-block: 3.5rem; }
	.tb-cat-grid { gap: 0.75rem; }
	.tb-product-grid { gap: 1rem; }
	.tb-why__grid { grid-template-columns: 1fr; }
	.tb-footer__grid { grid-template-columns: 1fr; }
	.tb-newsletter__form { flex-direction: column; box-shadow: none; }
	.tb-newsletter__input { border-right: 1px solid var(--tb-border); border-radius: 2px; margin-bottom: 0.5rem; }
	.tb-newsletter__btn { border-radius: 2px; }
	.tb-footer__bottom { flex-direction: column; text-align: center; }
	.tb-values-grid { grid-template-columns: 1fr; }
	.tb-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   PLANT CARE PAGE
   ============================================================= */

/* ── Shared section header (centred variant) ────────────────── */
.tb-section-header {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
	margin-bottom: 3rem;
}
.tb-section-header h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 300;
	letter-spacing: -0.01em;
	color: var(--tb-dark);
	margin: 0.4rem 0 0.75rem;
	line-height: 1.2;
}
.tb-section-eyebrow {
	display: block;
	font-family: var(--tb-font-b);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--tb-sage);
	margin: 0 0 0.4rem;
}
.tb-section-sub {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--tb-muted);
	margin: 0;
}

/* ── Quick-nav ──────────────────────────────────────────────── */
.tb-care-nav {
	position: sticky;
	top: calc(var(--tb-trust-bar-h) + var(--tb-header-h));
	z-index: 90;
	background: var(--tb-dark);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tb-care-nav .tb-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tb-care-nav__list {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}
.tb-care-nav__list a {
	display: inline-block;
	padding: 0.85rem 1.25rem;
	font-family: var(--tb-font-b);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: color 0.2s;
}
.tb-care-nav__list a:hover { color: #fff; }

/* ── Core care card grid ────────────────────────────────────── */
.tb-care-essentials__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}
.tb-care-card {
	background: #fff;
	border: 1px solid var(--tb-border);
	border-radius: 8px;
	padding: 1.75rem 1.5rem;
	transition: box-shadow 0.25s, transform 0.25s;
}
.tb-care-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.09);
	transform: translateY(-3px);
}
.tb-care-card__icon {
	width: 44px;
	height: 44px;
	color: var(--tb-sage);
	margin-bottom: 1rem;
}
.tb-care-card__icon svg { width: 100%; height: 100%; }
.tb-care-card__title {
	font-family: var(--tb-font-h);
	font-size: 1.25rem;
	font-weight: 500;
	margin: 0 0 0.6rem;
	color: var(--tb-dark);
}
.tb-care-card__desc {
	font-size: 0.875rem;
	line-height: 1.65;
	color: #444;
	margin: 0 0 0.75rem;
}
.tb-care-card__tip {
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--tb-sage);
	font-style: italic;
	margin: 0;
	padding-top: 0.75rem;
	border-top: 1px solid var(--tb-border);
}

/* ── Detail sections (watering / light / soil) ──────────────── */
.tb-care-detail { background: var(--tb-cream); }
.tb-care-detail--alt { background: var(--tb-off-white); }
.tb-care-detail__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}
.tb-care-detail__layout--reversed .tb-care-detail__text { order: 2; }
.tb-care-detail__layout--reversed .tb-care-detail__visual { order: 1; }
.tb-care-detail__text h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 300;
	letter-spacing: -0.01em;
	margin: 0.5rem 0 1rem;
}
.tb-care-list {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
}
.tb-care-list li {
	padding: 0.55rem 0 0.55rem 1.5rem;
	position: relative;
	font-size: 0.95rem;
	line-height: 1.6;
	border-bottom: 1px solid var(--tb-border);
}
.tb-care-list li:last-child { border-bottom: none; }
.tb-care-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--tb-sage);
}

/* Watering frequency bars */
.tb-care-frequency {
	background: #fff;
	border: 1px solid var(--tb-border);
	border-radius: 8px;
	padding: 2rem;
}
.tb-care-frequency h3 {
	font-family: var(--tb-font-h);
	font-size: 1.15rem;
	font-weight: 500;
	margin: 0 0 1.5rem;
	color: var(--tb-dark);
}
.tb-freq-row { margin-bottom: 1.1rem; }
.tb-freq-row__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.35rem;
}
.tb-freq-row__name { font-size: 0.85rem; font-weight: 500; color: var(--tb-dark); }
.tb-freq-row__freq { font-size: 0.8rem; color: var(--tb-muted); }
.tb-freq-row__bar {
	height: 6px;
	background: var(--tb-border);
	border-radius: 3px;
	overflow: hidden;
}
.tb-freq-row__bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--tb-forest), var(--tb-sage));
	border-radius: 3px;
}
.tb-freq-note {
	font-size: 0.75rem;
	color: var(--tb-muted);
	margin: 1.25rem 0 0;
	font-style: italic;
}

/* Light levels */
.tb-light-levels { margin-top: 1.5rem; }
.tb-light-level {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.1rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--tb-border);
}
.tb-light-level:last-child { border-bottom: none; margin-bottom: 0; }
.tb-light-level__dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 0.3rem;
}
.tb-light-level strong { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.tb-light-level p { font-size: 0.85rem; line-height: 1.5; color: #555; margin: 0; }
.tb-light-diagram svg { width: 100%; max-width: 340px; display: block; margin: 0 auto; }

/* ── Soil & feeding cards ───────────────────────────────────── */
.tb-soil-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}
.tb-soil-card {
	background: #fff;
	border: 1px solid var(--tb-border);
	border-radius: 8px;
	padding: 2rem;
}
.tb-soil-card h3 {
	font-family: var(--tb-font-h);
	font-size: 1.25rem;
	font-weight: 500;
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--tb-light-sage);
	color: var(--tb-dark);
}
.tb-soil-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tb-soil-card li {
	font-size: 0.875rem;
	line-height: 1.6;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--tb-border);
	color: #444;
}
.tb-soil-card li:last-child { border-bottom: none; }

/* ── Seasonal calendar ──────────────────────────────────────── */
.tb-seasons { background: var(--tb-cream); }
.tb-seasons__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}
.tb-season-card {
	background: #fff;
	border: 1px solid var(--tb-border);
	border-top: 4px solid var(--season-color, var(--tb-light-sage));
	border-radius: 8px;
	padding: 1.75rem 1.5rem;
	transition: box-shadow 0.25s, transform 0.25s;
}
.tb-season-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.08);
	transform: translateY(-3px);
}
.tb-season-card__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}
/* SVG icon sizing for season cards */
.tb-season-card__icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	color: var(--season-color, var(--tb-sage));
}
.tb-season-card__icon svg { width: 100%; height: 100%; }
.tb-season-card h3 {
	font-family: var(--tb-font-h);
	font-size: 1.3rem;
	font-weight: 500;
	margin: 0;
	color: var(--tb-dark);
}
.tb-season-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tb-season-card li {
	font-size: 0.85rem;
	line-height: 1.6;
	padding: 0.45rem 0 0.45rem 1.2rem;
	position: relative;
	border-bottom: 1px solid var(--tb-border);
	color: #444;
}
.tb-season-card li:last-child { border-bottom: none; }
.tb-season-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.9rem;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--season-color, var(--tb-light-sage));
}

/* ── Problems accordion ─────────────────────────────────────── */
.tb-care-problems { background: var(--tb-off-white); }
.tb-problems__list { margin-top: 3rem; }
.tb-problem {
	border: 1px solid var(--tb-border);
	border-radius: 8px;
	background: #fff;
	margin-bottom: 0.75rem;
	overflow: hidden;
}
.tb-problem__summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 1.5rem;
	cursor: pointer;
	font-family: var(--tb-font-h);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--tb-dark);
	list-style: none;
	user-select: none;
	transition: background 0.15s;
}
.tb-problem__summary::-webkit-details-marker { display: none; }
.tb-problem__summary:hover { background: var(--tb-cream); }
.tb-problem__chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--tb-sage);
	transition: transform 0.25s var(--tb-ease);
}
.tb-problem[open] .tb-problem__chevron { transform: rotate(180deg); }
.tb-problem__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding: 0 1.5rem 1.5rem;
	border-top: 1px solid var(--tb-border);
}
.tb-problem__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tb-sage);
	margin: 1rem 0 0.5rem;
}
.tb-problem__causes ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tb-problem__causes li {
	font-size: 0.875rem;
	line-height: 1.6;
	padding: 0.3rem 0 0.3rem 1.2rem;
	position: relative;
	color: #444;
}
.tb-problem__causes li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.75rem;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--tb-sage);
}
.tb-problem__fix p { font-size: 0.875rem; line-height: 1.65; color: #444; margin: 0; }

/* ── Responsive — plant care page ──────────────────────────── */
@media (max-width: 1200px) {
	.tb-care-essentials__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	.tb-care-detail__layout,
	.tb-care-detail__layout--reversed { grid-template-columns: 1fr; gap: 2.5rem; }
	.tb-care-detail__layout--reversed .tb-care-detail__text { order: 1; }
	.tb-care-detail__layout--reversed .tb-care-detail__visual { order: 2; }
	.tb-soil-grid { grid-template-columns: 1fr 1fr; }
	.tb-seasons__grid { grid-template-columns: repeat(2, 1fr); }
	.tb-problem__body { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 768px) {
	.tb-care-essentials__grid { grid-template-columns: repeat(2, 1fr); }
	.tb-soil-grid { grid-template-columns: 1fr; }
	.tb-seasons__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.tb-care-essentials__grid { grid-template-columns: 1fr; }
	.tb-seasons__grid { grid-template-columns: 1fr; }
	.tb-care-nav__list a { padding: 0.75rem 0.9rem; font-size: 0.75rem; }
}

/* ── Interaction & accessibility ────────────────────────────── */
.tb-care-card,
.tb-soil-card,
.tb-season-card { cursor: default; }

.tb-care-nav__list a,
.tb-problem__summary { cursor: pointer; }

/* focus ring for accordion */
.tb-problem__summary:focus-visible {
	outline: 2px solid var(--tb-sage);
	outline-offset: -2px;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
	.tb-care-card,
	.tb-season-card,
	.tb-problem__chevron,
	.tb-freq-row__bar span { transition: none !important; }
	.tb-care-card:hover,
	.tb-season-card:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   PAGE: PLANT MUSIC & HERBAL TEA EXPERIENCE
   Block: tropical-blend/page-plant-music
═══════════════════════════════════════════════════════════════ */

/* ── Eyebrow colour helpers ──────────────────────────────────── */
.tb-pm-eyebrow--light { color: var(--tb-light-sage); }
.tb-pm-eyebrow--amber { color: var(--tb-terracotta); }

/* ── Hero ────────────────────────────────────────────────────── */
.tb-pm-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--tb-dark);
}
.tb-pm-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.tb-pm-hero__placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #152b15 0%, #0d1a0d 100%);
	overflow: hidden;
}
/* Decorative leaf shapes — purely decorative until a real hero image is set */
.tb-pm-hero__leaf {
	position: absolute;
	border-radius: 50% 0 50% 0;
	background: var(--tb-light-sage);
	opacity: 0.07;
}
.tb-pm-hero__leaf--1 { width: 650px; height: 650px; top: -220px; right: -120px; transform: rotate(20deg); }
.tb-pm-hero__leaf--2 { width: 420px; height: 420px; bottom: -160px; left: -90px;  transform: rotate(-30deg); }
.tb-pm-hero__leaf--3 { width: 320px; height: 320px; top: 50%; right: 16%;         transform: rotate(45deg); opacity: 0.035; }
.tb-pm-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(130deg, rgba(27,94,32,0.78) 0%, rgba(26,30,26,0.88) 65%);
	z-index: 1;
}
.tb-pm-hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.tb-pm-hero__title {
	font-family: var(--tb-font-h);
	font-size: clamp(2.75rem, 6vw, 5.5rem);
	font-weight: 300;
	color: #fff;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0.75rem 0 1.25rem;
}
.tb-pm-hero__title em {
	color: var(--tb-light-sage);
	font-style: italic;
}
.tb-pm-hero__lead {
	font-family: var(--tb-font-b);
	font-size: 1.0625rem;
	color: rgba(168,197,160,0.85);
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 2.25rem;
}
.tb-pm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ── Hero carousel ───────────────────────────────────────────── */
.tb-pm-carousel {
	position: absolute;
	inset: 0;
}
.tb-pm-carousel__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease;
	will-change: opacity;
	animation: tb-pm-kenburns 12s ease-in-out infinite alternate;
	animation-play-state: paused;
}
.tb-pm-carousel__slide.is-active {
	opacity: 1;
	animation-play-state: running;
}
@keyframes tb-pm-kenburns {
	from { transform: scale(1);    }
	to   { transform: scale(1.06); }
}

/* Controls wrapper — sits above overlay */
.tb-pm-carousel__controls {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 2.5rem;
	pointer-events: none;
}
.tb-pm-carousel__controls > * { pointer-events: auto; }

/* Arrows */
.tb-pm-carousel__arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(0,0,0,0.28);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.2s, border-color 0.2s;
	backdrop-filter: blur(4px);
}
.tb-pm-carousel__arrow:hover {
	background: rgba(27,94,32,0.7);
	border-color: rgba(168,197,160,0.6);
}
.tb-pm-carousel__arrow--prev { margin-right: 1rem; }
.tb-pm-carousel__arrow--next { margin-left:  1rem; }

/* Dots */
.tb-pm-carousel__dots {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}
.tb-pm-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
	padding: 0;
	transition: background 0.25s, transform 0.25s;
}
.tb-pm-carousel__dot.is-active,
.tb-pm-carousel__dot:hover {
	background: #fff;
	transform: scale(1.3);
}

/* Pause Ken Burns when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
	.tb-pm-carousel__slide { animation: none; transition: opacity 0.4s ease; }
}

/* ── Section header ──────────────────────────────────────────── */
.tb-pm-section-head {
	text-align: center;
	max-width: 580px;
	margin: 0 auto 3.5rem;
}
.tb-pm-section-head h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	letter-spacing: -0.01em;
	color: var(--tb-charcoal);
	margin: 0.5rem 0 1rem;
}
.tb-pm-section-head p {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: var(--tb-muted);
	line-height: 1.7;
}

/* ── What Is Plant Music ──────────────────────────────────────── */
.tb-pm-about__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.tb-pm-about__text h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 400;
	letter-spacing: -0.01em;
	color: var(--tb-charcoal);
	margin: 0.5rem 0 1.25rem;
}
.tb-pm-about__text p {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: var(--tb-muted);
	line-height: 1.75;
	margin-bottom: 1rem;
}
.tb-pm-about__list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.tb-pm-about__list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: var(--tb-charcoal);
}
.tb-pm-about__list li svg { color: var(--tb-forest); flex-shrink: 0; }

/* Video placeholder */
.tb-pm-video-placeholder {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #1B5E20 0%, #0d2e10 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: transform 0.3s var(--tb-ease);
	cursor: pointer;
}
.tb-pm-video-placeholder:hover { transform: scale(1.015); }
.tb-pm-video-placeholder__inner {
	text-align: center;
	color: #fff;
	padding: 2rem;
}
.tb-pm-video-placeholder__icon {
	width: 88px;
	height: 88px;
	background: rgba(255,255,255,0.14);
	border: 2px solid rgba(255,255,255,0.28);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	transition: background 0.25s;
}
.tb-pm-video-placeholder:hover .tb-pm-video-placeholder__icon { background: rgba(255,255,255,0.24); }
.tb-pm-video-placeholder p {
	font-family: var(--tb-font-h);
	font-size: 1.3rem;
	margin: 0 0 0.3rem;
}
.tb-pm-video-placeholder span {
	font-family: var(--tb-font-b);
	font-size: 0.75rem;
	opacity: 0.55;
}

/* ── Experience Cards ────────────────────────────────────────── */
.tb-pm-experience {
	background: var(--tb-dark);
}
.tb-pm-experience .tb-pm-section-head h2 { color: #fff; }
.tb-pm-experience .tb-pm-section-head p  { color: rgba(168,197,160,0.7); }

.tb-pm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.tb-pm-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(168,197,160,0.14);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	transition: transform 0.3s var(--tb-ease), background 0.3s, border-color 0.3s;
}
.tb-pm-card:hover {
	transform: translateY(-6px);
	background: rgba(255,255,255,0.07);
	border-color: rgba(168,197,160,0.32);
}
.tb-pm-card__icon {
	width: 64px;
	height: 64px;
	background: rgba(74,124,89,0.22);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--tb-light-sage);
	transition: background 0.3s;
}
.tb-pm-card:hover .tb-pm-card__icon { background: rgba(74,124,89,0.38); }
.tb-pm-card h3 {
	font-family: var(--tb-font-h);
	font-size: 1.3rem;
	font-weight: 400;
	color: #fff;
	margin: 0 0 0.75rem;
}
.tb-pm-card p {
	font-family: var(--tb-font-b);
	font-size: 0.9rem;
	color: rgba(168,197,160,0.72);
	line-height: 1.7;
	margin: 0;
}

/* ── Herbal Tea Products ──────────────────────────────────────── */
.tb-pm-tea-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.tb-pm-tea-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
	transition: transform 0.3s var(--tb-ease), box-shadow 0.3s;
}
.tb-pm-tea-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.tb-pm-tea-card__img {
	height: 220px;
	overflow: hidden;
}
.tb-pm-tea-placeholder {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.tb-pm-tea-placeholder span {
	font-family: var(--tb-font-b);
	font-size: 0.7rem;
	opacity: 0.6;
}
.tb-pm-tea-card__img--soursop .tb-pm-tea-placeholder {
	background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
	color: var(--tb-forest);
}
.tb-pm-tea-card__img--hibiscus .tb-pm-tea-placeholder {
	background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 100%);
	color: #c2185b;
}
.tb-pm-tea-card__img--avocado .tb-pm-tea-placeholder {
	background: linear-gradient(135deg, #dcedc8 0%, #aed581 100%);
	color: #558b2f;
}
.tb-pm-tea-card__body {
	padding: 1.75rem;
}
.tb-pm-tea-card__body h3 {
	font-family: var(--tb-font-h);
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--tb-charcoal);
	margin: 0.4rem 0 0.75rem;
}
.tb-pm-tea-card__body p {
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	color: var(--tb-muted);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

/* ── Visit Us ────────────────────────────────────────────────── */
.tb-pm-visit {
	background: var(--tb-forest);
	color: #fff;
}
.tb-pm-visit__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.tb-pm-visit__text h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 300;
	color: #fff;
	letter-spacing: -0.01em;
	margin: 0.5rem 0 1.25rem;
}
.tb-pm-visit__text > p {
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: rgba(168,197,160,0.85);
	line-height: 1.75;
	margin-bottom: 1.75rem;
}
.tb-pm-visit__details {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-bottom: 2rem;
}
.tb-pm-visit__detail {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--tb-font-b);
	font-size: 0.9375rem;
	color: var(--tb-light-sage);
}
.tb-pm-visit__phone {
	color: var(--tb-light-sage);
	text-decoration: none;
	transition: color 0.2s;
}
.tb-pm-visit__phone:hover { color: #fff; }

.tb-pm-visit__map {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	min-height: 280px;
}
.tb-pm-map-placeholder {
	height: 100%;
	min-height: 280px;
	background: rgba(0,0,0,0.22);
	border: 1px solid rgba(168,197,160,0.2);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(168,197,160,0.75);
	gap: 0.5rem;
	text-align: center;
	padding: 2rem;
}
.tb-pm-map-placeholder p {
	font-family: var(--tb-font-h);
	font-size: 1.1rem;
	color: #fff;
	margin: 0;
}
.tb-pm-map-placeholder span {
	font-family: var(--tb-font-b);
	font-size: 0.72rem;
	opacity: 0.55;
}

/* ── Booking ─────────────────────────────────────────────────── */
.tb-pm-booking__layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 3rem;
	align-items: start;
}
.tb-pm-booking__info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.tb-pm-included-list {
	list-style: none;
	padding: 0;
	margin: 0.6rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-family: var(--tb-font-b);
	font-size: 0.875rem;
	color: var(--tb-muted);
}
.tb-pm-included-list li::before {
	content: '✓ ';
	color: var(--tb-sage);
}
.tb-pm-phone-link {
	font-family: var(--tb-font-b);
	font-size: 1rem;
	font-weight: 600;
	color: var(--tb-forest);
	text-decoration: none;
}
.tb-pm-phone-link:hover { color: var(--tb-sage); }

/* ── Final CTA ───────────────────────────────────────────────── */
.tb-pm-final-cta {
	position: relative;
	background: var(--tb-dark);
	padding: 6rem 0;
	overflow: hidden;
	text-align: center;
}
.tb-pm-final-cta__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(27,94,32,0.45) 0%, transparent 70%);
	pointer-events: none;
}
.tb-pm-final-cta__content {
	position: relative;
	z-index: 1;
	max-width: 580px;
	margin: 0 auto;
}
.tb-pm-final-cta__content h2 {
	font-family: var(--tb-font-h);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	color: #fff;
	letter-spacing: -0.02em;
	margin: 0.75rem 0 1.25rem;
}
.tb-pm-final-cta__content p {
	font-family: var(--tb-font-b);
	font-size: 1rem;
	color: rgba(168,197,160,0.82);
	line-height: 1.7;
	margin-bottom: 2rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.tb-pm-about__layout    { grid-template-columns: 1fr; gap: 2.5rem; }
	.tb-pm-cards            { grid-template-columns: 1fr 1fr; }
	.tb-pm-tea-grid         { grid-template-columns: 1fr 1fr; }
	.tb-pm-visit__layout    { grid-template-columns: 1fr; gap: 2.5rem; }
	.tb-pm-booking__layout  { grid-template-columns: 1fr; }
	.tb-pm-booking__info    { flex-direction: row; flex-wrap: wrap; }
	.tb-pm-booking__info .tb-contact-info__card { flex: 1 1 260px; }
}
@media (max-width: 768px) {
	.tb-pm-hero             { min-height: 80vh; }
	.tb-pm-hero__title      { font-size: clamp(2rem, 9vw, 3.25rem); }
	.tb-pm-hero__actions    { flex-direction: column; align-items: flex-start; }
	.tb-pm-cards            { grid-template-columns: 1fr; }
	.tb-pm-tea-grid         { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.tb-pm-booking__info    { flex-direction: column; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.tb-pm-card,
	.tb-pm-tea-card,
	.tb-pm-video-placeholder { transition: none !important; }
	.tb-pm-card:hover,
	.tb-pm-tea-card:hover    { transform: none; }
}
