/* =========================================================================
   VARIABLES & THEME SETUP
   ========================================================================= */

:root {
	--tlh-background: #f7f1ea;
	--tlh-surface: #fffaf5;
	--tlh-ink: #27211d;
	--tlh-muted: #74675e;
	--tlh-primary: #7f4f3b;
	--tlh-secondary: #2f6f68;
	--tlh-accent: #c2955d;
	--tlh-soft: #ead9c8;
	
	/* Colors */
	--tlh-border: color-mix(in srgb, var(--tlh-ink) 12%, transparent);
	--tlh-border-hover: color-mix(in srgb, var(--tlh-ink) 30%, transparent);
	--tlh-overlay: rgba(31, 37, 36, 0.4);
	
	/* Layout */
	--tlh-width: 1240px;
	--tlh-radius: 6px;
	--tlh-radius-lg: 12px;
	--tlh-shadow-sm: 0 4px 12px rgba(31, 37, 36, 0.05);
	--tlh-shadow: 0 24px 70px rgba(31, 37, 36, 0.11);
	
	/* Animation */
	--tlh-transition: 300ms cubic-bezier(0.25, 1, 0.5, 1);
	--tlh-transition-fast: 150ms ease;
	
	/* Typography */
	--tlh-font-sans: Inter, "Noto Sans JP", system-ui, -apple-system, sans-serif;
	--tlh-font-display: "Playfair Display", Georgia, serif;
}

/* Base resets */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: color-mix(in srgb, var(--tlh-background) 72%, white);
	color: var(--tlh-ink);
	font-family: var(--tlh-font-sans);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color var(--tlh-transition-fast);
}

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

button, input, select, textarea {
	font: inherit;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Accessibility */
.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	z-index: 100;
	padding: 0.8rem 1.2rem;
	background: var(--tlh-ink);
	color: var(--tlh-surface);
	border-radius: var(--tlh-radius);
	font-weight: 600;
	text-decoration: none;
	box-shadow: var(--tlh-shadow);
}
.skip-link:focus {
	top: 1rem;
}
:focus-visible {
	outline: 2px solid var(--tlh-accent);
	outline-offset: 2px;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--tlh-font-display);
	line-height: 1.1;
	font-weight: 600;
	margin-top: 0;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 0.75rem; }

.eyebrow {
	margin: 0 0 0.75rem;
	color: var(--tlh-secondary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* =========================================================================
   LAYOUT UTILS
   ========================================================================= */

.site-header__inner,
.content-wrap,
.site-footer__inner,
.trust-bar,
.footer-bottom__inner {
	width: min(var(--tlh-width), calc(100% - 2rem));
	margin-inline: auto;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn,
.wp-block-button__link,
.button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.8rem;
	border-radius: var(--tlh-radius);
	background: var(--tlh-primary);
	color: var(--tlh-surface);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all var(--tlh-transition);
	line-height: 1;
}

.btn:hover,
.wp-block-button__link:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--tlh-ink);
	color: var(--tlh-surface);
	transform: translateY(-1px);
}

.btn--outline {
	background: transparent;
	color: var(--tlh-ink);
	border-color: var(--tlh-border-hover);
}
.btn--outline:hover {
	background: var(--tlh-soft);
	color: var(--tlh-ink);
	border-color: var(--tlh-border-hover);
}

.btn--ghost {
	background: transparent;
	color: var(--tlh-ink);
	padding-inline: 0.5rem;
}
.btn--ghost:hover {
	background: transparent;
	color: var(--tlh-primary);
}

/* =========================================================================
   HEADER
   ========================================================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: transparent;
	transition: background var(--tlh-transition), box-shadow var(--tlh-transition);
}

.site-header.is-scrolled {
	background: color-mix(in srgb, var(--tlh-surface) 95%, transparent);
	box-shadow: var(--tlh-shadow-sm);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 240px 1fr 240px;
	gap: 1.5rem;
	align-items: center;
	min-height: 80px;
}

/* Brand */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}
.brand img {
	max-height: 48px;
	width: auto;
}
.brand__monogram {
	color: var(--tlh-ink);
}
.brand__text {
	display: grid;
	gap: 0.1rem;
}
.brand__text strong {
	font-family: var(--tlh-font-display);
	font-size: 1.25rem;
	line-height: 1.1;
}
.brand__text small {
	color: var(--tlh-muted);
	font-size: 0.75rem;
	white-space: nowrap;
}

/* Nav */
.primary-nav {
	justify-self: center;
}
.primary-nav ul {
	display: flex;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 1rem;
	border-radius: var(--tlh-radius);
	color: var(--tlh-ink);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
}
.primary-nav a:hover,
.primary-nav li.current-menu-item > a {
	background: var(--tlh-soft);
	color: var(--tlh-ink);
}

/* Actions */
.header-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header-icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--tlh-radius);
	color: var(--tlh-ink);
	background: transparent;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--tlh-transition-fast);
}
.header-icon-btn:hover {
	background: var(--tlh-soft);
}

.cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	background: var(--tlh-primary);
	color: var(--tlh-surface);
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 9px;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.2s, transform 0.2s;
}
.cart-count--visible {
	opacity: 1;
	transform: scale(1);
}

/* Search Dropdown */
.header-search {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--tlh-surface);
	border-bottom: 1px solid var(--tlh-border);
	padding: 1.5rem 0;
	box-shadow: var(--tlh-shadow-sm);
}
.header-search[hidden] {
	display: none;
}
.header-search__inner {
	width: min(720px, calc(100% - 2rem));
	margin-inline: auto;
	display: flex;
	gap: 1rem;
	align-items: center;
}
.header-search form {
	flex: 1;
	display: flex;
}
.header-search input[type="search"] {
	flex: 1;
	padding: 0.85rem 1rem;
	border: 1px solid var(--tlh-border-hover);
	border-right: none;
	border-radius: var(--tlh-radius) 0 0 var(--tlh-radius);
	background: white;
}
.header-search input[type="search"]:focus {
	outline: none;
	border-color: var(--tlh-primary);
}
.header-search button[type="submit"] {
	border-radius: 0 var(--tlh-radius) var(--tlh-radius) 0;
}
.header-search__close {
	background: transparent;
	border: none;
	color: var(--tlh-muted);
	cursor: pointer;
	padding: 0.5rem;
}
.header-search__close:hover {
	color: var(--tlh-ink);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 44px;
	height: 44px;
	padding: 13px 10px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.nav-toggle__bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--tlh-ink);
	border-radius: 1px;
	transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: var(--tlh-overlay);
	z-index: 30;
	backdrop-filter: blur(4px);
}
.nav-overlay.is-active {
	display: block;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */

.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
	align-items: center;
	min-height: calc(100svh - 80px);
	padding: 3rem max(1rem, calc((100vw - var(--tlh-width)) / 2));
	background: linear-gradient(180deg, color-mix(in srgb, var(--tlh-surface) 70%, transparent), transparent 62%),
				color-mix(in srgb, var(--tlh-background) 74%, white);
	gap: clamp(2rem, 6vw, 6rem);
}

.home-hero__content {
	padding: 2rem 0;
}

.home-hero h1 {
	max-width: 12ch;
}

.home-hero__copy {
	max-width: 560px;
	color: var(--tlh-muted);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	margin-bottom: 2.5rem;
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 620px;
	margin: 0 0 2.5rem;
	padding: 0;
	list-style: none;
}
.hero-proof li {
	padding-top: 1rem;
	border-top: 1px solid var(--tlh-border);
	color: var(--tlh-muted);
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.4;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Studio Graphic */
.home-hero__visual {
	min-height: min(660px, calc(100svh - 130px));
	display: grid;
	place-items: center;
}
.decor-studio {
	position: relative;
	width: min(100%, 620px);
	aspect-ratio: 0.86;
	background: linear-gradient(90deg, transparent 0 68%, color-mix(in srgb, var(--tlh-soft) 64%, white) 68% 100%),
				linear-gradient(180deg, color-mix(in srgb, var(--tlh-surface) 88%, white), color-mix(in srgb, var(--tlh-soft) 38%, white));
	border: 1px solid var(--tlh-border);
	border-radius: var(--tlh-radius);
	box-shadow: var(--tlh-shadow);
	overflow: hidden;
}
.decor-studio::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 18%;
	background: color-mix(in srgb, var(--tlh-ink) 7%, transparent);
}
.decor-studio__wall, .decor-studio__frame, .decor-studio__console,
.decor-studio__lamp, .decor-studio__vase, .decor-studio__bowl {
	position: absolute;
	display: block;
}
.decor-studio__wall { left: 10%; top: 10%; width: 49%; height: 47%; border: 1px solid color-mix(in srgb, var(--tlh-ink) 16%, transparent); background: color-mix(in srgb, var(--tlh-surface) 82%, white); }
.decor-studio__frame--one { left: 16%; top: 16%; width: 18%; height: 24%; background: color-mix(in srgb, var(--tlh-primary) 34%, white); }
.decor-studio__frame--two { left: 38%; top: 17%; width: 15%; height: 19%; background: color-mix(in srgb, var(--tlh-secondary) 28%, white); }
.decor-studio__console { left: 13%; right: 15%; bottom: 24%; height: 9%; background: var(--tlh-ink); }
.decor-studio__console::before, .decor-studio__console::after { content: ""; position: absolute; bottom: -95%; width: 2px; height: 95%; background: var(--tlh-ink); }
.decor-studio__console::before { left: 8%; } .decor-studio__console::after { right: 8%; }
.decor-studio__lamp { right: 21%; top: 21%; width: 15%; height: 34%; border-bottom: 2px solid var(--tlh-ink); }
.decor-studio__lamp::before { content: ""; position: absolute; inset: 0 20% auto; height: 34%; background: var(--tlh-accent); clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%); }
.decor-studio__lamp::after { content: ""; position: absolute; left: 50%; top: 33%; width: 2px; height: 67%; background: var(--tlh-ink); }
.decor-studio__vase { left: 24%; bottom: 33%; width: 10%; height: 17%; border-radius: 42% 42% 30% 30%; background: var(--tlh-primary); }
.decor-studio__bowl { right: 35%; bottom: 32%; width: 17%; height: 5%; border-radius: 0 0 999px 999px; background: var(--tlh-secondary); }

/* =========================================================================
   TRUST BAR & CULTURE BAND
   ========================================================================= */

.trust-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	padding: 4rem 0;
	border-bottom: 1px solid var(--tlh-border);
}
.trust-bar__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.trust-bar__icon {
	flex-shrink: 0;
	color: var(--tlh-accent);
}
.trust-bar__text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.trust-bar__text strong {
	font-weight: 600;
	font-size: 1rem;
}
.trust-bar__text span {
	font-size: 0.85rem;
	color: var(--tlh-muted);
	line-height: 1.4;
}

.culture-band {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: center;
	padding: 1.5rem max(1rem, calc((100vw - var(--tlh-width)) / 2));
	background: color-mix(in srgb, var(--tlh-ink) 93%, var(--tlh-primary));
	color: var(--tlh-surface);
}
.culture-band span {
	display: block;
	color: color-mix(in srgb, var(--tlh-surface) 68%, transparent);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}
.culture-band strong {
	font-weight: 400;
	font-size: 1.1rem;
}

.swatches {
	display: flex;
	gap: 0.5rem;
}
.swatches i {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid color-mix(in srgb, var(--tlh-surface) 50%, transparent);
}
.swatches i:nth-child(1) { background: var(--tlh-primary); }
.swatches i:nth-child(2) { background: var(--tlh-secondary); }
.swatches i:nth-child(3) { background: var(--tlh-accent); }
.swatches i:nth-child(4) { background: var(--tlh-soft); }

/* =========================================================================
   CONTENT SECTIONS
   ========================================================================= */

.home-section,
.page-content {
	padding-block: 5rem;
}

.section-heading,
.page-header {
	margin-bottom: 3rem;
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	border-bottom: 1px solid var(--tlh-border);
	padding-bottom: 1.5rem;
}
.section-heading h2 {
	margin: 0;
	max-width: 680px;
}

.editorial-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: start;
}
.editorial-grid article {
	position: sticky;
	top: 120px;
}
.editorial-grid__copy {
	display: grid;
	gap: 1.5rem;
	color: var(--tlh-muted);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.editorial-grid__copy p {
	margin: 0;
}

/* =========================================================================
   PRODUCT GRIDS (WooCommerce Core)
   ========================================================================= */

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem 1.5rem;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	content: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	background: transparent;
	transition: transform var(--tlh-transition);
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: var(--tlh-radius);
	margin-bottom: 1rem;
	background: color-mix(in srgb, var(--tlh-soft) 45%, white);
	box-shadow: 0 0 0 1px var(--tlh-border);
}

.woocommerce ul.products li.product-category a img {
	aspect-ratio: 1;
	border-radius: 50%;
}

.woocommerce ul.products li.product h2.woocommerce-loop-category__title,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
	font-family: var(--tlh-font-sans);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 0;
	margin-bottom: 0.5rem;
	color: var(--tlh-ink);
}

.woocommerce ul.products li.product .price {
	color: var(--tlh-muted);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.woocommerce ul.products li.product .button {
	width: 100%;
	margin-top: auto;
}

/* Fiche produit simple */
.woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 5rem;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}
.woocommerce div.product .product_title {
	font-size: clamp(2rem, 3vw, 3rem);
	margin-bottom: 1rem;
}
.woocommerce div.product p.price {
	font-size: 1.5rem;
	color: var(--tlh-ink);
	margin-bottom: 2rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
	background: var(--tlh-ink);
	color: var(--tlh-surface);
	padding-top: 5rem;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 3rem;
	padding-bottom: 4rem;
}

.footer-col__title {
	font-family: var(--tlh-font-sans);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: color-mix(in srgb, var(--tlh-surface) 60%, transparent);
	margin-bottom: 1.5rem;
}

/* Col 1: Brand */
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--tlh-surface);
	text-decoration: none;
	margin-bottom: 1.5rem;
}
.footer-brand__mark {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--tlh-surface);
	border-radius: 2px;
	font-size: 0.65rem;
	font-weight: 700;
}
.footer-brand__name {
	font-family: var(--tlh-font-display);
	font-size: 1.5rem;
	font-weight: 600;
}
.footer-tagline {
	color: color-mix(in srgb, var(--tlh-surface) 70%, transparent);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	max-width: 320px;
}
.footer-social {
	display: flex;
	gap: 1rem;
}
.footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--tlh-surface) 10%, transparent);
	color: var(--tlh-surface);
}
.footer-social__link:hover {
	background: var(--tlh-accent);
}

/* Col 2 & 3: Navs */
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.footer-col a {
	color: color-mix(in srgb, var(--tlh-surface) 80%, transparent);
	text-decoration: none;
	font-size: 0.95rem;
}
.footer-col a:hover {
	color: var(--tlh-surface);
}

/* Col 4: Newsletter */
.footer-col__desc {
	color: color-mix(in srgb, var(--tlh-surface) 70%, transparent);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}
.newsletter-form__inner {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.newsletter-form__field {
	display: flex;
	background: color-mix(in srgb, var(--tlh-surface) 10%, transparent);
	border-radius: var(--tlh-radius);
	padding: 0.25rem;
}
.newsletter-form__input {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--tlh-surface);
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
}
.newsletter-form__input::placeholder {
	color: color-mix(in srgb, var(--tlh-surface) 40%, transparent);
}
.newsletter-form__input:focus {
	outline: none;
}
.newsletter-form__btn {
	background: var(--tlh-surface);
	color: var(--tlh-ink);
	border: none;
	border-radius: calc(var(--tlh-radius) - 2px);
	width: 44px;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background var(--tlh-transition-fast);
}
.newsletter-form__btn:hover {
	background: var(--tlh-accent);
	color: white;
}
.newsletter-form__notice {
	font-size: 0.75rem;
	color: color-mix(in srgb, var(--tlh-surface) 50%, transparent);
	margin: 0;
}

/* Bottom Bar */
.footer-bottom {
	border-top: 1px solid color-mix(in srgb, var(--tlh-surface) 15%, transparent);
	padding: 1.5rem 0;
}
.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.footer-copyright {
	color: color-mix(in srgb, var(--tlh-surface) 60%, transparent);
	font-size: 0.85rem;
}
.footer-payment {
	display: flex;
	gap: 0.5rem;
}
.payment-icon {
	color: color-mix(in srgb, var(--tlh-surface) 80%, transparent);
}

/* =========================================================================
   ANIMATIONS & REVEAL
   ========================================================================= */

.tlh-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.tlh-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================================
   RTL SUPPORT (Arabic, Hebrew)
   ========================================================================= */

.rtl .site-header__inner {
	grid-template-columns: 240px 1fr 240px;
}
.rtl .home-hero {
	direction: rtl;
	grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.96fr); /* Inverse cols */
}
.rtl .home-hero__content {
	grid-column: 2;
}
.rtl .home-hero__visual {
	grid-column: 1;
}
.rtl .trust-bar__item,
.rtl .brand,
.rtl .footer-brand {
	direction: rtl;
}
.rtl .header-search input[type="search"] {
	border-right: 1px solid var(--tlh-border-hover);
	border-left: none;
	border-radius: 0 var(--tlh-radius) var(--tlh-radius) 0;
}
.rtl .header-search button[type="submit"] {
	border-radius: var(--tlh-radius) 0 0 var(--tlh-radius);
}

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

@media (max-width: 1024px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}
	.primary-nav {
		display: none;
	}
	.nav-toggle {
		display: flex;
	}
	
	/* Mobile Nav Drawer */
	.primary-nav.is-open {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 300px;
		max-width: 85vw;
		background: var(--tlh-surface);
		z-index: 50;
		padding: 5rem 2rem 2rem;
		box-shadow: -10px 0 30px rgba(0,0,0,0.1);
		overflow-y: auto;
		animation: slideInRight 0.3s forwards;
	}
	.rtl .primary-nav.is-open {
		right: auto;
		left: 0;
		box-shadow: 10px 0 30px rgba(0,0,0,0.1);
		animation: slideInLeft 0.3s forwards;
	}
	.primary-nav.is-open ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.primary-nav.is-open a {
		font-size: 1.2rem;
		padding: 0;
		min-height: auto;
	}
	
	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 4rem 2rem;
	}
	.footer-col--brand, .footer-col--newsletter {
		grid-column: 1 / -1;
	}
	
	.woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.home-hero {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-top: 1rem;
	}
	.home-hero__visual {
		order: -1;
		min-height: 40svh;
	}
	.rtl .home-hero {
		grid-template-columns: 1fr;
	}
	.rtl .home-hero__content, .rtl .home-hero__visual {
		grid-column: 1;
	}
	
	.trust-bar {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	
	.culture-band {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	.editorial-grid {
		grid-template-columns: 1fr;
	}
	.editorial-grid article {
		position: static;
	}
	
	.section-heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
	.woocommerce div.product {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom__inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-proof {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.trust-bar {
		grid-template-columns: 1fr;
	}
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}

/* Keyframes */
@keyframes slideInRight {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}
@keyframes slideInLeft {
	from { transform: translateX(-100%); }
	to { transform: translateX(0); }
}
