/* ============================================================
   Benelisse · Main stylesheet
   Palette: sage-green primary, linen accent, warm off-white
   Type:    Playfair Display (display) + Inter (body)
   ============================================================ */

:root {
	--text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
	--text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
	--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
	--text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
	--text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
	--text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
	--text-hero: clamp(2.5rem, 1rem + 4vw, 4.5rem);

	--space-1: .25rem; --space-2: .5rem; --space-3: .75rem;
	--space-4: 1rem;   --space-5: 1.25rem; --space-6: 1.5rem;
	--space-8: 2rem;   --space-10: 2.5rem; --space-12: 3rem;
	--space-16: 4rem;  --space-20: 5rem;   --space-24: 6rem;

	--color-bg:             #f9f8f5;
	--color-surface:        #ffffff;
	--color-surface-2:      #f4f2ee;
	--color-surface-offset: #edeae3;
	--color-divider:        #e0ddd6;
	--color-border:         #d6d3ca;

	--color-text:           #1e1d1a;
	--color-text-muted:     #6b6960;
	--color-text-faint:     #b5b2ab;
	--color-text-inverse:   #f9f8f5;

	--color-primary:        #4a7c59;
	--color-primary-hover:  #3a6246;
	--color-primary-light:  #e8f0eb;
	--color-primary-highlight: #d4e6da;

	--color-accent:         #9c8660;
	--color-accent-light:   #f2ece0;

	--radius-sm: .25rem; --radius-md: .5rem;
	--radius-lg: .75rem; --radius-xl: 1rem; --radius-2xl: 1.5rem;
	--radius-full: 9999px;

	--shadow-sm: 0 1px 3px rgba(30,29,26,.08);
	--shadow-md: 0 4px 16px rgba(30,29,26,.10);
	--shadow-lg: 0 12px 40px rgba(30,29,26,.14);

	--transition: 180ms cubic-bezier(.16,1,.3,1);
	--content-narrow: 720px;
	--content-default: 960px;
	--content-wide: 1200px;

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; text-wrap: balance; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
hr { border: none; border-top: 1px solid var(--color-divider); margin: var(--space-8) 0; }
::selection { background: var(--color-primary-light); color: var(--color-primary-hover); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 9999; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* ===== LAYOUT ===== */
.container { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-6); }
.container--default { max-width: var(--content-default); margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--space-6); }
section { padding: clamp(var(--space-16), 6vw, var(--space-20)) 0; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-divider); padding: var(--space-4) 0; }
.site-header__inner { display: flex; align-items: center; gap: var(--space-6); }
.site-brand { display: inline-flex; align-items: center; gap: var(--space-3); font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-text); }
.site-brand:hover { color: var(--color-text); }
.brand-mark { color: var(--color-primary); display: inline-flex; }
.custom-logo { max-height: 48px; width: auto; }
.site-nav { flex: 1; }
.nav-links { display: flex; align-items: center; gap: var(--space-8); list-style: none; margin: 0; padding: 0; justify-content: center; }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); }
.nav-links a:hover, .nav-links .current-menu-item > a, .nav-links .current_page_item > a { color: var(--color-text); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle { display: none; width: 40px; height: 40px; padding: 8px; border-radius: var(--radius-md); }
.nav-toggle span { display: block; height: 2px; background: var(--color-text); margin: 4px 0; border-radius: 2px; transition: var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); padding: .85em 1.6em; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 600; transition: var(--transition); text-decoration: none; line-height: 1; cursor: pointer; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: var(--color-primary-light); color: var(--color-primary-hover); }
.btn-sm { padding: .6em 1.1em; font-size: 13px; }
.btn-block { width: 100%; }

/* ===== HEADINGS / SECTION-HEAD ===== */
.eyebrow { font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--space-3); }
.section-head { margin-bottom: var(--space-10); max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.section-sub { color: var(--color-text-muted); font-size: var(--text-base); }
.section-cta { margin-top: var(--space-10); text-align: center; }

/* ===== HERO ===== */
.hero { padding: clamp(var(--space-16), 7vw, var(--space-24)) 0; background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%); border-bottom: 1px solid var(--color-divider); }
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-12); align-items: center; }
.hero__title { font-size: var(--text-hero); margin-bottom: var(--space-5); }
.hero__sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-8); max-width: 56ch; }
.hero__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero__media img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); }

/* ===== PLACEHOLDER ===== */
.placeholder { background: var(--color-surface-offset); border: 2px dashed var(--color-border); border-radius: var(--radius-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--color-text-faint); font-size: var(--text-sm); text-align: center; padding: var(--space-6); }
.placeholder--lg { aspect-ratio: 16/10; }

/* ===== STATS ===== */
.stats { background: var(--color-surface); padding: var(--space-16) 0; border-bottom: 1px solid var(--color-divider); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); text-align: center; }
.stat__num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-primary); line-height: 1; margin-bottom: var(--space-2); }
.stat__lbl { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ===== VALUES ===== */
.values { background: var(--color-bg); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.value-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8) var(--space-6); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary-highlight); }
.value-card__icon { font-size: 36px; margin-bottom: var(--space-4); }
.value-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.value-card p { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; }

/* ===== PRODUCT GRIDS ===== */
.products-home { background: var(--color-surface); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }

.scent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-bottom: var(--space-12); }
.scent-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-2xl); padding: var(--space-10) var(--space-6); text-align: center; transition: var(--transition); display: block; }
.scent-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: var(--shadow-md); color: var(--color-text); }
.scent-card--placeholder { opacity: .85; }
.scent-card__icon { font-size: 42px; margin-bottom: var(--space-3); }
.scent-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); color: var(--color-text); }
.scent-card p { color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.link-arrow { color: var(--color-primary); font-weight: 600; font-size: var(--text-sm); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.product-grid--home { margin-top: var(--space-10); }

/* ===== PRODUCT CARD ===== */
.product-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary-highlight); }
.product-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--color-surface-offset); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__media .placeholder { aspect-ratio: 4/3; border: none; }
.product-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.product-card__title { font-size: var(--text-lg); margin: 0; }
.product-card__title a { color: var(--color-text); }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__tagline { color: var(--color-text-muted); font-size: var(--text-sm); margin: 0; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.product-card__btn { margin-top: auto; color: var(--color-primary); font-weight: 600; font-size: var(--text-sm); }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; letter-spacing: .02em; }
.badge-green { background: var(--color-primary-light); color: var(--color-primary); }
.badge-tan { background: var(--color-accent-light); color: var(--color-accent); }

/* ===== FACTORY TEASER ===== */
.factory-teaser { background: var(--color-bg); }
.factory-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.factory-teaser__media img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); }
.factory-teaser__text p { color: var(--color-text-muted); margin-bottom: var(--space-6); font-size: var(--text-base); }

/* ===== BOTTOM CTA BAND ===== */
.cta-band { background: var(--color-primary); color: #fff; padding: var(--space-20) 0; }
.cta-band__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.cta-band p { color: rgba(255,255,255,.85); font-size: var(--text-base); margin-bottom: var(--space-8); }

/* ===== PAGE HERO ===== */
.page-hero { padding: var(--space-16) 0 var(--space-12); border-bottom: 1px solid var(--color-divider); background: var(--color-surface); }
.page-hero--soft { background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-bg) 100%); border-bottom: none; }
.page-hero--compact { padding: var(--space-8) 0; }
.page-hero__title { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.page-hero__desc { color: var(--color-text-muted); font-size: var(--text-lg); max-width: 60ch; }

.breadcrumbs { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-3); }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }

/* ===== PRODUCTS ARCHIVE ===== */
.products-archive { padding-top: var(--space-12); }
.filter-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-10); }
.chip { padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; }
.chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
.chip.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.chip--alt.is-active { background: var(--color-accent); border-color: var(--color-accent); }

.empty-state { text-align: center; padding: var(--space-20) 0; color: var(--color-text-muted); }

/* ===== SINGLE PRODUCT ===== */
.product-single { padding: var(--space-12) 0; }
.product-single__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: start; }
.product-single__gallery img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); }
.product-single__tags { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-4); }
.product-single__title { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.product-single__tagline { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-5); }
.product-single__desc { color: var(--color-text-muted); margin-bottom: var(--space-6); }
.product-single__cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-6); }

.spec-table { width: 100%; border-collapse: collapse; background: var(--color-surface-2); border-radius: var(--radius-lg); overflow: hidden; }
.spec-table th, .spec-table td { padding: var(--space-3) var(--space-4); text-align: left; font-size: var(--text-sm); border-bottom: 1px solid var(--color-divider); }
.spec-table th { font-weight: 600; color: var(--color-text-muted); width: 40%; }
.spec-table td { color: var(--color-text); font-weight: 500; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.product-content { background: var(--color-surface); padding: var(--space-12) 0; }
.product-inquiry { background: var(--color-primary-light); padding: var(--space-16) 0; }
.product-inquiry .section-title { text-align: center; }
.product-inquiry > .container { text-align: center; }
.product-inquiry .inquiry-form { text-align: left; margin-top: var(--space-8); }
.related-products { background: var(--color-bg); }

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--color-surface); }
.about-story__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-12); align-items: center; }
.about-story__media img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); }
.about-story__text h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }

.timeline-section { background: var(--color-bg); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 880px; margin: 0 auto; }
.timeline__step { padding: var(--space-6) var(--space-4); border-right: 1px dashed var(--color-border); text-align: center; }
.timeline__step:last-child { border-right: none; }
.timeline__year { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-2); }
.timeline__event { color: var(--color-text-muted); font-size: var(--text-sm); }

.certs { background: var(--color-surface); }
.certs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-4); max-width: 880px; margin: 0 auto; }
.cert-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-4); text-align: center; }
.cert-card img { max-height: 60px; width: auto; margin: 0 auto var(--space-3); }
.cert-card__placeholder { font-size: 36px; margin-bottom: var(--space-2); }
.cert-card p { margin: 0; font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }

/* ===== FACTORY PAGE ===== */
.factory-banner { padding: var(--space-8) 0; }
.factory-banner img { border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); width: 100%; max-height: 480px; object-fit: cover; }

.process-section { background: var(--color-surface); }
.process-flow { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); counter-reset: step; }
.process-flow--cards { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.process-step { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); position: relative; }
.process-step__num { width: 36px; height: 36px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--space-4); }
.process-step h3 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.process-step p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

.gallery { background: var(--color-bg); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gallery__item { margin: 0; background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery__item .placeholder { aspect-ratio: 4/3; border: none; border-radius: 0; }
.gallery__item figcaption { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--color-text-muted); background: var(--color-surface); }

/* ===== PROCESS / FAQ ===== */
.faq-section { background: var(--color-surface); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--color-text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '＋'; color: var(--color-primary); font-size: 18px; flex-shrink: 0; transition: var(--transition); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding-top: var(--space-3); color: var(--color-text-muted); font-size: var(--text-sm); }

/* ===== CONTACT ===== */
.contact-section { background: var(--color-surface); }
.contact-section__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--space-12); }
.contact-info__item { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-divider); }
.contact-info__item .icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--color-primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-info__item a { color: var(--color-text); }
.contact-info__item a:hover { color: var(--color-primary); }
.promise { margin-top: var(--space-6); background: var(--color-primary-light); border: 1px solid var(--color-primary-highlight); border-radius: var(--radius-lg); padding: var(--space-5); color: var(--color-primary); }
.promise p { margin: var(--space-1) 0 0; font-size: var(--text-sm); }

.contact-form-wrap h2 { font-size: var(--text-xl); margin-bottom: var(--space-5); }
.map-section { padding: 0; }
.map-section iframe { display: block; }

/* ===== INQUIRY FORM ===== */
.inquiry-form { display: flex; flex-direction: column; gap: var(--space-4); }
.inquiry-form label { display: flex; flex-direction: column; gap: var(--space-2); font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 500; }
.inquiry-form label span { color: var(--color-text); }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select { width: 100%; padding: 12px 14px; font-size: var(--text-sm); color: var(--color-text); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); font-family: var(--font-body); transition: border-color var(--transition); }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-notice { padding: var(--space-4); border-radius: var(--radius-md); font-size: var(--text-sm); margin-bottom: var(--space-2); }
.form-notice--success { background: var(--color-primary-light); color: var(--color-primary); border: 1px solid var(--color-primary-highlight); }
.form-notice--error { background: #fdecea; color: #b32d2d; border: 1px solid #f4c8c4; }

/* ===== ENTRY / PAGE / BLOG ===== */
.entry-section { background: var(--color-surface); }
.entry__media { margin-bottom: var(--space-8); border-radius: var(--radius-xl); overflow: hidden; }
.entry__content > * { margin-bottom: 1em; }
.entry__content h2 { font-size: var(--text-xl); margin-top: var(--space-10); margin-bottom: var(--space-3); }
.entry__content h3 { font-size: var(--text-lg); margin-top: var(--space-8); margin-bottom: var(--space-2); }
.entry__content img { border-radius: var(--radius-lg); }
.entry__content blockquote { border-left: 4px solid var(--color-primary); padding: var(--space-3) var(--space-6); margin: var(--space-6) 0; background: var(--color-surface-2); border-radius: var(--radius-md); font-style: italic; color: var(--color-text-muted); }
.entry__footer { margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); font-size: var(--text-sm); color: var(--color-text-muted); }

.blog-section { background: var(--color-surface); }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--space-10); }
.blog-sidebar .widget { margin-bottom: var(--space-8); }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.post-card { background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card__body { padding: var(--space-5); }
.post-card__meta { font-size: var(--text-xs); color: var(--color-text-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-2); }
.post-card__title { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.post-card__title a { color: var(--color-text); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card p { color: var(--color-text-muted); font-size: var(--text-sm); margin-bottom: var(--space-3); }
.post-meta { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-3); }

.pagination { display: flex; justify-content: center; gap: var(--space-2); margin-top: var(--space-10); }
.pagination .page-numbers { padding: 8px 14px; border-radius: var(--radius-md); border: 1px solid var(--color-border); color: var(--color-text-muted); }
.pagination .current, .pagination .page-numbers:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ===== FOOTER ===== */
.site-footer { background: var(--color-surface-offset); padding: var(--space-16) 0 var(--space-6); margin-top: var(--space-20); border-top: 1px solid var(--color-divider); }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--space-12); }
.footer-brand p { color: var(--color-text-muted); font-size: var(--text-sm); max-width: 32ch; margin-top: var(--space-3); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a { color: var(--color-text-muted); font-size: var(--text-sm); }
.footer-social a:hover { color: var(--color-primary); }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--color-text-faint); font-weight: 700; margin-bottom: var(--space-4); }
.footer-menu, .footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-menu a, .footer-contact a { color: var(--color-text-muted); font-size: var(--text-sm); }
.footer-menu a:hover, .footer-contact a:hover { color: var(--color-primary); }
.footer-contact li { color: var(--color-text-muted); font-size: var(--text-sm); }
.site-footer__bottom { margin-top: var(--space-10); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); display: flex; justify-content: space-between; font-size: var(--text-xs); color: var(--color-text-faint); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hero__inner, .factory-teaser__inner, .product-single__grid, .about-story__grid, .contact-section__grid { grid-template-columns: 1fr; }
	.stats__grid, .values__grid { grid-template-columns: repeat(2, 1fr); }
	.process-flow { grid-template-columns: repeat(3, 1fr); }
	.process-flow--cards { grid-template-columns: repeat(2, 1fr); }
	.timeline { grid-template-columns: repeat(2, 1fr); }
	.timeline__step:nth-child(2n) { border-right: none; }
	.scent-grid, .product-grid, .gallery__grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
	.product-grid--home { grid-template-columns: repeat(2, 1fr); }
	.blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.nav-toggle { display: block; order: 3; }
	.site-header__actions { order: 2; }
	.site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-divider); padding: var(--space-6); }
	.site-nav.is-open { display: block; }
	.site-nav .nav-links { flex-direction: column; align-items: stretch; gap: var(--space-3); }
	.site-nav .nav-links a { display: block; padding: var(--space-2) 0; }
	.scent-grid, .product-grid, .product-grid--home, .gallery__grid, .post-grid, .site-footer__grid, .footer-cols { grid-template-columns: 1fr; }
	.values__grid { grid-template-columns: 1fr; }
	.process-flow, .process-flow--cards { grid-template-columns: 1fr; }
	.timeline { grid-template-columns: 1fr; }
	.timeline__step { border-right: none; border-bottom: 1px dashed var(--color-border); }
	.timeline__step:last-child { border-bottom: none; }
	.form-row { grid-template-columns: 1fr; }
	.site-footer__bottom { flex-direction: column; gap: var(--space-2); text-align: center; }
	.hero { padding: var(--space-12) 0; }
	.hero__title { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
	.stats__grid { grid-template-columns: 1fr 1fr; }
	.btn { padding: .8em 1.3em; }
}

/* ============================================================
   CUSTOMIZER TYPOGRAPHY TOKENS
   (overridden dynamically via inline CSS injected by functions.php)
   ============================================================ */
:root {
	--custom-body-font-size: var(--text-base);
	--custom-body-color:     var(--color-text);
	--custom-heading-color:  var(--color-text);
	--custom-link-color:     var(--color-primary);
	--custom-h1-size:        var(--text-2xl);
	--custom-h2-size:        var(--text-xl);
	--custom-h3-size:        var(--text-lg);
	--custom-nav-font-size:  var(--text-sm);
	--custom-footer-font-size: var(--text-sm);
	--custom-footer-color:   var(--color-text-muted);
}

body        { font-size: var(--custom-body-font-size); color: var(--custom-body-color); }
h1, h2, h3, h4, h5, h6 { color: var(--custom-heading-color); }
h1          { font-size: var(--custom-h1-size); }
h2          { font-size: var(--custom-h2-size); }
h3          { font-size: var(--custom-h3-size); }
a           { color: var(--custom-link-color); }
.nav-links a { font-size: var(--custom-nav-font-size); }
.site-footer, .site-footer p, .footer-menu a,
.footer-contact li, .footer-contact a {
	font-size: var(--custom-footer-font-size);
	color: var(--custom-footer-color);
}

/* ============================================================
   SIMPLE CONTACT FORM (Contact page)
   ============================================================ */
.inquiry-form--simple {
	max-width: 540px;
}
.inquiry-form--simple label {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
}
.inquiry-form--simple label span {
	color: var(--color-text);
	font-weight: 600;
}
.inquiry-form--simple input,
.inquiry-form--simple textarea {
	width: 100%;
	padding: 13px 16px;
	font-size: var(--text-sm);
	color: var(--color-text);
	background: var(--color-surface);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-lg);
	font-family: var(--font-body);
	transition: border-color var(--transition), box-shadow var(--transition);
	resize: vertical;
}
.inquiry-form--simple input::placeholder,
.inquiry-form--simple textarea::placeholder {
	color: var(--color-text-faint);
}
.inquiry-form--simple input:focus,
.inquiry-form--simple textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px var(--color-primary-light);
}
.inquiry-form--simple .btn-block {
	margin-top: var(--space-2);
	padding: 1em 1.8em;
	font-size: var(--text-base);
	letter-spacing: .01em;
}

/* ============================================================
   PRODUCT INQUIRY FORM (single-product.php)
   ============================================================ */
.product-inquiry {
	background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-bg) 100%);
	padding: var(--space-20) 0 var(--space-16);
}
.product-inquiry .container--narrow {
	background: var(--color-surface);
	border: 1px solid var(--color-divider);
	border-radius: var(--radius-2xl);
	padding: var(--space-10) var(--space-12);
	box-shadow: var(--shadow-md);
}
.product-inquiry .section-title {
	text-align: center;
	font-size: var(--text-xl);
	margin-bottom: var(--space-2);
}
.product-inquiry > .container--narrow > p {
	text-align: center;
	color: var(--color-text-muted);
	margin-bottom: var(--space-8);
}
.inquiry-form--product {
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}
.inquiry-form--product .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
}
.inquiry-form--product label {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-muted);
}
.inquiry-form--product label span {
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: .01em;
}
.inquiry-form--product input,
.inquiry-form--product textarea,
.inquiry-form--product select {
	width: 100%;
	padding: 12px 16px;
	font-size: var(--text-sm);
	color: var(--color-text);
	background: var(--color-bg);
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-lg);
	font-family: var(--font-body);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.inquiry-form--product input::placeholder,
.inquiry-form--product textarea::placeholder {
	color: var(--color-text-faint);
}
.inquiry-form--product input:focus,
.inquiry-form--product textarea:focus,
.inquiry-form--product select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px var(--color-primary-light);
	background: var(--color-surface);
}
.inquiry-form--product textarea {
	resize: vertical;
	min-height: 120px;
}
.inquiry-form--product .btn-block {
	margin-top: var(--space-2);
	padding: 1em 1.8em;
	font-size: var(--text-base);
	letter-spacing: .01em;
}
.inquiry-form--product .form-notice {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.inquiry-form--product .form-row {
		grid-template-columns: 1fr;
	}
	.product-inquiry .container--narrow {
		padding: var(--space-8) var(--space-6);
		border-radius: var(--radius-xl);
	}
}

/* ============================================================
   CONTACT FORM 7 — BENELISSE SKIN
   Matches reference design: warm-white card, rounded fields,
   filled grey inputs, green capsule submit button.
   ============================================================ */

/* ---- Wrapper card ---- */
.wpcf7 {
	background: #f5f4f0;
	border-radius: 20px;
	padding: 40px 44px;
	border: 1px solid rgba(0,0,0,.06);
}

/* ---- Remove CF7 default margins ---- */
.wpcf7 form,
.wpcf7 p,
.wpcf7 br {
	margin: 0;
	padding: 0;
}
.wpcf7 br { display: none; }

/* ---- Field block ---- */
.cf7-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}
.cf7-field:last-of-type { margin-bottom: 0; }

/* ---- Two-column row (inquiry form) ---- */
.cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}
.cf7-row .cf7-field {
	margin-bottom: 0;
}

/* ---- Label ---- */
.cf7-field label,
.wpcf7 .cf7-field > label {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1e1d1a;
	letter-spacing: .01em;
	display: block;
}
.cf7-field label abbr {
	text-decoration: none;
	color: var(--color-primary);
	margin-left: 2px;
}

/* ---- Input & Textarea ---- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
	display: block;
	width: 100%;
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: #1e1d1a;
	background: #eceae3;
	border: 1.5px solid transparent;
	border-radius: 12px;
	outline: none;
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	resize: vertical;
}
.wpcf7 textarea {
	min-height: 160px;
	line-height: 1.6;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #9e9b93;
	font-weight: 400;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	background: #e8e6de;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(74,124,89,.12);
}

/* ---- Submit button ---- */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	display: inline-block;
	padding: 15px 36px;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: var(--color-primary, #4a7c59);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	letter-spacing: .02em;
	transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
	-webkit-appearance: none;
	appearance: none;
	margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
	background: var(--color-primary-hover, #3a6246);
	box-shadow: 0 4px 14px rgba(74,124,89,.28);
	transform: translateY(-1px);
}
.wpcf7 input[type="submit"]:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ---- CF7 response / notices ---- */
.wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 12px 18px !important;
	border-radius: 10px !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	border: none !important;
}
.wpcf7-mail-sent-ok {
	background: #e6f4ec !important;
	color: #2d6a40 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
	background: #fdecea !important;
	color: #b91c1c !important;
}

/* ---- Validation error highlight ---- */
.wpcf7-not-valid {
	border-color: #e53e3e !important;
	background: #fff5f5 !important;
}
.wpcf7-not-valid-tip {
	color: #e53e3e !important;
	font-size: 0.8125rem !important;
	margin-top: 4px !important;
	display: block !important;
}

/* ---- Spinner ---- */
.wpcf7 .wpcf7-spinner {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
	.wpcf7 {
		padding: 28px 22px;
		border-radius: 16px;
	}
	.cf7-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.cf7-row .cf7-field {
		margin-bottom: 20px;
	}
}

/* ============================================================
   CF7 BUG FIXES — v1.4.1
   1. Restore text cursor on inputs (prevent not-allowed icon)
   2. Ensure label span text is always visible
   ============================================================ */

/* Fix: cursor forced back to text on all CF7 inputs */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
	cursor: text !important;
	pointer-events: auto !important;
}
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	cursor: pointer !important;
	pointer-events: auto !important;
}

/* Fix: make the wpcf7-form-control-wrap display correctly inline */
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Fix: label text (the visible title) — must sit above the wrap */
.cf7-field > label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #1e1d1a;
	cursor: default;
}
/* Hide the extra * CF7 injects via .wpcf7-form-control-wrap if label already shows it */
.cf7-field .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	margin-top: 4px;
}
