    :root {
      --cream: #f5f0e8;
      --warm-white: #faf8f4;
      --sand: #e8dcc8;
      --taupe: #c4b49a;
      --brown: #8b6f47;
      --dark: #1e2a3a;
      --accent: #c97c4a;
      --soft-pink: #f0e6df;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--warm-white);
      color: var(--dark);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 48px;
      background: #3a2d20;
      backdrop-filter: none;
      border-bottom: none;
      transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 80px;
      width: auto;
      display: block;
      background: #fff;
      border-radius: 50%;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: .88rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      color: rgba(245, 240, 232, 0.85);
      opacity: 1;
      transition: color .2s;
    }

    .nav-links a:hover {
      opacity: 1;
      color: #c97c4a;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

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

    .nav-social a {
      color: rgba(245, 240, 232, 0.75);
      text-decoration: none;
      font-size: 1.05rem;
      transition: color .2s, transform .2s;
      display: flex;
      align-items: center;
    }

    .nav-social a:hover {
      color: #c97c4a;
      transform: scale(1.15);
    }

    .btn-book {
      background: #c97c4a;
      color: #fff;
      padding: 10px 24px;
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      border: 2px solid #c97c4a;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s;
      font-family: 'Jost', sans-serif;
      white-space: nowrap;
      border-radius: 40px;
      font-weight: 500;
      animation: blink-white 2s ease-in-out infinite;
    }

    @keyframes blink-white {

      0%,
      100% {
        background: #c97c4a;
        color: #fff;
      }

      50% {
        background: #fff;
        color: #c97c4a;
      }
    }

    .btn-book:hover {
      background: #fff;
      color: #c97c4a;
      border-color: #c97c4a;
    }

    /* BURGER */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
      z-index: 200;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: all .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 MENU */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--warm-white);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--dark);
      text-decoration: none;
      letter-spacing: .06em;
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--accent);
    }

    .mobile-menu .mobile-phone {
      font-size: .85rem;
      letter-spacing: .15em;
      color: var(--accent);
      margin-top: 12px;
    }

    .mobile-menu .btn-book {
      margin-top: 8px;
      font-size: .8rem;
      padding: 14px 36px;
    }

    .mobile-lang {
      display: flex;
      gap: 10px;
      margin-top: 8px;
    }

    .mobile-lang button {
      background: none;
      border: 1px solid rgba(30, 42, 58, 0.2);
      border-radius: 40px;
      padding: 7px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all .2s;
    }

    .mobile-lang button:hover,
    .mobile-lang button.active {
      background: #c97c4a;
      color: #fff;
      border-color: #c97c4a;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(135deg, rgba(30,42,58,0.15), rgba(201,124,74,0.25)), url('https://babyccino-front-app.s3.eu-west-3.amazonaws.com/image/hero-bg.jpg');
      background-size: cover;
      background-position: center;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(30, 42, 58, 0.60);
    }

    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.10);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      text-align: center;
      color: var(--cream);
      padding: 0 20px;
      animation: fadeUp .9s ease both;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: clamp(1rem, 2.2vw, 1.4rem);
      font-weight: 300;
      font-style: normal;
      color: rgba(245, 240, 232, 0.9);
      letter-spacing: .35em;
      text-transform: uppercase;
    }

    .hero-logo {
      width: min(580px, 88vw);
      height: auto;
      filter: none;
      opacity: 1;
    }

    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-style: italic;
      color: rgba(245, 240, 232, 0.55);
      letter-spacing: .18em;
    }

    .hero-cta {
      display: inline-block;
      background: #c97c4a;
      border: 2px solid #c97c4a;
      color: #fff;
      padding: 16px 48px;
      font-size: .8rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .3s;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      margin-top: 8px;
      border-radius: 40px;
    }

    .hero-cta:hover {
      background: transparent;
      color: #c97c4a;
      border-color: #c97c4a;
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: bounce 2s infinite;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--accent), transparent);
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(6px);
      }
    }

    /* SECTION COMMONS */
    section {
      padding: 70px 48px;
    }

    .section-label {
      font-size: .65rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
      font-weight: 500;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .section-body {
      font-size: .95rem;
      line-height: 1.8;
      color: #5a6a7a;
      max-width: 540px;
    }

    .btn-outline {
      display: inline-block;
      background: #c97c4a;
      border: 1px solid #c97c4a;
      color: #fff;
      padding: 11px 28px;
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .25s;
      font-family: 'Jost', sans-serif;
      margin-top: 28px;
      align-self: flex-start;
      border-radius: 40px;
      font-weight: 500;
    }

    .btn-outline:hover {
      background: #fff;
      color: #c97c4a;
      border-color: #c97c4a;
    }

    .divider {
      width: 60px;
      height: 1px;
      background: var(--accent);
      margin: 0 auto 16px;
    }

    /* WHAT'S HAPPENING */
    .happening {
      background: var(--warm-white);
      text-align: center;
    }

    .happening .section-title,
    .happening .section-body {
      margin-left: auto;
      margin-right: auto;
    }

    /* CARDS CAROUSEL */
    .cards-carousel-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      max-width: 640px;
      margin: 56px auto 0;
      padding: 0 16px;
    }

    .cards-viewport {
      overflow: hidden;
      flex: 1;
    }

    .cards-track {
      display: flex;
      gap: 32px;
      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    }

    .cards-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }

    .cards-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--taupe);
      cursor: pointer;
      transition: background .2s, transform .2s;
      display: block;
    }

    .cards-dots span.active {
      background: #c97c4a;
      transform: scale(1.3);
    }

    .cards-nav {
      background: #fff;
      border: 2px solid #c97c4a;
      color: #c97c4a;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      flex-shrink: 0;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cards-nav:hover {
      background: #c97c4a;
      color: #fff;
    }

    .card {
      background: var(--sand);
      border-radius: 160px 160px 32px 32px;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 36px;
      flex: 0 0 calc(50% - 16px);
      min-width: 0;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 56px rgba(30, 42, 58, 0.12);
    }

    .card-img-wrap {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      overflow: hidden;
      margin: 36px auto 24px;
      border: 4px solid var(--warm-white);
      box-shadow: 0 4px 20px rgba(30, 42, 58, 0.1);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .card-body {
      padding: 0 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .card-tag {
      font-size: .6rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 8px;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      margin-bottom: 12px;
      color: var(--dark);
    }

    .card-text {
      font-size: .85rem;
      line-height: 1.75;
      color: #5a6a7a;
      margin-bottom: 24px;
    }

    .card-link {
      display: inline-block;
      background: #c97c4a;
      color: #fff;
      font-size: .65rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 28px;
      border-radius: 40px;
      transition: all .25s;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      border: 2px solid #c97c4a;
    }

    .card-link:hover {
      background: #fff;
      color: #c97c4a;
    }

    /* OUR ZONES */
    .zones {
      background: var(--warm-white);
      padding: 100px 0;
    }

    .zones-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .zones-header {
      text-align: center;
      padding: 0 48px;
      margin-bottom: 80px;
    }

    .zones-header .section-body {
      margin: 0 auto;
      text-align: center;
    }

    .zone-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      margin-bottom: 2px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .zone-row.reverse {
      direction: rtl;
    }

    .zone-row.reverse>* {
      direction: ltr;
    }

    .zone-img {
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #faf8f4;
      overflow: hidden;
    }

    .zone-img-inner-1 {
      width: 380px;
      height: 380px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      border-radius: 70% 30% 40% 60% / 35% 60% 45% 65%;
      overflow: hidden;
    }

        .zone-img-inner-2 {
      width: 400px;
      height: 400px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      border-radius: 35% 65% 60% 40% / 55% 40% 65% 35%;
      overflow: hidden;
    }

    .zone-content {
      padding: 60px;
      background: #faf8f4;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .zone-content .section-title {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    /* BOOK WITH US */
    .book {
      background: #5c4535;
      text-align: center;
      color: var(--cream);
    }

    .book .section-label {
      color: var(--taupe);
    }

    .book .section-title {
      color: var(--cream);
      margin-left: auto;
      margin-right: auto;
    }

    .book .section-body {
      color: rgba(245, 240, 232, 0.6);
      margin: 0 auto;
      text-align: center;
    }

    .book-options {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 56px;
    }

    .book-option {
      background: var(--sand);
      border-radius: 160px 160px 32px 32px;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 36px;
      width: 260px;
      flex-shrink: 0;
      cursor: pointer;
      color: var(--dark);
    }

    .book-option:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
    }

    .book-option-icon {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e8dcc8, #d4b896);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      margin: 36px auto 24px;
      border: 4px solid var(--warm-white);
      box-shadow: 0 4px 20px rgba(30, 42, 58, 0.1);
      flex-shrink: 0;
    }

    .book-option-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 10px;
      padding: 0 20px;
    }

    .book-option-text {
      font-size: .85rem;
      color: #5a6a7a;
      line-height: 1.75;
      margin-bottom: 24px;
      padding: 0 20px;
    }

    .btn-cream {
      display: inline-block;
      background: #c97c4a;
      color: #fff;
      font-size: .65rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 28px;
      border-radius: 40px;
      transition: all .25s;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
      border: 2px solid #c97c4a;
    }

    .btn-cream:hover {
      background: #fff;
      color: #c97c4a;
    }

    /* CAFE */
    .cafe {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
      padding: 0;
      max-width: 1000px;
      margin: 0 auto;
    }

    .cafe-content {
      padding: 40px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--warm-white);
    }

    .cafe-img {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--warm-white);
      min-height: 520px;
      overflow: hidden;
      position: relative;
    }

    .cafe-carousel {
      width: 380px;
      height: 380px;
      flex-shrink: 0;
      clip-path: polygon(8% 0%, 92% 2%, 100% 12%, 98% 88%, 90% 100%, 10% 98%, 0% 88%, 2% 10%);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      overflow: hidden;
      position: relative;
    }

    .cafe-carousel-track {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    }

    .cafe-carousel-slide {
      width: 33.333%;
      height: 100%;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    /* NEWSLETTER */
    .newsletter {
      background: var(--cream);
      text-align: center;
      padding: 80px 48px;
    }

    .newsletter .section-title {
      margin: 0 auto 8px;
    }

    .newsletter .section-body {
      margin: 0 auto 36px;
      text-align: center;
    }

    .newsletter-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      border: 2px solid var(--taupe);
      border-right: none;
      padding: 14px 20px;
      font-family: 'Jost', sans-serif;
      font-size: .85rem;
      background: var(--warm-white);
      color: var(--dark);
      outline: none;
      border-radius: 40px 0 0 40px;
    }

    .newsletter-form input::placeholder {
      color: var(--taupe);
    }

    .newsletter-form button {
      background: #c97c4a;
      color: #fff;
      border: 2px solid #c97c4a;
      padding: 14px 28px;
      font-family: 'Jost', sans-serif;
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      white-space: nowrap;
      border-radius: 0 40px 40px 0;
      font-weight: 500;
    }

    .newsletter-form button:hover {
      background: #fff;
      color: #c97c4a;
      border-color: #c97c4a;
    }

    /* CONTACT */
    .contact {
      background: #5c4535;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      padding: 80px 80px;
      color: var(--cream);
    }

    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 32px;
      color: var(--cream);
    }

    .contact-detail {
      margin-bottom: 20px;
    }

    .contact-detail-label {
      font-size: .62rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 4px;
    }

    .contact-detail-val {
      font-size: .9rem;
      color: var(--cream);
      opacity: .8;
      line-height: 1.6;
    }

    .map-placeholder {
      height: 220px;
      margin-bottom: 24px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .map-grid {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #e8dcc8 25%, transparent 25%), linear-gradient(225deg, #e8dcc8 25%, transparent 25%), linear-gradient(45deg, #e8dcc8 25%, transparent 25%), linear-gradient(315deg, #e8dcc8 25%, #f5f0e8 25%);
      background-position: 20px 0, 20px 0, 0 0, 0 0;
      background-size: 40px 40px;
      background-repeat: repeat;
      opacity: 0.4;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: rgba(245, 240, 232, 0.06);
      border: 1px solid rgba(196, 180, 154, 0.2);
      padding: 13px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .85rem;
      color: var(--cream);
      outline: none;
      margin-bottom: 14px;
      transition: border-color .2s;
      resize: vertical;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(196, 180, 154, 0.45);
    }

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

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

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

    .contact-checks {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
      align-items: center;
    }

    .contact-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .8rem;
      color: rgba(245, 240, 232, 0.55);
      cursor: pointer;
      white-space: nowrap;
    }

    .contact-check input[type="checkbox"] {
      accent-color: var(--accent);
    }

    .btn-submit {
      background: var(--accent);
      color: var(--cream);
      border: 2px solid var(--accent);
      padding: 13px 36px;
      font-family: 'Jost', sans-serif;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
      border-radius: 40px;
      font-weight: 500;
    }

    .btn-submit:hover {
      background: #fff;
      color: var(--accent);
    }

    /* FOOTER */
    footer {
      background: #3a2d20;
      padding: 48px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo img {
      height: 64px;
      width: auto;
      background: #fff;
      border-radius: 50%;
      display: block;
    }

    .footer-nav {
      display: flex;
      gap: 28px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-nav a {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(245, 240, 232, 0.4);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-nav a:hover {
      color: var(--cream);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(196, 180, 154, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--taupe);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 600;
      transition: all .2s;
    }

    .footer-social a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .footer-copy {
      width: 100%;
      text-align: center;
      font-size: .65rem;
      letter-spacing: .15em;
      color: rgba(245, 240, 232, 0.2);
      margin-top: 16px;
      padding-top: 24px;
      border-top: 1px solid rgba(196, 180, 154, 0.1);
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }

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

    /* BIRTHDAY / ANNIVERSAIRE ROW */
    .birthday-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      max-width: 1000px;
      margin: 0 auto;
    }

    .birthday-row.reverse {
      direction: rtl;
    }

    .birthday-row.reverse>* {
      direction: ltr;
    }

    .birthday-img {
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #faf8f4;
      overflow: hidden;
    }

    .birthday-img-inner {
      width: 340px;
      height: 340px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      clip-path: polygon(8% 0%, 92% 2%, 100% 12%, 98% 88%, 90% 100%, 10% 98%, 0% 88%, 2% 10%);
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      overflow: hidden;
    }

    .birthday-content {
      padding: 60px;
      background: #faf8f4;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .birthday-content .section-title {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    @media (max-width: 768px) {
      .birthday-row,
      .birthday-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .birthday-img {
        min-height: 240px;
      }

      .birthday-img-inner {
        width: 220px;
        height: 220px;
      }

      .birthday-content {
        padding: 36px 20px;
      }

      .birthday-content .section-title {
        font-size: 1.6rem;
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav {
        padding: 12px 20px;
      }

      .nav-links {
        display: none;
      }

      .nav-right .btn-book {
        display: none;
      }

      .burger {
        display: flex;
      }

      section {
        padding: 64px 20px;
      }

      .cards-carousel-wrap {
        gap: 8px;
        padding: 0 8px;
      }

      .cards-nav {
        width: 36px;
        height: 36px;
        font-size: .9rem;
      }

      .card {
        flex: 0 0 75%;
      }

      .zones {
        padding: 64px 0;
      }

      .zones-header {
        padding: 0 20px;
        margin-bottom: 48px;
      }

      .zone-row,
      .zone-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .zone-img {
        min-height: 240px;
      }

      .zone-img-inner {
        width: 220px;
        height: 220px;
      }

      .zone-content {
        padding: 36px 20px;
      }

      .zone-content .section-title {
        font-size: 1.6rem;
      }

      .book-options {
        flex-direction: column;
        align-items: center;
      }

      .book-option {
        width: 100%;
        max-width: 300px;
      }

      .cafe {
        grid-template-columns: 1fr;
      }

      .cafe-content {
        padding: 48px 20px;
      }

      .cafe-img {
        min-height: 240px;
      }

      .newsletter {
        padding: 60px 20px;
      }

      .newsletter-form {
        flex-direction: column;
        gap: 10px;
      }

      .newsletter-form input {
        border-right: 2px solid var(--taupe);
        border-radius: 40px;
      }

      .newsletter-form button {
        border-radius: 40px;
        padding: 14px 28px;
      }

      .contact {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
      }

      .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .contact-checks {
        align-items: center;
        width: 100%;
      }

      .contact-check {
        white-space: normal;
        text-align: center;
        justify-content: center;
        max-width: 260px;
      }

      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
      }

      .footer-nav {
        justify-content: center;
        gap: 16px;
      }

      .hero-eyebrow {
        font-family: 'Jost', sans-serif;
        font-size: clamp(1rem, 2.2vw, 1.4rem);
        font-weight: 300;
        font-style: normal;
        color: rgba(245, 240, 232, 0.9);
        letter-spacing: .35em;
        text-transform: uppercase;
      }

      .hero-logo {
        width: min(380px, 88vw);
      }
    }

    @media (min-width: 769px) {
      .mobile-menu {
        display: flex !important;
      }
    }

    /* LANG SWITCHER */
    .lang-switcher {
      position: relative;
    }

    .lang-current {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: var(--cream);
      padding: 6px 12px;
      border-radius: 40px;
      cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: all .2s;
      white-space: nowrap;
    }

    .lang-current:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .lang-flag {
      font-size: 1rem;
    }

    .lang-caret {
      font-size: .6rem;
      opacity: .7;
      transition: transform .2s;
    }

    .lang-switcher.open .lang-caret {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #3a2d20;
      border: 1px solid rgba(196, 180, 154, 0.2);
      border-radius: 12px;
      overflow: hidden;
      list-style: none;
      padding: 6px 0;
      min-width: 140px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
      z-index: 9999;
    }

    .lang-switcher.open .lang-dropdown {
      display: block;
    }

    .lang-dropdown li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      font-family: 'Jost', sans-serif;
      font-size: .8rem;
      color: var(--cream);
      cursor: pointer;
      transition: background .15s;
      letter-spacing: .05em;
    }

    .lang-dropdown li:hover {
      background: rgba(201, 124, 74, 0.2);
    }

    .lang-dropdown li.active {
      color: #c97c4a;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .lang-switcher {
        display: none;
      }
    }


    /* ── PAGE-SPECIFIC ── */
    .page-hero {
      background: #5c4535;
      padding: 160px 40px 80px;
      text-align: center;
      color: var(--cream);
    }

    .page-hero .section-label {
      color: #c97c4a;
      margin-bottom: 12px;
    }

    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 400;
      margin: 0 0 20px;
      color: var(--cream);
    }

    .page-hero p {
      font-size: 1rem;
      color: rgba(245, 240, 232, 0.7);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .page-section {
      padding: 80px 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .page-section p {
      font-size: .95rem;
      color: #5a5a5a;
      line-height: 1.9;
      max-width: 680px;
    }

    .formules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      margin-top: 48px;
    }

    .formule-card {
      background: var(--sand);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      transition: transform .3s, box-shadow .3s;
    }

    .formule-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(30, 42, 58, 0.1);
    }

    .formule-icon {
      font-size: 2.4rem;
    }

    .formule-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--dark);
      margin: 0;
    }

    .formule-card p {
      font-size: .85rem;
      color: #6a6a6a;
      line-height: 1.7;
      margin: 0;
    }

    .formule-prix {
      font-family: 'Jost', sans-serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: #c97c4a;
      margin-top: 4px;
    }

    .formule-prix span {
      font-size: .75rem;
      font-weight: 400;
      color: #9a9a9a;
      display: block;
      margin-top: 2px;
    }

    .inclus-section {
      background: var(--warm-white);
      padding: 80px 40px;
    }

    .inclus-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .inclus-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 40px;
      text-align: center;
    }

    .inclus-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }

    .inclus-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: .9rem;
      color: var(--dark);
      line-height: 1.7;
    }

    .inclus-item .check {
      color: #c97c4a;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .cta-band {
      background: #3a2d20;
      padding: 32px 40px;
      text-align: center;
      color: var(--cream);
    }

    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 400;
      margin-bottom: 22px;
    }

    .cta-band p {
      color: rgba(245, 240, 232, 0.65);
      font-size: .95rem;
      margin-bottom: 32px;
    }

    @media (max-width: 768px) {
      .page-hero {
        padding: 140px 20px 60px;
      }

      .page-section {
        padding: 60px 20px;
      }

      .inclus-section {
        padding: 60px 20px;
      }

      .cta-band {
        padding: 20px 20px;
      }
    }

    /* ── iPad Pro 11" (portrait 834px → paysage 1194px) ── */
    @media (min-width: 769px) and (max-width: 1194px) {

      /* Cartes carousel "Ce qui se passe" — pas encore assez large pour tout afficher côte à côte */
      .cards-track .card {
        flex: 0 0 45% !important;
        width: 45% !important;
        max-width: 45% !important;
      }

      /* Image zone (blob asymétrique) — réduite par rapport au desktop */
      .zone-img-inner-1,
      .zone-img-inner-2 {
        width: 320px;
        height: 320px;
      }

      .zone-img {
        min-height: 340px;
      }

      /* Image anniversaire */
      .birthday-img-inner {
        width: 320px;
        height: 320px;
        margin: 0 auto;
        transform: none;
      }

      .birthday-img {
        min-height: 340px;
      }

      /* Carousel café */
      .cafe-carousel {
        width: 280px;
        height: 280px;
      }

      /* Sections : padding intermédiaire entre mobile et desktop */
      section {
        padding: 72px 40px;
      }

      .zones-header,
      .zone-content,
      .birthday-content,
      .cafe-content {
        padding: 40px;
      }

      /* Nav : garder le menu desktop mais resserré */
      .nav {
        padding: 16px 32px;
      }

      .nav-links {
        display: none;
        gap: 20px;
      }

      .nav-right .btn-book {
        display: none;
      }

      .burger {
        display: flex;
      }

      .book-options {
        display: none;
      }

      .book-carousel-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 420px;
        margin: 40px auto 0;
        padding: 0 8px;
      }

      .book-viewport {
        overflow: hidden;
        flex: 1;
      }

      .book-track {
        display: flex;
        gap: 16px;
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
      }

      .book-track .book-option {
        flex: 0 0 100%;
        min-width: 0;
      }

      /* Contact form réduit */
      .contact-form-row {
        max-width: 480px;
      }

      .contact-form-row input,
      .contact-form-row textarea {
        padding: 12px 16px;
      }

      /* Footer centré comme mobile */
      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
      }

      .footer-nav {
        justify-content: center;
        gap: 16px;
      }

      /* ── Flèches nav : nouveau style cohérent avec le design ── */
      .book-carousel-wrap .cards-nav,
      .cards-carousel-wrap .cards-nav {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--warm-white);
        border: 2px solid #c97c4a;
        color: #c97c4a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all .2s;
        cursor: pointer;
      }

      .book-carousel-wrap .cards-nav:hover,
      .cards-carousel-wrap .cards-nav:hover {
        background: #c97c4a;
        color: #fff;
        border-color: #c97c4a;
      }

      /* ── Dots book carousel ── */
      .book-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
      }

      .book-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(30, 42, 58, 0.2);
        cursor: pointer;
        transition: background .2s, transform .2s;
        display: block;
      }

      .book-dots span.active {
        background: #c97c4a;
        transform: scale(1.3);
      }
    }

    /* ── iPad Pro 11" — PAYSAGE (largeur ~1194px) ── */
    @media (min-width: 1000px) and (max-width: 1300px) {

      /* Nav : menu complet mais resserré */
      .nav-links {
        display: flex !important;
        gap: 32px !important;
        font-size: 0.85rem !important;
      }

      .burger {
        display: none !important;
      }

      .nav-right .btn-book {
        display: inline-flex !important;
      }

      /* Footer centré comme mobile */
      footer {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 40px 20px !important;
      }

      .footer-nav {
        justify-content: center !important;
        gap: 16px !important;
      }
    }
