:root {
    --sage: #8fada3;
    --sage-light: #b8cec9;
    --sage-dark: #6b8f86;
    --sage-bg: #eef4f2;
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dark: #a07830;
    --white: #ffffff;
    --cream: #faf8f4;
    --cream2: #f2ede4;
    --dark: #2c2c2c;
    --gray: #6b6b6b;
    --light-gray: #f0f0f0;
    --font-cursive: 'Great Vibes', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Raleway', sans-serif;
  }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { font-family: var(--font-sans); color: var(--dark); background: var(--white); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }

::-webkit-scrollbar-track { background: var(--cream); }

::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

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

header {
    position: sticky; top: 0; z-index: 200;
    background: #6b8f86;
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 24px rgba(60,90,84,0.35);
  }

.logo-header { display: flex; align-items: center; cursor: pointer; }

.logo-header img { height: 56px; width: auto;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6)) drop-shadow(0 2px 8px rgba(0,0,0,0.2)) brightness(1.1);
  }

nav { display: flex; gap: 36px; align-items: center; }

nav a {
    font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
    color: rgba(255,255,255,0.9); transition: color 0.3s; cursor: pointer; position: relative;
  }

nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--gold-light); transition: width 0.3s;
  }

nav a:hover { color: var(--gold-light); }

nav a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 14px; align-items: center; }

.cart-btn {
    background: none; border: 1.5px solid rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.92); padding: 8px 20px;
    font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.12em;
    text-transform: uppercase; cursor: pointer; border-radius: 30px;
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
  }

.cart-btn:hover { background: rgba(255,255,255,0.15); color: white; border-color: white; }

.cart-count {
    background: var(--gold); color: white; border-radius: 50%;
    width: 18px; height: 18px; font-size: 0.62rem;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
  }

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

/* Hero botanical layers */

/* Hero content */

/* Logo centered with decorative rings */

/* Rings perfectly centered on logo */

/* ===== ONDES SUR L'EAU ===== */

@keyframes ripple {
    0%   { transform: translate(-50%, -50%) scale(0.65); opacity: 0.7; }
    60%  { opacity: 0.25; }
    100% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; }
  }

.ornament-gem {
    width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg);
  }

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

/* Buttons */

.btn-primary {
    background: var(--gold); color: white; border: none;
    padding: 15px 38px; font-family: var(--font-sans); font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
    border-radius: 32px; transition: all 0.35s; text-decoration: none; display: inline-block;
  }

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }

.btn-secondary {
    background: transparent; color: var(--sage-dark);
    border: 1.5px solid var(--sage); padding: 15px 38px;
    font-family: var(--font-sans); font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
    border-radius: 32px; transition: all 0.35s; text-decoration: none; display: inline-block;
  }

.btn-secondary:hover { background: var(--sage); color: white; transform: translateY(-3px); }

/* ===== SAGE BANNER ===== */

/* ===== QUOTE STRIP ===== */

.quote-mark { font-family: var(--font-cursive); font-size: 3.5rem; color: var(--gold); line-height: 0.6; display: block; opacity: 0.6; }

.quote-text { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: #4a5a56; line-height: 1.9; max-width: 600px; margin: 16px auto; position: relative; z-index: 1; }

.quote-line { width: 60px; height: 1px; background: var(--gold); margin: 20px auto 0; }

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

section { padding: 90px 48px; }

.section-header { text-align: center; margin-bottom: 60px; position: relative; }

.section-eyebrow { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--sage-dark); display: block; margin-bottom: 12px; }

.section-title { font-family: var(--font-cursive); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--gold); margin-bottom: 14px; text-shadow: 0 2px 20px rgba(201,168,76,0.15); }

.section-subtitle { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; color: var(--gray); }

.section-divider {
    display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 20px;
  }

.section-divider::before, .section-divider::after {
    content: ''; width: 50px; height: 1px; background: linear-gradient(to right, transparent, var(--gold));
  }

.section-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }

.section-divider-gem { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ===== SHOP ===== */

.product-/* old footer flex removed */

/* ===== ABOUT ===== */

/* ===== CONTACT ===== */

.contact { background: url('images/fondthisa.png') center center / cover no-repeat; position: relative; overflow: hidden; }

.contact-flora { position: absolute; pointer-events: none; opacity: 0.12; }

.contact-flora.tl { top: -20px; left: -30px; width: 240px; }

.contact-flora.br { bottom: -20px; right: -30px; width: 240px; transform: scaleX(-1) rotate(180deg); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 920px; margin: 0 auto; position: relative; z-index: 1; background: rgba(250,248,244,0.88); backdrop-filter: blur(6px); border-radius: 20px; padding: 50px; }

.contact-info h3 { font-family: var(--font-cursive); font-size: 2.6rem; color: var(--gold); margin-bottom: 6px; }

.contact-info h3::after { content: none; }

.contact-info p { font-family: var(--font-serif); font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 28px; margin-top: 14px; }

.contact-items { display: flex; flex-direction: column; gap: 14px; }

.contact-item { display: flex; align-items: center; gap: 12px; }

.contact-item-icon { width: 36px; height: 36px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: white; flex-shrink: 0; }

.contact-item span { font-family: var(--font-sans); font-size: 0.88rem; color: var(--dark); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }

.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px; border: 1.5px solid var(--sage-light); border-radius: 10px;
    font-family: var(--font-serif); font-size: 1rem; color: var(--dark);
    background: white; transition: border-color 0.3s; outline: none;
  }

.form-group input:focus, .form-group textarea:focus { border-color: var(--sage); }

.form-group textarea { height: 120px; resize: vertical; }

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

/* old footer rule removed */

.footer-flora { position: absolute; pointer-events: none; opacity: 0.07; }

.footer-flora.l { bottom: 0; left: -40px; width: 320px; }

.footer-flora.r { bottom: 0; right: -40px; width: 320px; transform: scaleX(-1); }

.footer-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 24px;
    position: relative; z-index: 1;
    text-align: center;
    flex-wrap: wrap;
  }

.footer-brand-logo { height: 52px; width: auto; margin-bottom: 10px; filter: brightness(0) invert(1) opacity(0.85) drop-shadow(0 0 8px rgba(201,168,76,0.4)); display: block; margin-left: auto; margin-right: auto; }

.footer-brand p { font-family: var(--font-serif); font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 300px; margin: 0 auto; }

.footer-col h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 5px; align-items: center; }

.footer-col ul li a { font-family: var(--font-serif); font-size: 1rem; color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.3s; cursor: pointer; }

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px !important; padding-top: 22px; text-align: center; position: relative; z-index: 1; }

.footer-bottom p { font-family: var(--font-sans); font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ===== CART ===== */

.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 500;
    display: none; align-items: flex-start; justify-content: flex-end; padding: 72px 0 0;
  }

.modal-overlay.open { display: flex; }

.cart-panel {
    background: white; width: 390px; max-width: 100%;
    height: calc(100vh - 72px); overflow-y: auto; padding: 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12); display: flex; flex-direction: column;
    animation: slideIn 0.3s ease;
  }

@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }

.cart-header h2 { font-family: var(--font-cursive); font-size: 2.2rem; color: var(--gold); }

.close-btn { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray); transition: color 0.2s; }

.close-btn:hover { color: var(--dark); }

.cart-items { flex: 1; }

.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--light-gray); }

.cart-item-emoji { font-size: 1.8rem; width: 50px; height: 50px; background: var(--sage-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.cart-item-info { flex: 1; }

.cart-item-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }

.cart-item-price { font-family: var(--font-serif); font-size: 0.95rem; color: var(--gold); }

.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }

.qty-btn { width: 24px; height: 24px; border: 1px solid var(--sage-light); background: none; border-radius: 50%; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }

.qty-btn:hover { background: var(--sage); color: white; border-color: var(--sage); }

.cart-.cart-.cart-footer { border-top: 2px solid var(--sage-light); padding-top: 22px; margin-top: 22px; }

.cart-total { display: flex; justify-content: space-between; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; }

.cart-empty { text-align: center; padding: 50px 20px; font-family: var(--font-serif); font-style: italic; color: var(--gray); }

/* ===== ADMIN ===== */

.admin-toggle {
    position: fixed; bottom: 32px; right: 32px; z-index: 500;
    background: #262422; color: var(--gold); border: none;
    width: 52px; height: 52px; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    transition: all 0.3s; display: flex; align-items: center; justify-content: center;
  }

.admin-toggle:hover { background: var(--gold); color: white; transform: scale(1.1); }

.admin-panel {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 400;
    display: none; align-items: center; justify-content: center; padding: 20px;
  }

.admin-panel.open { display: flex; }

.admin-box {
    background: white; border-radius: 22px; width: 100%; max-width: 820px;
    max-height: 90vh; overflow-y: auto;
    box-shadow: 0 24px 70px rgba(0,0,0,0.2); animation: zoomIn 0.3s ease;
  }

@keyframes zoomIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }

.admin-header {
    background: #262422; padding: 26px 32px;
    display: flex; align-items: center; justify-content: space-between;
    border-radius: 22px 22px 0 0;
  }

.admin-header h2 { font-family: var(--font-cursive); font-size: 2rem; color: var(--gold); }

.admin-tabs { display: flex; border-bottom: 2px solid var(--light-gray); }

.admin-tab {
    padding: 16px 26px; font-family: var(--font-sans); font-size: 0.75rem;
    letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
    border: none; background: none; color: var(--gray);
    border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.3s;
  }

.admin-tab.active { color: var(--sage-dark); border-bottom-color: var(--sage); }

.admin-content { padding: 32px; }

.admin-section { display: none; }

.admin-section.active { display: block; }

.admin-form { display: flex; flex-direction: column; gap: 14px; background: var(--cream); border-radius: 14px; padding: 26px; margin-bottom: 28px; }

.admin-form h3 { font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dark); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.admin-input { padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 9px; font-family: var(--font-sans); font-size: 0.9rem; outline: none; transition: border-color 0.3s; }

.admin-input:focus { border-color: var(--sage); }

.admin-select { padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 9px; font-family: var(--font-sans); font-size: 0.9rem; }

.admin-textarea { padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 9px; font-family: var(--font-sans); font-size: 0.9rem; height: 80px; resize: vertical; }

.admin-items-list { display: flex; flex-direction: column; gap: 12px; }

.admin-item { background: white; border: 1px solid var(--light-gray); border-radius: 11px; padding: 16px; display: flex; align-items: center; gap: 14px; }

.admin-item-emoji { font-size: 1.4rem; width: 40px; text-align: center; }

.admin-item-info { flex: 1; }

.admin-item-info strong { display: block; font-family: var(--font-sans); font-size: 0.88rem; }

.admin-item-info span { font-family: var(--font-serif); font-size: 0.84rem; color: var(--gray); }

.admin-item-price { font-family: var(--font-serif); font-weight: 600; color: var(--gold); margin-right: 10px; }

.btn-delete { background: #fee; border: 1px solid #fcc; color: #c44; padding: 6px 12px; border-radius: 7px; font-size: 0.73rem; cursor: pointer; transition: all 0.2s; }

.btn-delete:hover { background: #fcc; }

.btn-edit { background: #eef4f2; border: 1px solid var(--sage-light); color: var(--sage-dark); padding: 6px 12px; border-radius: 7px; font-size: 0.73rem; cursor: pointer; margin-right: 6px; transition: all 0.2s; }

.btn-edit:hover { background: var(--sage-light); }

.btn-save { background: var(--sage); color: white; border: none; padding: 11px 26px; border-radius: 9px; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }

.btn-save:hover { background: var(--sage-dark); }

.btn-gold { background: var(--gold); color: white; border: none; padding: 11px 26px; border-radius: 9px; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }

.btn-gold:hover { background: var(--gold-dark); }

.password-screen { text-align: center; padding: 44px; }

.password-screen h3 { font-family: var(--font-cursive); font-size: 2.2rem; color: var(--gold); margin-bottom: 18px; }

.password-screen p { font-family: var(--font-serif); color: var(--gray); margin-bottom: 22px; }

.text-area-settings { width: 100%; padding: 10px 14px; border: 1.5px solid #ddd; border-radius: 9px; font-family: var(--font-sans); font-size: 0.9rem; height: 100px; resize: vertical; }

/* ===== NOTIFICATION ===== */

.notification {
    position: fixed; bottom: 96px; right: 32px; z-index: 600;
    background: #262422; color: white; padding: 14px 26px;
    border-radius: 12px; font-family: var(--font-sans); font-size: 0.84rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2); display: none;
    border-left: 3px solid var(--gold); animation: slideNotif 0.3s ease;
  }

.notification.show { display: block; }

@keyframes slideNotif { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ===== PAGES ===== */

.page { display: none; }

.page.active { display: block; }

/* ===== REVEAL ===== */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }

.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* White boutique button for green bg */

.btn-boutique-white {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.7); padding: 15px 38px;
    font-family: var(--font-sans); font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
    border-radius: 32px; transition: all 0.35s;
  }

.btn-boutique-white:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-2px); }

/* Shop section SVG flora opacity on green */

/* ===== 3 POINTS FORTS ===== */

@keyframes strengthAppear {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
  }

/* Force strength cards always visible */

/* ===== BRANCHES BLANCHES SUR FOND VERT ===== */

/* Header */

/* Sage banner */

/* Shop featured (vert) */

/* Footer */

footer .wb-tl {
    top: 16px; left: -30px; transform: rotate(6deg);
    width: 500px; height: 120px;
    background-position: left center;
    opacity: 0.25;
  }

footer .wb-br {
    bottom: 16px; right: -30px; transform: rotate(-174deg) scaleX(-1);
    width: 500px; height: 120px;
    background-position: left center;
    opacity: 0.25;
  }

footer .wb-tr {
    top: 16px; right: -30px; transform: rotate(-6deg) scaleX(-1);
    width: 360px; height: 90px;
    background-position: left center;
    opacity: 0.14;
  }

footer .wb-bl {
    bottom: 16px; left: -30px; transform: rotate(174deg);
    width: 360px; height: 90px;
    background-position: left center;
    opacity: 0.14;
  }

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

.footer-logo-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 120px; height: 120px;
    margin: 0 auto 12px;
  }

.footer-brand-logo {
    position: relative; z-index: 2;
  }

.footer-ripple {
    position: absolute; top: 50%; left: 50%;
    border-radius: 50%;
    border: 1.5px solid;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    animation: footerRipple 4s ease-out infinite;
    pointer-events: none;
  }

.footer-ripple-1 {
    width: 80px; height: 80px;
    border-color: rgba(255,255,255,0.6);
    animation-delay: 0s;
  }

.footer-ripple-2 {
    width: 80px; height: 80px;
    border-color: rgba(201,168,76,0.65);
    animation-delay: 1.3s;
  }

.footer-ripple-3 {
    width: 80px; height: 80px;
    border-color: rgba(255,255,255,0.35);
    animation-delay: 2.6s;
  }

@keyframes footerRipple {
    0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    60%  { opacity: 0.25; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
  }

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

/* footer rule moved */

.footer-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 16px;
    position: relative; z-index: 1;
    padding: 0 20px;
  }

.footer-col-brand {
    flex: 1.4;
    text-align: center;
    padding: 0 40px;
  }

.footer-col-nav,

.footer-col-contact {
    flex: 1;
    text-align: center;
    padding: 0 30px;
  }

.footer-sep {
    width: 1px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
  }

.footer-brand-logo {
    height: 48px; width: auto;
    display: block; margin: 0 auto 8px;
    filter: brightness(0) invert(1) opacity(0.88) drop-shadow(0 0 8px rgba(201,168,76,0.5));
    position: relative; z-index: 2;
  }

.footer-col-brand p {
    font-family: var(--font-serif); font-size: 0.88rem;
    color: rgba(255,255,255,0.8); line-height: 1.5;
    margin: 0 auto;
  }

.footer-col-nav h4,

.footer-col-contact h4 {
    font-family: var(--font-sans); font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 8px;
  }

.footer-col-nav ul,

.footer-col-contact ul {
    list-style: none; display: flex;
    flex-direction: column; gap: 4px; align-items: center;
  }

.footer-col-nav ul li a,

.footer-col-contact ul li span {
    font-family: var(--font-serif); font-size: 0.9rem;
    color: rgba(255,255,255,0.82); text-decoration: none;
    transition: color 0.3s; cursor: pointer;
  }

.footer-col-nav ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 10px; text-align: center;
    position: relative; z-index: 1;
  }

.footer-bottom p {
    font-family: var(--font-sans); font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
  }

/* Logo wrap ondes */

.footer-logo-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 76px; height: 76px;
    margin: 0 auto 8px;
  }

@media (max-width: 768px) {
    .footer-inner { flex-direction: column; gap: 30px; }
    .footer-sep { width: 80px; height: 1px; }
  }

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

footer {
    background: url('images/fondthisa.png') center center / cover no-repeat;
    background-color: var(--sage-dark);
    background-size: cover;
    color: white !important;
    padding: 36px 48px 18px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(201,168,76,0.4);
  }

footer * { color: white; }

footer a, footer span, footer p, footer h4, footer li { color: white !important; }

footer .footer-col-nav h4, footer .footer-col-contact h4 { color: var(--gold-light) !important; }

footer .footer-col-nav ul li a:hover { color: var(--gold-light) !important; }

footer .footer-bottom p { color: rgba(255,255,255,0.55) !important; }

.footer-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 14px;
    position: relative; z-index: 1;
  }

.footer-col-brand {
    flex: 1.3;
    text-align: center;
    padding: 0 32px;
  }

.footer-col-nav,

.footer-col-contact {
    flex: 1;
    text-align: center;
    padding: 0 24px;
  }

.footer-sep {
    width: 1px;
    height: 90px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
    align-self: center;
  }

.footer-logo-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 70px; height: 70px;
    margin: 0 auto 8px;
  }

.footer-brand-logo {
    height: 46px; width: auto;
    display: block; margin: 0 auto;
    filter: brightness(0) invert(1) opacity(0.9) drop-shadow(0 0 6px rgba(201,168,76,0.5));
    position: relative; z-index: 2;
  }

.footer-col-brand p {
    font-family: var(--font-serif); font-size: 0.85rem;
    color: rgba(255,255,255,0.82); line-height: 1.55;
    margin: 0 auto;
  }

.footer-col-nav h4,

.footer-col-contact h4 {
    font-family: var(--font-sans); font-size: 0.65rem;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 8px;
  }

.footer-col-nav ul,

.footer-col-contact ul {
    list-style: none; display: flex;
    flex-direction: column; gap: 4px; align-items: center;
    padding: 0; margin: 0;
  }

.footer-col-nav ul li a,

.footer-col-contact ul li span {
    font-family: var(--font-serif); font-size: 0.88rem;
    color: rgba(255,255,255,0.82); text-decoration: none;
    transition: color 0.3s; cursor: pointer; display: block;
  }

.footer-col-nav ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 10px; text-align: center;
    position: relative; z-index: 1;
  }

.footer-bottom p {
    font-family: var(--font-sans); font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
  }

/* Ondes ripple footer */

.footer-ripple {
    position: absolute; top: 50%; left: 50%;
    border-radius: 50%; border: 1.5px solid;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    animation: footerRipple 4s ease-out infinite;
    pointer-events: none;
  }

.footer-ripple-1 { width: 74px; height: 74px; border-color: rgba(255,255,255,0.65); animation-delay: 0s; }

.footer-ripple-2 { width: 74px; height: 74px; border-color: rgba(201,168,76,0.7); animation-delay: 1.3s; }

.footer-ripple-3 { width: 74px; height: 74px; border-color: rgba(255,255,255,0.4); animation-delay: 2.6s; }

@keyframes footerRipple {
    0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    60%  { opacity: 0.25; }
    100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
  }

@media (max-width: 768px) {
    .footer-inner { flex-direction: column; gap: 20px; }
    .footer-sep { width: 60px; height: 1px; }
  }

/* ===== PAGE À PROPOS — CARTES ===== */

/* ===== PAGE CONTACT ===== */

/* Colonne infos */

.contact-info-title {
    font-family:var(--font-cursive); font-size:2.6rem; color:var(--gold);
    margin-bottom:16px; position:relative; display:inline-block;
  }

.contact-info-title::after {
    content:''; position:absolute; bottom:-6px; left:0; width:60%;
    height:2px; background:linear-gradient(to right, var(--gold), transparent);
  }

.contact-info-intro {
    font-family:var(--font-serif); font-size:1rem; color:var(--gray);
    line-height:1.8; margin-top:18px; margin-bottom:28px;
  }

/* Formulaire */

/* ===== PAGE ABOUT — BACKGROUNDS ===== */

/* ===== SECTION CATÉGORIES CRÉATIONS ===== */

/* ===== SECTION CLÉ EN MAIN ===== */
nav a.nav-active { color: var(--gold-light) !important; }
nav a.nav-active::after { width: 100% !important; }

  /* ===== TITRES DE PAGES PARTAGÉS ===== */
  .page-eyebrow {
    font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.45em;
    text-transform: uppercase; color: var(--sage-dark); display: block; margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(255,255,255,0.8);
  }
  .page-title-cursive {
    font-family: var(--font-cursive); font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--gold); line-height: 1; margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(201,168,76,0.3);
  }
  .page-title-divider {
    display: flex; align-items: center; gap: 14px; justify-content: center;
  }
  .page-title-divider::before, .page-title-divider::after {
    content: ''; flex: 1; max-width: 55px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }
  .page-title-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
  .page-title-gem { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
