@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Parisienne&display=swap');

@font-face {
  font-family: 'Allura';
  src: url('assets/Allura.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Higuen';
  src: url('assets/Higuen.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Youngest';
  src: url('assets/Youngest.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NeueMontreal';
  src: url('assets/NeueMontreal.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
    --cream: #eee9e2;
    --cream-soft: #f7f2eb;
    --sand: #b99a74;
    --sand-dark: #987a56;
    --rose: #d4b29c;
    --rose-deep: #c9a38f;
    --ink: #090807;
    --muted: #4e4740;
    --line: rgba(9, 8, 7, 0.18);
    --white: #fffaf4;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', Arial, sans-serif;
    --script: 'Parisienne', cursive;
    --shadow: 0 28px 70px rgba(39, 25, 14, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(238, 233, 226, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.main-nav {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    border-bottom: 2px solid var(--ink);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 54px);
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 14px;
    color: #201d1a;
    position: relative;
    padding: 10px 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    font-style: italic;
}

.nav-left .nav-link:first-child {
    padding-right: 28px;
    border-right: 3px solid var(--ink);
}

.brand {
    text-align: center;
    min-width: 150px;
    line-height: 1;
    transform: translateY(2px);
}

.brand-name {
    display: block;
    font-family: "Allura", var(--script);
    font-size: clamp(38px, 5vw, 50px);
    letter-spacing: 0.02em;
    line-height: 0.8;
}

.brand-name::after {
    content: '✦';
    font-family: var(--serif);
    font-size: 16px;
    margin-left: 4px;
    color: var(--sand-dark);
    vertical-align: middle;
}

.brand-subtitle {
    display: block;
    font-size: 14px;
	letter-spacing: 0.2rem;
    line-height: 1;
    margin-bottom: 1px;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    min-height: 610px;
    background: var(--cream);
}

.hero-copy {
    padding: clamp(38px, 7vw, 70px) 34px clamp(54px, 7vw, 80px) max(20px, calc((100vw - 1160px) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy .text-link {
    display: inline-block; /* Force le lien à épouser uniquement la taille du mot */
    width: fit-content;    /* Sécurité supplémentaire pour empêcher l'étirement */
}

.hero h1 {
    margin: 0;
    font-family: "Youngest", var(--serif);
    font-weight: 400;
    font-size: clamp(45px, 5.2vw, 78px);
    line-height: 0.98;
    letter-spacing: 0em;
}

.hero h1 span {
    display: inline-block;
    margin: 30px 0;
}

.hero p {
    margin: 70px 0 24px;
    color: var(--muted);
    font-size: 17px;
}

.text-link {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    border-bottom: 2px solid currentColor;
    transition: color 0.25s ease, transform 0.25s ease;
}

.text-link:hover {
    color: var(--sand-dark);
    transform: translateY(-2px);
}

.hero-media {
    min-height: 610px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: center;
}

.intro-band {
    background: var(--sand);
    padding: 56px 0 30px;
}

.intro-inner h2 {
    max-width: 840px;
    margin: 0 auto 38px;
    text-align: center;
    font-family: "Youngest", var(--serif);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 0.95;
    font-weight: 300;
    letter-spacing: 0em;
}

.intro-images {
    border-radius: 25% 10%;
	align-items: center;
    width: min(629px, 100%);
    margin: 0 auto;
}

.intro-images img {
    border-radius: 25% 10%;
	width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(55, 34, 17, 0.12);
}

.intro-caption {
    margin: 42px 0 0;
    text-align: center;
    font-family: "Youngest", var(--serif);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    font-weight: 300;
}

.escape-section,
.rates-section {
    background: var(--cream);
}

.escape-section {
    padding: 66px 0 26px;
}

.escape-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: start;
}

.escape-left {
    padding-left: min(70px, 4vw);
}

.botanical {
    width: min(255px, 68%);
    margin: 0 0 0 30px;
}

.botanical-link {
    display: block;
    width: fit-content;
    opacity: 0.82;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.botanical-link:hover {
    opacity: 1;
    transform: translateY(-2px) rotate(-1deg);
}

.botanical img {
    width: 100%;
    max-width: 255px;
    height: auto;
    object-fit: contain;
    filter: sepia(18%) saturate(70%) brightness(0.72);
    mix-blend-mode: multiply;
}

.escape-section h2,
.rates-section h2 {
    margin: 0;
    font-family: "Higuen", var(--serif);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0em;
    font-size: clamp(64px, 8vw, 104px);
    line-height: 0.82;
}

.long-copy,
.escape-right-copy {
    width: min(430px, 100%);
    font-family: var(--serif);
    font-size: clamp(24px, 2.3vw, 31px);
    line-height: 1.05;
    font-weight: 500;
}

.long-copy {
    margin-top: 72px;
}

.long-copy p,
.escape-right-copy p {
    margin: 0 0 34px;
}

.escape-right-copy {
    margin: 0 auto;
}

.escape-right-copy p:last-child {
    margin-bottom: 0;
}

.escape-right {
    padding-top: 195px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 72px;
}

.mini-copy {
    max-width: 430px;
    margin-left: auto;
    margin-right: 70px;
}

.mini-copy p {
    margin: 0 0 22px;
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.17;
}

.escape-right img {
    width: min(430px, 100%);
    margin: 0 auto;
    aspect-ratio: 0.69 / 1;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.rates-section {
    padding: 10px 0 126px;
}

.rates-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 70px;
    align-items: end;
}

.rate-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: baseline;
    max-width: 840px;
    margin-top: 54px;
    font-family: var(--serif);
    font-size: clamp(31px, 3.5vw, 45px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.rate-line strong {
    font-weight: 500;
}

.choice-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 28px;
    box-shadow: 0 20px 50px rgba(60, 39, 23, 0.09);
}

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sand-dark);
    font-size: 12px;
    font-weight: 700;
}

.choice-card h3 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.choice-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--muted);
}

.choice-card select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--cream-soft);
    padding: 13px 12px;
    color: var(--ink);
}

.tarif-result {
    margin: 18px 0 0;
    display: grid;
    gap: 7px;
}

.tarif-result strong {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
}

.tarif-result span {
    color: var(--muted);
    font-size: 14px;
}

.testimonial-section {
    background: var(--rose);
    padding: 72px 0 78px;
    overflow: hidden;
}

.testimonial-bg {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.testimonial-bg > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(0.96);
}

.testimonial-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9,8,7,0.05), rgba(9,8,7,0.15));
}

.giant-left,
.giant-right {
    position: absolute;
    z-index: 1;
    font-family: var(--serif);
    text-transform: uppercase;
    color: rgba(255, 250, 244, 0.92);
    font-size: clamp(80px, 13vw, 180px);
    line-height: 0.72;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.giant-left {
    left: -92px;
    top: 58px;
}

.giant-right {
    right: -58px;
    bottom: 20px;
    text-align: left;
}

.testimonial-card {
    position: relative;
    z-index: 2;
    width: min(570px, calc(100% - 40px));
    background: var(--cream);
    padding: 54px 64px 44px;
    text-align: center;
    box-shadow: var(--shadow);
}

.testimonial-card::before,
.testimonial-card::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--ink);
    width: 100%;
}

.testimonial-card::before {
    margin-bottom: 54px;
}

.testimonial-card::after {
    margin-top: 52px;
}

.testimonial-card p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.25;
    font-weight: 500;
}

.testimonial-card span {
    display: block;
    margin-top: 30px;
    font-family: var(--script);
    font-size: 30px;
    line-height: 0.78;
}

.gift-section {
    background: var(--rose);
    padding: 70px 0 0;
    border-top: 1px solid rgba(255, 250, 244, 0.4);
}

.gift-section h2 {
    margin: 0 0 12px;
    font-family: "Higuen", var(--serif);
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1;
    font-weight: 200;
}

.gift-lead {
    max-width: 700px;
    margin: 0 0 22px;
    color: rgba(9, 8, 7, 0.78);
}

.soft-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    padding: 13px 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.soft-button:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

/* Conteneur du bouton (gère l'espace avec le dessus) */
.rates-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 80px;       /* Augmente l'espace pour le détacher élégamment du dessus */
    margin-bottom: -10px;    /* Légère marge basse pour respirer avant la section suivante */
}

/* Style spécifique pour le bouton Réserver à cet endroit */
.rates-action .soft-button {
    width: min(50%, 550px); /* Prend 40% de la largeur du site, bridé à 464px max */
    text-align: center;     /* Force le texte "RESERVEZ" à rester bien centré */
    box-sizing: border-box; /* Évite que le padding ne déforme la largeur */
}

/* Sécurité pour les smartphones (Mobile) */
@media (max-width: 768px) {
    .rates-action .soft-button {
        width: 85%;         /* Sur mobile, 40% serait trop étroit : on passe à 85% */
        margin-top: 20px;   /* Espace adapté aux petits écrans */
    }
}

.blog-section {
    background: var(--rose);
    padding: 48px 0 84px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
}

.blog-card {
    text-align: center;
    font-size: 20px;
    line-height: 1.28;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    margin-bottom: 12px;
}

.blog-card h3 {
    margin: 0 0 30px;
    font-size: clamp(21px, 2vw, 25px);
    font-weight: 800;
    font-style: italic;
    line-height: 1.02;
}

.blog-card h4 {
    margin: 30px 0 12px;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
}

.blog-card p {
    font-family: "NeueMontreal", var(--serif);
    margin: 0 0 18px;
}

.contact-section {
    background: var(--cream);
    padding: 78px 0 56px;
}

.contact-grid {
    display: grid;
    grid-template-columns: auto 110px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-title h2 {
    margin: 0 0 4px;
    font-family: "Higuen", var(--serif);
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1;
    font-weight: 400;
}

.contact-title a,
.email {
    font-family: var(--serif);
    font-size: clamp(33px, 3vw, 44px);
    line-height: 1.1;
}

.contact-line {
    height: 2px;
    background: var(--ink);
    margin-top: 36px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.email {
    word-break: break-word;
}

.address-row,
.instagram {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 12px;
}

.address-row svg {
    width: 52px;
    height: 52px;
    stroke-width: 2.6;
}

.address-row p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.12;
}

.instagram {
    color: #28221e;
    font-size: 18px;
    width: fit-content;
    transition: color 0.25s ease, transform 0.25s ease;
}

.instagram:hover {
    color: var(--sand-dark);
    transform: translateX(3px);
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(9, 8, 7, 0.18);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(212, 178, 156, 0.72), rgba(255, 250, 244, 0.82));
    box-shadow: 0 12px 26px rgba(60, 39, 23, 0.08);
}

.instagram-icon svg {
    width: 24px;
    height: 24px;
    color: var(--sand-dark);
}

.instagram-icon rect,
.instagram-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer {
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 22px 0;
}

.footer-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 13px;
}

.footer-inner p {
    margin: 0;
}

.not-found {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 80px 20px;
}

.not-found-card {
    width: min(680px, 100%);
    background: var(--white);
    border: 1px solid var(--line);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.not-found-card h1 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: clamp(46px, 6vw, 72px);
    line-height: 0.95;
}

.not-found-card p:not(.eyebrow) {
    margin: 0 auto 26px;
    max-width: 520px;
    color: var(--muted);
}


/* ==========================================================================
   INTEGRATION DES NOUVELLES SECTIONS (WIDGET TREATWELL / ANGIE)
   ========================================================================== */

/* 1. Ciblage global de la section parente par ID + Classe */
#id1.class1 {
    width: min(1160px, calc(100% - 40px)); /* S'aligne strictement sur la largeur du header */
    margin-left: auto;  /* Centre automatiquement le bloc à gauche */
    margin-right: auto; /* Centre automatiquement le bloc à droite */
    min-height: 800px;
    display: flex;
    flex-direction: column;
    clear: both;
	background-color: #eee9e2; /* <-- Ajoute la même couleur crème que le header */
    border-radius: 15px;       /* <-- Optionnel : arrondit les angles du bloc */
}

/* 2. Ciblage du conteneur injecté par Wahanda/Treatwell */
#wahanda-online-booking-widget-iframe {
    width: 100%;
    height: 100%;
    min-height: 800px;
    overflow: hidden;
}

/* 3. Ciblage forcé de l'iframe générée dynamiquement */
#wahanda-online-booking-widget-iframe iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 800px !important;
    border: none !important;
    box-shadow: none !important;
}



/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE) - LAISSER IMPÉRATIVEMENT EN BAS DE FICHIER
   ========================================================================== */

@media (max-width: 980px) {
    .main-nav {
        grid-template-columns: auto 1fr auto;
        min-height: 76px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .brand {
        justify-self: center;
    }

    .menu-toggle {
        display: inline-grid;
        gap: 5px;
        background: transparent;
        border: 0;
        padding: 10px;
        cursor: pointer;
        justify-self: end;
    }

    .menu-toggle span:not(.sr-only) {
        width: 28px;
        height: 2px;
        background: var(--ink);
        display: block;
    }

    .mobile-menu {
        display: none;
        width: min(1160px, calc(100% - 40px));
        margin: 0 auto;
        padding: 14px 0 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mobile-menu.open {
        display: grid;
    }

    .mobile-menu a {
        padding: 12px 14px;
        background: var(--cream-soft);
        border: 1px solid var(--line);
    }

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

    .hero-copy {
        min-height: 500px;
        padding: 58px 24px;
    }

    .hero h1 span {
        margin: 22px 0;
    }

    .hero p {
        margin-top: 44px;
    }

    .hero-media,
    .hero-media img {
        min-height: 420px;
    }

    .escape-grid,
    .rates-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .escape-left {
        padding-left: 0;
    }

    .botanical {
        width: min(235px, 74%);
        margin-left: -10px;
    }

    .long-copy,
    .escape-right-copy {
        width: min(620px, 100%);
    }

    .long-copy {
        margin-top: 52px;
    }

    .escape-right {
        padding-top: 20px;
        gap: 44px;
        justify-items: start;
    }

    .escape-right-copy {
        margin: 0;
    }

    .mini-copy {
        margin: 0;
        max-width: 620px;
    }

    .escape-right img {
        width: min(520px, 100%);
        margin: 0 auto;
        justify-self: center;
    }

    .rates-section {
        padding-bottom: 84px;
    }

    .choice-card {
        max-width: 480px;
    }

    .contact-line {
        width: 110px;
        margin-top: 0;
    }

    .footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .container,
    .main-nav,
    .mobile-menu,
    .footer-inner {
        width: min(100% - 28px, 1160px);
    }

    .brand-name {
        font-size: 39px;
    }

    .brand-subtitle {
		font-size: 11px;
    }

    .hero-copy {
        min-height: auto;
        padding: 44px 14px 52px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 56px);
    }

    .hero-media,
    .hero-media img {
        min-height: 330px;
    }

    .intro-band {
        padding: 42px 0 28px;
    }

    .intro-inner h2 {
        margin-bottom: 38px;
    }

    .intro-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .escape-section {
        padding-top: 44px;
    }

    .botanical {
        width: 205px;
        margin-bottom: -6px;
    }

    .escape-section h2,
    .rates-section h2 {
        font-size: clamp(58px, 18vw, 82px);
    }

    .long-copy,
    .escape-right-copy {
        font-size: 23px;
    }

    .escape-right {
        gap: 36px;
    }

    .rate-line {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-top: 38px;
    }

    .testimonial-section {
        padding: 46px 0;
    }

    .testimonial-bg {
        min-height: 520px;
    }

    .giant-left,
    .giant-right {
        font-size: 78px;
        opacity: 0.8;
    }

    .giant-left {
        left: -44px;
        top: 34px;
    }

    .giant-right {
        right: -40px;
        bottom: 34px;
    }

    .testimonial-card {
        padding: 34px 26px 28px;
    }

    .testimonial-card::before {
        margin-bottom: 32px;
    }

    .testimonial-card::after {
        margin-top: 34px;
    }

    .gift-section {
        padding-top: 50px;
    }

    .blog-grid {
        gap: 46px;
    }

    .blog-card {
        font-size: 18px;
    }

    .contact-section {
        padding-top: 58px;
    }

    .contact-title a,
    .email {
        font-size: 30px;
    }

    .address-row,
    .instagram {
        margin-left: 0;
    }

    .address-row svg {
        width: 40px;
        height: 40px;
        flex: 0 0 auto;
    }

    .address-row p {
        font-size: 24px;
    }

    .instagram {
        align-items: flex-start;
        gap: 14px;
    }

    .instagram-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .instagram-icon svg {
        width: 22px;
        height: 22px;
    }
}