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

  :root {
    --cream: #F3EBDD;
    --gold: #C8A96B;
    --gold-light: #d4ba85;
    --gold-dark: #a8894d;
    --text-dark: #3a3226;
    --text-body: #5c5245;
    --white: #FFFCF7;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; }

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

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 16px;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
  }
  nav.scrolled {
    background: rgba(243, 235, 221, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(200,169,107,0.08);
    padding: 0.8rem 2rem;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    margin: 6px 0;
    transition: all 0.3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,107,0.06) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,107,0.04) 0%, transparent 70%);
    animation: pulse-glow 10s ease-in-out infinite reverse;
  }
  @keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
  }

  .hero-logo-img {
    display: block;
    width: clamp(280px, 42vw, 460px);
    height: auto;
    margin: 0 auto 1.5rem;
    animation: fade-up 1.4s ease forwards;
    filter: drop-shadow(0 8px 24px rgba(200,169,107,0.18));
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
    position: relative;
    animation: fade-up 1.2s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
  }
  .hero-divider::after {
    content: '◇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6rem;
    color: var(--gold);
    background: var(--cream);
    padding: 0 0.8rem;
  }
  .hero-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-body);
    max-width: 550px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fade-up 1.2s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.5s ease;
    animation: fade-up 1.2s ease forwards;
    animation-delay: 1s;
    opacity: 0;
  }
  .hero-cta:hover {
    background: var(--gold);
    color: var(--cream);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fade-up 1.2s ease forwards, bounce 2s ease infinite 2s;
    animation-delay: 1.5s;
    opacity: 0;
  }
  .scroll-indicator svg { width: 20px; color: var(--gold); opacity: 0.5; }

  @keyframes fade-up {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ─── SECTIONS ─── */
  section { padding: 7rem 2rem; }

  .section-label {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .section-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto 3rem;
    position: relative;
  }
  .section-divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.45rem;
    color: var(--gold);
    background: var(--cream);
    padding: 0 0.6rem;
  }

  /* ─── OVER ONS ─── */
  .about {
    background: var(--cream);
    position: relative;
  }
  .about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
  }
  .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(200,169,107,0.2);
  }
  .about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50%;
    height: 50%;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.4;
  }
  .about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50%;
    height: 50%;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.4;
  }
  .about-text h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  .about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
  }
  .about-signature {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 1rem;
  }

  /* ─── DIENSTEN ─── */
  .services {
    background: var(--white);
    position: relative;
  }
  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .service-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(200,169,107,0.15);
    transition: all 0.5s ease;
    position: relative;
    background: var(--white);
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(200,169,107,0.08);
    transition: border-color 0.5s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(200,169,107,0.08);
  }
  .service-card:hover::before {
    border-color: rgba(200,169,107,0.2);
  }
  .service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.8rem;
    color: var(--gold);
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .service-card p {
    font-size: 1rem;
    line-height: 1.85;
  }

  /* ─── PRIJZEN ─── */
  .pricing {
    background: var(--white);
    position: relative;
  }
  .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    align-items: start;
  }
  .pricing-category {
    margin-bottom: 2rem;
  }
  .pricing-note {
    grid-column: 1 / -1;
  }
  .pricing-category h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(200,169,107,0.2);
  }
  .pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200,169,107,0.1);
  }
  .pricing-item:last-child { border-bottom: none; }
  .pricing-name { font-size: 1.05rem; color: var(--text-body); }
  .pricing-dots {
    flex: 1;
    margin: 0 1rem;
    border-bottom: 1px dotted rgba(200,169,107,0.3);
    align-self: center;
    margin-bottom: 4px;
  }
  .pricing-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
  }

  /* ─── AVEDA ─── */
  .aveda {
    background: var(--cream);
  }
  .aveda-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .aveda-intro p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 1.5rem;
  }
  .aveda-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--gold);
    padding: 1.5rem 0 1.5rem 2rem;
    border-left: 2px solid var(--gold);
    margin: 2rem 0;
  }
  .aveda-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .aveda-feature {
    padding: 1.5rem 1.8rem;
    border: 1px solid rgba(200,169,107,0.18);
    background: var(--white);
    transition: all 0.4s ease;
  }
  .aveda-feature:hover {
    transform: translateX(6px);
    border-color: rgba(200,169,107,0.4);
    box-shadow: 0 10px 30px rgba(200,169,107,0.06);
  }
  .aveda-feature h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .aveda-feature p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-body);
  }

  /* ─── GALLERY ─── */
  .gallery {
    background: var(--white);
    position: relative;
  }
  .gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .gallery-intro {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
  }
  .gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    border: 1px solid rgba(200,169,107,0.15);
    animation: gallery-fade 0.8s ease both;
  }
  @keyframes gallery-fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* wide before/after collages span full width, shown in full */
  .gallery-item.wide { grid-column: span 6; aspect-ratio: 7 / 5; }
  .gallery-item.wide img { object-fit: contain; background: var(--cream); }
  /* portraits: 2 per row on desktop (3 cols each) → nette 2×2 */
  .gallery-item.tall { grid-column: span 3; aspect-ratio: 3 / 4; }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.5rem 1.2rem 1rem;
    background: linear-gradient(transparent, rgba(58,50,38,0.75));
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
  .gallery-zoom {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    background: rgba(243,235,221,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dark);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .gallery-item:hover .gallery-zoom { opacity: 1; }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(33,28,20,0.94);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
  }
  .lightbox.active { display: flex; }
  .lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lb-in 0.35s ease;
  }
  @keyframes lb-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
  .lightbox-caption {
    color: var(--cream);
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
  }
  .lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    font-family: inherit;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
  }
  .lightbox-close:hover { color: var(--gold); }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--cream);
    font-size: 3.5rem;
    font-family: inherit;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: color 0.3s;
  }
  .lightbox-nav:hover { color: var(--gold); }
  .lightbox-close:focus-visible,
  .lightbox-nav:focus-visible,
  .gallery-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }

  /* ─── CONTACT ─── */
  .contact {
    background: var(--white);
    position: relative;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 2rem;
  }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }
  .contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .contact-item-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }
  .contact-item-value {
    font-size: 1.05rem;
    color: var(--text-body);
  }
  .contact-item-value a {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-item-value a:hover { color: var(--gold); }

  .opening-hours {
    border: 1px solid rgba(200,169,107,0.2);
    padding: 2.5rem;
    position: relative;
  }
  .opening-hours::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid rgba(200,169,107,0.08);
  }
  .opening-hours h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(200,169,107,0.08);
    font-size: 0.95rem;
  }
  .hours-row:last-child { border-bottom: none; }
  .hours-day { color: var(--text-body); }
  .hours-time { color: var(--gold); font-weight: 400; }
  .hours-closed { color: var(--gold); opacity: 0.5; }
  .hours-note {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(200,169,107,0.15);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-body);
    text-align: center;
  }

  /* ─── THUISSERVICE ─── */
  .home-service {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .home-service-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(200,169,107,0.25);
    padding: 3.5rem 2.5rem;
    position: relative;
    background: var(--white);
  }
  .home-service-inner::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(200,169,107,0.1);
    pointer-events: none;
  }
  .home-service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .home-service-inner h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .home-service-inner p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    max-width: 540px;
    margin: 0 auto 2rem;
  }
  .home-service-inner strong {
    color: var(--gold-dark);
    font-weight: 500;
  }
  .home-service-contacts {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .home-service-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
  }
  .home-service-btn:hover {
    background: var(--gold-dark);
  }
  .home-service-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
  }
  .home-service-btn-outline:hover {
    background: var(--gold);
    color: var(--cream);
  }

  /* ─── MAP PLACEHOLDER ─── */
  .map-section {
    background: var(--cream);
    padding: 0;
  }
  .map-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(200,169,107,0.1), rgba(200,169,107,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(200,169,107,0.15);
    border-bottom: 1px solid rgba(200,169,107,0.15);
    position: relative;
    overflow: hidden;
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: sepia(20%) saturate(70%) brightness(105%);
  }
  .map-consent {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(200,169,107,0.12), rgba(200,169,107,0.04));
  }
  .map-consent svg { width: 34px; height: 34px; color: var(--gold); }
  .map-consent p {
    max-width: 360px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
  }
  .map-consent-btn {
    background: var(--gold);
    color: var(--cream);
    border: none;
    cursor: pointer;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.4s ease;
  }
  .map-consent-btn:hover { background: var(--gold-dark); }

  /* ─── COOKIE BANNER ─── */
  .cookie-banner {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translate(-50%, 150%);
    width: calc(100% - 2.4rem);
    max-width: 720px;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.2rem 1.6rem;
    background: var(--white);
    border: 1px solid rgba(200,169,107,0.3);
    box-shadow: 0 12px 40px rgba(58,50,38,0.15);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .cookie-banner.visible { transform: translate(-50%, 0); }
  .cookie-banner p {
    flex: 1;
    min-width: 220px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-body);
  }
  .cookie-banner a { color: var(--gold-dark); }
  .cookie-banner-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
  .cookie-btn {
    background: var(--gold);
    color: var(--cream);
    border: 1px solid var(--gold);
    cursor: pointer;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s ease;
  }
  .cookie-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
  .cookie-btn-outline { background: transparent; color: var(--gold); }
  .cookie-btn-outline:hover { background: var(--gold); color: var(--cream); }

  @media (max-width: 560px) {
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner-actions { justify-content: center; }
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--cream);
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }
  .footer-sub {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 0.8rem;
    color: var(--text-body);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200,169,107,0.4);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.4s ease;
  }
  .footer-social a:hover {
    background: var(--gold);
    color: var(--cream);
  }
  .footer-social svg {
    width: 20px;
    height: 20px;
  }
  .footer-bottom {
    font-size: 0.75rem;
    color: var(--text-body);
    opacity: 0.5;
    padding-top: 2rem;
    border-top: 1px solid rgba(200,169,107,0.1);
  }
  .footer-bottom span {
    font-size: 0.7rem;
    display: block;
    margin-top: 0.3rem;
  }

  /* ─── INTERSECTION OBSERVER ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.active {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      height: 100vh;
      background: var(--cream);
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      z-index: 999;
    }
    .nav-links.active a {
      font-size: 1.2rem;
      letter-spacing: 0.25em;
    }
    .nav-toggle { display: block; z-index: 1001; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrapper { max-width: 400px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-container { grid-template-columns: 1fr; gap: 1rem; max-width: 500px; }
    .aveda-grid { grid-template-columns: 1fr; gap: 3rem; }
    .gallery-grid { gap: 0.8rem; }
    .gallery-item.tall { grid-column: span 3; }
    .gallery-item.wide { aspect-ratio: 4 / 3; }
    .lightbox-nav { font-size: 2.5rem; padding: 0.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .home-service-contacts { flex-direction: column; }
    .home-service-btn { width: 100%; }
  }