    /* ─── VARIABLES ─── */

:root {
    --gold: #B5995D;
    --gold-light: #C9AE78;
    --gold-dark: #9A8045;
    --cream: #FAF7F2;
    --cream-2: #F2EDE4;
    --cream-3: #E8E0D2;
    --brown-deep: #2C2318;
    --brown-mid: #4A3D2E;
    --brown-soft: #7A6A56;
    --white: #FFFFFF;
    --text: #2C2318;
    --text-muted: #7A6A56;
    --border: rgba(181, 153, 93, 0.2);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-h: 80px;
    --radius: 4px;
    --radius-lg: 12px;
    --shadow: 0 4px 24px rgba(44, 35, 24, 0.08);
    --shadow-lg: 0 12px 48px rgba(44, 35, 24, 0.14);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─── RESET ─── */

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

html {
    font-size: 16px;
    background: #2C2318;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    /* ≥16px prevents iOS auto-zoom on focus */
}


/* ─── TYPOGRAPHY ───*/

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--brown-deep);
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}


/* ─── UTILITIES ───*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--cream-2);
}

.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-sub {
    max-width: 520px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}


/* ─── BUTTONS ─── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border: 1.5px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 153, 93, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}


/* ─── NAVIGATION ───*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(44, 35, 24, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    width: 250px;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown-deep);
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    /* White on hero (dark bg), switches to gold via .scrolled below */
    color: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 1.5px;
    background: var(--gold-light);
    transition: transform var(--transition);
}

.nav-link:hover {
    color: var(--gold-light);
}


/* ── Active nav link (scroll-spy highlight) ── */

.nav-link.active-nav {
    color: var(--gold-light);
}

.nav-link.active-nav::after {
    transform: translateX(-50%) scaleX(1);
}

#header.scrolled .nav-link.active-nav {
    color: var(--gold-dark);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* ── Once scrolled past hero: cream bg → gold text ── */

#header.scrolled .nav-link {
    color: var(--gold);
}

#header.menu-open {
    background: rgba(250, 247, 242, 0.99) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(44, 35, 24, 0.08);
}

#header.menu-open .nav-toggle span {
    background: var(--brown-deep);
}

#header.scrolled .nav-link:hover {
    color: var(--gold-dark);
}

#header.scrolled .nav-link::after {
    background: var(--gold);
}


/* ── RDV CTA button ── */

.nav-cta {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    margin-left: 0.75rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--gold) !important;
}

#header.scrolled .nav-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white) !important;
}

#header.scrolled .nav-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}


/* ── Hamburger toggle ── */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    position: relative;
    z-index: 1002;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
    transition: var(--transition);
    transform-origin: center;
    border-radius: 2px;
}


/* Dark bars once scrolled */

#header.scrolled .nav-toggle span {
    background: var(--brown-deep);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ─── HERO ─── */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown-deep) 0%, #3D2E1C 50%, var(--brown-mid) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(181, 153, 93, 0.18) 0%, transparent 65%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(181, 153, 93, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title em {
    color: var(--gold-light);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.0625rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}


/* ─── RIBBON ─── */

.ribbon {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
}

.ribbon-inner {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: ribbonScroll 30s linear infinite;
    width: max-content;
}

.ribbon-inner span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    flex-shrink: 0;
}

.ribbon-dot {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.6rem !important;
}

@keyframes ribbonScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ─── ABOUT ──────────────────────────────────── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
}

.about-img-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(181, 153, 93, 0.08) 0%, transparent 50%), radial-gradient(circle at 30% 70%, rgba(181, 153, 93, 0.12) 0%, transparent 60%);
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.4;
}

.ph-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.ph-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100px;
}

.ph-lines div {
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.ph-lines div:nth-child(2) {
    width: 70%;
}

.ph-lines div:nth-child(3) {
    width: 50%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-txt {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
}

.about-body {
    margin-bottom: 1.25rem;
}

.about-values {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 0.15rem;
}

.value-item p {
    font-size: 0.85rem;
    margin: 0;
}


/* ─── SERVICES ───────────────────────────────── */

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1.5px solid var(--cream-3);
    border-radius: 40px;
    transition: var(--transition);
    background: var(--white);
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(181, 153, 93, 0.35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.hidden {
    display: none;
}

.service-icon {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-3);
}

.service-duration {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-cta p {
    font-style: italic;
    font-size: 1rem;
}


/* ─── GALLERY ────────────────────────────────── */

.gallery .section-header {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 1rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gi-tall {
    grid-row: span 2;
}

.gi-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

.gallery-placeholder:hover {
    transform: scale(1.02);
}

.gallery-placeholder span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 35, 24, 0.5) 0%, transparent 50%);
}

.gp-1 {
    background: linear-gradient(135deg, #3D2E1C 0%, #5C4430 100%);
}

.gp-2 {
    background: linear-gradient(135deg, #7A6A56 0%, #9A8045 100%);
}

.gp-3 {
    background: linear-gradient(135deg, #4A3D2E 0%, #7A6A56 100%);
}

.gp-4 {
    background: linear-gradient(135deg, #B5995D 0%, #9A8045 100%);
}

.gp-5 {
    background: linear-gradient(135deg, #5C4430 0%, #3D2E1C 100%);
}


/* ─── TESTIMONIALS ───────────────────────────── */

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.testimonial-card > p {
    font-size: 1rem;
    font-style: italic;
    color: var(--brown-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--brown-deep);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-3);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}


/* ─── RDV FORM ───────────────────────────────── */

.rdv-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.rdv-info .section-title {
    margin-bottom: 1.25rem;
}

.rdv-info > p {
    margin-bottom: 2.5rem;
}

.rdv-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.rdv-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 24px;
}

.rdv-detail-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brown-deep);
    margin-bottom: 0.25rem;
}

.rdv-detail-item p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.rdv-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.rdv-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--cream-3);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-size: 0.875rem;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(181, 153, 93, 0.12);
    background: var(--white);
}

.form-group input.error,
.form-group select.error {
    border-color: #C0392B;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5995D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: center;
}

.form-success {
    display: none;
    background: rgba(181, 153, 93, 0.12);
    border: 1px solid rgba(181, 153, 93, 0.3);
    color: var(--gold-dark);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.form-success.show {
    display: block;
}


/* ─── ACUITY BOOKING CARD ────────────────────── */

.rdv-acuity-wrap {
    display: flex;
    align-items: stretch;
}

.rdv-acuity-card {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rdv-acuity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.acuity-deco {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.rdv-acuity-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.acuity-desc {
    font-size: 0.9375rem;
    max-width: 380px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.acuity-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    width: 100%;
}

.acuity-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: var(--cream-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    min-width: 110px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.step-txt {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brown-mid);
    line-height: 1.3;
}

.acuity-step-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 0.5;
}

.btn-acuity {
    font-size: 0.875rem;
    padding: 1rem 2.5rem;
    letter-spacing: 0.12em;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.btn-acuity::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-acuity:hover::after {
    transform: translateX(100%);
}

.acuity-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}


/* ─── CONTACT ────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-text .section-title {
    margin-bottom: 1.25rem;
}

.contact-text > p {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-info p {
    font-size: 0.9rem;
}

.contact-info p:first-child {
    font-weight: 600;
    color: var(--brown-deep);
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: opacity var(--transition);
}

.social-link:hover {
    opacity: 0.7;
}

.contact-map {
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(181, 153, 93, 0.08) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(181, 153, 93, 0.06) 0%, transparent 60%);
}

.map-pin {
    font-size: 3rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.contact-map p {
    font-size: 0.9rem;
    color: var(--brown-mid);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}


/* ─── FOOTER ─────────────────────────────────── */

.footer {
    background: var(--brown-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: var(--gold-light);
}

.footer-brand p {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links strong {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 1.5rem 2rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}


/* ─── SCROLL ANIMATIONS ──────────────────────── */

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: none;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — Fluid Grids · Media Queries · Flexible Media
   ═══════════════════════════════════════════════ */


/* ── Flexible Media baseline ─────────────────── */

img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ── Fluid container ─────────────────────────── */


/* Already set above; reinforce fluid padding via clamp */

.container {
    padding-inline: clamp(1rem, 5vw, 2rem);
}


/* ══ LARGE DESKTOP (1280px+) ════════════════════ */

@media (min-width: 1280px) {
    .about-grid {
        gap: 6rem;
    }
    .rdv-grid {
        gap: 6rem;
    }
    .contact-grid {
        gap: 6rem;
    }
}


/* ══ TABLET LANDSCAPE (1024px) ══════════════════ */

@media (max-width: 1024px) {
    /* ── Fluid section padding ── */
    .section {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    /* ── Fluid grids collapse to single column ── */
    .about-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
    }
    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .rdv-grid {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 5vw, 3.5rem);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    /* ── Footer: 2-col fluid grid ── */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 4vw, 2.5rem);
    }
    /* ── Gallery: 3 equal fluid columns ── */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: clamp(0.75rem, 2vw, 1rem);
    }
    .gi-tall {
        grid-row: span 1;
    }
    .gi-wide {
        grid-column: span 2;
    }
    /* ── RDV Acuity steps: allow wrap ── */
    .acuity-steps {
        gap: 0.5rem;
    }
    /* ── Reduce card/wrap padding slightly ── */
    .rdv-acuity-card {
        padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    }
}


/* ══ TABLET PORTRAIT (768px) ════════════════════ */

@media (max-width: 768px) {
    /* ── Root & globals ── */
    :root {
        --nav-h: 64px;
    }
    .section {
        padding: clamp(48px, 10vw, 64px) 0;
    }
    /* ─────────────────────────────────────────────
     NAVIGATION
  ───────────────────────────────────────────── */
    .nav-toggle {
        display: flex;
    }
    /* Shrink logo on mobile so it doesn't crowd the hamburger */
    .nav-logo {
        width: clamp(140px, 40vw, 200px);
    }
    .nav-logo img {
        width: 100%;
        height: auto;
    }
    /* Full-screen slide-in overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 1rem);
        background: rgba(250, 247, 242, 0.99);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    /* Links inside open menu — gold on cream, large touch target */
    .nav-links .nav-link,
    #header.scrolled .nav-links .nav-link {
        font-size: clamp(1rem, 4vw, 1.2rem);
        padding: 0.85rem 2.5rem;
        min-height: 44px;
        /* WCAG touch target */
        display: flex;
        align-items: center;
        letter-spacing: 0.1em;
        color: var(--gold) !important;
    }
    .nav-links .nav-link:hover,
    #header.scrolled .nav-links .nav-link:hover {
        color: var(--gold-dark) !important;
    }
    /* RDV button solid gold in mobile menu */
    .nav-links .nav-cta,
    #header.scrolled .nav-links .nav-cta {
        background: var(--gold) !important;
        border: 1.5px solid var(--gold) !important;
        color: var(--white) !important;
        margin: 1rem 0 0;
        padding: 0.85rem 2rem;
        min-height: 44px;
        border-radius: var(--radius);
    }
    .nav-links .nav-cta:hover {
        background: var(--gold-dark) !important;
        color: var(--white) !important;
    }
    #header.scrolled {
        background: rgba(250, 247, 242, 0.98);
    }
    /* ─────────────────────────────────────────────
     HERO
  ───────────────────────────────────────────── */
    .hero {
        min-height: 100svh;
        min-height: -webkit-fill-available;
        /* iOS Safari fallback */
        padding: calc(var(--nav-h) + clamp(1.5rem, 6vw, 2.5rem)) clamp(1rem, 5vw, 1.5rem) clamp(4rem, 10vw, 5rem);
        text-align: center;
    }
    .hero-eyebrow {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        letter-spacing: 0.2em;
    }
    .hero-desc {
        font-size: clamp(0.9rem, 3.5vw, 1.0625rem);
        margin-bottom: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: clamp(220px, 70vw, 300px);
        justify-content: center;
        min-height: 48px;
        /* comfortable touch area */
    }
    /* Hide scroll indicator on mobile — not needed */
    .hero-scroll {
        display: none;
    }
    /* ─────────────────────────────────────────────
     RIBBON
  ───────────────────────────────────────────── */
    .ribbon {
        padding: 10px 0;
    }
    .ribbon-inner {
        gap: 1.5rem;
        animation-duration: 20s;
    }
    .ribbon-inner span {
        font-size: 0.68rem;
    }
    /* ─────────────────────────────────────────────
     ABOUT
  ───────────────────────────────────────────── */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-visual {
        max-width: 100%;
    }
    /* Prevent badge from overflowing on narrow screens */
    .about-img-placeholder {
        aspect-ratio: 4/3;
    }
    .about-badge {
        bottom: -14px;
        right: clamp(0px, 2vw, 8px);
        padding: 1rem 1.25rem;
    }
    .badge-num {
        font-size: 1.6rem;
    }
    /* Fluid value items */
    .about-values {
        gap: 1rem;
    }
    .value-item {
        gap: 0.75rem;
    }
    /* ─────────────────────────────────────────────
     SERVICES
  ───────────────────────────────────────────── */
    /* Fluid grid: 1 column on mobile, auto-fill on larger */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .services-tabs {
        gap: 0.35rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        flex-wrap: nowrap;
        /* horizontal scroll instead of wrap */
    }
    .services-tabs::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.72rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 40px;
    }
    /* Service card: reduce padding */
    .service-card {
        padding: 1.5rem;
    }
    /* ─────────────────────────────────────────────
     GALLERY
  ───────────────────────────────────────────── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        padding-inline: clamp(1rem, 4vw, 1.25rem);
        gap: 0.65rem;
    }
    .gi-tall {
        grid-row: span 1;
    }
    .gi-wide {
        grid-column: span 2;
    }
    .gallery-placeholder {
        min-height: clamp(140px, 30vw, 200px);
    }
    /* ─────────────────────────────────────────────
     TESTIMONIALS
  ───────────────────────────────────────────── */
    .testimonial-card {
        padding: clamp(1.25rem, 4vw, 1.75rem);
        max-width: 100%;
    }
    .testimonial-card > p {
        font-size: 0.9375rem;
    }
    /* ─────────────────────────────────────────────
     RDV / BOOKING
  ───────────────────────────────────────────── */
    .rdv-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .rdv-acuity-card {
        padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
    }
    /* Stack the 3 booking steps vertically on mobile */
    .acuity-steps {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    .acuity-step-arrow {
        transform: rotate(90deg);
        /* → becomes ↓ */
        font-size: 0.9rem;
        opacity: 0.4;
    }
    .acuity-step {
        min-width: 80%;
        max-width: 280px;
    }
    .btn-acuity {
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
    .rdv-acuity-wrap {
        align-items: flex-start;
    }
    /* ─────────────────────────────────────────────
     CONTACT
  ───────────────────────────────────────────── */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* Make map placeholder a sensible fluid height */
    .contact-map {
        aspect-ratio: 16/9;
        min-height: 200px;
    }
    /* ─────────────────────────────────────────────
     FOOTER
  ───────────────────────────────────────────── */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    .footer {
        padding: clamp(2.5rem, 6vw, 3.5rem) 0 0;
    }
    .footer-links {
        gap: 0.5rem;
    }
    /* ─────────────────────────────────────────────
     BUTTONS — ensure no horizontal overflow
  ───────────────────────────────────────────── */
    .btn {
        white-space: normal;
        text-align: center;
    }
}


/* ══ MOBILE PORTRAIT (480px) ════════════════════ */

@media (max-width: 480px) {
    /* ── Fluid typography ── */
    h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }
    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    h3 {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }
    /* ── Services: 2-col on wider phones ── */
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    }
    /* ── About badge stays inside on very narrow ── */
    .about-badge {
        right: 0;
        bottom: -12px;
    }
    /* ── Gallery: keep 2-col on 480px ── */
    .gallery-placeholder {
        min-height: clamp(120px, 28vw, 180px);
    }
    /* ── Acuity card comfortable padding ── */
    .rdv-acuity-card {
        padding: 1.5rem 1.25rem;
    }
    .rdv-acuity-card h3 {
        font-size: 1.35rem;
    }
    .acuity-desc {
        font-size: 0.875rem;
    }
    /* ── Testimonial card ── */
    .testimonial-card {
        padding: 1.25rem;
    }
    /* ── Section label & sub ── */
    .section-sub {
        margin-bottom: 2rem;
        font-size: 0.875rem;
    }
}


/* ══ SMALL MOBILE (400px) ═══════════════════════ */

@media (max-width: 400px) {
    h1 {
        font-size: clamp(1.7rem, 9vw, 2rem);
    }
    /* ── Hero ── */
    .hero-desc {
        font-size: 0.875rem;
    }
    .hero-eyebrow {
        font-size: 0.62rem;
    }
    /* ── Gallery: single column on very small screens ── */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gi-wide {
        grid-column: span 1;
    }
    /* ── Services tabs: wrap to column ── */
    .services-tabs {
        flex-wrap: wrap;
        overflow-x: unset;
        justify-content: center;
    }
    .tab-btn {
        flex-shrink: 1;
        min-width: 40%;
    }
    /* ── Nav logo tighter ── */
    .nav-logo {
        width: clamp(110px, 35vw, 160px);
    }
    /* ── Footer bottom ── */
    .footer-bottom {
        padding: 1.25rem 1rem;
    }
    .footer-bottom p {
        font-size: 0.72rem;
    }
    /* ══ VERY SMALL (320px) ═════════════════════════ */
    @media (max-width: 360px) {
        .container {
            padding-inline: 0.875rem;
        }
        .hero-actions .btn {
            max-width: 100%;
        }
        .about-badge {
            padding: 0.75rem 1rem;
        }
        .badge-num {
            font-size: 1.4rem;
        }
        .rdv-acuity-card {
            padding: 1.25rem 1rem;
        }
    }
    .map-placeholder a {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--gold);
        border-bottom: 1px solid var(--gold);
        padding-bottom: 1px;
        position: relative;
        z-index: 1;
        transition: opacity var(--transition);
    }
    .map-placeholder a:hover {
        opacity: 0.7;
    }
    /* ─── LEGAL SECTIONS ─────────────────────────── */
    .legal-wrap {
        max-width: 820px;
        margin: 0 auto;
    }
    .legal-back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        border-bottom: 1px solid var(--gold);
        padding-bottom: 1px;
        margin-bottom: 2rem;
        transition: opacity var(--transition);
    }
    .legal-back-link:hover {
        opacity: 0.7;
    }
    .legal-section .section-title {
        margin-bottom: 0.5rem;
    }
    .legal-updated {
        font-size: 0.78rem;
        color: var(--text-muted);
        font-style: italic;
        margin-bottom: 2.5rem !important;
    }
    .legal-content {
        margin-top: 2rem;
    }
    .legal-content h3 {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--brown-deep);
        margin: 2rem 0 0.6rem;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid var(--border);
    }
    .legal-content h3:first-child {
        margin-top: 0;
    }
    .legal-content p {
        font-size: 0.9375rem;
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 0.85rem;
    }
    .legal-content a {
        color: var(--gold);
        border-bottom: 1px solid var(--gold);
        transition: opacity var(--transition);
    }
    .legal-content a:hover {
        opacity: 0.7;
    }
    .legal-content strong {
        color: var(--brown-deep);
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .legal-content h3 {
            font-size: 1rem;
            margin-top: 1.5rem;
        }
        .legal-content p {
            font-size: 0.875rem;
        }
    }
