/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      color: #2d2a24;
      background: #faf7f2;
      overflow-x: hidden;
    }

    /* ===== CSS VARIABLES ===== */
    :root {
      --gold: #c9a84c;
      --gold-light: #e8d09a;
      --earth: #6b5c3e;
      --sage: #7a8c6e;
      --sage-light: #b5c4a6;
      --sky: #8fb8c8;
      --cream: #faf7f2;
      --cream-dark: #f0eae0;
      --stone: #d4c8b4;
      --text-dark: #2d2a24;
      --text-mid: #5a5040;
      --text-light: #8a7e6a;
      --section-pad: clamp(60px, 8vw, 120px);
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
    h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
    h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
    p { line-height: 1.75; font-size: clamp(0.92rem, 1.5vw, 1rem); }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      padding: 18px 5%;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(250, 247, 242, 0.97);
      backdrop-filter: blur(12px);
      padding: 12px 5%;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
      letter-spacing: 0.02em;
    }
    nav.scrolled .nav-logo { color: var(--earth); }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      transition: color 0.3s;
      font-weight: 400;
    }
    nav.scrolled .nav-links a { color: var(--text-mid); }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: #fff !important;
      padding: 8px 22px;
      border-radius: 30px;
      font-weight: 500 !important;
    }
    .nav-cta:hover { background: var(--earth) !important; color: #fff !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
    .hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }
    nav.scrolled .hamburger span { background: var(--earth); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: 
        linear-gradient(160deg, rgba(30,50,40,0.62) 0%, rgba(100,80,50,0.45) 50%, rgba(143,184,200,0.35) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1"><rect fill="%234a6741" width="1" height="1"/></svg>');
      background-size: cover;
      background-position: center;
    }
    /* Mountain gradient layers for nature feel */
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background: 
        radial-gradient(ellipse at 20% 80%, rgba(122,140,110,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(143,184,200,0.35) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.2) 0%, transparent 40%);
    }
    /* Animated mountain silhouette */
    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 45%;
      background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23faf7f2' fill-opacity='1' d='M0,320L60,288C120,256,240,192,360,181.3C480,171,600,213,720,224C840,235,960,213,1080,197.3C1200,181,1320,171,1380,165.3L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom/cover no-repeat;
    }

    /* Actual background image overlay using CSS gradient art */
    .hero-scene {
      position: absolute; inset: 0;
      background:
        /* Sky gradient */
        linear-gradient(180deg, 
          #87ceeb 0%, 
          #b8d9e8 25%, 
          #c8e6a0 50%,
          #8fba6e 65%,
          #6b8f52 75%,
          #4a6741 85%,
          #3d5535 100%
        );
      opacity: 0.6;
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      padding: 0 20px;
      max-width: 800px;
      animation: heroFadeIn 1.2s ease forwards;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 18px;
      font-family: 'Jost', sans-serif;
      font-weight: 400;
    }
    .hero-title {
      color: #fff;
      margin-bottom: 16px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
      font-weight: 300;
    }
    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      color: rgba(255,255,255,0.88);
      margin-bottom: 12px;
      font-style: italic;
    }
    .hero-location {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.1em;
      margin-bottom: 40px;
    }
    .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: #fff;
      padding: 14px 36px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all 0.3s;
      border: none; cursor: pointer;
      font-family: 'Jost', sans-serif;
    }
    .btn-primary:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .btn-outline {
      border: 1.5px solid rgba(255,255,255,0.6);
      color: #fff;
      padding: 14px 36px;
      border-radius: 40px;
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 400;
      transition: all 0.3s;
      font-family: 'Jost', sans-serif;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.15em;
      text-transform: uppercase; animation: bounce 2.5s infinite;
    }
    .hero-scroll::after {
      content: '';
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ===== SECTION WRAPPER ===== */
    section { padding: var(--section-pad) 5%; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-tag {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 12px;
      display: block;
    }
    .section-divider {
      width: 50px; height: 2px;
      background: linear-gradient(to right, var(--gold), var(--sage-light));
      margin: 20px 0 40px;
      border-radius: 2px;
    }
    .section-divider.centered { margin: 20px auto 40px; }

    /* ===== WHO WE ARE ===== */
    #about { background: var(--cream); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-photo {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 4px 60px 4px 60px;
      display: block;
      background: linear-gradient(135deg, var(--sage-light), var(--stone));
      /* Placeholder when no real image is loaded */
    }
    .about-photo-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 4px 60px 4px 60px;
      background: linear-gradient(135deg, #c8dbb9 0%, #b8d4c8 40%, #d4c8a0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-photo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }
    .about-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: var(--gold);
      color: #fff;
      padding: 20px 24px;
      border-radius: 50%;
      width: 110px; height: 110px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    }
    .about-badge strong { font-size: 1.6rem; font-weight: 600; display: block; }
    .about-badge span { font-size: 0.65rem; letter-spacing: 0.05em; }
    .about-text h2 { margin-bottom: 8px; color: var(--earth); }
    .about-text p { color: var(--text-mid); margin-bottom: 16px; }
    .about-names {
      display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap;
    }
    .about-person {
      flex: 1; min-width: 180px;
      padding: 20px;
      background: var(--cream-dark);
      border-radius: 12px;
      border-left: 3px solid var(--gold);
    }
    .about-person h4 { color: var(--earth); margin-bottom: 6px; font-size: 1.1rem; }
    .about-person p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

    /* ===== SERVICES ===== */
    #services {
      background: linear-gradient(170deg, #3d5535 0%, #4a6741 30%, #5a7550 60%, #6b8f52 100%);
      color: #fff;
    }
    #services .section-tag { color: var(--gold-light); }
    #services h2 { color: #fff; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 50px;
    }
    .service-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 36px 28px;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }
    .service-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      font-size: 2.4rem;
      margin-bottom: 20px;
      display: block;
    }
    .service-card h3 { color: #fff; margin-bottom: 14px; font-size: 1.5rem; }
    .service-card p { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.7; }
    .service-list {
      list-style: none; margin-top: 16px;
    }
    .service-list li {
      padding: 5px 0;
      font-size: 0.93rem;
      color: rgba(255,255,255,0.7);
      display: flex; align-items: center; gap: 8px;
    }
    .service-list li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }
    .conditions-band {
      margin-top: 50px;
      padding: 32px 36px;
      background: rgba(0,0,0,0.2);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .conditions-band h3 { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 20px; }
    .conditions-tags {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .tag {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.82);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
    }

    /* ===== TARIFS ===== */
    #tarifs { background: var(--cream-dark); }
    .tarifs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 40px;
    }
    .tarif-card {
      background: #fff;
      border-radius: 20px;
      padding: 44px 36px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
      border: 1.5px solid transparent;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .tarif-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,168,76,0.15); }
    .tarif-card.featured {
      background: linear-gradient(135deg, #3d5535 0%, #5a7550 100%);
      color: #fff;
    }
    .tarif-card.featured h3, .tarif-card.featured p { color: rgba(255,255,255,0.9); }
    .tarif-label {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 10px;
      display: block;
    }
    .tarif-card.featured .tarif-label { color: var(--gold-light); }
    .tarif-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 300;
      color: var(--earth);
      line-height: 1;
      margin: 16px 0 8px;
    }
    .tarif-card.featured .tarif-price { color: #fff; }
    .tarif-price sup { font-size: 1.5rem; vertical-align: super; }
    .tarif-price span { font-size: 1.1rem; color: var(--text-light); }
    .tarif-card.featured .tarif-price span { color: rgba(255,255,255,0.7); }
    .tarif-card h3 { color: var(--earth); margin-bottom: 12px; }
    .tarif-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }
    .tarif-note {
      margin-top: 30px;
      padding: 20px;
      background: var(--cream);
      border-radius: 10px;
      font-size: 0.82rem;
      color: var(--text-light);
      text-align: center;
    }
    .tarif-note a { color: var(--gold); text-decoration: none; }

    /* ===== AGENDA ===== */
    #agenda { background: #fff; }
    .agenda-wrapper {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 40px;
      margin-top: 40px;
    }
    .agenda-sidebar {
      background: var(--cream-dark);
      border-radius: 20px;
      padding: 30px;
    }
    .agenda-sidebar h4 {
      color: var(--earth);
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
    .time-slot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: #fff;
      border-radius: 8px;
      margin-bottom: 8px;
      font-size: 0.85rem;
      color: var(--text-mid);
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }
    .time-slot:hover, .time-slot.selected { border-color: var(--gold); background: #fffbf2; color: var(--earth); }
    .time-slot.taken { background: #f5f5f5; color: #bbb; cursor: not-allowed; }
    .time-slot .dot { width: 8px; height: 8px; border-radius: 50%; }
    .dot-free { background: var(--sage); }
    .dot-taken { background: #ddd; }
    .calendar-main { flex: 1; }
    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .cal-header h3 { color: var(--earth); font-size: 1.4rem; }
    .cal-nav {
      background: none; border: 1.5px solid var(--stone);
      border-radius: 50%; width: 36px; height: 36px;
      cursor: pointer;
      color: var(--earth);
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .cal-nav:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
      margin-bottom: 20px;
    }
    .cal-day-name {
      text-align: center;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-light);
      padding: 8px 0;
    }
    .cal-day {
      aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      font-size: 0.88rem;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--text-dark);
    }
    .cal-day:hover:not(.disabled):not(.empty) { background: var(--cream-dark); }
    .cal-day.available { color: var(--sage); font-weight: 500; }
    .cal-day.selected { background: var(--gold); color: #fff; }
    .cal-day.today { border: 1.5px solid var(--gold); color: var(--gold); font-weight: 500; }
    .cal-day.disabled { color: #ccc; cursor: not-allowed; }
    .cal-day.empty { pointer-events: none; }
    .cal-legend {
      display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px;
    }
    .legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-light); }
    .legend-dot { width: 10px; height: 10px; border-radius: 50%; }

    /* Booking Form */
    .booking-form {
      background: var(--cream-dark);
      border-radius: 16px;
      padding: 28px;
      display: none;
    }
    .booking-form.active { display: block; animation: fadeSlideIn 0.3s ease; }
    @keyframes fadeSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .booking-form h4 { color: var(--earth); margin-bottom: 20px; font-size: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 12px 16px;
      border: 1.5px solid var(--stone);
      border-radius: 10px;
      font-family: 'Jost', sans-serif;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: #fff;
      transition: border 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
    .btn-book {
      width: 100%;
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 10px;
      font-family: 'Jost', sans-serif;
      font-size: 0.88rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 8px;
    }
    .btn-book:hover { background: var(--earth); }
    .google-calendar-info {
      margin-top: 30px;
      padding: 20px 24px;
      background: linear-gradient(135deg, #e8f4f8, #f0f7ec);
      border-radius: 14px;
      border: 1px solid rgba(143,184,200,0.3);
    }
    .google-calendar-info h4 { color: var(--earth); margin-bottom: 8px; font-size: 1rem; }
    .google-calendar-info p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

    .day-toggle {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 0; border-bottom: 1px solid var(--cream-dark);
      font-size: 0.9rem;
    }
    .toggle-switch {
      width: 44px; height: 24px;
      background: #ddd;
      border-radius: 12px;
      position: relative;
      cursor: pointer;
      transition: background 0.3s;
    }
    .toggle-switch.on { background: var(--sage); }
    .toggle-switch::after {
      content: '';
      position: absolute;
      top: 3px; left: 3px;
      width: 18px; height: 18px;
      background: #fff;
      border-radius: 50%;
      transition: left 0.3s;
    }
    .toggle-switch.on::after { left: 23px; }
    .closing-dates { margin-top: 16px; }
    .closing-dates input[type="date"] {
      padding: 10px 14px;
      border: 1.5px solid var(--stone);
      border-radius: 8px;
      font-family: 'Jost', sans-serif;
      margin-right: 10px;
      outline: none;
    }
    .add-closing { background: var(--sage); color: #fff; border: none; padding: 10px 18px; border-radius: 8px; cursor: pointer; font-family: 'Jost', sans-serif; }

    /* ===== TESTIMONIALS / AVIS ===== */
    #avis {
      background: linear-gradient(160deg, #faf7f2 0%, #f0eae0 100%);
    }
    .avis-intro {
      display: flex; align-items: center; gap: 20px;
      margin-bottom: 40px;
      padding: 24px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }
    .google-logo { font-size: 2rem; }
    .avis-intro-text h4 { color: var(--earth); margin-bottom: 4px; }
    .avis-intro-text p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
    .stars-display { color: #fbbc04; font-size: 1.3rem; letter-spacing: 2px; }
    .avis-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .avis-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
      transition: all 0.3s;
      border: 1.5px solid transparent;
    }
    .avis-card:hover { border-color: var(--gold-light); transform: translateY(-4px); }
    .avis-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
    .avis-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
    }
    .avis-name { font-weight: 500; font-size: 0.9rem; color: var(--text-dark); }
    .avis-date { font-size: 0.75rem; color: var(--text-light); }
    .avis-stars { color: #fbbc04; font-size: 0.9rem; margin-bottom: 10px; }
    .avis-text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; font-style: italic; }
    .avis-more {
      text-align: center; margin-top: 36px;
    }
    .btn-google {
      display: inline-flex; align-items: center; gap: 10px;
      background: #fff;
      border: 1.5px solid var(--stone);
      color: var(--text-dark);
      padding: 12px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.3s;
    }
    .btn-google:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

    /* ===== CONTACT ===== */
    #contact {
      background: linear-gradient(170deg, #3d5535 0%, #4a6741 60%, #5a7550 100%);
      color: #fff;
    }
    #contact h2, #contact .section-tag { color: #fff; }
    #contact .section-tag { color: var(--gold-light); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    /* .contact-info { } */
    .test {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-info {
      max-width: 660px;
    }
    .contact-info h2 { margin-bottom: 12px; }
    .contact-info > p { color: rgba(255,255,255,0.8); margin-bottom: 36px; }
    .contact-item {
      display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start;
    }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.12);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .contact-item-text h4 { color: #fff; font-family: 'Jost', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-weight: 500; }
    .contact-item-text p, .contact-item-text a { color: rgba(255,255,255,0.82); font-size: 0.95rem; text-decoration: none; }
    .contact-item-text a:hover { color: var(--gold-light); }
    .contact-form-wrap {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 36px;
    }
    .contact-form-wrap h3 { color: #fff; margin-bottom: 24px; }
    .contact-form .form-group label { color: rgba(255,255,255,0.7); }
    .contact-form .form-group input,
    .contact-form .form-group textarea {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      color: #fff;
    }
    .contact-form .form-group input::placeholder,
    .contact-form .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
    .contact-form .form-group input:focus,
    .contact-form .form-group textarea:focus { border-color: var(--gold-light); background: rgba(255,255,255,0.15); }
    .map-wrap {
      margin-top: 30px;
      border-radius: 14px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,0.2);
    }
    .map-wrap iframe { display: block; }

    /* ===== FOOTER ===== */
    footer {
      background: #1e2a1e;
      color: rgba(255,255,255,0.6);
      padding: 40px 5% 30px;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.08em; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
    .footer-disclaimer {
      margin-top: 16px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
      max-width: 600px;
      margin-left: auto; margin-right: auto;
      line-height: 1.6;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      position: fixed;
      top: 0; right: -100%;
      width: min(320px, 100vw);
      height: 100vh;
      background: var(--cream);
      z-index: 999;
      padding: 80px 40px 40px;
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .mobile-menu.open { right: 0; }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .mobile-menu li { border-bottom: 1px solid var(--stone); }
    .mobile-menu a {
      display: block; padding: 18px 0;
      font-size: 1.1rem;
      color: var(--text-dark);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-overlay {
      position: fixed; inset: 0; z-index: 998;
      background: rgba(0,0,0,0.4);
      display: none;
    }
    .mobile-overlay.open { display: block; }

    /* ===== ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* Success message */
    .success-msg {
      display: none;
      text-align: center;
      padding: 30px;
      background: linear-gradient(135deg, var(--sage), #4a6741);
      color: #fff;
      border-radius: 14px;
      margin-top: 20px;
    }
    .success-msg.active { display: block; animation: fadeSlideIn 0.4s ease; }
    .success-msg h4 { color: #fff; margin-bottom: 8px; }

    .error {
      color: rgb(194, 15, 15);
      font-size: 0.82rem;
    }

    .error-msg {
      display: none;
      text-align: center;
      padding: 30px;
      background: linear-gradient(135deg, var(--sage), #674141);
      color: #fff;
      border-radius: 14px;
      margin-top: 20px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: 1fr; }
      .tarifs-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .about-image-wrap { order: -1; max-width: 380px; margin: 0 auto; }
      .avis-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .agenda-wrapper { grid-template-columns: 1fr; }
      .agenda-sidebar { order: 2; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .cal-grid { gap: 4px; }
      .cal-day { font-size: 0.8rem; }
      .tarif-price { font-size: 3rem; }
    }

    .subtext {
      font-size: 1.1em;
      color: var(--cream);
      margin-top: 15px;
      text-align: center;
    }