/* ── Fonts (self-hosted, no third-party request → no Google cookies/RGPD) ──
   Playfair Display 400/700/400-italic + Raleway 300/400/600/700,
   latin subset (covers French accents and “œ”). */
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-400-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-400-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-700-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/raleway-300-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/raleway-400-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/raleway-600-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/raleway-700-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Custom Properties ── */
:root {
    --bg:           #FAF7F2;
    --bg-alt:       #F2EBE4;
    --primary:      #7B2D42;
    --primary-dark: #5C1F30;
    --accent:       #8FAB8F;
    --accent-light: #E8F0E8;
    --text:         #2C1810;
    --text-muted:   #6B5B52;
    --white:        #FFFFFF;
    --border:       #D9C5BA;
    --shadow:       rgba(44, 24, 16, 0.12);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Scroll-triggered fade-in ── */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ────────────────────────────
   HEADER
───────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 24px var(--shadow);
    padding: 13px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.45rem;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#site-header.scrolled .logo {
    opacity: 1;
}

/* Nav */
#main-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}

#main-nav a {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

#main-nav a:hover {
    color: var(--primary);
}

#main-nav a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────────────
   HERO (compact intro)
───────────────────────────── */
.hero {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 210px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg);
    padding: 110px 0 72px;
    text-align: center;
    border-bottom: 2px solid var(--border); /* the fold/pocket edge */
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250vmax;
    height: 250vmax;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12'%3E%3Cpath d='M0 6 L12 0 L24 6' fill='none' stroke='%237B2D42' stroke-opacity='0.09' stroke-width='1.2' stroke-linejoin='miter'/%3E%3Cpath d='M0 12 L12 6 L24 12' fill='none' stroke='%237B2D42' stroke-opacity='0.09' stroke-width='1.2' stroke-linejoin='miter'/%3E%3C/svg%3E");
    transform: translate(-50%, -50%) rotate(-45deg);
    pointer-events: none;
    z-index: 0;
}

.hero .container,
.scroll-indicator {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    max-width: 700px;
    margin: 0 auto;
}

.hero-rule {
    border: none;
    border-top: 1px solid var(--border);
    width: 48px;
    margin: 24px auto;
}

.hero p {
    font-size: 0.97rem;
    color: var(--text);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

.hero p.hero-status {
    margin-top: 28px;
}


/* ── Clothing care label — paper-tag tucked behind the hero edge ──
   Outer div: zero-height anchor at the hero/contact boundary.
   z-index 1 < hero z-index 2 → hero background covers the top portion
   of the label that sits above the boundary, hiding it like a pocket.
   The inset shadow on the label's visible top edge reads as the crease
   cast by the hero border holding the label in place.                  */
.care-label-outer {
    position: relative;
    height: 0;
    overflow: visible;
    z-index: 1;
}

.care-label {
    position: absolute;
    top: -22px;       /* 22 px tucked behind the hero's bottom border */
    right: 44px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 14px 12px;
    /* inset shadow = fold crease at the point where label exits the pocket;
       outer shadow grounds it against the contact section below          */
    box-shadow:
        inset 0 6px 10px -4px rgba(44, 24, 16, 0.14),
        0 6px 18px rgba(44, 24, 16, 0.10);
    transform: rotate(-1.5deg);
    pointer-events: none;
}

.care-label-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.47rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: center;
    margin: 0;
}

.care-label-icons {
    display: flex;
    gap: 9px;
    align-items: center;
}

.care-icon {
    display: block;
    width: 20px;
    height: 20px;
    color: rgba(123, 45, 66, 0.6);
    flex-shrink: 0;
}

/* ────────────────────────────
   SECTION BASE
───────────────────────────── */
section {
    padding: 88px 0;
}

#contact  { background-color: var(--bg-alt); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 0 L8 0 M0 4 L8 4' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3Cpath d='M0 0 L0 8 M4 0 L4 8' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3C/svg%3E"); }
#services { background-color: var(--bg);     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 0 L8 0 M0 4 L8 4' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3Cpath d='M0 0 L0 8 M4 0 L4 8' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3C/svg%3E"); }

/* Section headings */
section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 52px;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 36'%3E%3Cpath d='M28 14 Q28 7 33 5 Q39 2 40 7 Q40 12 28 18' fill='none' stroke='%237B2D42' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 18 L4 32 M28 18 L52 32' stroke='%237B2D42' stroke-width='2.2' stroke-linecap='round'/%3E%3Cline x1='2' y1='33' x2='54' y2='33' stroke='%237B2D42' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 14px auto 0;
}

/* ────────────────────────────
   CONTACT
───────────────────────────── */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-image {
    overflow: hidden;
    position: relative;
    min-height: 360px;
}

.contact-image::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(217, 197, 186, 0.7);
    z-index: 1;
    pointer-events: none;
    transition: inset 0.4s ease;
}

.contact-image:hover::before {
    inset: 10px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(10%) saturate(85%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.contact-image:hover img {
    transform: scale(1.04);
    filter: sepia(0%) saturate(100%);
}

.contact-info {
    background: var(--white);
    padding: 44px;
    border-left: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-row strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-row a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.97rem;
    transition: color 0.2s ease;
    /* let long unbreakable values (e.g. the email) wrap on narrow phones
       instead of forcing horizontal page scroll */
    overflow-wrap: anywhere;
}

/* allow the flex text column to shrink below its content's intrinsic width */
.info-row > div {
    min-width: 0;
}

.info-row a:hover {
    color: var(--primary);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.hours-header strong {
    margin-bottom: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.status-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.status-badge.open {
    color: #2F6B3F;
    background: var(--accent-light);
}

.status-badge.open::before {
    background: #3A8A4F;
}

.status-badge.closed {
    color: #8A3A3A;
    background: #F3E3E3;
}

.status-badge.closed::before {
    background: #B34A4A;
}

/* Always-visible status tooltip */
.status-wrap {
    position: relative;
    display: inline-flex;
}

.status-tooltip {
    position: absolute;
    z-index: 5;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(44, 24, 16, 0.14);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    pointer-events: none;
}

.status-tooltip::before {
    content: '';
    position: absolute;
    border: 5px solid transparent;
}

/* Hero: tooltip below the badge, caret pointing up */
.status-wrap--hero .status-tooltip {
    top: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
}

.status-wrap--hero .status-tooltip::before {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: var(--white);
}

/* Contact: tooltip to the right of the badge, caret pointing left */
.status-wrap--contact .status-tooltip {
    left: calc(100% + 9px);
    top: 50%;
    transform: translateY(-50%);
}

.status-wrap--contact .status-tooltip::before {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-right-color: var(--white);
}

.hours-list {
    list-style: none;
    width: 100%;
    margin-top: 2px;
}

.hours-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2px 16px;
    padding: 7px 0;
    font-size: 0.93rem;
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li.closed {
    color: var(--text-muted);
    font-style: italic;
}

/* Season indicator (summer / winter) with hover-reveal of the other season */
.season-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    cursor: help;
    outline: none;
}

.season-chip {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px dotted var(--border);
    padding-bottom: 2px;
}

.season-detail {
    position: absolute;
    bottom: calc(100% + 9px);
    left: 0;
    z-index: 5;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(44, 24, 16, 0.14);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.season-detail::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 16px;
    border: 5px solid transparent;
    border-top-color: var(--white);
}

.season-info:hover .season-detail,
.season-info:focus .season-detail,
.season-info:focus-within .season-detail {
    opacity: 1;
    visibility: visible;
}

/* Footer season note (dark background, no hover) */
.footer-season {
    font-size: 0.8rem !important;
    font-style: italic;
    margin-top: 10px !important;
}

.contact-map {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-map #map {
    width: 100%;
    height: 200px;
    border: 0;
    background: var(--bg-alt);
}

/* Réchauffe les tuiles pour s'accorder à la palette, en laissant les contrôles
   et l'attribution nets (le filtre ne s'applique qu'au calque de tuiles). */
.contact-map .leaflet-tile-pane {
    filter: sepia(10%) saturate(80%);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-link svg {
    width: 13px;
    height: 13px;
}

.map-link:hover,
.map-link:focus-visible {
    color: var(--primary);
    text-decoration: underline;
}

/* ────────────────────────────
   PRICING
───────────────────────────── */

.tarifs-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-style: italic;
    margin-bottom: 40px;
}

.tarifs-grid {
    display: grid;
    /* min(100%, 300px) keeps the 300px min on roomy viewports but never
       forces a track wider than the container on very small phones */
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 20px;
}

.categorie {
    position: relative;
    background: var(--white);
    border: 2px dashed rgba(123, 45, 66, 0.22);
    padding: 28px 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Punch-hole reinforcement ring — vertically centred in the header band */
.categorie h3 {
    position: relative;
}

.categorie h3::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg);           /* matches the #services section */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 0 L8 0 M0 4 L8 4' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3Cpath d='M0 0 L0 8 M4 0 L4 8' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3C/svg%3E");
    border: 7px solid rgba(255, 255, 255, 0.95); /* white paper ring */
    box-shadow:
        0 0 0 1px rgba(44, 24, 16, 0.20),        /* outer edge */
        inset 0 0 0 1px rgba(44, 24, 16, 0.15);  /* inner edge around hole */
    z-index: 2; /* above the string */
}

/* String + icon hanging from the hole */
.categorie h3::after {
    content: attr(data-icon);
    position: absolute;
    top: 50%;
    right: 16px;
    width: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    padding-top: 22px; /* string length before icon */
    /* thin string drawn as a centred gradient strip */
    background: linear-gradient(
        rgba(123, 45, 66, 0.32),
        rgba(123, 45, 66, 0.32)
    ) center top / 1.5px 22px no-repeat;
    pointer-events: none;
    z-index: 1; /* behind the hole ring */
}

.categorie:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px var(--shadow);
}

.categorie h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-alt);
    margin: -28px -28px 18px -28px;
    padding: 13px 28px;
}

.categorie-desc {
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.categorie ul {
    list-style: none;
}

.categorie ul li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px dotted var(--border);
}

.categorie ul li:last-child {
    border-bottom: none;
}

.categorie ul li span:first-child {
    color: var(--text-muted);
}

.categorie ul li span:last-child {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ────────────────────────────
   INTERIOR PAGES (legal, etc.)
───────────────────────────── */
/* These pages have no hero, so the header keeps its solid "scrolled" look
   and the logo stays visible from the top. */
body.interior #site-header {
    background: var(--white);
    box-shadow: 0 2px 24px var(--shadow);
    padding: 13px 0;
}

body.interior #site-header .logo {
    opacity: 1;
}

.legal {
    padding-top: 128px; /* clear the fixed header */
}

.legal .container {
    max-width: 820px;
}

.legal h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-style: italic;
    margin-bottom: 36px;
}

.legal h2 {
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* no decorative hanger under legal headings (unlike the homepage sections) */
.legal h2::after {
    display: none;
}

.legal p,
.legal li {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

.legal ul {
    list-style: none;
    margin-bottom: 10px;
}

.legal ul li {
    padding: 3px 0;
}

.legal a {
    color: var(--primary);
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.legal-back {
    display: inline-block;
    margin-top: 44px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
}

.legal-back:hover {
    text-decoration: underline;
}

/* ────────────────────────────
   FOOTER
───────────────────────────── */
footer {
    background: var(--primary);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 44px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg);
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(250, 247, 242, 0.72);
    margin-bottom: 6px;
}

.footer-col a {
    color: rgba(250, 247, 242, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--bg);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.14);
    text-align: center;
    padding: 18px 28px;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(250, 247, 242, 0.4);
}

.footer-bottom a {
    color: rgba(250, 247, 242, 0.6);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--bg);
}

/* ────────────────────────────
   SCROLL INDICATOR
───────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.45;
    transition: opacity 0.4s ease;
    animation: bounce 2.2s ease-in-out infinite;
    line-height: 1;
}

.scroll-indicator:hover {
    opacity: 0.9;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ────────────────────────────
   BACK TO TOP
───────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.25s ease, background 0.25s ease;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}


/* ────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 28px var(--shadow);
        padding: 8px 28px 20px;
    }

    #main-nav.open {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    #main-nav a {
        color: var(--text-muted);
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.88rem;
    }

    #main-nav ul li:last-child a {
        border-bottom: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 260px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-col:first-child {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    section {
        padding: 64px 0;
    }

    .container {
        padding: 0 20px;
    }

    .contact-info {
        padding: 30px 24px;
    }

    /* Pull the care label in from the edge so it clears the container
       padding on the smallest phones */
    .care-label {
        right: 20px;
    }

    /* Tooltip would run off the right edge on a phone — drop it below instead.
       Reserve vertical space under the badge so the always-on tooltip doesn't
       overlap the first hours row. */
    .hours-header {
        margin-bottom: 38px;
    }

    .status-wrap--contact .status-tooltip {
        top: calc(100% + 9px);
        left: auto;
        right: 0;
        transform: none;
    }

    .status-wrap--contact .status-tooltip::before {
        top: auto;
        right: auto;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-right-color: transparent;
        border-bottom-color: var(--white);
    }
}

/* ────────────────────────────
   ATELIER — savoir-faire grid (v1)
───────────────────────────── */
#atelier {
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 0 L8 0 M0 4 L8 4' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3Cpath d='M0 0 L0 8 M4 0 L4 8' stroke='%232C1810' stroke-opacity='0.045' stroke-width='0.6'/%3E%3C/svg%3E");
}

.atelier-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.9;
}

.atelier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.atelier-item {
    margin: 0;
}

.atelier-photo {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: zoom-in;
}

.atelier-photo::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(217, 197, 186, 0.7);
    z-index: 1;
    pointer-events: none;
    transition: inset 0.4s ease;
}

.atelier-item:hover .atelier-photo::before {
    inset: 8px;
}

.atelier-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: sepia(10%) saturate(85%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.atelier-item:hover .atelier-photo img {
    transform: scale(1.05);
    filter: sepia(0%) saturate(100%);
}

.atelier-item figcaption {
    margin-top: 14px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

@media (max-width: 900px) {
    .atelier-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 480px) {
    .atelier-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ────────────────────────────
   LIGHTBOX (shared)
───────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(44, 24, 16, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox img {
    max-width: min(90vw, 620px);
    max-height: 80vh;
    object-fit: contain;
    border: 6px solid var(--white);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}

.lightbox figcaption {
    color: var(--bg);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--bg);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.lightbox-close:hover { opacity: 1; }
