/* ==========================================================================
   Talkguest — main.css
   Midnight indigo + warm amber. Rubik headings, Spectral body.
   Sidebar-left editorial layout. Prefix: tg-
   ========================================================================== */

:root {
	--c-brand:      #242848;   /* midnight indigo */
	--c-brand-2:    #e6b34a;   /* warm amber */
	--c-brand-3:    #cf9932;   /* deeper amber for hover */
	--c-bg:         #f4f4f8;
	--c-panel:      #ffffff;
	--c-ink:        #10101a;
	--c-muted:      #4e5064;
	--c-line:       #d8dae2;
	--c-line-soft:  #e6e7ee;
	--c-tint:       #eef0f7;

	--f-heading: 'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--f-body:    'Spectral', Georgia, 'Times New Roman', serif;

	--side-w: 240px;
	--top-h:  56px;
	--wrap:   900px;
	--r-lg:   14px;
	--r-md:   10px;
	--r-sm:   6px;

	--sh-1: 0 1px 2px rgba(16,16,26,.06);
	--sh-2: 0 6px 24px rgba(36,40,72,.08);
	--sh-3: 0 18px 48px rgba(36,40,72,.14);
}

/* Reset-lite */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--c-bg);
	color: var(--c-ink);
	font-family: var(--f-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
a { color: var(--c-brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-brand-3); }
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 32px 0; }

/* Typography */
h1, h2, h3, h4, h5 {
	font-family: var(--f-heading);
	font-weight: 700;
	color: var(--c-ink);
	line-height: 1.15;
	margin: 0 0 .5em;
	letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em, h4 em {
	font-family: var(--f-body);
	font-style: italic;
	color: var(--c-brand);
	font-weight: 500;
}
.tg-eyebrow {
	display: inline-block;
	font-family: var(--f-heading);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-brand);
	margin-bottom: 14px;
	position: relative;
	padding-left: 22px;
}
.tg-eyebrow::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 14px; height: 2px;
	background: var(--c-brand-2);
	transform: translateY(-50%);
}

/* ==========================================================================
   Layout skeleton — sidebar-left
   ========================================================================== */
.tg-topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--c-panel);
	border-bottom: 1px solid var(--c-line);
	height: var(--top-h);
}
.tg-topbar-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
}
.tg-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--c-ink);
	font-family: var(--f-heading);
	font-weight: 700;
}
.tg-brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px; height: 30px;
	border-radius: 8px;
	background: var(--c-brand);
	color: #fff;
	font-family: var(--f-heading);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.06em;
}
.tg-brand-name {
	font-size: 17px;
	letter-spacing: -0.005em;
}
.tg-brand-tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--c-tint);
	color: var(--c-brand);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.tg-topbar-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}
.tg-cart-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: var(--c-ink);
	color: #fff;
	border-radius: 999px;
	font-family: var(--f-heading);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: background .15s ease;
}
.tg-cart-btn:hover { color: #fff; background: var(--c-brand); }
.tg-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: var(--c-brand-2);
	color: var(--c-ink);
	border-radius: 999px;
	font-weight: 700;
	font-size: 11px;
}

.tg-burger {
	display: none;
	width: 36px; height: 36px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	position: relative;
}
.tg-burger span {
	position: absolute; left: 8px; right: 8px; height: 2px;
	background: var(--c-ink);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.tg-burger span:nth-child(1) { top: 11px; }
.tg-burger span:nth-child(2) { top: 17px; }
.tg-burger span:nth-child(3) { top: 23px; }
.tg-burger[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.tg-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tg-burger[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.tg-shell {
	display: grid;
	grid-template-columns: var(--side-w) 1fr;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
	gap: 40px;
	align-items: start;
}
.tg-side {
	position: sticky;
	top: calc(var(--top-h) + 24px);
	align-self: start;
	padding: 24px 0;
}
.tg-side-inner {
	background: transparent;
	padding: 0;
}
.tg-side-head {
	padding: 0 0 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--c-line);
}
.tg-side-eyebrow {
	display: block;
	font-family: var(--f-heading);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-brand-3);
	margin-bottom: 8px;
}
.tg-side-note {
	display: block;
	font-family: var(--f-body);
	font-style: italic;
	font-size: 13px;
	line-height: 1.5;
	color: var(--c-muted);
}
.tg-nav-wrap { }
.tg-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.tg-nav li { margin: 0; }
.tg-nav a {
	display: flex;
	align-items: center;
	padding: 10px 14px 10px 18px;
	font-family: var(--f-heading);
	font-size: 14px;
	font-weight: 500;
	color: var(--c-ink);
	border-left: 3px solid transparent;
	border-radius: 0 8px 8px 0;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tg-nav a:hover {
	background: var(--c-panel);
	color: var(--c-brand);
	border-left-color: var(--c-line);
}
.tg-nav .current-menu-item > a,
.tg-nav a.tg-active,
.tg-nav a[aria-current="page"] {
	background: var(--c-panel);
	color: var(--c-brand);
	border-left-color: var(--c-brand-2);
	font-weight: 700;
}
.tg-side-foot {
	margin-top: 28px;
	padding: 18px 14px;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	background: var(--c-panel);
	font-size: 12px;
	line-height: 1.5;
	color: var(--c-muted);
}
.tg-side-foot .tg-side-lbl {
	display: block;
	font-family: var(--f-heading);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-brand);
	margin-bottom: 4px;
}
.tg-side-foot strong {
	display: block;
	color: var(--c-ink);
	font-family: var(--f-heading);
	font-weight: 500;
	font-size: 13px;
	margin: 0 0 4px;
}
.tg-side-loc {
	font-family: var(--f-body);
	font-style: italic;
}

.tg-main {
	max-width: var(--wrap);
	padding: 32px 0 80px;
	width: 100%;
	min-width: 0;
}

/* Reading widths for prose pages inherit from .tg-main. */

/* ==========================================================================
   Buttons
   ========================================================================== */
.tg-btn-primary,
.tg-btn-ghost,
.tg-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-family: var(--f-heading);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.02em;
	line-height: 1;
	transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
}
.tg-btn-primary {
	background: var(--c-brand);
	color: #fff;
}
.tg-btn-primary:hover {
	background: var(--c-ink);
	color: #fff;
	transform: translateY(-1px);
}
.tg-btn-ghost {
	background: transparent;
	color: var(--c-brand);
	border-color: var(--c-line);
}
.tg-btn-ghost:hover {
	background: var(--c-tint);
	color: var(--c-brand);
	border-color: var(--c-brand);
}
.tg-btn-outline {
	background: transparent;
	color: var(--c-brand-2);
	border: 1.5px solid var(--c-brand-2);
}
.tg-btn-outline:hover {
	background: var(--c-brand-2);
	color: var(--c-ink);
}
.tg-btn--sm {
	padding: 8px 14px;
	font-size: 12px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.tg-hero {
	margin: 0 0 64px;
	padding: 8px 0 0;
}
.tg-hero-inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 48px;
	align-items: center;
}
.tg-hero-copy { min-width: 0; }
.tg-hero-title {
	font-family: var(--f-heading);
	font-size: clamp(34px, 4.6vw, 54px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
	color: var(--c-ink);
}
.tg-hero-title em {
	font-family: var(--f-body);
	font-style: italic;
	color: var(--c-brand-3);
	font-weight: 500;
}
.tg-hero-sub {
	font-family: var(--f-body);
	font-size: 18px;
	line-height: 1.55;
	color: var(--c-muted);
	max-width: 520px;
	margin: 0 0 24px;
}
.tg-hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.tg-hero-facts {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid var(--c-line);
}
.tg-hero-facts li {
	font-family: var(--f-body);
	font-size: 13px;
	color: var(--c-muted);
	line-height: 1.4;
}
.tg-hero-facts strong {
	display: block;
	font-family: var(--f-heading);
	font-weight: 700;
	font-size: 22px;
	color: var(--c-ink);
	letter-spacing: -0.01em;
	margin-bottom: 2px;
}
.tg-hero-mockup {
	position: relative;
	padding: 8px;
	background: linear-gradient(135deg, var(--c-tint), var(--c-panel));
	border-radius: 20px;
	box-shadow: var(--sh-3);
}
.tg-hero-svg {
	border-radius: 12px;
	display: block;
	width: 100%;
	height: auto;
}
.tg-hero-caption {
	display: block;
	margin-top: 10px;
	font-family: var(--f-body);
	font-size: 12px;
	font-style: italic;
	color: var(--c-muted);
	text-align: center;
}

/* ==========================================================================
   Quote strip
   ========================================================================== */
.tg-quote-strip {
	margin: 0 -24px 64px;
	padding: 48px 24px;
	background: var(--c-brand);
	color: #fff;
	border-radius: 0;
	position: relative;
}
.tg-quote-strip::before {
	content: "\201C";
	position: absolute;
	top: -8px;
	left: 32px;
	font-family: var(--f-body);
	font-size: 140px;
	font-style: italic;
	line-height: 1;
	color: var(--c-brand-2);
	opacity: .85;
}
.tg-quote-strip blockquote {
	margin: 0;
	padding: 0;
	max-width: 780px;
}
.tg-quote {
	font-family: var(--f-body);
	font-style: italic;
	font-size: 22px;
	line-height: 1.4;
	color: #fff;
	margin: 0 0 16px;
	position: relative;
	z-index: 1;
}
.tg-quote-meta {
	font-family: var(--f-heading);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--c-brand-2);
	text-transform: uppercase;
}
.tg-quote-meta strong {
	color: #fff;
	font-weight: 700;
}

/* ==========================================================================
   Section heads
   ========================================================================== */
.tg-sec-head {
	max-width: 720px;
	margin: 0 0 32px;
}
.tg-sec-title {
	font-family: var(--f-heading);
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.1;
	margin: 0 0 12px;
}
.tg-sec-title em {
	font-family: var(--f-body);
	font-style: italic;
	color: var(--c-brand);
	font-weight: 500;
}
.tg-sec-lead {
	font-family: var(--f-body);
	font-size: 16px;
	color: var(--c-muted);
	line-height: 1.55;
	margin: 0;
}

/* ==========================================================================
   Module grid
   ========================================================================== */
.tg-modules {
	margin: 0 0 72px;
}
.tg-modules-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	grid-auto-rows: minmax(220px, auto);
	list-style: none;
	padding: 0;
	margin: 0;
}
.tg-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 20px 20px 18px;
	background: var(--c-panel);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	color: var(--c-ink);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	overflow: hidden;
	text-decoration: none;
}
.tg-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 3px;
	background: var(--c-brand-2);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.tg-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--sh-2);
	border-color: var(--c-brand);
	color: var(--c-ink);
}
.tg-card:hover::before { transform: scaleX(1); }
.tg-card--tall  { min-height: 300px; }
.tg-card--med   { min-height: 260px; }
.tg-card--short { min-height: 220px; }

.tg-card-link { color: inherit; display: block; }
.tg-card-icon {
	width: 56px; height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-tint);
	border-radius: 10px;
	color: var(--c-brand);
	margin-bottom: 16px;
}
.tg-card-icon img {
	width: 32px; height: 32px;
	display: block;
}
.tg-card-cat {
	font-family: var(--f-heading);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-brand-3);
	margin-bottom: 6px;
}
.tg-card-title {
	font-family: var(--f-heading);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--c-ink);
	margin: 0 0 8px;
}
.tg-card--tall .tg-card-title { font-size: 19px; }
.tg-card-desc {
	font-family: var(--f-body);
	font-size: 14px;
	line-height: 1.5;
	color: var(--c-muted);
	margin: 0 0 auto;
	padding-bottom: 16px;
}
.tg-card-foot {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid var(--c-line-soft);
	padding-top: 14px;
	margin-top: auto;
}
.tg-card-price {
	font-family: var(--f-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--c-ink);
	letter-spacing: -0.01em;
}
.tg-price-unit {
	font-family: var(--f-body);
	font-style: italic;
	font-weight: 400;
	font-size: 12px;
	color: var(--c-muted);
	margin-left: 2px;
}
.tg-card-cta {
	font-family: var(--f-heading);
	font-size: 12px;
	font-weight: 500;
	color: var(--c-brand);
	letter-spacing: 0.02em;
}
.tg-card-buy {
	margin-top: 12px;
}
.tg-card-buy .button,
.tg-card-buy .added_to_cart {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	background: var(--c-brand);
	color: #fff;
	border-radius: 999px;
	font-family: var(--f-heading);
	font-size: 12px;
	font-weight: 500;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s ease;
}
.tg-card-buy .button:hover,
.tg-card-buy .added_to_cart:hover { background: var(--c-ink); color: #fff; }

/* ==========================================================================
   Ruler / steps
   ========================================================================== */
.tg-ruler-sec {
	margin: 0 0 72px;
	padding: 40px 0;
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
}
.tg-ruler {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	counter-reset: none;
}
.tg-ruler-step {
	padding-top: 20px;
	border-top: 3px solid var(--c-brand);
	position: relative;
}
.tg-ruler-step::before {
	content: "";
	position: absolute;
	top: -6px; left: 0;
	width: 9px; height: 9px;
	background: var(--c-brand-2);
	border-radius: 50%;
}
.tg-ruler-num {
	font-family: var(--f-heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-brand-3);
	margin-bottom: 10px;
}
.tg-ruler-num em {
	font-family: var(--f-body);
	font-style: italic;
	color: var(--c-brand);
	font-weight: 500;
	font-size: 14px;
}
.tg-ruler-step h4 {
	font-family: var(--f-heading);
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 8px;
	color: var(--c-ink);
}
.tg-ruler-step p {
	font-family: var(--f-body);
	font-size: 14px;
	color: var(--c-muted);
	margin: 0;
	line-height: 1.5;
}

/* ==========================================================================
   FAQ (details/summary)
   ========================================================================== */
.tg-faq-sec {
	margin: 0 0 72px;
}
.tg-faq-blocks {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 780px;
}
.tg-faq-item {
	background: var(--c-panel);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	overflow: hidden;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.tg-faq-item[open] {
	border-color: var(--c-brand);
	box-shadow: var(--sh-1);
}
.tg-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--f-heading);
	font-size: 15px;
	font-weight: 500;
	color: var(--c-ink);
}
.tg-faq-item summary::-webkit-details-marker { display: none; }
.tg-faq-item summary::marker { content: ""; }
.tg-faq-q { flex: 1; }
.tg-faq-chev {
	width: 28px; height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-tint);
	color: var(--c-brand);
	border-radius: 999px;
	font-family: var(--f-heading);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	transition: transform .2s ease, background .2s ease;
}
.tg-faq-item[open] .tg-faq-chev {
	transform: rotate(45deg);
	background: var(--c-brand-2);
	color: var(--c-ink);
}
.tg-faq-a {
	padding: 0 22px 22px 22px;
	border-top: 1px solid var(--c-line-soft);
}
.tg-faq-a p {
	font-family: var(--f-body);
	font-size: 15px;
	line-height: 1.6;
	color: var(--c-muted);
	margin: 14px 0 0;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.tg-cta-band {
	margin: 0 0 40px;
	background: var(--c-ink);
	color: #fff;
	border-radius: var(--r-lg);
	padding: 40px 32px;
	position: relative;
	overflow: hidden;
}
.tg-cta-band::after {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, var(--c-brand-2) 0%, transparent 70%);
	opacity: .4;
	pointer-events: none;
}
.tg-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.tg-cta-title {
	font-family: var(--f-heading);
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}
.tg-cta-title em {
	font-family: var(--f-body);
	font-style: italic;
	color: var(--c-brand-2);
	font-weight: 500;
}
.tg-cta-sub {
	font-family: var(--f-body);
	font-size: 15px;
	color: #cfd0dc;
	max-width: 520px;
	margin: 0;
	line-height: 1.5;
}

/* ==========================================================================
   Page hero (secondary pages)
   ========================================================================== */
.tg-page-hero {
	margin: 8px 0 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--c-line);
}
.tg-page-title {
	font-family: var(--f-heading);
	font-size: clamp(28px, 3.6vw, 42px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0 0 12px;
}
.tg-page-title em {
	font-family: var(--f-body);
	font-style: italic;
	color: var(--c-brand);
	font-weight: 500;
}
.tg-lead {
	font-family: var(--f-body);
	font-size: 18px;
	color: var(--c-muted);
	max-width: 640px;
	margin: 0;
	line-height: 1.55;
}

/* Prose */
.tg-prose {
	font-family: var(--f-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--c-ink);
	max-width: 720px;
}
.tg-prose h2 {
	font-family: var(--f-heading);
	font-size: 26px;
	margin: 40px 0 12px;
	color: var(--c-ink);
}
.tg-prose h3 {
	font-family: var(--f-heading);
	font-size: 20px;
	margin: 32px 0 8px;
}
.tg-prose a { color: var(--c-brand); text-decoration: underline; text-underline-offset: 2px; }
.tg-prose ul, .tg-prose ol { padding-left: 1.4em; }
.tg-prose li { margin-bottom: 6px; }
.tg-prose blockquote {
	margin: 24px 0;
	padding: 18px 22px;
	border-left: 3px solid var(--c-brand-2);
	background: var(--c-tint);
	font-style: italic;
	color: var(--c-brand);
}

/* Blog list */
.tg-blog-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.tg-blog-item {
	padding: 24px;
	background: var(--c-panel);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.tg-blog-item:hover { border-color: var(--c-brand); box-shadow: var(--sh-1); }
.tg-blog-item h2 {
	font-family: var(--f-heading);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 6px;
}
.tg-blog-item h2 a { color: var(--c-ink); }
.tg-blog-item h2 a:hover { color: var(--c-brand); }
.tg-blog-meta {
	font-family: var(--f-heading);
	font-size: 11px;
	font-weight: 500;
	color: var(--c-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
.tg-blog-excerpt {
	font-family: var(--f-body);
	font-size: 15px;
	color: var(--c-muted);
	line-height: 1.55;
	margin-bottom: 12px;
}
.tg-blog-more {
	font-family: var(--f-heading);
	font-size: 13px;
	font-weight: 500;
	color: var(--c-brand);
}

/* ==========================================================================
   Woo shop wrapper
   ========================================================================== */
.tg-shop { }
.tg-shop .tg-wrap { max-width: 100%; padding: 0; }
.tg-single-media img { border-radius: var(--r-md); background: var(--c-tint); padding: 32px; }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
	background: var(--c-panel);
	border: 1px solid var(--c-line);
	border-left: 3px solid var(--c-brand-2);
	border-radius: var(--r-sm);
	padding: 14px 18px;
	margin-bottom: 20px;
	font-family: var(--f-body);
	color: var(--c-ink);
}

/* Single product basics */
.single-product div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}
.single-product div.product .summary {
	font-family: var(--f-body);
}
.single-product div.product .price {
	font-family: var(--f-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--c-ink);
	margin-bottom: 20px;
}
.single-product .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px !important;
	background: var(--c-brand) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-family: var(--f-heading);
	font-weight: 500 !important;
	font-size: 14px !important;
	border: 0 !important;
	letter-spacing: 0.02em;
}
.single-product .single_add_to_cart_button:hover { background: var(--c-ink) !important; }
.single-product .quantity input.qty {
	padding: 12px;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	width: 80px;
	text-align: center;
	font-family: var(--f-heading);
	margin-right: 8px;
}

/* Cart page skeleton */
.woocommerce-cart .cart_totals, .woocommerce-checkout form {
	background: var(--c-panel);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	padding: 24px;
}
.woocommerce table.shop_table {
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	overflow: hidden;
	border-collapse: separate;
	font-family: var(--f-body);
}
.woocommerce table.shop_table th {
	font-family: var(--f-heading);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-brand);
	background: var(--c-tint);
}
.tg-cart-thumb {
	background: var(--c-tint);
	border-radius: 8px;
	padding: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.tg-ftr {
	background: var(--c-ink);
	color: #d7d8e0;
	padding: 48px 0 24px;
	margin-top: 40px;
}
.tg-ftr-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
}
.tg-ftr-cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}
.tg-ftr-col--wide .tg-brand-mark { background: var(--c-brand-2); color: var(--c-ink); }
.tg-ftr-brand-h {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--f-heading);
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
}
.tg-ftr-tagline {
	font-family: var(--f-body);
	font-size: 14px;
	color: #b7b8c4;
	max-width: 460px;
	margin: 0 0 20px;
	line-height: 1.55;
}
.tg-ftr-addr {
	font-family: var(--f-body);
	font-style: normal;
	font-size: 13px;
	line-height: 1.6;
	color: #d7d8e0;
}
.tg-ftr-addr a { color: var(--c-brand-2); }
.tg-ftr-addr a:hover { color: #fff; }
.tg-ftr-addr strong { color: #fff; font-family: var(--f-heading); font-weight: 500; }
.tg-ftr-col h4 {
	font-family: var(--f-heading);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-brand-2);
	margin: 0 0 14px;
}
.tg-ftr-col ul, .tg-foot-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tg-ftr-col li, .tg-foot-nav li { margin-bottom: 8px; }
.tg-ftr-col a, .tg-foot-nav a {
	font-family: var(--f-body);
	font-size: 14px;
	color: #d7d8e0;
	transition: color .15s ease;
}
.tg-ftr-col a:hover, .tg-foot-nav a:hover { color: var(--c-brand-2); }
.tg-ftr-legal-note {
	margin-top: 16px;
	font-family: var(--f-body);
	font-size: 12px;
	color: #b7b8c4;
	line-height: 1.55;
}
.tg-ftr-legal-note strong { color: #fff; font-family: var(--f-heading); font-weight: 500; }
.tg-ftr-bar {
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.08);
	font-family: var(--f-body);
	font-size: 11.5px;
	color: #9a9baa;
	line-height: 1.55;
	text-align: left;
}
.tg-ftr-bar strong { color: #fff; font-family: var(--f-heading); font-weight: 500; }

/* Cookies */
.tg-cookies {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	max-width: 640px;
	margin: 0 auto;
	background: var(--c-panel);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	box-shadow: var(--sh-3);
	padding: 16px 20px;
	z-index: 200;
}
.tg-cookies-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.tg-cookies p {
	margin: 0;
	font-family: var(--f-body);
	font-size: 14px;
	color: var(--c-muted);
	line-height: 1.5;
}
.tg-cookies a { color: var(--c-brand); text-decoration: underline; }

/* ==========================================================================
   Mobile / responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.tg-shell { gap: 28px; }
	.tg-hero-inner { grid-template-columns: 1fr; gap: 32px; }
	.tg-modules-grid { grid-template-columns: repeat(2, 1fr); }
	.tg-ruler { grid-template-columns: repeat(2, 1fr); }
	.tg-ftr-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.tg-burger { display: inline-flex; align-items: center; justify-content: center; }
	.tg-shell {
		grid-template-columns: 1fr;
		padding: 0 20px;
		gap: 0;
	}
	.tg-side {
		position: fixed;
		top: var(--top-h);
		bottom: 0;
		left: 0;
		width: 280px;
		max-width: 84vw;
		z-index: 90;
		background: var(--c-panel);
		border-right: 1px solid var(--c-line);
		box-shadow: var(--sh-3);
		padding: 24px 18px;
		transform: translateX(-105%);
		transition: transform .25s ease;
		overflow-y: auto;
	}
	.tg-side.is-open { transform: translateX(0); }
	.tg-body.tg-nav-open::after {
		content: "";
		position: fixed;
		inset: var(--top-h) 0 0 0;
		background: rgba(16,16,26,.5);
		z-index: 80;
	}
	.tg-main { padding: 24px 0 60px; }
	.tg-hero-title { font-size: clamp(30px, 8vw, 40px); }
	.tg-quote-strip { margin-left: -20px; margin-right: -20px; padding: 40px 20px; }
	.tg-quote { font-size: 18px; }
	.tg-modules-grid { grid-template-columns: 1fr; }
	.tg-ruler { grid-template-columns: 1fr; gap: 24px; }
	.tg-ftr-cols { grid-template-columns: 1fr; gap: 24px; }
	.tg-cta-inner { flex-direction: column; align-items: flex-start; }
	.single-product div.product { grid-template-columns: 1fr; }
	.tg-brand-tag { display: none; }
	.tg-hero-facts { grid-template-columns: 1fr 1fr; }
	.tg-cart-label { display: none; }
}

@media (max-width: 480px) {
	.tg-topbar-inner { padding: 0 16px; gap: 12px; }
	.tg-brand-name { font-size: 15px; }
	.tg-hero-facts { grid-template-columns: 1fr; gap: 10px; }
	.tg-page-title { font-size: 30px; }
	.tg-sec-title { font-size: 26px; }
	.tg-cta-band { padding: 28px 22px; }
	.tg-cta-title { font-size: 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
