/* ==========================================================================
   Taste Trails by Kavya — main stylesheet
   ========================================================================== */

:root {
	--cream: #fff8f0;
	--cream-soft: #fdf1e4;
	--blush: #f4d9cf;
	--blush-soft: #f9e7e0;
	--terracotta: #d97d54;
	--terracotta-dark: #b85f3a;
	--brown: #45301f;
	--brown-soft: #6b5344;
	--sage: #8a9a5b;
	--sage-dark: #64723e;
	--white: #ffffff;
	--shadow: 0 20px 40px -20px rgba(69, 48, 31, 0.25);
	--radius-lg: 28px;
	--radius-md: 18px;
	--font-display: "Playfair Display", Georgia, serif;
	--font-script: "Caveat", cursive;
	--font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.ttbk {
	margin: 0;
	background: var(--cream);
	color: var(--brown);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--brown);
	margin: 0 0 0.5em;
	line-height: 1.15;
}

p {
	margin: 0 0 1em;
}

code {
	background: var(--blush-soft);
	color: var(--terracotta-dark);
	padding: 0.15em 0.5em;
	border-radius: 6px;
	font-size: 0.85em;
}

.ttbk-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* -------------------- Buttons -------------------- */

.ttbk-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ttbk-btn--primary {
	background: var(--terracotta);
	color: var(--white);
	box-shadow: 0 12px 24px -10px rgba(217, 125, 84, 0.65);
}

.ttbk-btn--primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 45%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
	transform: skewX(-20deg);
	transition: left 0.7s ease;
}

.ttbk-btn--primary:hover {
	background: var(--terracotta-dark);
	transform: translateY(-2px);
	box-shadow: 0 16px 32px -10px rgba(217, 125, 84, 0.75);
}

.ttbk-btn--primary:hover::after {
	left: 130%;
}

.ttbk-btn--ghost {
	background: transparent;
	border-color: var(--brown);
	color: var(--brown);
}

.ttbk-btn--ghost:hover {
	background: var(--brown);
	color: var(--white);
	transform: translateY(-2px);
}

/* -------------------- Nav -------------------- */

.ttbk-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 248, 240, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(69, 48, 31, 0.08);
}

.ttbk-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	padding-bottom: 16px;
}

.ttbk-logo {
	display: flex;
	align-items: center;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 22px;
	color: var(--brown);
}

.ttbk-logo__img {
	height: 64px;
	width: auto;
	display: block;
}

.ttbk-logo span {
	color: var(--terracotta);
	font-style: italic;
}

.ttbk-nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
	font-size: 15px;
}

.ttbk-nav__links a {
	color: var(--brown-soft);
	transition: color 0.2s ease;
}

.ttbk-nav__links a:hover {
	color: var(--terracotta);
}

.ttbk-nav__cta {
	background: var(--terracotta);
	color: var(--white) !important;
	padding: 10px 22px;
	border-radius: 999px;
}

.ttbk-nav__cta:hover {
	background: var(--terracotta-dark);
}

.ttbk-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.ttbk-nav__toggle span {
	width: 24px;
	height: 2px;
	background: var(--brown);
	border-radius: 2px;
}

/* -------------------- Hero -------------------- */

.ttbk-hero {
	position: relative;
	padding: 110px 0 100px;
	text-align: center;
	overflow: hidden;
}

.ttbk-hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	z-index: 0;
}

.ttbk-hero__blob--one {
	width: 380px;
	height: 380px;
	background: var(--blush);
	top: -140px;
	left: -120px;
	opacity: 0.7;
}

.ttbk-hero__blob--two {
	width: 320px;
	height: 320px;
	background: #e4ecd4;
	bottom: -160px;
	right: -100px;
	opacity: 0.6;
}

.ttbk-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

/* -------------------- Hero hearts -------------------- */

.ttbk-heart {
	position: absolute;
	z-index: 0;
	display: block;
	color: var(--terracotta);
	opacity: 0.35;
	animation: ttbk-heart-float 6s ease-in-out infinite;
	pointer-events: none;
}

.ttbk-heart--1 {
	width: 34px;
	height: 34px;
	top: 18%;
	left: 10%;
	color: var(--terracotta);
	animation-delay: 0s;
}

.ttbk-heart--2 {
	width: 22px;
	height: 22px;
	top: 62%;
	left: 6%;
	color: var(--sage);
	opacity: 0.4;
	animation-delay: 1.2s;
}

.ttbk-heart--3 {
	width: 46px;
	height: 46px;
	top: 12%;
	right: 9%;
	color: var(--terracotta);
	opacity: 0.3;
	animation-delay: 0.6s;
}

.ttbk-heart--4 {
	width: 20px;
	height: 20px;
	top: 40%;
	right: 4%;
	color: var(--terracotta-dark);
	opacity: 0.45;
	animation-delay: 2s;
}

.ttbk-heart--5 {
	width: 16px;
	height: 16px;
	top: 78%;
	left: 24%;
	color: var(--terracotta);
	opacity: 0.35;
	animation-delay: 1.6s;
}

.ttbk-heart--6 {
	width: 28px;
	height: 28px;
	top: 72%;
	right: 20%;
	color: var(--sage-dark);
	opacity: 0.3;
	animation-delay: 0.9s;
}

@keyframes ttbk-heart-float {
	0%, 100% {
		transform: translateY(0) rotate(-4deg);
	}
	50% {
		transform: translateY(-16px) rotate(4deg);
	}
}

@media (max-width: 760px) {
	.ttbk-heart--3,
	.ttbk-heart--4,
	.ttbk-heart--6 {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ttbk-heart {
		animation: none;
	}
}

.ttbk-eyebrow {
	display: inline-block;
	background: var(--white);
	border: 1px solid var(--blush);
	color: var(--terracotta-dark);
	padding: 8px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
}

.ttbk-hero h1 {
	font-size: clamp(42px, 7vw, 68px);
	margin-bottom: 6px;
}

.ttbk-hero h1 em {
	font-style: italic;
	color: var(--terracotta);
}

.ttbk-hero__script {
	font-family: var(--font-script);
	font-size: 30px;
	color: var(--sage-dark);
	margin-bottom: 22px;
}

.ttbk-hero__lede {
	font-size: 18px;
	color: var(--brown-soft);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.ttbk-hero__cta {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 32px;
}

/* -------------------- Section heading helpers -------------------- */

.ttbk-kicker {
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--terracotta-dark);
	margin-bottom: 10px;
}

.ttbk-kicker--center {
	text-align: center;
}

.ttbk-kicker--light {
	color: var(--blush);
}

.ttbk-section-title {
	text-align: center;
	font-size: clamp(30px, 4vw, 42px);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.ttbk-section-title--light {
	color: var(--white);
}

.ttbk-section-lede {
	text-align: center;
	color: var(--brown-soft);
	max-width: 560px;
	margin: 0 auto 48px;
}

/* -------------------- Trust strip -------------------- */

.ttbk-trust {
	background: var(--white);
	border-top: 1px solid rgba(69, 48, 31, 0.08);
	border-bottom: 1px solid rgba(69, 48, 31, 0.08);
	padding: 32px 0;
}

.ttbk-trust__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}

.ttbk-trust__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ttbk-trust__item strong {
	font-family: var(--font-display);
	font-size: 26px;
	color: var(--terracotta);
}

.ttbk-trust__item span {
	font-size: 13px;
	color: var(--brown-soft);
}

/* -------------------- About -------------------- */

.ttbk-about {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.ttbk-about__inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 64px;
	align-items: center;
}

.ttbk-photo-frame {
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	background: linear-gradient(150deg, var(--blush) 0%, var(--cream-soft) 100%);
	border: 6px solid var(--white);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	overflow: hidden;
}

.ttbk-photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: calc(var(--radius-lg) - 8px);
}

.ttbk-photo-frame__placeholder {
	color: var(--terracotta-dark);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
}

.ttbk-about__badge {
	margin-top: 18px;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--blush);
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 14px;
	color: var(--brown-soft);
	box-shadow: var(--shadow);
}

.ttbk-about__lead {
	font-size: 20px;
	color: var(--sage-dark);
	font-weight: 500;
}

.ttbk-about__text h2 {
	font-size: clamp(32px, 4vw, 44px);
}

.ttbk-about__stats {
	display: flex;
	gap: 28px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.ttbk-about__stats li {
	display: flex;
	flex-direction: column;
}

.ttbk-about__stats strong {
	font-family: var(--font-display);
	font-size: 24px;
	color: var(--terracotta);
}

.ttbk-about__stats span {
	font-size: 13px;
	color: var(--brown-soft);
}

/* -------------------- Workshops -------------------- */

.ttbk-workshops {
	padding: 100px 0;
	background: var(--cream-soft);
}

.ttbk-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ttbk-card {
	position: relative;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 32px 26px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ttbk-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 46px -16px rgba(217, 125, 84, 0.4);
}

.ttbk-card__badge {
	position: absolute;
	top: -12px;
	right: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	color: var(--white);
	box-shadow: 0 8px 16px -6px rgba(69, 48, 31, 0.35);
}

.ttbk-card__badge--upcoming {
	background: var(--terracotta);
}

.ttbk-card__badge--past {
	background: var(--brown-soft);
}

.ttbk-card--upcoming {
	border: 2px solid var(--terracotta);
}

.ttbk-card__cta {
	display: inline-block;
	margin-top: 16px;
	font-weight: 600;
	font-size: 14px;
	color: var(--terracotta-dark);
}

.ttbk-card__cta:hover {
	color: var(--terracotta);
}

.ttbk-card__note {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--brown-soft);
	font-style: italic;
}

.ttbk-card__icon {
	font-size: 34px;
	margin-bottom: 12px;
}

.ttbk-card h3 {
	font-size: 21px;
	margin-bottom: 4px;
}

.ttbk-card__tag {
	display: inline-block;
	background: var(--blush-soft);
	color: var(--terracotta-dark);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.ttbk-card__list {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ttbk-card__list li {
	font-size: 14px;
	color: var(--brown-soft);
	padding-left: 20px;
	position: relative;
}

.ttbk-card__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--sage);
	font-weight: 700;
}

/* -------------------- Also available (kitty parties / events / catering) -------------------- */

.ttbk-extra {
	padding: 56px 0;
	background: var(--cream-soft);
	text-align: center;
	border-top: 1px dashed rgba(69, 48, 31, 0.15);
	border-bottom: 1px dashed rgba(69, 48, 31, 0.15);
}

.ttbk-extra__inner {
	max-width: 620px;
	margin: 0 auto;
}

.ttbk-extra h3 {
	font-size: clamp(22px, 3vw, 26px);
	margin-bottom: 10px;
}

.ttbk-extra__inner > p {
	color: var(--brown-soft);
	font-size: 15px;
	margin-bottom: 20px;
}

.ttbk-extra__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 24px;
	margin: 0 0 26px;
	font-size: 14px;
	color: var(--brown-soft);
}

.ttbk-extra__list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ttbk-extra__list span {
	font-size: 17px;
}

/* -------------------- Why -------------------- */

.ttbk-why {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	background: linear-gradient(160deg, var(--brown) 0%, #2f2015 100%);
}

.ttbk-why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 20px;
}

.ttbk-why__item {
	text-align: center;
	color: var(--blush-soft);
}

.ttbk-why__item span {
	font-size: 32px;
	display: inline-block;
	margin-bottom: 14px;
}

.ttbk-why__item h4 {
	color: var(--white);
	font-size: 18px;
	margin-bottom: 8px;
}

.ttbk-why__item p {
	font-size: 14px;
	color: #d9c6b8;
	margin: 0;
}

/* -------------------- Testimonials -------------------- */

.ttbk-testimonials {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	background: var(--cream-soft);
}

.ttbk-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ttbk-testimonial {
	margin: 0;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 28px 26px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ttbk-testimonial:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 40px -16px rgba(217, 125, 84, 0.35);
}

.ttbk-testimonial__stars {
	color: var(--terracotta);
	letter-spacing: 2px;
	font-size: 14px;
	margin-bottom: 12px;
}

.ttbk-testimonial p {
	font-size: 15px;
	color: var(--brown-soft);
	font-style: italic;
}

.ttbk-testimonial footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.ttbk-testimonial__avatar {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--blush);
	color: var(--terracotta-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.ttbk-testimonial footer strong {
	display: block;
	font-size: 14px;
}

.ttbk-testimonial footer small {
	color: var(--brown-soft);
	font-size: 12px;
}

/* -------------------- Gallery -------------------- */

.ttbk-gallery {
	padding: 100px 0;
}

.ttbk-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.ttbk-gallery__item {
	margin: 0;
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: linear-gradient(145deg, var(--blush-soft), var(--cream-soft));
	display: flex;
	align-items: flex-end;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

.ttbk-gallery__item:hover {
	transform: translateY(-4px);
}

.ttbk-gallery__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.ttbk-gallery__item figcaption {
	position: relative;
	z-index: 1;
}

.ttbk-gallery__placeholder {
	position: absolute;
	top: 14px;
	left: 14px;
	font-size: 11px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--terracotta-dark);
	padding: 3px 10px;
	border-radius: 999px;
	font-weight: 600;
}

.ttbk-gallery__item figcaption {
	width: 100%;
	padding: 16px;
	background: linear-gradient(to top, rgba(69, 48, 31, 0.55), transparent);
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
}

/* -------------------- Instagram band -------------------- */

.ttbk-instagram {
	padding: 90px 0;
	background: linear-gradient(120deg, var(--terracotta) 0%, #e29a76 100%);
	text-align: center;
}

.ttbk-instagram h2 {
	color: var(--white);
	font-size: clamp(28px, 4vw, 38px);
}

.ttbk-instagram p {
	color: #fff2ea;
	max-width: 480px;
	margin: 0 auto 28px;
}

.ttbk-instagram .ttbk-btn--primary {
	background: var(--white);
	color: var(--terracotta-dark);
	box-shadow: 0 12px 24px -10px rgba(69, 48, 31, 0.35);
}

.ttbk-instagram .ttbk-btn--primary:hover {
	background: var(--brown);
	color: var(--white);
}

.ttbk-instagram__feed {
	margin-top: 44px;
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
	text-align: left;
}

/* -------------------- Contact -------------------- */

.ttbk-contact {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
	background: var(--cream-soft);
}

.ttbk-contact__inner--centered {
	display: block;
	text-align: center;
}

.ttbk-contact__inner--centered .ttbk-contact__intro {
	max-width: 560px;
	margin: 0 auto;
}

.ttbk-contact__intro h2 {
	font-size: clamp(30px, 4vw, 40px);
}

.ttbk-contact__cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
}

.ttbk-contact__inner--centered .ttbk-contact__cards {
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}

.ttbk-contact__card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 16px 20px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease;
	text-align: left;
}

.ttbk-contact__card:hover {
	transform: translateY(-3px);
}

.ttbk-contact__card span {
	font-size: 24px;
}

.ttbk-contact__card strong {
	display: block;
	font-size: 15px;
}

.ttbk-contact__card small {
	color: var(--brown-soft);
	font-size: 13px;
}

.ttbk-contact__inner--centered .ttbk-btn {
	margin-top: 32px;
}

/* -------------------- Footer -------------------- */

.ttbk-footer {
	background: var(--brown);
	padding: 44px 0;
}

.ttbk-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.ttbk-logo--footer {
	color: var(--white);
	justify-content: center;
}

.ttbk-logo__img--footer {
	height: 88px;
	width: 88px;
	object-fit: contain;
	background: var(--cream);
	border-radius: 50%;
	padding: 6px;
}

.ttbk-logo--footer span {
	color: var(--terracotta);
}

.ttbk-footer__social {
	display: flex;
	gap: 24px;
	font-size: 14px;
}

.ttbk-footer__social a {
	color: var(--blush-soft);
	transition: color 0.2s ease;
}

.ttbk-footer__social a:hover {
	color: var(--terracotta);
}

.ttbk-footer__copy {
	color: #b6a08e;
	font-size: 13px;
	margin: 0;
}

.ttbk-footer__credit {
	color: #8a7362;
	font-size: 12px;
	margin: 0;
}

.ttbk-footer__credit a {
	color: var(--terracotta);
	font-weight: 600;
}

.ttbk-footer__credit a:hover {
	color: var(--white);
}

/* -------------------- Reveal animation -------------------- */

.ttbk-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.ttbk-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* -------------------- Mascot -------------------- */

.ttbk-mascot {
	position: fixed;
	top: 50%;
	right: 14px;
	width: 100px;
	z-index: 55;
	pointer-events: none;
	transform: translateY(calc(-50% + 0px));
	animation: ttbk-mascot-idle 2.8s ease-in-out infinite;
}

.ttbk-mascot.is-scrolling {
	animation: ttbk-mascot-jump 0.55s ease-in-out infinite;
}

.ttbk-mascot__balloon {
	transform-origin: 68px 60px;
	animation: ttbk-balloon-sway 3.4s ease-in-out infinite;
}

@keyframes ttbk-mascot-idle {
	0%, 100% {
		transform: translateY(calc(-50% + 0px)) rotate(-2deg);
	}
	50% {
		transform: translateY(calc(-50% - 8px)) rotate(2deg);
	}
}

@keyframes ttbk-mascot-jump {
	0%, 100% {
		transform: translateY(calc(-50% + 0px)) rotate(-3deg) scale(1, 1);
	}
	30% {
		transform: translateY(calc(-50% - 26px)) rotate(4deg) scale(1.04, 0.96);
	}
	55% {
		transform: translateY(calc(-50% - 30px)) rotate(-3deg) scale(0.97, 1.04);
	}
	75% {
		transform: translateY(calc(-50% - 12px)) rotate(3deg) scale(1.02, 0.98);
	}
}

@keyframes ttbk-balloon-sway {
	0%, 100% {
		transform: rotate(-4deg);
	}
	50% {
		transform: rotate(4deg);
	}
}

@media (max-width: 900px) {
	.ttbk-mascot {
		width: 76px;
		right: 6px;
	}
}

@media (max-width: 480px) {
	.ttbk-mascot {
		width: 54px;
		right: 2px;
		opacity: 0.9;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ttbk-mascot,
	.ttbk-mascot.is-scrolling,
	.ttbk-mascot__balloon {
		animation: none;
	}
}

/* -------------------- Wave dividers -------------------- */

.ttbk-wave {
	position: relative;
	height: 80px;
	line-height: 0;
	overflow: hidden;
}

.ttbk-wave svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ttbk-wave--cream-to-brown {
	background: var(--cream-soft);
}

.ttbk-wave--cream-to-brown path {
	fill: var(--brown);
}

.ttbk-wave--brown-to-cream {
	background: #2f2015;
}

.ttbk-wave--brown-to-cream path {
	fill: var(--cream-soft);
}

.ttbk-wave--cream-to-terracotta {
	background: var(--cream);
}

.ttbk-wave--cream-to-terracotta path {
	fill: var(--terracotta);
}

.ttbk-wave--terracotta-to-cream {
	background: #e29a76;
}

.ttbk-wave--terracotta-to-cream path {
	fill: var(--cream-soft);
}

/* -------------------- Flourish divider -------------------- */

.ttbk-flourish {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: 150px;
	margin: 0 auto 32px;
	color: var(--terracotta);
}

.ttbk-flourish span {
	flex: 1;
	height: 1px;
	background: currentColor;
	opacity: 0.4;
}

.ttbk-flourish svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.ttbk-flourish--light {
	color: var(--blush);
}

/* -------------------- Photo glow ring -------------------- */

.ttbk-about__photo {
	position: relative;
}

.ttbk-about__photo::before {
	content: "";
	position: absolute;
	inset: -10px;
	z-index: 0;
	border: 2px solid var(--blush);
	border-radius: calc(var(--radius-lg) + 10px);
	opacity: 0.5;
	animation: ttbk-pulse-ring 3.5s ease-in-out infinite;
	pointer-events: none;
}

.ttbk-photo-frame {
	position: relative;
	z-index: 1;
}

@keyframes ttbk-pulse-ring {
	0%, 100% {
		transform: scale(1);
		opacity: 0.55;
	}
	50% {
		transform: scale(1.045);
		opacity: 0.15;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ttbk-about__photo::before {
		animation: none;
	}
}

/* -------------------- Responsive -------------------- */

@media (max-width: 900px) {
	.ttbk-about__inner {
		grid-template-columns: 1fr;
	}

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

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

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

	.ttbk-testimonials__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.ttbk-trust__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.ttbk-wave {
		height: 40px;
	}

	.ttbk-nav__links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--cream);
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 12px 24px 20px;
		border-bottom: 1px solid rgba(69, 48, 31, 0.08);
		display: none;
	}

	.ttbk-nav__links.is-open {
		display: flex;
	}

	.ttbk-nav__links a {
		width: 100%;
		padding: 10px 0;
	}

	.ttbk-nav__cta {
		margin-top: 6px;
		text-align: center;
	}

	.ttbk-nav__toggle {
		display: flex;
	}

	.ttbk-hero {
		padding: 90px 0 70px;
	}

	.ttbk-cards {
		grid-template-columns: 1fr;
	}

	.ttbk-why__grid {
		grid-template-columns: 1fr;
	}

	.ttbk-gallery__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	body.ttbk {
		font-size: 16px;
	}
}
