/* =========================================================
   3 TECH BD — HOMEPAGE
   All rules scoped to #ttbd so the active theme is never affected.
   Palette: logo orange #fd8d4a on ink black, over warm cream.
   ========================================================= */

:root { --tt-sbw: 0px; }

#ttbd {
	/* brand core — sampled from the 3 Tech logo */
	--orange:      #fd8d4a;
	--orange-mid:  #f4762b;
	--orange-deep: #dd5f12;
	--orange-soft: #ffb887;
	--orange-pale: #fff1e6;
	--orange-tint: #fdf6f0;

	/* ink range */
	--ink:         #16161a;
	--ink-mid:     #101013;
	--ink-deep:    #0b0b0d;
	--ink-black:   #060607;

	/* warm neutrals */
	--cream:       #faf7f3;
	--cream-mid:   #f3ede5;
	--tan:         #e8ded1;
	--border:      #e7ded2;
	--grey:        #6b6259;
	--grey-soft:   #9a9086;
	--white:       #ffffff;

	/* on-dark text */
	--on-dark:     #f6efe8;
	--on-dark-mid: rgba(246, 239, 232, 0.74);
	--on-dark-dim: rgba(246, 239, 232, 0.52);
	--glass:       rgba(255, 255, 255, 0.06);
	--glass-line:  rgba(255, 255, 255, 0.14);

	/* gradients */
	--grad-brand:  linear-gradient(120deg, var(--orange-deep) 0%, var(--orange) 52%, var(--orange-soft) 100%);
	--grad-btn:    linear-gradient(120deg, var(--orange-mid) 0%, var(--orange) 55%, var(--orange-soft) 100%);
	--grad-text:   linear-gradient(100deg, var(--orange-soft) 0%, var(--orange) 48%, var(--orange-mid) 100%);
	--grad-ink:    linear-gradient(120deg, var(--ink) 0%, #2b2118 60%, var(--orange-deep) 100%);

	--radius:      14px;
	--radius-lg:   22px;
	--shadow-sm:   0 8px 28px rgba(38, 26, 16, 0.06);
	--shadow-md:   0 18px 44px rgba(38, 26, 16, 0.13);
	--shadow-lg:   0 34px 70px rgba(38, 26, 16, 0.2);
	--glow:        0 0 42px rgba(253, 141, 74, 0.32);
	--ease:        cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out:    cubic-bezier(0.22, 1, 0.36, 1);

	font-family: 'Rubik', 'Segoe UI', Arial, sans-serif !important;
	font-weight: 300 !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: var(--ink) !important;
	background: var(--white) !important;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

/* ---------------------------------------------------------
   FULL-BLEED BREAKOUT
   --------------------------------------------------------- */
#ttbd {
	position: relative;
	width: calc(100vw - var(--tt-sbw));
	max-width: calc(100vw - var(--tt-sbw));
	left: 50%;
	margin-left: calc(-50vw + (var(--tt-sbw) / 2)) !important;
	margin-right: calc(-50vw + (var(--tt-sbw) / 2)) !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	overflow-x: hidden;
}

.entry-content > #ttbd,
.ast-container > #ttbd { max-width: calc(100vw - var(--tt-sbw)) !important; }
#ttbd > section,
#ttbd > div { width: 100%; max-width: 100%; }

#ttbd *,
#ttbd *::before,
#ttbd *::after { box-sizing: border-box; margin: 0; padding: 0; }

#ttbd [id] { scroll-margin-top: 100px; }
#ttbd img { display: block; max-width: 100%; height: auto; }
#ttbd a { text-decoration: none !important; }
#ttbd ul { list-style: none; }

#ttbd .tt-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

#ttbd .tt-ico {
	width: 1.25em;
	height: 1.25em;
	display: inline-block;
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	vertical-align: middle;
}

/* =========================================================
   ANNOUNCEMENT TICKER
   ========================================================= */
#ttbd .tt-ticker {
	position: relative;
	overflow: hidden;
	background: var(--ink-black) !important;
	color: var(--on-dark-mid) !important;
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

#ttbd .tt-ticker::before,
#ttbd .tt-ticker::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 90px;
	z-index: 2;
	pointer-events: none;
}

#ttbd .tt-ticker::before { left: 0; background: linear-gradient(90deg, var(--ink-black), transparent); }
#ttbd .tt-ticker::after { right: 0; background: linear-gradient(270deg, var(--ink-black), transparent); }

#ttbd .tt-ticker-track {
	display: flex;
	width: max-content;
	animation: ttMarquee 38s linear infinite;
}

#ttbd .tt-ticker:hover .tt-ticker-track { animation-play-state: paused; }

#ttbd .tt-ticker-set {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-right: 1.5rem;
	white-space: nowrap;
}

#ttbd .tt-ticker-set span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem !important;
	font-weight: 400 !important;
	letter-spacing: 0.03em;
}

#ttbd .tt-ticker-set .tt-ico { width: 1.05rem; height: 1.05rem; color: var(--orange); }

#ttbd .tt-ticker-set .tt-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--orange);
	opacity: 0.6;
}

@keyframes ttMarquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* =========================================================
   SHARED ATMOSPHERE — aurora blobs + mesh grid
   ========================================================= */
#ttbd .tt-aurora {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

#ttbd .tt-blob {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(84px);
	opacity: 0.5;
	will-change: transform;
}

#ttbd .tt-blob--1 {
	width: 46vw;
	height: 46vw;
	max-width: 640px;
	max-height: 640px;
	top: -16%;
	left: -8%;
	background: radial-gradient(circle, rgba(244, 118, 43, 0.75) 0%, rgba(244, 118, 43, 0) 70%);
	animation: ttDrift1 24s var(--ease) infinite alternate;
}

#ttbd .tt-blob--2 {
	width: 42vw;
	height: 42vw;
	max-width: 580px;
	max-height: 580px;
	top: 6%;
	right: -10%;
	background: radial-gradient(circle, rgba(253, 141, 74, 0.5) 0%, rgba(253, 141, 74, 0) 70%);
	animation: ttDrift2 28s var(--ease) infinite alternate;
}

#ttbd .tt-blob--3 {
	width: 38vw;
	height: 38vw;
	max-width: 520px;
	max-height: 520px;
	bottom: -20%;
	left: 32%;
	background: radial-gradient(circle, rgba(221, 95, 18, 0.45) 0%, rgba(221, 95, 18, 0) 70%);
	animation: ttDrift3 32s var(--ease) infinite alternate;
}

#ttbd .tt-hero-mesh {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 184, 135, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 184, 135, 0.08) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(900px 620px at 50% 30%, #000 0%, transparent 82%);
	-webkit-mask-image: radial-gradient(900px 620px at 50% 30%, #000 0%, transparent 82%);
}

/* =========================================================
   HERO
   ========================================================= */
#ttbd .tt-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 5% 150px;
	background:
		radial-gradient(1200px 700px at 76% 4%, rgba(84, 43, 16, 0.9), transparent 62%),
		linear-gradient(165deg, #1d1610 0%, var(--ink-mid) 55%, var(--ink-black) 100%);
	color: var(--on-dark) !important;
	isolation: isolate;
}

#ttbd .tt-hero-rings {
	position: absolute;
	top: 50%;
	right: -8%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 0;
}

#ttbd .tt-hero-rings span {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(255, 184, 135, 0.14);
	transform: translate(-50%, -50%);
}

#ttbd .tt-hero-rings span:nth-child(1) { width: 380px; height: 380px; }
#ttbd .tt-hero-rings span:nth-child(2) { width: 580px; height: 580px; border-color: rgba(255, 184, 135, 0.1); }
#ttbd .tt-hero-rings span:nth-child(3) { width: 800px; height: 800px; border-color: rgba(255, 184, 135, 0.06); }

#ttbd .tt-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 4.5rem;
	align-items: center;
	max-width: 1240px;
	margin: 0 auto;
}

/* --- slider stack --- */
#ttbd .tt-hero-copy {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	align-items: start;
}

#ttbd .tt-slide {
	grid-row: 1;
	grid-column: 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(22px);
	transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0.6s;
	pointer-events: none;
}

#ttbd .tt-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: none;
	pointer-events: auto;
}

#ttbd .tt-hero-dots {
	grid-row: 2;
	grid-column: 1;
	justify-self: start;
	display: flex !important;
	gap: 0.6rem;
	margin-top: 2.5rem;
	z-index: 2;
}

#ttbd .tt-hero-dots button {
	width: 46px;
	height: 22px;
	padding: 9px 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
}

#ttbd .tt-hero-dots button span {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 100px;
	background: rgba(246, 239, 232, 0.22);
	transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#ttbd .tt-hero-dots button:hover span { background: rgba(246, 239, 232, 0.45); }

#ttbd .tt-hero-dots button.is-active span {
	background: rgba(246, 239, 232, 0.2);
	transform: scaleY(1.8);
	box-shadow: 0 0 16px rgba(253, 141, 74, 0.5);
}

#ttbd .tt-hero-dots button.is-active span::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: var(--grad-btn);
	transform-origin: left center;
	transform: scaleX(0);
	animation: ttDotFill 6s linear forwards;
}

#ttbd .tt-hero-dots.is-paused button.is-active span::after { animation-play-state: paused; }

@keyframes ttDotFill {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

/* --- hero copy --- */
#ttbd .tt-eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.07) !important;
	border: 1px solid var(--glass-line);
	color: var(--orange-soft) !important;
	font-size: 0.74rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.45rem 1.05rem;
	border-radius: 100px;
	margin-bottom: 1.6rem !important;
	backdrop-filter: blur(10px);
}

#ttbd .tt-eyebrow .dot {
	width: 7px;
	height: 7px;
	background: var(--orange) !important;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 10px var(--orange);
	animation: ttPulse 2.4s var(--ease) infinite;
}

#ttbd .tt-h1 {
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
	font-weight: 600 !important;
	line-height: 1.02 !important;
	color: var(--white) !important;
	letter-spacing: -0.025em;
	margin: 0 !important;
	text-wrap: balance;
}

#ttbd .tt-h1 em {
	font-style: italic !important;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--orange) !important;
	display: inline-block;
}

#ttbd .tt-hero-sub {
	margin-top: 1.6rem !important;
	font-size: 1.08rem !important;
	color: var(--on-dark-mid) !important;
	font-weight: 300 !important;
	max-width: 520px;
	line-height: 1.8 !important;
}

#ttbd .tt-actions {
	margin-top: 2.4rem !important;
	display: flex !important;
	gap: 1rem;
	flex-wrap: wrap;
}

/* --- buttons --- */
#ttbd .tt-btn-primary {
	position: relative;
	overflow: hidden;
	display: inline-flex !important;
	align-items: center;
	gap: 0.6rem;
	background: var(--grad-btn) !important;
	background-size: 200% 100%;
	color: var(--ink-black) !important;
	padding: 1rem 2rem !important;
	border-radius: 100px !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	border: none !important;
	box-shadow: 0 10px 30px rgba(253, 141, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
	transition: background-position 0.6s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#ttbd .tt-btn-primary span { position: relative; z-index: 1; }
#ttbd .tt-btn-primary .tt-ico { position: relative; z-index: 1; transition: transform 0.35s var(--ease); }

#ttbd .tt-btn-primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 45%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.65), transparent);
	transform: skewX(-18deg);
	transition: left 0.7s var(--ease);
}

#ttbd .tt-btn-primary:hover {
	background-position: 100% 0;
	color: var(--ink-black) !important;
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(253, 141, 74, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

#ttbd .tt-btn-primary:hover::after { left: 115%; }
#ttbd .tt-btn-primary:hover .tt-ico { transform: translateX(5px); }

#ttbd .tt-btn-ghost {
	display: inline-flex !important;
	align-items: center;
	color: var(--on-dark) !important;
	background: rgba(255, 255, 255, 0.05) !important;
	padding: 1rem 2rem !important;
	border-radius: 100px !important;
	border: 1px solid var(--glass-line) !important;
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	backdrop-filter: blur(10px);
	transition: background 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

#ttbd .tt-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 184, 135, 0.55) !important;
	color: var(--white) !important;
	transform: translateY(-3px);
}

#ttbd .tt-btn-dark {
	position: relative;
	overflow: hidden;
	display: inline-flex !important;
	align-items: center;
	gap: 0.6rem;
	background: var(--grad-ink) !important;
	background-size: 200% 100%;
	color: var(--white) !important;
	padding: 1rem 2.2rem !important;
	border-radius: 100px !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	border: none !important;
	box-shadow: 0 12px 32px rgba(22, 22, 26, 0.28);
	transition: background-position 0.6s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#ttbd .tt-btn-dark .tt-ico { transition: transform 0.35s var(--ease); }

#ttbd .tt-btn-dark:hover {
	background-position: 100% 0;
	color: var(--white) !important;
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(221, 95, 18, 0.32);
}

#ttbd .tt-btn-dark:hover .tt-ico { transform: translateX(5px); }

/* --- hero visual: photo frame + stat rail --- */
#ttbd .tt-hero-visual {
	animation: ttFadeUp 0.85s 0.12s var(--ease-out) both;
	display: grid;
	gap: 1rem;
}

#ttbd .tt-hero-frame {
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	border: 1px solid var(--glass-line);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	transform-style: preserve-3d;
	aspect-ratio: 4 / 3.4;
}

#ttbd .tt-hero-frame::before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: 3;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(140deg, rgba(255, 184, 135, 0.75), rgba(253, 141, 74, 0) 46%, rgba(255, 184, 135, 0.35));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

#ttbd .tt-hero-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 1.1s var(--ease-out);
}

#ttbd .tt-hero-frame:hover img { transform: scale(1.05); }

#ttbd .tt-hero-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(6, 6, 7, 0) 46%, rgba(6, 6, 7, 0.62) 100%);
}

#ttbd .tt-hero-chip {
	position: absolute;
	left: 1.1rem;
	bottom: 1.1rem;
	z-index: 2;
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ink-black) !important;
	background: var(--grad-btn);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	box-shadow: 0 10px 26px rgba(253, 141, 74, 0.34);
}

#ttbd .tt-hero-chip .tt-ico { width: 0.95rem; height: 0.95rem; fill: currentColor; stroke: none; }

#ttbd .tt-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

#ttbd .tt-stat {
	position: relative;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.09) !important;
	border-radius: 16px;
	padding: 1.15rem 0.75rem;
	text-align: center;
	backdrop-filter: blur(14px);
	transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

#ttbd .tt-stat:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.09) !important;
	border-color: rgba(255, 184, 135, 0.4) !important;
}

#ttbd .tt-stat .num {
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: 2rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.05em;
	letter-spacing: -0.02em;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--orange) !important;
	font-variant-numeric: tabular-nums;
}

#ttbd .tt-stat .lbl {
	font-size: 0.72rem !important;
	color: var(--on-dark-dim) !important;
	margin-top: 0.4rem !important;
	font-weight: 400 !important;
	display: block !important;
	letter-spacing: 0.03em;
}

#ttbd .tt-stat.is-accent {
	background: var(--grad-btn) !important;
	border-color: transparent !important;
	box-shadow: 0 14px 40px rgba(253, 141, 74, 0.3);
}

#ttbd .tt-stat.is-accent .num {
	background: none;
	-webkit-text-fill-color: var(--ink-black);
	color: var(--ink-black) !important;
}

#ttbd .tt-stat.is-accent .lbl { color: rgba(6, 6, 7, 0.72) !important; }

/* --- scroll cue + wave divider --- */
#ttbd .tt-scroll-cue {
	position: absolute;
	left: 50%;
	bottom: 122px;
	z-index: 3;
	transform: translateX(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--glass-line);
	background: rgba(255, 255, 255, 0.05);
	color: var(--orange-soft) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	animation: ttBob 2.6s var(--ease) infinite;
	transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

#ttbd .tt-scroll-cue:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 184, 135, 0.55);
}

#ttbd .tt-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 2;
	line-height: 0;
	pointer-events: none;
}

#ttbd .tt-wave svg { width: 100%; height: 110px; display: block; }
#ttbd .tt-wave path { fill: var(--cream); }

/* =========================================================
   SHARED SECTION FURNITURE
   ========================================================= */
#ttbd .tt-section { position: relative; padding: 104px 5%; }

#ttbd .tt-section-inner {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
}

#ttbd .tt-tag {
	display: inline-flex !important;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.72rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.17em;
	color: var(--orange-deep) !important;
	margin-bottom: 1rem !important;
	padding: 0.4rem 0.95rem;
	border-radius: 100px;
	background: var(--orange-pale) !important;
	border: 1px solid rgba(221, 95, 18, 0.15);
}

#ttbd .tt-tag i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--grad-btn);
	display: inline-block;
	flex: none;
}

#ttbd .tt-h2 {
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: clamp(2rem, 4.3vw, 3.15rem) !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;
	color: var(--ink) !important;
	letter-spacing: -0.022em;
	margin: 0 0 0.5rem !important;
	text-wrap: balance;
}

#ttbd .tt-h2 em {
	font-style: italic !important;
	background: linear-gradient(100deg, var(--orange-deep) 0%, var(--orange-mid) 55%, var(--orange) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--orange-deep) !important;
}

#ttbd .tt-sub {
	color: var(--grey) !important;
	font-size: 1.02rem !important;
	max-width: 560px;
	line-height: 1.75 !important;
	margin-top: 0.75rem !important;
}

#ttbd .tt-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: 3.25rem;
}

#ttbd .tt-head-centre {
	max-width: 680px;
	margin: 0 auto 3.5rem;
	text-align: center;
}

#ttbd .tt-head-centre .tt-sub { margin-left: auto; margin-right: auto; }

#ttbd .tt-text-link {
	display: inline-flex !important;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	color: var(--orange-deep) !important;
	padding-bottom: 4px;
	border-bottom: 2px solid rgba(221, 95, 18, 0.25);
	transition: gap 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

#ttbd .tt-text-link .tt-ico { width: 0.95rem; height: 0.95rem; }
#ttbd .tt-text-link:hover { gap: 0.75rem; color: var(--orange-mid) !important; border-color: var(--orange); }

#ttbd .tt-centre-action { margin-top: 3.25rem; text-align: center; }

/* --- shared glare layer for tilt cards --- */
#ttbd .tt-glare {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	opacity: 0;
	z-index: 4;
	background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 0%), rgba(255, 255, 255, 0.5), transparent 62%);
	transition: opacity 0.4s var(--ease);
	mix-blend-mode: soft-light;
}

#ttbd .tt-hero-frame > .tt-glare,
#ttbd .tt-craft-item > .tt-glare,
#ttbd .tt-collection-card > .tt-glare {
	background: radial-gradient(340px circle at var(--gx, 50%) var(--gy, 0%), rgba(255, 184, 135, 0.22), transparent 62%);
	mix-blend-mode: screen;
}

#ttbd [data-tt-tilt] {
	transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
	transform-style: preserve-3d;
	will-change: transform;
}

#ttbd [data-tt-tilt]:hover > .tt-glare { opacity: 1; }

/* =========================================================
   PROMISE STRIP
   ========================================================= */
#ttbd .tt-promise {
	position: relative;
	padding: 0 5%;
	background: var(--cream) !important;
}

#ttbd .tt-promise .tt-section-inner {
	transform: translateY(-46px);
	margin-bottom: -10px;
}

#ttbd .tt-promise-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

#ttbd .tt-promise-item {
	display: flex !important;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.9rem 1.6rem;
	border-right: 1px solid var(--border);
	transition: background 0.4s var(--ease);
}

#ttbd .tt-promise-item:last-child { border-right: 0; }
#ttbd .tt-promise-item:hover { background: var(--orange-tint) !important; }

#ttbd .tt-promise-icon {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 14px;
	background: var(--orange-pale) !important;
	color: var(--orange-deep) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#ttbd .tt-promise-icon .tt-ico { width: 1.35rem; height: 1.35rem; }

#ttbd .tt-promise-item:hover .tt-promise-icon {
	background: var(--grad-btn) !important;
	color: var(--ink-black) !important;
	transform: translateY(-4px) scale(1.06) rotate(-4deg);
	box-shadow: 0 12px 26px rgba(253, 141, 74, 0.34);
}

#ttbd .tt-promise-item h3 {
	font-size: 0.98rem !important;
	font-weight: 600 !important;
	color: var(--ink) !important;
	margin-bottom: 0.3rem !important;
	line-height: 1.35 !important;
}

#ttbd .tt-promise-item p {
	font-size: 0.85rem !important;
	color: var(--grey) !important;
	line-height: 1.6 !important;
	margin: 0 !important;
}

/* =========================================================
   COLLECTIONS
   ========================================================= */
#ttbd .tt-collections {
	background:
		radial-gradient(760px 480px at 88% 4%, rgba(253, 141, 74, 0.09), transparent 62%),
		var(--cream) !important;
	padding-top: 40px;
}

#ttbd .tt-collection-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

#ttbd .tt-collection-card {
	position: relative;
	display: block !important;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--ink) !important;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.5s var(--ease);
}

#ttbd .tt-collection-card:hover { box-shadow: var(--shadow-lg); }

#ttbd .tt-collection-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease-out), filter 0.6s var(--ease);
}

#ttbd .tt-collection-card:hover img { transform: scale(1.07); }

#ttbd .tt-collection-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(6, 6, 7, 0.05) 30%, rgba(6, 6, 7, 0.72) 78%, rgba(6, 6, 7, 0.92) 100%);
	transition: opacity 0.5s var(--ease);
}

#ttbd .tt-collection-index {
	position: absolute;
	top: 1.1rem;
	right: 1.3rem;
	z-index: 3;
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: 2.4rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	color: rgba(255, 255, 255, 0.28) !important;
	transition: color 0.5s var(--ease), transform 0.6s var(--ease-out);
}

#ttbd .tt-collection-card:hover .tt-collection-index {
	color: var(--orange) !important;
	transform: translateY(-4px);
}

#ttbd .tt-collection-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 1.75rem 1.6rem;
}

#ttbd .tt-collection-body h3 {
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: 1.5rem !important;
	font-weight: 600 !important;
	color: var(--white) !important;
	line-height: 1.2 !important;
	letter-spacing: -0.015em;
	margin-bottom: 0.4rem !important;
	transition: transform 0.5s var(--ease-out);
}

#ttbd .tt-collection-card:hover .tt-collection-body h3 { transform: translateY(-2px); }

#ttbd .tt-collection-body p {
	font-size: 0.86rem !important;
	color: rgba(255, 255, 255, 0.72) !important;
	line-height: 1.6 !important;
	margin: 0 !important;
	max-width: 280px;
}

#ttbd .tt-collection-cta {
	display: inline-flex !important;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1rem;
	font-size: 0.82rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--orange-soft) !important;
	transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}

#ttbd .tt-collection-cta .tt-ico { width: 0.95rem; height: 0.95rem; }
#ttbd .tt-collection-card:hover .tt-collection-cta { gap: 0.8rem; color: var(--white) !important; }

/* =========================================================
   FEATURED PRODUCTS
   ========================================================= */
#ttbd .tt-featured {
	background:
		radial-gradient(700px 420px at 8% 4%, rgba(253, 141, 74, 0.07), transparent 60%),
		var(--white) !important;
}

#ttbd .tt-product-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem;
}

#ttbd .tt-product {
	position: relative;
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

#ttbd .tt-product::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1.5px;
	background: var(--grad-brand);
	background-size: 220% 220%;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.45s var(--ease);
	pointer-events: none;
	z-index: 5;
}

#ttbd .tt-product:hover {
	box-shadow: var(--shadow-lg);
	border-color: transparent !important;
}

#ttbd .tt-product:hover::after { opacity: 1; animation: ttShift 4s linear infinite; }

#ttbd .tt-product-media {
	position: relative;
	overflow: hidden;
	background: var(--cream-mid);
	aspect-ratio: 4 / 3.6;
}

#ttbd .tt-product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease-out);
}

#ttbd .tt-product:hover .tt-product-media img { transform: scale(1.08); }

#ttbd .tt-product-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 6, 7, 0) 45%, rgba(6, 6, 7, 0.5) 100%);
	opacity: 0;
	transition: opacity 0.45s var(--ease);
	pointer-events: none;
}

#ttbd .tt-product:hover .tt-product-media::after { opacity: 1; }

#ttbd .tt-badge {
	position: absolute;
	top: 13px;
	left: 13px;
	z-index: 3;
	font-size: 0.64rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-black) !important;
	background: var(--grad-btn) !important;
	padding: 0.36rem 0.8rem;
	border-radius: 100px;
	box-shadow: 0 6px 16px rgba(253, 141, 74, 0.34);
}

#ttbd .tt-badge.is-new {
	background: var(--ink) !important;
	color: var(--orange-soft) !important;
	box-shadow: 0 6px 16px rgba(22, 22, 26, 0.3);
}

#ttbd .tt-product-hover {
	position: absolute;
	left: 50%;
	bottom: 16px;
	z-index: 3;
	transform: translate(-50%, 18px);
	opacity: 0;
	font-size: 0.8rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ink-black) !important;
	background: rgba(255, 255, 255, 0.95);
	padding: 0.6rem 1.4rem;
	border-radius: 100px;
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 26px rgba(6, 6, 7, 0.28);
	transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-out);
	pointer-events: none;
}

#ttbd .tt-product:hover .tt-product-hover { opacity: 1; transform: translate(-50%, 0); }

#ttbd .tt-product-body {
	position: relative;
	z-index: 2;
	padding: 1.5rem 1.5rem 1.7rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

#ttbd .tt-product-cat {
	display: block !important;
	font-size: 0.7rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--orange-deep) !important;
	margin-bottom: 0.55rem !important;
}

#ttbd .tt-product-body h3 {
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: 1.24rem !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	letter-spacing: -0.015em;
	margin-bottom: 0.6rem !important;
}

#ttbd .tt-product-body h3 a {
	color: var(--ink) !important;
	transition: color 0.3s var(--ease);
}

#ttbd .tt-product-body h3 a:hover { color: var(--orange-deep) !important; }

#ttbd .tt-stars { display: flex !important; gap: 2px; margin-bottom: 1.2rem; }

#ttbd .tt-stars .tt-ico {
	width: 0.95rem;
	height: 0.95rem;
	fill: var(--orange);
	stroke: none;
}

#ttbd .tt-product-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin-top: auto;
	font-size: 0.86rem !important;
	font-weight: 600 !important;
	color: var(--ink) !important;
	padding: 0.75rem 1.4rem;
	border-radius: 100px;
	background: var(--cream-mid) !important;
	border: 1px solid var(--border);
	transition: gap 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

#ttbd .tt-product-link .tt-ico { width: 0.92rem; height: 0.92rem; }

#ttbd .tt-product-link:hover {
	gap: 0.75rem;
	background: var(--grad-btn) !important;
	border-color: transparent;
	color: var(--ink-black) !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(253, 141, 74, 0.34);
}

/* =========================================================
   CRAFT — dark band
   ========================================================= */
#ttbd .tt-craft {
	overflow: hidden;
	isolation: isolate;
	padding: 118px 5%;
	background:
		radial-gradient(1000px 620px at 18% 0%, rgba(84, 43, 16, 0.85), transparent 62%),
		linear-gradient(160deg, #1d1610 0%, var(--ink-mid) 58%, var(--ink-black) 100%);
	color: var(--on-dark) !important;
}

#ttbd .tt-craft-head { max-width: 780px; margin-bottom: 1rem; }

#ttbd .tt-craft .tt-tag {
	color: var(--orange-soft) !important;
	background: rgba(255, 255, 255, 0.07) !important;
	border-color: var(--glass-line);
}

#ttbd .tt-craft .tt-h2 { color: var(--white) !important; }

#ttbd .tt-craft .tt-h2 em {
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

#ttbd .tt-craft .tt-sub { color: var(--on-dark-mid) !important; max-width: 640px; }

#ttbd .tt-craft-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 3.5rem;
}

#ttbd .tt-craft-item {
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.055) !important;
	border: 1px solid var(--glass-line) !important;
	border-radius: var(--radius-lg);
	padding: 2.1rem 1.7rem;
	backdrop-filter: blur(14px);
	transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#ttbd .tt-craft-item:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(255, 184, 135, 0.42) !important;
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), var(--glow);
}

#ttbd .tt-craft-num {
	font-family: 'Fraunces', Georgia, serif !important;
	font-size: 3rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: -0.03em;
	margin-bottom: 1rem !important;
	display: block !important;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--orange) !important;
	opacity: 0.9;
}

#ttbd .tt-craft-item h3 {
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	color: var(--white) !important;
	margin-bottom: 0.6rem !important;
	line-height: 1.4 !important;
}

#ttbd .tt-craft-item p {
	font-size: 0.9rem !important;
	color: var(--on-dark-mid) !important;
	line-height: 1.7 !important;
	margin: 0 !important;
}

/* =========================================================
   STORY
   ========================================================= */
#ttbd .tt-story {
	background:
		radial-gradient(680px 420px at 96% 10%, rgba(253, 141, 74, 0.1), transparent 60%),
		var(--cream) !important;
}

#ttbd .tt-story-grid {
	display: grid;
	grid-template-columns: 1fr 0.95fr;
	gap: 4.5rem;
	align-items: center;
}

#ttbd .tt-story-copy p {
	color: var(--grey) !important;
	font-size: 1rem !important;
	line-height: 1.85 !important;
	margin-top: 1.15rem !important;
	max-width: 520px;
}

#ttbd .tt-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem 1.2rem;
	margin: 2rem 0 2.4rem !important;
}

#ttbd .tt-check-list li {
	display: flex !important;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.92rem !important;
	font-weight: 500 !important;
	color: var(--ink) !important;
}

#ttbd .tt-check-list .tt-ico {
	width: 1.15rem;
	height: 1.15rem;
	flex: none;
	color: var(--white);
	background: var(--grad-btn);
	border-radius: 50%;
	padding: 3px;
	stroke-width: 2.4;
	box-shadow: 0 5px 14px rgba(253, 141, 74, 0.34);
}

#ttbd .tt-story-media { position: relative; }

#ttbd .tt-story-frame {
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	aspect-ratio: 4 / 4.4;
	box-shadow: var(--shadow-lg);
	transform-style: preserve-3d;
	background: var(--cream-mid);
}

#ttbd .tt-story-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease-out);
}

#ttbd .tt-story-frame:hover img { transform: scale(1.05); }

#ttbd .tt-story-badge {
	position: absolute;
	left: -22px;
	bottom: 30px;
	z-index: 4;
	display: flex !important;
	align-items: center;
	gap: 0.9rem;
	background: var(--white) !important;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1rem 1.3rem;
	box-shadow: var(--shadow-md);
	max-width: 300px;
}

#ttbd .tt-story-badge .badge-icon {
	width: 42px;
	height: 42px;
	flex: none;
	border-radius: 13px;
	background: var(--grad-btn) !important;
	color: var(--ink-black) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 22px rgba(253, 141, 74, 0.34);
}

#ttbd .tt-story-badge .badge-icon .tt-ico { width: 1.2rem; height: 1.2rem; }

#ttbd .tt-story-badge strong {
	display: block !important;
	font-size: 0.92rem !important;
	font-weight: 600 !important;
	color: var(--ink) !important;
}

#ttbd .tt-story-badge span {
	font-size: 0.79rem !important;
	color: var(--grey) !important;
	line-height: 1.5 !important;
}

/* =========================================================
   CTA BAND
   ========================================================= */
#ttbd .tt-cta { padding: 0 5%; background: var(--white) !important; }

#ttbd .tt-cta-inner {
	position: relative;
	overflow: hidden;
	max-width: 1240px;
	margin: 88px auto -70px;
	border-radius: 28px;
	padding: 3.6rem 3.2rem;
	background: linear-gradient(120deg, var(--ink) 0%, #2b2118 48%, var(--orange-deep) 100%);
	box-shadow: 0 40px 90px rgba(38, 26, 16, 0.35);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	flex-wrap: wrap;
	z-index: 3;
}

#ttbd .tt-cta-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(520px 320px at 90% 12%, rgba(253, 141, 74, 0.45), transparent 62%),
		radial-gradient(420px 280px at 4% 96%, rgba(255, 184, 135, 0.24), transparent 60%);
}

#ttbd .tt-cta-copy { position: relative; z-index: 1; }

#ttbd .tt-cta .tt-tag {
	color: var(--orange-soft) !important;
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.2);
}

#ttbd .tt-cta .tt-h2 { color: var(--white) !important; margin-bottom: 0.75rem !important; }

#ttbd .tt-cta .tt-h2 em {
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

#ttbd .tt-cta-copy p {
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 1.02rem !important;
	line-height: 1.7 !important;
	max-width: 460px;
	margin: 0 !important;
}

#ttbd .tt-cta-actions {
	position: relative;
	z-index: 1;
	display: flex !important;
	flex-direction: column;
	gap: 0.85rem;
	align-items: stretch;
}

#ttbd .tt-cta-actions .tt-btn-primary,
#ttbd .tt-cta-actions .tt-btn-ghost { justify-content: center; }

/* =========================================================
   ENQUIRY
   ========================================================= */
#ttbd .tt-enquiry {
	background:
		radial-gradient(720px 460px at 92% 8%, rgba(253, 141, 74, 0.09), transparent 60%),
		var(--cream) !important;
	padding-top: 158px;
}

#ttbd .tt-enquiry-wrap {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 4.5rem;
	align-items: start;
}

#ttbd .tt-enquiry-lead {
	color: var(--grey) !important;
	font-size: 0.98rem !important;
	line-height: 1.75 !important;
	margin: 1.25rem 0 2.25rem !important;
	max-width: 440px;
}

#ttbd .tt-contact-detail {
	display: flex !important;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 1rem !important;
}

#ttbd .tt-contact-detail .icon {
	width: 46px;
	height: 46px;
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	color: var(--orange-deep) !important;
	border-radius: 13px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
	transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

#ttbd .tt-contact-detail:hover .icon {
	background: var(--grad-btn) !important;
	color: var(--ink-black) !important;
	transform: translateY(-2px);
}

#ttbd .tt-contact-detail .icon .tt-ico { width: 1.2rem; height: 1.2rem; }

#ttbd .tt-contact-detail a,
#ttbd .tt-contact-detail span {
	font-size: 0.95rem !important;
	color: var(--ink) !important;
	font-weight: 500 !important;
}

#ttbd .tt-contact-detail a:hover { color: var(--orange-deep) !important; }

#ttbd .tt-socials { display: flex !important; gap: 0.6rem; margin-top: 1.75rem; }

#ttbd .tt-socials a {
	width: 44px;
	height: 44px;
	border-radius: 13px;
	border: 1px solid var(--border) !important;
	background: var(--white) !important;
	color: var(--ink) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	box-shadow: var(--shadow-sm);
	transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

#ttbd .tt-socials a:hover {
	background: var(--grad-ink) !important;
	color: var(--orange-soft) !important;
	transform: translateY(-3px);
}

#ttbd .tt-form-shell {
	position: relative;
	overflow: hidden;
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: 24px;
	padding: 2.4rem;
	box-shadow: var(--shadow-md);
}

#ttbd .tt-form-shell::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--grad-brand);
	background-size: 220% 100%;
	animation: ttShift 6s linear infinite;
}

#ttbd .tt-form { display: flex !important; flex-direction: column; gap: 1.05rem; }

#ttbd .tt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#ttbd .tt-form-group { display: flex !important; flex-direction: column; gap: 0.45rem; }

#ttbd .tt-form-group label {
	font-size: 0.82rem !important;
	font-weight: 500 !important;
	color: var(--ink) !important;
}

#ttbd .tt-form-group label .req { color: var(--orange-deep) !important; }

#ttbd .tt-form-group input,
#ttbd .tt-form-group textarea,
#ttbd .tt-form-group select {
	padding: 0.85rem 1.05rem !important;
	border: 1.5px solid var(--border) !important;
	border-radius: 12px !important;
	font-family: 'Rubik', sans-serif !important;
	font-size: 0.92rem !important;
	color: var(--ink) !important;
	background: #fdfbf9 !important;
	outline: none !important;
	resize: vertical;
	width: 100%;
	appearance: auto;
	-webkit-appearance: auto;
	transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

#ttbd .tt-form-group input:focus,
#ttbd .tt-form-group textarea:focus,
#ttbd .tt-form-group select:focus {
	border-color: var(--orange) !important;
	background: var(--white) !important;
	box-shadow: 0 0 0 4px rgba(253, 141, 74, 0.16) !important;
}

#ttbd .tt-form-group input.has-error,
#ttbd .tt-form-group textarea.has-error {
	border-color: #d64545 !important;
	box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12) !important;
}

#ttbd .tt-form-group textarea { min-height: 132px; }

#ttbd .tt-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

#ttbd .tt-btn-submit {
	position: relative;
	overflow: hidden;
	align-self: flex-start;
	display: inline-flex !important;
	align-items: center;
	gap: 0.6rem;
	background: var(--grad-ink) !important;
	background-size: 200% 100%;
	color: var(--white) !important;
	border: none !important;
	cursor: pointer;
	padding: 1rem 2.2rem !important;
	border-radius: 100px !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	font-family: 'Rubik', sans-serif !important;
	box-shadow: 0 12px 32px rgba(22, 22, 26, 0.28);
	transition: background-position 0.6s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.3s var(--ease);
}

#ttbd .tt-btn-submit .tt-ico { transition: transform 0.35s var(--ease); }

#ttbd .tt-btn-submit:hover:not([disabled]) {
	background-position: 100% 0;
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(221, 95, 18, 0.34);
}

#ttbd .tt-btn-submit:hover:not([disabled]) .tt-ico { transform: translateX(5px); }
#ttbd .tt-btn-submit[disabled] { opacity: 0.6; cursor: progress; }

#ttbd .tt-form-message {
	display: none;
	border-radius: 12px;
	padding: 1.05rem 1.3rem;
	font-size: 0.92rem !important;
	margin-bottom: 1.35rem;
	line-height: 1.65 !important;
}

#ttbd .tt-form-message.is-success {
	display: block;
	background: #edf7f0 !important;
	border: 1px solid #b4ddc4 !important;
	color: #226b40 !important;
}

#ttbd .tt-form-message.is-error {
	display: block;
	background: #fdecec !important;
	border: 1px solid #f2c0c0 !important;
	color: #a32626 !important;
}

/* =========================================================
   FOOTER BAND
   ========================================================= */
#ttbd .tt-footer {
	position: relative;
	overflow: hidden;
	background: var(--ink-black) !important;
	padding: 3.6rem 5% 2.2rem;
}

#ttbd .tt-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--grad-brand);
	background-size: 220% 100%;
	animation: ttShift 8s linear infinite;
}

#ttbd .tt-footer-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; }

#ttbd .tt-footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 2.5rem;
	padding-bottom: 2.2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#ttbd .tt-footer-brand { max-width: 320px; }

#ttbd .tt-footer-brand img {
	width: 168px;
	height: auto;
	border-radius: 12px;
	background: var(--white);
	padding: 8px 10px;
	margin-bottom: 1rem;
}

#ttbd .tt-footer-brand p {
	font-size: 0.86rem !important;
	color: var(--on-dark-dim) !important;
	line-height: 1.7 !important;
	margin: 0 !important;
}

#ttbd .tt-footer-nav { display: flex !important; gap: 1.6rem; flex-wrap: wrap; }

#ttbd .tt-footer-nav a {
	position: relative;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	color: var(--on-dark-mid) !important;
	transition: color 0.25s var(--ease);
}

#ttbd .tt-footer-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -5px;
	height: 2px;
	border-radius: 2px;
	background: var(--grad-btn);
	transition: right 0.35s var(--ease);
}

#ttbd .tt-footer-nav a:hover { color: var(--white) !important; }
#ttbd .tt-footer-nav a:hover::after { right: 0; }

#ttbd .tt-footer-contact { display: flex !important; flex-direction: column; gap: 0.55rem; }

#ttbd .tt-footer-contact a {
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	color: var(--orange-soft) !important;
	transition: color 0.25s var(--ease);
}

#ttbd .tt-footer-contact span {
	font-size: 0.9rem !important;
	color: var(--on-dark-dim) !important;
}

#ttbd .tt-footer-contact a:hover { color: var(--white) !important; }

#ttbd .tt-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.6rem;
}

#ttbd .tt-footer-bottom span,
#ttbd .tt-footer-bottom .tt-top {
	font-size: 0.8rem !important;
	color: var(--on-dark-dim) !important;
	transition: color 0.25s var(--ease);
}

#ttbd .tt-footer-bottom .tt-top:hover { color: var(--orange-soft) !important; }

/* =========================================================
   ANIMATION
   ========================================================= */
@keyframes ttFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes ttPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(253, 141, 74, 0.6); }
	60%      { box-shadow: 0 0 0 9px rgba(253, 141, 74, 0); }
}

@keyframes ttBob {
	0%, 100% { transform: translate(-50%, 0); }
	50%      { transform: translate(-50%, 8px); }
}

@keyframes ttShift {
	0%   { background-position: 0% 50%; }
	100% { background-position: 220% 50%; }
}

@keyframes ttDrift1 {
	from { transform: translate(0, 0) scale(1); }
	to   { transform: translate(90px, 60px) scale(1.15); }
}

@keyframes ttDrift2 {
	from { transform: translate(0, 0) scale(1.1); }
	to   { transform: translate(-80px, 70px) scale(0.95); }
}

@keyframes ttDrift3 {
	from { transform: translate(0, 0) scale(0.95); }
	to   { transform: translate(-70px, -60px) scale(1.2); }
}

#ttbd .tt-reveal {
	opacity: 0;
	transform: translateY(38px) scale(0.982);
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
	will-change: opacity, transform;
}

#ttbd .tt-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* A card can be both a reveal target and a tilt target. Once it has finished
   revealing, hand the transform back to the tilt vars — otherwise the reveal's
   own `transform` would win on specificity and freeze the card flat. */
#ttbd .tt-reveal.visible[data-tt-tilt] {
	transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
}

#ttbd .tt-stagger > .tt-reveal:nth-child(1) { transition-delay: 0.00s; }
#ttbd .tt-stagger > .tt-reveal:nth-child(2) { transition-delay: 0.09s; }
#ttbd .tt-stagger > .tt-reveal:nth-child(3) { transition-delay: 0.18s; }
#ttbd .tt-stagger > .tt-reveal:nth-child(4) { transition-delay: 0.27s; }
#ttbd .tt-stagger > .tt-reveal:nth-child(5) { transition-delay: 0.36s; }
#ttbd .tt-stagger > .tt-reveal:nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
	#ttbd .tt-reveal,
	#ttbd .tt-hero-visual {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		animation: none !important;
	}
	#ttbd .tt-blob,
	#ttbd .tt-eyebrow .dot,
	#ttbd .tt-scroll-cue,
	#ttbd .tt-ticker-track,
	#ttbd .tt-footer::before,
	#ttbd .tt-form-shell::before { animation: none !important; }
	#ttbd .tt-slide { transition: none !important; }
	#ttbd .tt-product-hover { opacity: 1; transform: translate(-50%, 0); }
	#ttbd .tt-hero-dots button.is-active span::after {
		animation: none !important;
		transform: scaleX(1) !important;
	}
	#ttbd [data-tt-tilt],
	#ttbd .tt-reveal.visible[data-tt-tilt] { transform: none !important; }
}

/* keep the ticker readable when motion is reduced */
@media (prefers-reduced-motion: reduce) {
	#ttbd .tt-ticker-track { width: 100%; justify-content: center; }
	#ttbd .tt-ticker-set:nth-child(2) { display: none; }
	#ttbd .tt-ticker-set { flex-wrap: wrap; justify-content: center; white-space: normal; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
	#ttbd .tt-hero-inner { gap: 3rem; }
	#ttbd .tt-story-grid { gap: 3rem; }
	#ttbd .tt-enquiry-wrap { gap: 3rem; }
	#ttbd .tt-cta-inner { padding: 3rem 2.4rem; }
	#ttbd .tt-collection-grid { gap: 1.2rem; }
	#ttbd .tt-product-grid { gap: 1.35rem; }
	#ttbd .tt-promise-item { padding: 1.6rem 1.2rem; gap: 0.8rem; }
	#ttbd .tt-promise-icon { width: 42px; height: 42px; }
}

@media (max-width: 980px) {
	#ttbd .tt-promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	#ttbd .tt-promise-item:nth-child(2) { border-right: 0; }
	#ttbd .tt-promise-item:nth-child(1),
	#ttbd .tt-promise-item:nth-child(2) { border-bottom: 1px solid var(--border); }
	#ttbd .tt-collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	#ttbd .tt-collection-card:last-child { grid-column: span 2; aspect-ratio: 16 / 7; }
	#ttbd .tt-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	#ttbd .tt-hero { padding: 64px 5% 130px; }
	#ttbd .tt-hero-inner { grid-template-columns: 1fr; }
	#ttbd .tt-hero-visual { order: 2; }
	#ttbd .tt-hero-frame { aspect-ratio: 16 / 11; }
	#ttbd .tt-hero-sub { max-width: none; }
	#ttbd .tt-hero-dots { margin-top: 2rem; }
	#ttbd .tt-hero-rings { display: none; }
	#ttbd .tt-scroll-cue { display: none !important; }
	#ttbd .tt-section { padding: 76px 5%; }
	#ttbd .tt-collections { padding-top: 30px; }
	#ttbd .tt-craft { padding: 84px 5%; }
	#ttbd .tt-enquiry { padding-top: 120px; }
	#ttbd .tt-enquiry-wrap { grid-template-columns: 1fr; gap: 2.75rem; }
	#ttbd .tt-story-grid { grid-template-columns: 1fr; gap: 3rem; }
	#ttbd .tt-story-copy p { max-width: none; }
	#ttbd .tt-story-frame { aspect-ratio: 16 / 12; }
	#ttbd .tt-story-badge { left: 16px; bottom: -22px; }
	#ttbd .tt-form-row { grid-template-columns: 1fr; }
	#ttbd .tt-cta-inner { flex-direction: column; align-items: flex-start; margin: 70px auto -55px; }
	#ttbd .tt-cta-actions { width: 100%; }
	#ttbd .tt-footer-top { flex-direction: column; }
	#ttbd .tt-wave svg { height: 70px; }
}

@media (max-width: 640px) {
	#ttbd .tt-section { padding: 62px 5%; }
	#ttbd .tt-promise .tt-section-inner { transform: translateY(-32px); }
	#ttbd .tt-promise-grid { grid-template-columns: 1fr; }
	#ttbd .tt-promise-item { border-right: 0 !important; border-bottom: 1px solid var(--border) !important; }
	#ttbd .tt-promise-item:last-child { border-bottom: 0 !important; }
	#ttbd .tt-collection-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	#ttbd .tt-collection-card,
	#ttbd .tt-collection-card:last-child { aspect-ratio: 4 / 3.2; grid-column: auto; }
	#ttbd .tt-product-grid { grid-template-columns: 1fr; gap: 1.35rem; }
	#ttbd .tt-craft-grid { grid-template-columns: 1fr 1fr; }
	#ttbd .tt-check-list { grid-template-columns: 1fr; }
	#ttbd .tt-hero-stats { grid-template-columns: 1fr 1fr; }
	#ttbd .tt-hero-stats .tt-stat:first-child { grid-column: span 2; }
	#ttbd .tt-stat .num { font-size: 1.8rem !important; }
	#ttbd .tt-form-shell { padding: 1.6rem; }
	#ttbd .tt-cta-inner { padding: 2.4rem 1.6rem; border-radius: 22px; }
	#ttbd .tt-story-badge { position: static; margin-top: 1.25rem; max-width: none; }
	#ttbd .tt-head-row { margin-bottom: 2.4rem; }
}

@media (max-width: 420px) {
	#ttbd .tt-craft-grid { grid-template-columns: 1fr; }
	#ttbd .tt-actions { flex-direction: column; align-items: stretch; }
	#ttbd .tt-btn-primary,
	#ttbd .tt-btn-ghost,
	#ttbd .tt-btn-dark { justify-content: center; width: 100%; }
	#ttbd .tt-hero-stats { grid-template-columns: 1fr; }
	#ttbd .tt-hero-stats .tt-stat:first-child { grid-column: auto; }
	#ttbd .tt-btn-submit { align-self: stretch; justify-content: center; }
}
