/* ===========================================================
   AllFlowersExpress — luxe noir/or
   =========================================================== */

:root {
  --black:      #0c0c0c;
  --ink:        #141414;
  --charcoal:   #1c1c1c;
  --gold:       #c8a24a;
  --gold-soft:  #e3c878;
  --gold-deep:  #a8842f;
  --cream:      #f6f1e7;
  --paper:      #faf7f1;
  --muted:      #8a8a8a;
  --line:       rgba(200,162,74,.22);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  margin: 0;
  font-weight: 300;
  letter-spacing: .2px;
}

/* lien par défaut on-brand : jamais de bleu Bootstrap */
a { color: var(--gold-deep); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: .9rem;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  border-radius: 0;
  padding: .85rem 2rem;
  transition: all .25s ease;
}
.btn-lg { padding: 1.05rem 2.6rem; font-size: .82rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .68rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--black);
  color: var(--gold-soft);
  border-color: var(--gold);
}
.btn-dark {
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.btn-outline-light { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--black); }

.btn-outline-dark { border: 1px solid var(--black); color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(12,12,12,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand-mark { color: var(--gold); font-size: 1.4rem; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--cream); letter-spacing: .5px;
}
.brand-name em { color: var(--gold); font-style: italic; }

.main-nav a {
  color: rgba(246,241,231,.82);
  text-decoration: none;
  font-size: .8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .15em;
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold-soft); }

/* ---------- Language switch ---------- */
.lang-switch { display: inline-flex; border: 1px solid var(--line); }
.lang-switch button,
.lang-switch a {
  background: transparent; border: 0;
  color: rgba(246,241,231,.65);
  font-size: .68rem; font-weight: 500; letter-spacing: .08em;
  padding: .35rem .55rem; cursor: pointer; transition: all .2s;
  text-decoration: none; line-height: 1.4;
}
.lang-switch button:hover,
.lang-switch a:hover { color: var(--gold-soft); }
.lang-switch button.active,
.lang-switch a.active { background: var(--gold); color: var(--black); }
.lang-switch--footer { border-color: rgba(200,162,74,.35); margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: url('img/hero-flowers.webp') center/cover no-repeat;
  background-color: var(--black);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.55) 0%, rgba(12,12,12,.72) 100%);
}
.hero-inner { position: relative; z-index: 2; color: #fff; padding: 6rem 1rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 0 0 1.4rem;
  letter-spacing: .5px;
}
.hero .lead {
  max-width: 640px;
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.4rem;
}
.hero-cta .btn { min-width: 220px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--black);
  color: var(--cream);
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
}
.trust-icon { color: var(--gold); font-size: 1.7rem; display: block; margin-bottom: .5rem; }
.trust-bar h3 { font-size: 1.15rem; color: #fff; margin: 0 0 .25rem; }
.trust-bar p { font-size: .82rem; color: var(--muted); margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff;
  border: 1px solid #ece5d8;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12,12,12,.12);
}
.product-img {
  height: 260px;
  background-size: cover; background-position: center;
  filter: saturate(1.02);
}
.product-body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.5rem; margin: 0 0 .35rem; }
.product-body p { color: var(--muted); font-size: .9rem; flex: 1; margin: 0 0 1.2rem; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--gold-deep); }
.price small { font-size: .8rem; color: var(--muted); }
.product-card--custom {
  background: linear-gradient(135deg, var(--ink), var(--charcoal));
  color: var(--cream);
  border-color: var(--gold-deep);
}
.product-card--custom h3 { color: #fff; }
.product-card--custom p { color: rgba(246,241,231,.7); }

/* ---------- Editorial (weddings / wholesale) ---------- */
.section--weddings { background: var(--cream); }
.editorial-img {
  height: 460px;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
}
.checklist { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.checklist li {
  position: relative; padding-left: 1.8rem; margin-bottom: .7rem;
  font-size: 1rem; color: var(--ink);
}
.checklist li::before {
  content: "✿"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .95rem;
}

/* ---------- Steps ---------- */
.section--steps { background: var(--black); color: var(--cream); }
.section--steps h2, .section--steps .step h3 { color: #fff; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold); font-family: var(--font-display);
  font-size: 1.7rem; margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .92rem; max-width: 260px; margin: 0 auto; }

/* ---------- Delivery ---------- */
.section--delivery { background: var(--paper); }
.section--delivery .lead { max-width: 560px; color: var(--muted); margin-bottom: 2rem; }
.flag-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem;
  margin-top: 1.5rem;
}
.flag-row span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: 1rem; font-weight: 400;
  padding: .55rem 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
}
.flag-row img {
  height: 15px; width: auto; display: block;
  border: 1px solid rgba(0,0,0,.1);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(246,241,231,.7);
  padding: 4.5rem 0 1.8rem;
  border-top: 1px solid var(--line);
}
.brand--footer .brand-name { font-size: 1.35rem; }
.footer-tag { margin-top: 1rem; font-size: .9rem; max-width: 320px; color: var(--muted); }
.site-footer h4 {
  color: var(--gold-soft); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .18em;
  font-family: var(--font-body); font-weight: 600;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a {
  color: rgba(246,241,231,.7); text-decoration: none;
  font-size: .88rem; transition: color .2s;
}
.site-footer ul a:hover { color: var(--gold-soft); }
.footer-email { color: var(--gold-soft); text-decoration: none; font-size: 1rem; }
.footer-email:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 3rem; padding-top: 1.6rem;
  text-align: center; font-size: .8rem; color: var(--muted);
}
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.1rem;
  margin-bottom: 1rem;
}
.footer-legal a { color: var(--muted); text-decoration: none; font-size: .8rem; }
.footer-legal a:hover { color: var(--gold-soft); }
.footer-legal span { color: rgba(138,138,138,.4); }

/* ---------- Legal / content pages ---------- */
.page-hero {
  background: var(--black); color: var(--cream);
  padding: 4.5rem 0 3rem; text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; }
.page-hero .eyebrow { color: var(--gold-soft); }
.legal-page { padding: 4rem 0 5rem; }
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 {
  font-size: 1.7rem; margin: 2.4rem 0 .8rem;
  padding-bottom: .4rem; border-bottom: 1px solid var(--line);
}
.legal-body h3 { font-size: 1.25rem; margin: 1.6rem 0 .5rem; }
.legal-body p, .legal-body li { font-size: .98rem; line-height: 1.7; color: #2c2c2c; }
.legal-body ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body a { color: var(--gold-deep); }
.legal-updated { font-size: .85rem; color: var(--muted); font-style: italic; margin-bottom: 2rem; }
.legal-todo {
  background: #fff7e6; border-left: 3px solid var(--gold);
  padding: .15rem .55rem; font-weight: 500; color: #8a6d1f;
  font-family: var(--font-body); font-size: .92rem;
}

/* ---------- Contact form ---------- */
.contact-wrap { max-width: 680px; margin: 0 auto; }
.contact-form { margin-top: .5rem; }
.contact-form label {
  display: block; font-family: var(--font-body); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
  color: var(--gold-deep); margin-bottom: .4rem;
}
.contact-form .field { margin-bottom: 1.4rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid #d8cfbd; background: #fff;
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  border-radius: 0; transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-alert {
  padding: 1rem 1.3rem; margin-bottom: 1.8rem;
  font-size: .95rem; border-left: 3px solid;
}
.form-alert--ok { background: #eef7ee; border-color: #3c8a3c; color: #245224; }
.form-alert--err { background: #fdeeee; border-color: #b33; color: #8a2020; }
.contact-meta { margin-top: 2.5rem; font-size: .95rem; color: var(--ink); }
.contact-meta a { color: var(--gold-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section { padding: 4rem 0; }
  .editorial-img { height: 320px; }
  .hero { min-height: 80vh; }
}
