@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&family=Marcellus&family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===================== Maison (default) ===================== */
:root {
  --primary: #b5626f;
  --primary-dark: #96495a;
  --primary-light: #f6e3e6;
  --accent: #c99a5b;
  --accent-light: #f7ecdc;
  --on-accent: #fffaf2;
  --bg: #fbf7f2;
  --bg-alt: #f5ede4;
  --surface: #ffffff;
  --soft: #f1e7dd;
  --border: #e6d9cc;
  --ink: #3d2c33;
  --ink-soft: #6e5a61;
  --ink-faint: #a08d94;
  --on-primary: #fff8f5;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(140deg, #47262f 0%, #7a4150 48%, #b5626f 100%);
  --hero-overlay: linear-gradient(to bottom, rgba(43,23,29,0.55), rgba(43,23,29,0.35));
  --hero-text: #fdf6f1;
  --shadow-sm: 0 1px 3px rgba(61,44,51,0.08);
  --shadow-md: 0 6px 20px rgba(61,44,51,0.1);
  --shadow-lg: 0 16px 44px rgba(61,44,51,0.16);
  --footer-bg: #382228;
  --footer-ink: #f5eae4;
}

/* ===================== Noir Amour ===================== */
html[data-theme="noir"] {
  --primary: #d4a85a;
  --primary-dark: #b98f43;
  --primary-light: #3a2f1d;
  --accent: #e8a0b0;
  --accent-light: #3d2229;
  --on-accent: #241016;
  --bg: #16121a;
  --bg-alt: #1d1723;
  --surface: #241c2b;
  --soft: #2e2437;
  --border: #3a2f44;
  --ink: #f2e9ef;
  --ink-soft: #c4b3c0;
  --ink-faint: #8d7a89;
  --on-primary: #241a08;
  --font-head: 'Marcellus', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --hero-gradient: radial-gradient(ellipse at 30% 20%, #3d2033 0%, #241527 55%, #120d16 100%);
  --hero-overlay: linear-gradient(to bottom, rgba(10,6,12,0.35), rgba(10,6,12,0.55));
  --hero-text: #f7eff2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.45);
  --shadow-lg: 0 18px 50px rgba(0,0,0,0.55);
  --footer-bg: #100c14;
  --footer-ink: #e9dde6;
}

/* ===================== Jardin ===================== */
html[data-theme="jardin"] {
  --primary: #6f8b6a;
  --primary-dark: #597155;
  --primary-light: #e7efe4;
  --accent: #c67b52;
  --accent-light: #f6e7dc;
  --on-accent: #fff8f3;
  --bg: #faf8f2;
  --bg-alt: #eff2ea;
  --surface: #ffffff;
  --soft: #e8ece1;
  --border: #dbe0cf;
  --ink: #2c332a;
  --ink-soft: #5c665a;
  --ink-faint: #8f988b;
  --on-primary: #f7fbf5;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', -apple-system, 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --hero-gradient: linear-gradient(150deg, #2f3d2c 0%, #4c6247 52%, #6f8b6a 100%);
  --hero-overlay: linear-gradient(to bottom, rgba(31,41,29,0.5), rgba(31,41,29,0.3));
  --hero-text: #f6f9f2;
  --shadow-sm: 0 1px 3px rgba(44,51,42,0.08);
  --shadow-md: 0 6px 20px rgba(44,51,42,0.1);
  --shadow-lg: 0 16px 44px rgba(44,51,42,0.15);
  --footer-bg: #26301f;
  --footer-ink: #eef2e6;
}

/* ===================== Base ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
* { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: var(--primary); color: var(--on-primary); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 24px; max-width: 1160px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-logo { height: 42px; width: auto; border-radius: var(--radius); object-fit: contain; }
.brand-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; }
.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-link { color: var(--ink-soft); font-weight: 500; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 9px 13px; border-radius: var(--radius-pill); transition: color .15s, background .15s; }
.nav-link:hover { text-decoration: none; background: var(--soft); color: var(--primary); }
.nav-link.active { color: var(--primary); background: var(--soft); }
.nav-cta { background: var(--primary); color: var(--on-primary) !important; border-radius: var(--radius-pill); padding: 10px 22px; font-weight: 600; letter-spacing: 0.04em; transition: background .15s, transform .15s; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px 8px; border-radius: 10px; color: var(--ink); }
.nav-toggle:hover { background: var(--soft); }
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 110px 24px 96px; overflow: hidden; background: var(--hero-gradient); background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; color: var(--hero-text); }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 22px; opacity: 0.92; }
.hero .eyebrow::before, .hero .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.6; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 6.5vw, 4.4rem); line-height: 1.06; margin-bottom: 18px; font-weight: 500; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .tagline { font-size: 1.08rem; font-weight: 400; opacity: 0.95; margin-bottom: 12px; letter-spacing: 0.03em; }
.hero .desc { font-size: 1rem; opacity: 0.82; margin-bottom: 32px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-cta a { padding: 15px 34px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.09em; text-transform: uppercase; transition: transform .15s, filter .15s, background .15s; }
.hero-cta a:hover { text-decoration: none; transform: translateY(-2px); }
.hero-cta .primary { background: var(--accent); color: var(--on-accent) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.22); }
.hero-cta .primary:hover { filter: brightness(1.05); }
.hero-cta .ghost { border: 1px solid rgba(255,255,255,0.65); color: #fff !important; backdrop-filter: blur(4px); }
.hero-cta .ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- Notice marquee ---------- */
.notice-bar { background: var(--accent); color: var(--on-accent); overflow: hidden; }
.notice-bar-inner { display: flex; align-items: center; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.notice-label { flex-shrink: 0; font-weight: 600; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 16px 10px 0; border-right: 1px solid rgba(0,0,0,0.14); margin-right: 16px; }
.notice-track { overflow: hidden; flex: 1; position: relative; }
.notice-items { display: flex; gap: 40px; white-space: nowrap; animation: marquee 30s linear infinite; }
.notice-items a { color: inherit; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em; }
.notice-items a:hover { text-decoration: underline; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Stats band ---------- */
.stats-band { border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-band .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 34px 24px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600; color: var(--primary); line-height: 1.1; }
.stat span { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }

/* ---------- Flourish divider ---------- */
.flourish { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 18px; color: var(--accent); }
.flourish::before, .flourish::after { content: ""; width: 56px; height: 1px; background: linear-gradient(to right, transparent, var(--border)); }
.flourish::after { background: linear-gradient(to left, transparent, var(--border)); }
.flourish svg { width: 18px; height: 18px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head .eyebrow { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.2vw, 2.9rem); margin-bottom: 14px; font-weight: 500; line-height: 1.12; }
.section-head h2 em { font-style: italic; color: var(--primary); }
.section-head p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }

/* ---------- Category icon ---------- */
.category-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.category-icon svg { width: 28px; height: 28px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 26px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 35%, var(--border)); }
.card img { width: 100%; height: 230px; object-fit: cover; }
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 8px; font-weight: 600; line-height: 1.25; }
.card-body p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65; }
.card-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

.tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.66rem; padding: 5px 11px; border-radius: var(--radius-pill); background: var(--soft); color: var(--primary); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.tag.solid { background: var(--primary); color: var(--on-primary); }
.tag.featured { background: var(--accent); color: var(--on-accent); }
.price { font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; color: var(--primary); }
.price small { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }

/* Package includes list */
.includes-list { list-style: none; margin: 14px 0 4px; display: grid; gap: 8px; }
.includes-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
.includes-list li svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; margin-top: 4px; }

/* Venue & team cards */
.meta-line { display: flex; align-items: center; gap: 7px; font-size: 0.84rem; color: var(--ink-faint); margin-top: 6px; }
.meta-line svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }
.team-card { text-align: center; }
.team-card img { height: 280px; object-fit: cover; }
.team-card .role { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 8px; }

/* Portfolio */
.portfolio-card img { height: 320px; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-card .cat { position: absolute; top: 14px; left: 14px; z-index: 2; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(6px); color: var(--ink); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-bar a { padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--surface); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); transition: all .15s; }
.filter-bar a:hover { text-decoration: none; border-color: var(--primary); color: var(--primary); }
.filter-bar a.active { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: 6px; left: 20px; font-family: var(--font-head); font-size: 4.4rem; line-height: 1; color: var(--accent-light); }
.testimonial .stars { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; letter-spacing: 3px; }
.testimonial .text { font-style: italic; margin-bottom: 16px; color: var(--ink); line-height: 1.7; font-size: 0.95rem; position: relative; }
.testimonial .author { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.testimonial .loc { font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 22px; background: none; border: none; cursor: pointer; font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; color: var(--ink); text-align: left; }
.faq-q:hover { color: var(--primary); }
.faq-q .chev { flex-shrink: 0; width: 20px; height: 20px; color: var(--primary); transition: transform .2s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.93rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ---------- Prose / article ---------- */
.prose { max-width: 720px; margin: 0 auto; font-size: 1rem; line-height: 1.8; color: var(--ink-soft); }
.prose h2 { font-family: var(--font-head); color: var(--ink); font-size: 1.7rem; margin: 34px 0 12px; font-weight: 600; }
.prose h3 { font-family: var(--font-head); color: var(--ink); font-size: 1.3rem; margin: 26px 0 10px; font-weight: 600; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 26px; }
.breadcrumbs a { color: var(--ink-faint); }
.breadcrumbs a:hover { color: var(--primary); text-decoration: none; }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--hero-gradient); padding: 64px 24px 58px; text-align: center; color: var(--hero-text); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.1rem, 4.6vw, 3.1rem); font-weight: 500; margin-bottom: 10px; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { opacity: 0.85; max-width: 640px; margin: 0 auto; font-size: 0.98rem; }

/* ---------- Forms ---------- */
.form-card { max-width: 780px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.form-input, .form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light);
}
.consent-row { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; background: var(--accent-light); border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border)); border-radius: var(--radius); padding: 16px; }
.consent-row input[type="checkbox"] { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; cursor: pointer; }
.consent-row label { font-size: 0.84rem; line-height: 1.6; color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 400; cursor: pointer; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; padding: 14px 30px; border-radius: var(--radius-pill); border: none; cursor: pointer; transition: transform .15s, filter .15s, background .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.form-alert { max-width: 780px; margin: 0 auto 22px; padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; }
.form-alert.error { background: color-mix(in srgb, #b91c1c 10%, var(--surface)); border: 1px solid color-mix(in srgb, #b91c1c 35%, var(--border)); color: #b91c1c; }
.form-alert.success { background: color-mix(in srgb, #15803d 10%, var(--surface)); border: 1px solid color-mix(in srgb, #15803d 35%, var(--border)); color: #15803d; }
.success-box { background: color-mix(in srgb, #15803d 8%, var(--surface)); border: 1px solid color-mix(in srgb, #15803d 30%, var(--border)); border-radius: var(--radius-lg); padding: 32px; text-align: center; max-width: 780px; margin: 0 auto; }
.success-box h3 { font-family: var(--font-head); color: #15803d; font-size: 1.5rem; margin-bottom: 8px; }
.success-box p { color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--hero-gradient); padding: 84px 24px; text-align: center; color: var(--hero-text); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 14px; font-weight: 500; }
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { opacity: 0.9; margin-bottom: 30px; font-size: 1.02rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band a { display: inline-block; background: var(--accent); color: var(--on-accent) !important; padding: 16px 38px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; transition: transform .15s, filter .15s; }
.cta-band a:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.05); }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 70px 24px; border: 1px dashed var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.empty-state svg { width: 44px; height: 44px; color: var(--primary); opacity: 0.5; margin: 0 auto 16px; }
.empty-state h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 8px; }
.empty-state p { color: var(--ink-soft); font-size: 0.92rem; max-width: 420px; margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg, #241B22); color: var(--footer-ink, #F5EEEA); margin-top: 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 64px 24px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand-name { color: var(--footer-ink, #F5EEEA); }
.site-footer p { font-size: 0.88rem; opacity: 0.75; line-height: 1.7; }
.site-footer h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.92; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--footer-ink, #F5EEEA); opacity: 0.75; font-size: 0.88rem; transition: opacity .15s; }
.footer-links a:hover { opacity: 1; text-decoration: none; }
.all-link { font-weight: 600 !important; opacity: 0.95 !important; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); color: var(--footer-ink, #F5EEEA); transition: background .15s, border-color .15s, transform .15s; }
.social-link:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); text-decoration: none; }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom span { display: block; max-width: 1160px; margin: 0 auto; padding: 20px 24px; font-size: 0.78rem; opacity: 0.6; letter-spacing: 0.03em; }
.powered-by a { color: inherit; text-decoration: none; }
.powered-by a:hover { text-decoration: underline; opacity: 1; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: transform .15s; }
.wa-float:hover { transform: scale(1.08); text-decoration: none; }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination a { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); font-weight: 600; font-size: 0.88rem; color: var(--ink-soft); }
.pagination a:hover { text-decoration: none; border-color: var(--primary); color: var(--primary); }
.pagination a.current { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

/* ===================== Theme switcher ===================== */
.theme-btn {
  position: fixed; bottom: 92px; right: 24px; z-index: 110;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--primary); color: var(--on-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: background .15s, transform .15s;
}
.theme-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.theme-btn svg { width: 24px; height: 24px; }
.theme-panel {
  position: fixed; bottom: 156px; right: 24px; z-index: 120;
  width: 280px; max-width: calc(100vw - 32px);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px;
  display: none; text-align: left;
}
.theme-panel.open { display: block; }
.theme-panel h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; }
.theme-panel .theme-sub { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 12px; }
.theme-card {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: var(--soft); border: 2px solid transparent; border-radius: var(--radius);
  padding: 10px 12px; margin-bottom: 8px; cursor: pointer;
  font-family: var(--font-body); color: var(--ink); transition: border-color .15s, background .15s;
}
.theme-card:hover { background: color-mix(in srgb, var(--soft) 60%, var(--primary-light)); }
.theme-card.active { border-color: var(--primary); background: var(--primary-light); }
.theme-swatches { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.theme-swatches .sw { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); }
.theme-card .t-name { font-weight: 700; font-size: 0.9rem; }
.theme-card .t-desc { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.35; }
.theme-note { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); font-size: 0.72rem; color: var(--ink-faint); line-height: 1.4; }

/* ===================== Noir-specific overrides ===================== */
html[data-theme="noir"] .site-header { background: color-mix(in srgb, var(--bg) 88%, transparent); border-bottom: 1px solid var(--border); }
html[data-theme="noir"] .brand-name { letter-spacing: 0.12em; text-transform: uppercase; font-size: 1.2rem; }
html[data-theme="noir"] .hero h1 { letter-spacing: 0.02em; }
html[data-theme="noir"] .card { border-color: var(--border); }
html[data-theme="noir"] .card:hover { border-color: color-mix(in srgb, var(--primary) 50%, var(--border)); }
html[data-theme="noir"] .testimonial::before { color: var(--primary-light); }
html[data-theme="noir"] .section-head .eyebrow { letter-spacing: 0.34em; }
html[data-theme="noir"] .tag { background: var(--soft); color: var(--accent); }

/* ===================== Jardin-specific overrides ===================== */
html[data-theme="jardin"] .card { border-radius: var(--radius-lg); }
html[data-theme="jardin"] .card img { border-radius: 0; }
html[data-theme="jardin"] .section-head h2 em { color: var(--accent); }

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-band .container { padding: 26px 24px; }
}
@media (max-width: 640px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 14px 20px 20px; box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav-toggle { display: block; }
  .card-grid.cols-3, .card-grid.cols-4, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 0; }
  .hero { padding: 76px 20px 66px; }
  .form-card { padding: 26px 20px; }
  .theme-panel { right: 16px; bottom: 148px; }
  .theme-btn { right: 16px; bottom: 88px; }
}

@media print {
  .site-header, .site-footer, .wa-float, .cta-band { display: none; }
}
