:root {
      --green:        #b5cca3;
      --green-light:  #d4e6c3;
      --green-dark:   #7a9e6a;
      --brown:        #7c5c3e;
      --brown-light:  #b08060;
      --brown-dark:   #4e3622;
      --cream:        #f5f0e8;
      --cream2:       #ede6d8;
      --white:        #ffffff;
      --text:         #2e2316;
      --text-muted:   #7a6a55;
      --radius:       14px;
      --radius-lg:    22px;
      --shadow:       0 8px 40px rgba(78,54,34,0.13);
      --shadow-sm:    0 4px 16px rgba(78,54,34,0.10);
      --px:           20px;
      --section-py:   64px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

    /* WAVES */
    .wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px; }
    .wave svg { display: block; width: 100%; }

    /* CURSOR — desktop pointer only */
    @media (pointer: fine) {
      body { cursor: none; }
      #cursor {
        position: fixed; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%;
        background: var(--green-dark); pointer-events: none;
        transform: translate(-50%,-50%);
        transition: transform .15s, background .2s;
        z-index: 9999; mix-blend-mode: multiply;
      }
      #cursor.grow { transform: translate(-50%,-50%) scale(2.8); background: var(--brown-light); }
    }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px var(--px);
      background: rgba(212,230,195,0.93);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(122,158,106,0.2);
      transition: background .3s;
    }
    .logo {
      font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 900;
      color: var(--brown-dark); letter-spacing: -.5px;
      display: flex; align-items: center; gap: 9px; text-decoration: none;
    }
    .logo-badge {
      width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: .85rem; font-weight: 900;
      box-shadow: 0 3px 10px rgba(122,158,106,0.4);
    }
    .burger {
      display: flex; flex-direction: column; justify-content: center;
      gap: 5px; width: 40px; height: 40px; background: none; border: none;
      cursor: pointer; padding: 5px; -webkit-tap-highlight-color: transparent;
    }
    .burger span {
      display: block; width: 22px; height: 2px; background: var(--brown-dark);
      border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center;
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile drawer */
    .nav-drawer {
      position: fixed; inset: 0; z-index: 190;
      background: rgba(212,230,195,0.98);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .nav-drawer.open { opacity: 1; pointer-events: all; }
    .nav-drawer a {
      font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700;
      color: var(--brown-dark); text-decoration: none;
      padding: 10px 28px; border-radius: 50px;
      transition: background .2s, color .2s;
    }
    .nav-drawer a:active { background: var(--brown); color: #fff; }
    .nav-drawer .drawer-cta {
      margin-top: 14px; background: var(--brown); color: #fff !important;
      font-size: 1.1rem !important; padding: 14px 36px !important;
    }
    .nav-links { display: none; }

    @media (min-width: 768px) {
      nav { padding: 15px 40px; }
      .logo { font-size: 1.8rem; }
      .logo-badge { width: 38px; height: 38px; font-size: .95rem; border-radius: 9px; }
      .burger { display: none; }
      .nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
      .nav-links a { text-decoration: none; color: var(--text-muted); font-size: .875rem; font-weight: 500; transition: color .2s; }
      .nav-links a:hover { color: var(--brown); }
      .nav-links .nav-cta { background: var(--brown); color: #fff !important; padding: 9px 20px; border-radius: 50px; }
      .nav-links .nav-cta:hover { background: var(--brown-dark) !important; }
    }
    @media (min-width: 1024px) { nav { padding: 18px 60px; } .nav-links { gap: 34px; } }

    /* ══ HERO ══ */
    #hero {
      min-height: 100svh; padding: 86px var(--px) 56px;
      position: relative; overflow: hidden;
      display: flex; flex-direction: column; justify-content: center; gap: 28px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 90% 10%, rgba(181,204,163,0.6) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 5% 85%, rgba(176,128,96,0.2) 0%, transparent 65%),
        linear-gradient(165deg, #edf7e0 0%, #ddeecb 50%, #e8dcc8 100%);
      z-index: 0;
    }
    .blob { position: absolute; border-radius: 50%; filter: blur(55px); opacity: .4; z-index: 0; }
    .blob-1 { width: 260px; height: 260px; background: var(--green); top: -50px; right: -30px; }
    .blob-2 { width: 180px; height: 180px; background: var(--brown-light); bottom: 80px; left: -40px; }

    .hero-content { position: relative; z-index: 2; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--green-light); border: 1px solid var(--green);
      color: var(--green-dark); font-size: .73rem; font-weight: 600;
      padding: 5px 13px; border-radius: 50px; margin-bottom: 16px;
      opacity: 0; animation: fadeUp .6s .1s forwards;
    }
    .hero-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--green-dark); flex-shrink: 0; }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.15rem, 8vw, 4.2rem);
      font-weight: 900; line-height: 1.08; color: var(--brown-dark);
      opacity: 0; animation: fadeUp .6s .25s forwards;
    }
    h1 em { color: var(--green-dark); font-style: normal; }
    .hero-desc {
      margin-top: 14px; font-size: .95rem; line-height: 1.75; color: var(--text-muted);
      opacity: 0; animation: fadeUp .6s .4s forwards;
    }
    .hero-actions {
      margin-top: 26px; display: flex; flex-direction: column; gap: 11px;
      opacity: 0; animation: fadeUp .6s .55s forwards;
    }
    .btn-primary {
      background: var(--brown); color: #fff; border: none;
      padding: 15px 28px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600;
      text-decoration: none; text-align: center; display: block;
      box-shadow: 0 4px 18px rgba(124,92,62,0.35);
      transition: transform .2s; -webkit-tap-highlight-color: transparent;
    }
    .btn-primary:active { transform: scale(.97); }
    .btn-outline {
      background: transparent; border: 2px solid var(--green-dark); color: var(--green-dark);
      padding: 13px 28px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600;
      text-decoration: none; text-align: center; display: block;
      transition: background .2s, color .2s; -webkit-tap-highlight-color: transparent;
    }
    .btn-outline:active { background: var(--green-dark); color: #fff; }

    .hero-img-wrap { position: relative; z-index: 2; opacity: 0; animation: fadeUp .7s .3s forwards; }
    .hero-img-frame {
      width: 100%; border-radius: var(--radius-lg); overflow: hidden;
      aspect-ratio: 16/10;
      box-shadow: var(--shadow), 0 0 0 4px rgba(181,204,163,0.4);
    }
    .hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
    .float-badge {
      position: absolute; bottom: -13px; right: 14px;
      background: var(--white); border-radius: 11px; padding: 9px 13px;
      box-shadow: var(--shadow-sm);
      display: flex; align-items: center; gap: 9px;
      animation: float 3.5s ease-in-out infinite;
    }
    .float-icon {
      width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .float-badge p { font-size: .65rem; color: var(--text-muted); }
    .float-badge strong { font-size: .78rem; color: var(--brown-dark); }

    @media (min-width: 768px) {
      #hero { flex-direction: row; align-items: center; padding: 110px 40px 60px; gap: 48px; }
      .hero-content { flex: 1; }
      .hero-img-wrap { flex: 1; }
      .hero-actions { flex-direction: row; }
      .btn-primary, .btn-outline { display: inline-block; }
      .float-badge { right: auto; left: -18px; bottom: -14px; }
      .hero-img-frame { aspect-ratio: 4/3; border-radius: 24px 54px 24px 54px; }
    }
    @media (min-width: 1024px) {
      #hero { padding: 120px 60px 60px; gap: 64px; }
      .blob-1 { width: 380px; height: 380px; right: 28%; }
    }

    /* STICKY BOTTOM CTA — mobile only */
    .cta-sticky {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
      padding: 10px var(--px) max(10px, env(safe-area-inset-bottom));
      background: rgba(212,230,195,0.96); backdrop-filter: blur(12px);
      border-top: 1px solid rgba(122,158,106,0.22);
      display: flex; gap: 10px;
      transition: transform .3s;
    }
    .cta-sticky a {
      flex: 1; text-align: center; text-decoration: none;
      padding: 13px 8px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600;
      -webkit-tap-highlight-color: transparent;
    }
    .cta-call  { background: var(--green-dark); color: #fff; }
    .cta-devis { background: var(--brown); color: #fff; }
    @media (min-width: 768px) { .cta-sticky { display: none; } }

    /* ══ STATS ══ */
    #stats {
      background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(122,158,106,0.25) 0%, transparent 70%),
        linear-gradient(135deg, #3a2610 0%, var(--brown-dark) 50%, #2e1e0a 100%);
      padding: 32px var(--px);
      display: grid; grid-template-columns: 1fr 1fr; gap: 22px 12px;
    }
    @media (min-width: 600px)  { #stats { grid-template-columns: repeat(4,1fr); padding: 40px; } }
    @media (min-width: 1024px) { #stats { padding: 50px 60px; } }
    .stat { text-align: center; color: #fff; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--green-light); }
    .stat-label { font-size: .78rem; opacity: .7; margin-top: 3px; }
    @media (min-width: 600px) { .stat-num { font-size: 2.6rem; } }

    /* ══ SECTION BASE ══ */
    section { padding: var(--section-py) var(--px); }
    @media (min-width: 768px)  { section { padding: 80px 40px; } }
    @media (min-width: 1024px) { section { padding: 100px 60px; } }

    .section-tag {
      display: inline-flex; align-items: center; gap: 7px;
      color: var(--green-dark); font-size: .73rem; font-weight: 700; letter-spacing: 1.1px;
      text-transform: uppercase; margin-bottom: 11px;
    }
    .section-tag::before { content: ''; width: 22px; height: 2px; background: var(--green-dark); }
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.65rem, 5vw, 3rem);
      font-weight: 900; color: var(--brown-dark); line-height: 1.15;
    }
    h2 em { color: var(--green-dark); font-style: normal; }

    /* ══ SERVICES ══ */
    #services {
      background:
        radial-gradient(ellipse 55% 70% at 95% 10%, rgba(122,158,106,0.28) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 5% 90%, rgba(176,128,96,0.18) 0%, transparent 60%),
        linear-gradient(170deg, #e8e0d0 0%, #d8eac4 45%, #ede3d2 100%);
    }
    .services-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 14px; }
    @media (min-width: 520px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4,1fr); margin-top: 44px; } }
    .service-card {
      background: var(--white); border-radius: var(--radius);
      padding: 24px 20px; border: 1px solid rgba(181,204,163,0.5);
      position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 4px; height: 100%; background: var(--green); transition: width .3s;
    }
    @media (hover: hover) {
      .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
      .service-card:hover::before { width: 7px; background: var(--green-dark); }
    }
    .service-icon {
      width: 46px; height: 46px; border-radius: 10px; background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem; margin-bottom: 12px;
    }
    .service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--brown-dark); margin-bottom: 7px; }
    .service-card p { font-size: .855rem; color: var(--text-muted); line-height: 1.7; }

    /* ══ MÉTHODE ══ */
    #methode {
      background:
        radial-gradient(ellipse 60% 70% at 15% 30%, rgba(181,204,163,0.35) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 85% 80%, rgba(124,92,62,0.14) 0%, transparent 60%),
        linear-gradient(145deg, #f5f0e8 0%, #e4f0d4 60%, #ede6d8 100%);
      display: flex; flex-direction: column; gap: 28px;
    }
    @media (min-width: 768px) { #methode { flex-direction: row; align-items: center; gap: 52px; } }
    @media (min-width: 1024px) { #methode { gap: 76px; } }
    .methode-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow); flex-shrink: 0; }
    @media (min-width: 768px) { .methode-img { width: 42%; aspect-ratio: 3/4; border-radius: 36px 14px 36px 14px; } }
    .methode-img img { width: 100%; height: 100%; object-fit: cover; }
    .methode-steps { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
    .step {
      display: flex; gap: 14px; align-items: flex-start; padding: 15px 16px;
      background: linear-gradient(100deg, rgba(212,230,195,0.55) 0%, rgba(237,230,216,0.8) 100%);
      border: 1px solid rgba(181,204,163,0.4); border-radius: var(--radius);
    }
    .step-num { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 900; color: var(--green); line-height: 1; min-width: 30px; }
    .step h4 { font-size: .92rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 2px; }
    .step p { font-size: .815rem; color: var(--text-muted); line-height: 1.6; }
    .no-pression {
      margin-top: 18px; display: flex; gap: 11px; align-items: flex-start;
      background: linear-gradient(90deg, var(--green-light), transparent);
      border-left: 4px solid var(--green-dark); border-radius: 0 var(--radius) var(--radius) 0;
      padding: 13px 15px; font-size: .855rem; color: var(--brown-dark); line-height: 1.55;
    }
    .no-pression span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

    /* ══ GALERIE ══ */
    #galerie {
      background:
        radial-gradient(ellipse 50% 60% at 0% 50%, rgba(176,128,96,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 20%, rgba(122,158,106,0.28) 0%, transparent 65%),
        linear-gradient(155deg, #e8dcc8 0%, #d0e6bb 55%, #e2d8c4 100%);
      overflow: hidden;
    }
    /* mobile: horizontal scroll */
    .gallery-scroll {
      margin-top: 24px; display: flex; gap: 12px;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px;
    }
    .gallery-scroll::-webkit-scrollbar { display: none; }
    .g-item { border-radius: var(--radius); overflow: hidden; position: relative; flex-shrink: 0; scroll-snap-align: start; width: 74vw; height: 210px; }
    .g-item img { width: 100%; height: 100%; object-fit: cover; }
    .g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(78,54,34,.5) 0%, transparent 55%); }
    /* tablet+: grid */
    @media (min-width: 580px) {
      .gallery-scroll { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 210px 210px; overflow-x: visible; gap: 13px; }
      .g-item { width: auto; height: auto; }
      .g-item:first-child { grid-row: 1 / 3; }
      .g-overlay { opacity: 0; transition: opacity .3s; }
      .g-item:hover .g-overlay { opacity: 1; }
    }
    @media (min-width: 1024px) { .gallery-scroll { grid-template-rows: 255px 255px; gap: 16px; } }
    /* dots */
    .gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }
    .gallery-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(122,158,106,.35); transition: background .3s; }
    .gallery-dots span.active { background: var(--green-dark); }
    @media (min-width: 580px) { .gallery-dots { display: none; } }

    /* ══ TÉMOIGNAGES ══ */
    #temoignages {
      background:
        radial-gradient(ellipse 55% 65% at 90% 15%, rgba(122,158,106,0.3) 0%, transparent 65%),
        linear-gradient(135deg, #2a1a08 0%, #4e3622 50%, #3a2810 100%);
    }
    #temoignages h2 { color: var(--green-light); }
    #temoignages h2 em { color: var(--cream); }
    #temoignages .section-tag { color: var(--green-light); }
    #temoignages .section-tag::before { background: var(--green-light); }
    .temoignages-scroll {
      margin-top: 24px; display: flex; gap: 13px;
      overflow-x: auto; -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px;
    }
    .temoignages-scroll::-webkit-scrollbar { display: none; }
    .temoignage {
      flex-shrink: 0; width: 83vw; scroll-snap-align: start;
      background: rgba(255,255,255,.06); border: 1px solid rgba(181,204,163,.2);
      border-radius: var(--radius); padding: 24px 20px;
    }
    @media (min-width: 580px) {
      .temoignages-scroll { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); overflow-x: visible; gap: 18px; }
      .temoignage { width: auto; }
    }
    .stars { color: var(--green-light); font-size: .9rem; letter-spacing: 3px; margin-bottom: 11px; }
    .temoignage p { color: rgba(255,255,255,.8); font-size: .855rem; line-height: 1.75; font-style: italic; }
    .client { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
    .client-avatar {
      width: 36px; height: 36px; border-radius: 50%; background: var(--green); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--brown-dark); font-weight: 700; font-size: .82rem;
    }
    .client-name { font-weight: 600; color: var(--cream); font-size: .855rem; }
    .client-loc { font-size: .73rem; color: rgba(255,255,255,.45); }

    /* ══ CONTACT ══ */
    #contact {
      background:
        radial-gradient(ellipse 55% 60% at 100% 0%, rgba(181,204,163,0.4) 0%, transparent 65%),
        radial-gradient(ellipse 45% 50% at 0% 100%, rgba(176,128,96,0.2) 0%, transparent 60%),
        linear-gradient(160deg, #f5f0e8 0%, #dff0ca 50%, #ede6d8 100%);
      display: flex; flex-direction: column; align-items: center; gap: 36px;
      padding-bottom: calc(var(--section-py) + 68px);
    }
    @media (min-width: 768px) { #contact { padding-bottom: 80px; } }
    @media (min-width: 1024px) { #contact { padding-bottom: 100px; } }
    .contact-header { text-align: center; max-width: 580px; width: 100%; }
    .contact-header p { color: var(--text-muted); line-height: 1.75; margin: 9px 0 0; font-size: .92rem; }
    .contact-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 32px; width: 100%; max-width: 640px; }
    .contact-item { display: flex; gap: 13px; align-items: center; }
    .ci-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
    .ci-label { font-size: .72rem; color: var(--text-muted); margin-bottom: 1px; }
    .ci-val { font-weight: 600; color: var(--brown-dark); font-size: .88rem; }

    .contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 26px 20px; box-shadow: var(--shadow); width: 100%; max-width: 580px; }
    @media (min-width: 768px) { .contact-form { padding: 38px 34px; } }
    .form-group { margin-bottom: 14px; }
    label { display: block; font-size: .75rem; font-weight: 600; color: var(--brown); margin-bottom: 5px; letter-spacing: .2px; }
    label.label-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: normal;
  letter-spacing: normal;
  color: var(--text-muted);
}

label.label-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--brown);
  cursor: pointer;
  }
input:not([type="checkbox"]), select, textarea {
  width: 100%; padding: 13px 13px;
  border: 1.5px solid var(--cream2); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: var(--text); background: var(--cream);
  transition: border .2s, box-shadow .2s; outline: none; -webkit-appearance: none;
}

input:not([type="checkbox"]):focus, select:focus, textarea:focus {
  border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(122,158,106,0.18);
}
    textarea { min-height: 95px; resize: vertical; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
    @media (max-width: 380px) { .form-row { grid-template-columns: 1fr; } }
    .btn-submit {
      width: 100%; background: var(--brown); color: #fff; border: none;
      padding: 15px; border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600;
      box-shadow: 0 4px 18px rgba(124,92,62,0.3);
      transition: background .2s, transform .2s; cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .btn-submit:active { background: var(--brown-dark); transform: scale(.98); }
    @media (hover: hover) { .btn-submit:hover { background: var(--brown-dark); transform: translateY(-2px); } }
    .form-success { display: none; text-align: center; padding: 24px; color: var(--green-dark); font-size: 1rem; font-weight: 600; }
    .form-success span { font-size: 2.2rem; display: block; margin-bottom: 9px; }

    /* ══ FOOTER ══ */
    footer {
      background: linear-gradient(180deg, #3a2610 0%, #2a1a08 100%);
      color: rgba(255,255,255,.6); text-align: center;
      padding: 28px var(--px) max(20px, env(safe-area-inset-bottom));
      font-size: .8rem;
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--cream); margin-bottom: 7px; }
    footer a { color: var(--green-light); text-decoration: none; }

    /* ══ REVEAL ══ */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s, transform .6s; }
    .reveal.visible { opacity: 1; transform: none; }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }