/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: #1f2430;
	background: #faf8f4;
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 600; }
p { margin: 0 0 1em; }

:root {
	--tp-navy: #10233f;
	--tp-navy-dark: #0a1729;
	--tp-gold: #b6893f;
	--tp-gold-light: #d8b46a;
	--tp-cream: #faf8f4;
	--tp-ink: #1f2430;
	--tp-muted: #5c6472;
	--tp-border: #e4ded2;
	--tp-radius: 6px;
}

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

/* ---------- Buttons ---------- */
.tp-btn {
	display: inline-block;
	padding: 13px 28px;
	border-radius: var(--tp-radius);
	font-weight: 600;
	font-size: 15px;
	transition: background .2s, color .2s, border-color .2s;
	border: 1px solid transparent;
}
.tp-btn--primary { background: var(--tp-gold); color: #fff; }
.tp-btn--primary:hover { background: var(--tp-navy); }
.tp-btn--outline { border-color: var(--tp-navy); color: var(--tp-navy); }
.tp-btn--outline:hover { background: var(--tp-navy); color: #fff; }
.tp-btn--light { background: #fff; color: var(--tp-navy); }
.tp-btn--light:hover { background: var(--tp-gold-light); }

/* ---------- Top bar ---------- */
.tp-topbar { background: var(--tp-navy-dark); color: #cfd6e2; font-size: 13px; }
.tp-topbar__row { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.tp-topbar a { color: #cfd6e2; }
.tp-topbar a:hover { color: var(--tp-gold-light); }
.tp-topbar__sep { margin: 0 8px; opacity: .4; }

/* ---------- Header ---------- */
.tp-header { background: #fff; border-bottom: 1px solid var(--tp-border); position: sticky; top: 0; z-index: 50; }
.tp-header__row { display: flex; align-items: center; gap: 32px; height: 76px; }
.tp-logo-text { font-size: 22px; font-weight: 700; color: var(--tp-navy); letter-spacing: .02em; }
.tp-header__cta { margin-left: auto; }
.tp-nav { flex: 1; }
.tp-nav__list { display: flex; gap: 28px; align-items: center; }
.tp-nav__list > li { position: relative; font-weight: 600; font-size: 15px; }
.tp-nav__list > li > a { padding: 8px 0; display: inline-block; }
.tp-nav__list > li:hover > a { color: var(--tp-gold); }
.tp-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%; left: 0;
	background: #fff;
	border: 1px solid var(--tp-border);
	border-radius: var(--tp-radius);
	box-shadow: 0 12px 24px rgba(16,35,63,.08);
	min-width: 220px;
	padding: 8px 0;
}
.tp-nav__list li:hover > .sub-menu { display: block; }
.tp-nav__list .sub-menu li a { display: block; padding: 10px 18px; font-weight: 500; }
.tp-nav__list .sub-menu li a:hover { background: var(--tp-cream); color: var(--tp-gold); }
.tp-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.tp-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--tp-navy); margin: 5px 0; }

/* ---------- Hero ---------- */
.tp-hero {
	position: relative; min-height: 560px; display: flex; align-items: center;
	overflow: hidden; padding: 64px 0;
	background:
		radial-gradient(circle at 28% 35%, rgba(120,120,120,.28) 0%, transparent 42%),
		radial-gradient(circle at 74% 62%, rgba(70,70,70,.4) 0%, transparent 48%),
		repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 2px, transparent 2px 11px),
		linear-gradient(160deg, #050505 0%, #161616 55%, #090909 100%);
}
.tp-hero__row {
	position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr;
	gap: 48px; align-items: center;
}
.tp-hero__row > *, .tp-why__row > *, .tp-case-study__row > *, .tp-product-detail > *, .tp-contact-grid > * { min-width: 0; }
.tp-content img, .tp-content iframe, .tp-content video { max-width: 100%; height: auto; }
.tp-hero__copy h1 { font-size: 42px; font-weight: 500; color: #fff; line-height: 1.15; }
.tp-hero__copy p { font-size: 17px; color: #d7deea; max-width: 48ch; }
.tp-hero__eyebrow { display: block; color: var(--tp-gold-light); letter-spacing: .12em; text-transform: uppercase; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.tp-hero__actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.tp-hero__actions .tp-btn--outline { border-color: #fff; color: #fff; }
.tp-hero__actions .tp-btn--outline:hover { background: #fff; color: var(--tp-navy); }
.tp-hero__media {
	background: var(--tp-cream); border-radius: 12px; padding: 20px;
	box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.tp-hero__media img { width: 100%; height: auto; border-radius: 6px; display: block; }
.tp-hero__missing-note { position: relative; z-index: 1; margin-top: 20px; font-size: 12px; color: #9fb0c9; }

/* ---------- Placeholder imagery ---------- */
.tp-placeholder-img {
	background: repeating-linear-gradient(135deg, #eee7d8, #eee7d8 10px, #e5ddc9 10px, #e5ddc9 20px);
	border: 1px dashed var(--tp-border);
	border-radius: var(--tp-radius);
	color: #8a7e63;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; font-size: 13px; font-weight: 600;
	min-height: 220px; padding: 16px;
}
.tp-placeholder-img span { font-weight: 400; font-size: 12px; margin-top: 6px; opacity: .8; }
.tp-placeholder-img--hero { min-height: 360px; }
.tp-placeholder-img--category { min-height: 160px; margin-bottom: 12px; }
.tp-placeholder-img--product { min-height: 420px; }
.tp-placeholder-img img { border-radius: var(--tp-radius); }

/* ---------- Trust bar ---------- */
.tp-trustbar { background: var(--tp-navy); color: #fff; padding: 28px 0; }
.tp-trustbar__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.tp-trust-item { text-align: center; flex: 1; min-width: 140px; }
.tp-trust-item strong { display: block; font-size: 20px; color: var(--tp-gold-light); }
.tp-trust-item span { font-size: 13px; color: #b7c0d1; }

/* ---------- Sections ---------- */
.tp-section { padding: 72px 0; }
.tp-section__title { font-size: 30px; color: var(--tp-navy); text-align: center; }
.tp-section__lede { text-align: center; color: var(--tp-muted); max-width: 60ch; margin: 0 auto 40px; }
.tp-eyebrow { display: inline-block; color: var(--tp-gold); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }

/* ---------- Category grid ---------- */
.tp-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tp-category-card { background: #fff; border: 1px solid var(--tp-border); border-radius: var(--tp-radius); padding: 20px; transition: box-shadow .2s, transform .2s; }
.tp-category-card:hover { box-shadow: 0 16px 30px rgba(16,35,63,.1); transform: translateY(-3px); }
.tp-category-card h3 { color: var(--tp-navy); font-size: 18px; }
.tp-category-card p { color: var(--tp-muted); font-size: 14px; margin-bottom: 0; }

/* ---------- Why / checklist ---------- */
.tp-why { background: #fff; }
.tp-why__row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.tp-checklist li { position: relative; padding-left: 28px; margin-bottom: 16px; color: var(--tp-ink); }
.tp-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--tp-gold); font-weight: 700; }
.tp-link-arrow { color: var(--tp-navy); font-weight: 700; display: inline-block; margin-top: 8px; }
.tp-link-arrow:hover { color: var(--tp-gold); }

/* ---------- Process ---------- */
.tp-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.tp-process-step { text-align: center; }
.tp-process-step__num { display: block; font-size: 28px; font-weight: 700; color: var(--tp-gold-light); margin-bottom: 8px; }
.tp-process-step h3 { font-size: 16px; color: var(--tp-navy); }
.tp-process-step p { font-size: 13px; color: var(--tp-muted); }

/* ---------- Case study ---------- */
.tp-case-study { background: var(--tp-cream); }
.tp-case-study__row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.tp-note { font-size: 12px; color: #b04a3c; font-style: italic; }

/* ---------- Blog ---------- */
.tp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tp-blog-card { background: #fff; border: 1px solid var(--tp-border); border-radius: var(--tp-radius); padding: 16px; display: block; }
.tp-blog-card:hover { box-shadow: 0 16px 30px rgba(16,35,63,.08); }
.tp-blog-card__date { font-size: 12px; color: var(--tp-muted); }
.tp-blog-card h3 { font-size: 17px; margin-top: 6px; color: var(--tp-navy); }

/* ---------- Footer CTA ---------- */
.tp-footer-cta { background: var(--tp-navy); color: #fff; text-align: center; padding: 56px 0; }
.tp-footer-cta h2 { font-size: 26px; }
.tp-footer-cta p { color: #b7c0d1; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.tp-footer { background: var(--tp-navy-dark); color: #b7c0d1; padding: 56px 0 0; }
.tp-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.tp-footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.tp-footer__col ul li { margin-bottom: 10px; }
.tp-footer__col a:hover { color: var(--tp-gold-light); }
.tp-logo-text--footer { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.tp-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13px; }

/* ---------- WhatsApp float ---------- */
.tp-whatsapp-float {
	position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
	background: #25d366; color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,.2); z-index: 60;
}

/* ---------- Page / breadcrumb ---------- */
.tp-page { padding: 40px 24px 80px; }
.tp-page__title { font-size: 32px; color: var(--tp-navy); }
.tp-breadcrumb ol { display: flex; gap: 6px; flex-wrap: wrap; font-size: 13px; color: var(--tp-muted); margin-bottom: 18px; }
.tp-breadcrumb li { display: flex; align-items: center; gap: 6px; }
.tp-breadcrumb li:not(:last-child)::after { content: "/"; opacity: .5; }
.tp-breadcrumb a:hover { color: var(--tp-gold); }
.tp-content { max-width: 76ch; }

/* ---------- Product grid / card ---------- */
.tp-category-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.tp-tab { padding: 8px 16px; border: 1px solid var(--tp-border); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--tp-navy); }
.tp-tab--active, .tp-tab:hover { background: var(--tp-navy); color: #fff; border-color: var(--tp-navy); }
.tp-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.tp-product-card { background: #fff; border: 1px solid var(--tp-border); border-radius: var(--tp-radius); overflow: hidden; display: block; }
.tp-product-card:hover { box-shadow: 0 16px 30px rgba(16,35,63,.08); }
.tp-product-card__image { aspect-ratio: 1 / 1; overflow: hidden; background: #f1ece0; }
.tp-product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.tp-product-card__body { padding: 14px 16px; }
.tp-product-card h3 { font-size: 15px; color: var(--tp-navy); margin-bottom: 6px; }
.tp-tag { display: inline-block; background: var(--tp-cream); border: 1px solid var(--tp-border); border-radius: 999px; font-size: 11px; padding: 3px 10px; color: var(--tp-muted); margin-bottom: 6px; }
.tp-product-card__material { font-size: 13px; color: var(--tp-muted); margin: 0; }
.tp-pagination { display: flex; gap: 12px; justify-content: center; }
.tp-pagination .page-numbers { padding: 8px 14px; border: 1px solid var(--tp-border); border-radius: var(--tp-radius); }
.tp-pagination .current { background: var(--tp-navy); color: #fff; }

/* ---------- Product gallery ---------- */
.tp-gallery { display: flex; flex-direction: column; gap: 12px; }
.tp-gallery__viewer {
	position: relative; width: 100%; aspect-ratio: 4 / 3;
	background-color: #f1ece0; background-size: cover; background-position: center; background-repeat: no-repeat;
	border: 1px solid var(--tp-border); border-radius: var(--tp-radius); overflow: hidden; cursor: zoom-in;
}
.tp-gallery__viewer.is-zoomed { background-size: 200%; }
.tp-gallery__viewer iframe, .tp-gallery__viewer video { width: 100%; height: 100%; display: block; border: 0; }
.tp-gallery__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.tp-gallery__thumb { width: 68px; height: 68px; padding: 0; border: 2px solid transparent; border-radius: 4px; overflow: hidden; cursor: pointer; background: #eee; position: relative; }
.tp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-gallery__thumb.is-active { border-color: var(--tp-gold); }
.tp-gallery__thumb--video .tp-gallery__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(16,35,63,.55); color: #fff; font-size: 18px; }

/* ---------- Product detail ---------- */
.tp-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.tp-spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.tp-spec-table th, .tp-spec-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--tp-border); font-size: 14px; }
.tp-spec-table th { width: 160px; color: var(--tp-muted); font-weight: 600; }

.tp-trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 20px; }
.tp-trust-strip__item {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--tp-cream); border: 1px solid var(--tp-border); border-radius: 999px;
	padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--tp-navy);
}
.tp-trust-strip__item::before { content: "✓"; color: var(--tp-gold); font-weight: 700; }

.tp-customization-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 0; }
.tp-customization-tags .tp-tag { margin-bottom: 0; }

.tp-quote-box {
	background: var(--tp-cream); border: 1px solid var(--tp-border); border-radius: var(--tp-radius);
	padding: 22px 24px; margin: 24px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.tp-quote-box__copy strong { display: block; color: var(--tp-navy); font-size: 15px; margin-bottom: 4px; }
.tp-quote-box__copy span { font-size: 13px; color: var(--tp-muted); }
.tp-quote-box__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Mini FAQ (product page) ---------- */
.tp-mini-faq { margin: 48px 0; padding-top: 40px; border-top: 1px solid var(--tp-border); }
.tp-mini-faq h2 { font-size: 22px; color: var(--tp-navy); margin-bottom: 16px; }
.tp-mini-faq .tp-link-arrow { display: inline-block; margin-top: 4px; }

/* ---------- FAQ page ---------- */
.tp-faq-list { max-width: 820px; margin: 24px 0 48px; }
.tp-faq-item, .tp-mini-faq details {
	border: 1px solid var(--tp-border); border-radius: var(--tp-radius); margin-bottom: 10px; background: #fff;
}
.tp-faq-item summary, .tp-mini-faq summary {
	cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--tp-navy); list-style: none; position: relative;
}
.tp-faq-item summary::-webkit-details-marker, .tp-mini-faq summary::-webkit-details-marker { display: none; }
.tp-faq-item summary::after, .tp-mini-faq summary::after {
	content: "+"; position: absolute; right: 20px; top: 14px; font-size: 20px; color: var(--tp-gold); font-weight: 700;
}
.tp-faq-item[open] summary::after, .tp-mini-faq details[open] summary::after { content: "–"; }
.tp-faq-item__answer, .tp-mini-faq .tp-faq-item__answer { padding: 0 20px 18px; color: var(--tp-muted); font-size: 15px; }
.tp-faq-item__answer p:last-child, .tp-mini-faq .tp-faq-item__answer p:last-child { margin-bottom: 0; }
.tp-faq-item__answer a { color: var(--tp-gold); font-weight: 600; }
.tp-faq-cta {
	background: var(--tp-navy); color: #fff; border-radius: var(--tp-radius);
	padding: 40px; text-align: center; margin-bottom: 24px;
}
.tp-faq-cta h2 { color: #fff; margin-bottom: 8px; }
.tp-faq-cta p { color: #b7c0d1; margin-bottom: 20px; }

/* ---------- Contact ---------- */
.tp-contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; margin-top: 24px; }
.tp-form p { margin-bottom: 16px; }
.tp-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.tp-form input, .tp-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--tp-border); border-radius: var(--tp-radius); font-family: inherit; font-size: 15px; }
.tp-contact-info { background: var(--tp-cream); border-radius: var(--tp-radius); padding: 24px; height: fit-content; }
.tp-contact-info h3 { color: var(--tp-navy); }
.tp-alert { padding: 14px 18px; border-radius: var(--tp-radius); margin-bottom: 20px; font-size: 14px; }
.tp-alert--success { background: #e5f6ea; color: #1c6b34; }
.tp-alert--error { background: #fbe8e6; color: #a3352b; }

/* ---------- Sidebar layout ---------- */
.tp-page--with-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 48px; }
.widget { margin-bottom: 28px; }
.widget-title { font-size: 16px; color: var(--tp-navy); margin-bottom: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.tp-hero__row, .tp-why__row, .tp-case-study__row, .tp-product-detail, .tp-contact-grid, .tp-page--with-sidebar { grid-template-columns: 1fr; }
	.tp-category-grid, .tp-product-grid { grid-template-columns: repeat(2, 1fr); }
	.tp-process-grid { grid-template-columns: repeat(2, 1fr); }
	.tp-blog-grid { grid-template-columns: 1fr; }
	.tp-nav, .tp-header__cta { display: none; }
	.tp-nav.is-open { display: block; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--tp-border); padding: 16px 24px; }
	.tp-nav.is-open .tp-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
	.tp-nav.is-open .sub-menu { position: static; box-shadow: none; border: none; padding-left: 12px; display: block; }
	.tp-nav-toggle { display: block; }
}
@media (max-width: 640px) {
	.tp-category-grid, .tp-product-grid { grid-template-columns: 1fr; }
	.tp-process-grid { grid-template-columns: 1fr; }
	.tp-hero__copy h1 { font-size: 30px; }
	.tp-topbar__meta { display: none; }
}
