:root {
  --ink: #24201e;
  --muted: #6d6762;
  --paper: #fffdfb;
  --soft: #f4efea;
  --line: #ded4cb;
  --accent: #a87352;
  --accent-dark: #70432f;
  --black: #181716;
  --focus: #005fcc;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; line-height: 1.55; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 760px; font-size: clamp(3rem, 6vw, 6.6rem); }
h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 4.1rem); }
h3 { font-size: 1.45rem; }

.skip-link { position: fixed; left: 14px; top: -80px; z-index: 999; padding: 10px 14px; background: #fff; color: #000; }
.skip-link:focus { top: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.eyebrow { margin-bottom: 10px; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 1px solid var(--accent-dark); border-radius: var(--radius); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease; }
.button.primary { background: var(--accent-dark); color: #fff; }
.button.secondary { background: transparent; color: var(--accent-dark); }
.button.light { border-color: #fff; color: #fff; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(112,67,47,.18); }
.icon-button, .text-button, .link-button { border: 0; background: transparent; color: inherit; cursor: pointer; }
.icon-button { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: var(--radius); transition: transform .18s ease, background-color .18s ease; }
.icon-button:hover { transform: translateY(-1px); }
.link-button { padding: 0; color: var(--accent-dark); font-weight: 800; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 50; color: #fff; }
.site-header.solid { position: sticky; top: 0; background: rgba(24,23,22,.96); backdrop-filter: blur(14px); }
.utility-bar { display: flex; justify-content: space-between; gap: 20px; padding: 9px max(20px, calc((100vw - 1320px) / 2)); border-bottom: 1px solid rgba(255,255,255,.25); font-size: .78rem; }
.utility-actions { display: flex; align-items: center; gap: 6px; }
.eu-utility-link { display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.38); border-radius: var(--radius); background: rgba(255,255,255,.08); color: #fff; font-size: .74rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.eu-utility-link:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); }
.eu-flag-icon { display: inline-flex; align-items: center; width: 29px; aspect-ratio: 3 / 2; overflow: hidden; border: 1px solid rgba(255,255,255,.45); background: #003399; }
.eu-flag-icon img { display: block; width: 100%; height: 100%; object-fit: cover; }
.language-switch { display: flex; gap: 6px; align-items: center; }
.lang-button { min-height: 34px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.38); border-radius: var(--radius); background: rgba(255,255,255,.08); color: #fff; font-size: .74rem; font-weight: 800; cursor: pointer; }
.lang-button.active { background: #fff; color: var(--black); border-color: #fff; }
.utility-icon { width: 34px; height: 34px; border-color: rgba(255,255,255,.42); }
.text-button { padding: 0; font-weight: 700; }
.main-nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; padding: 10px max(20px, calc((100vw - 1320px) / 2)); }
.brand img { width: 172px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { font-size: .88rem; font-weight: 800; text-decoration: none; transition: color .18s ease, transform .18s ease; }
.nav-links a:hover { transform: translateY(-1px); color: #f0d3c0; }
.nav-cta { padding: 10px 14px; border: 1px solid #fff; border-radius: var(--radius); }
.menu-toggle { display: none; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 2px; background: currentColor; }

.hero { position: relative; min-height: min(900px, 100svh); display: grid; align-items: end; overflow: hidden; color: #fff; }
.hero video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { background: linear-gradient(180deg, rgba(20,14,11,.25) 15%, rgba(20,14,11,.8) 100%); }
.hero-content { position: relative; z-index: 2; width: min(1320px, calc(100% - 40px)); margin: 0 auto; padding: 190px 0 90px; }
.hero-content > p:not(.eyebrow) { max-width: 650px; font-size: 1.14rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero .button.secondary { border-color: #fff; color: #fff; }
.hero-next { position: absolute; right: max(20px, calc((100vw - 1320px) / 2)); bottom: 38px; z-index: 2; color: #fff; font-size: 2rem; text-decoration: none; }

.section { padding: 100px max(20px, calc((100vw - 1320px) / 2)); }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading.align-left { margin-left: 0; text-align: left; }
.section-heading p:last-child { color: var(--muted); font-size: 1.06rem; }
.service-grid, .case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card, .case-card { background: #fff; border: 1px solid var(--line); }
.service-card, .case-card, .salon-preview-card, .contact-card, .map-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card:hover, .case-card:hover, .salon-preview-card:hover, .contact-card:hover, .map-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(36,32,30,.12); border-color: rgba(168,115,82,.45); }
.service-card img, .case-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card div, .case-content { padding: 24px; }
.service-card p, .case-card p { color: var(--muted); }
.service-card a { color: var(--accent-dark); font-weight: 800; text-decoration: none; }
.case-studies { background: var(--soft); }
.case-content span { color: var(--accent); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.case-content .link-button { text-decoration: none; }
.cases-all-link { margin: 28px 0 0; text-align: center; }

.salon-preview { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr); gap: 36px; align-items: center; background: #fff; }
.salon-preview .section-heading { margin-bottom: 0; }
.salon-preview-card { position: relative; display: block; min-height: 360px; overflow: hidden; border: 1px solid var(--line); color: #fff; text-decoration: none; }
.salon-preview-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; filter: saturate(1.03) contrast(1.03); transition: transform .45s ease; }
.salon-preview-card:hover img { transform: scale(1.04); }
.salon-preview-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.68)); }
.salon-preview-card span { position: absolute; top: 20px; left: 20px; z-index: 1; display: grid; place-items: center; width: 70px; height: 70px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(0,0,0,.38); font-weight: 900; }
.salon-preview-card strong { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; font-size: clamp(1.5rem, 3vw, 2.7rem); line-height: 1.05; }

.subpage-hero { padding: 120px max(20px, calc((100vw - 1320px) / 2)) 60px; background: var(--soft); }
.subpage-hero.compact { padding-top: 88px; }
.subpage-hero h1 { max-width: 960px; color: var(--ink); font-size: clamp(2.6rem, 5vw, 5.4rem); }
.subpage-hero p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.08rem; }

.tour-section { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); min-height: 680px; background: var(--black); color: #fff; }
.tour-section.standalone { min-height: 720px; margin-bottom: 70px; }
.tour-copy { align-self: center; padding: 70px max(30px, calc((100vw - 1320px) / 2)); padding-right: 55px; }
.tour-copy p:not(.eyebrow) { color: #d1cbc6; }
.tour-controls { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.tour-controls #tourCounter { min-width: 48px; white-space: nowrap; text-align: center; }
.tour-viewer { position: relative; min-height: 550px; overflow: hidden; cursor: grab; background: #111; touch-action: none; user-select: none; }
.tour-viewer:active, .tour-viewer.dragging { cursor: grabbing; }
.tour-viewer img { width: 100%; height: 100%; max-width: none; object-fit: cover; pointer-events: none; }
.tour-degree { position: absolute; top: 18px; left: 18px; display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(0,0,0,.48); color: #fff; font-weight: 800; }
.tour-hint { position: absolute; right: 18px; bottom: 38px; padding: 8px 12px; background: rgba(0,0,0,.65); font-size: .78rem; pointer-events: none; }
.tour-scrubber { position: absolute; right: 18px; bottom: 17px; left: 18px; width: calc(100% - 36px); min-height: auto; padding: 0; border: 0; accent-color: #fff; cursor: ew-resize; }
.tour-viewer:fullscreen { width: 100vw; height: 100vh; }
.tour-viewer:fullscreen img { object-fit: cover; }

.advice { background: #fff; }
.advice-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 12px; align-items: end; max-width: 1180px; margin: 0 auto; padding: 24px; border: 1px solid var(--line); }
.advice-form label, .search-field { display: grid; gap: 6px; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
input, select { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); }
.form-status { grid-column: 1 / -1; margin: 0; color: var(--accent-dark); font-weight: 800; }

.shop-section { padding: 100px max(20px, calc((100vw - 1320px) / 2)); background: var(--soft); }
.shop-header { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 35px; }
.shop-header > div:first-child { max-width: 760px; }
.shop-tools { display: flex; align-items: end; gap: 14px; min-width: 300px; }
.shop-tools span { white-space: nowrap; font-size: .8rem; font-weight: 800; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.product-card { position: relative; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .3s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-card > span { position: absolute; top: 10px; left: 10px; padding: 4px 7px; background: var(--black); color: #fff; font-size: .68rem; font-weight: 800; }
.product-info { padding: 15px; }
.product-info h3 { min-height: 42px; margin-bottom: 8px; font-size: .96rem; }
.product-info p { margin: 0; color: var(--accent-dark); font-weight: 800; }

.social { background: #fff; }
.social-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin-bottom: 25px; }
.social-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 75px max(20px, calc((100vw - 1100px) / 2)); background: #2c2420; color: #fff; }
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter .consent, .newsletter .form-status { grid-column: 1 / -1; }
.consent { display: flex; gap: 8px; align-items: start; font-size: .78rem; }
.consent input { width: auto; min-height: 0; margin-top: 3px; }
.contact-section { display: flex; justify-content: space-between; gap: 40px; align-items: center; padding: 90px max(20px, calc((100vw - 1320px) / 2)); }
.contact-section > div:first-child { max-width: 760px; }
.contact-page { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); gap: 22px; padding: 0 max(20px, calc((100vw - 1320px) / 2)) 90px; }
.contact-card, .map-card { background: #fff; border: 1px solid var(--line); }
.contact-card { padding: 34px; }
.contact-list { display: grid; gap: 10px; margin-top: 24px; }
.contact-list a { display: grid; gap: 2px; padding: 16px; border: 1px solid var(--line); color: inherit; text-decoration: none; transition: transform .18s ease, background-color .18s ease; }
.contact-list a:hover { transform: translateX(3px); background: var(--soft); }
.contact-list span { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.contact-list strong { color: var(--accent-dark); }
.map-card { min-height: 520px; overflow: hidden; }
.map-card iframe { display: block; width: 100%; height: 100%; min-height: 520px; border: 0; filter: saturate(.95) contrast(1.02); }
footer,
.site-footer { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 28px; align-items: start; padding: 34px max(20px, calc((100vw - 1320px) / 2)); background: var(--black); color: #cfc9c5; font-size: .82rem; }
footer img,
.site-footer img { width: 150px; filter: brightness(0) invert(1); }
footer p,
.site-footer p { margin: 0; }
.footer-brand { display: grid; gap: 12px; }
.footer-brand p { max-width: 260px; color: #f4efea; font-weight: 800; }
.footer-contact { display: grid; gap: 6px; font-style: normal; }
.footer-contact span,
.footer-links span { color: #9f9893; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a,
.footer-links a { color: #f4efea; text-decoration: none; }
.footer-contact a:hover,
.footer-links a:hover { color: #f0d3c0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: flex-end; }
.footer-links span { flex-basis: 100%; text-align: right; }

.accessibility-panel, .chat-panel { position: fixed; z-index: 100; background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(0,0,0,.22); }
.accessibility-panel { top: 90px; right: 18px; width: 290px; padding: 14px; }
.accessibility-copy { margin: 12px 0 16px; color: var(--muted); font-size: .92rem; }
.accessibility-toggle { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--black); color: #fff; font-weight: 800; text-align: center; cursor: pointer; }
.accessibility-toggle + .accessibility-toggle { margin-top: 8px; }
.accessibility-toggle.alt { background: #fff; color: var(--ink); }
.accessibility-toggle.active { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.panel-head, .chat-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.chat-launcher { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; gap: 8px; align-items: center; min-height: 50px; padding: 12px 16px; border: 0; border-radius: 30px; background: var(--accent-dark); color: #fff; font-weight: 800; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.chat-panel { right: 18px; bottom: 82px; width: min(370px, calc(100vw - 36px)); }
.chat-head { padding: 13px; background: var(--black); color: #fff; }
.chat-head div { display: grid; }
.chat-head span { color: #cfc9c5; font-size: .7rem; }
.chat-messages { height: 265px; padding: 14px; overflow-y: auto; background: var(--soft); }
.chat-bubble { max-width: 84%; width: fit-content; padding: 9px 11px; border-radius: 12px; background: #fff; }
.chat-bubble.user { margin-left: auto; background: var(--accent-dark); color: #fff; }
.quick-replies { display: flex; gap: 6px; padding: 8px; overflow-x: auto; }
.quick-replies button { white-space: nowrap; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 700; cursor: pointer; }
.chat-panel form { display: grid; grid-template-columns: 1fr 42px; gap: 6px; padding: 8px; border-top: 1px solid var(--line); }
.chat-panel input { min-height: 42px; }
.send { background: var(--accent-dark); color: #fff; }
dialog { width: min(650px, calc(100% - 30px)); border: 0; padding: 34px; }
dialog::backdrop { background: rgba(0,0,0,.65); }
.dialog-close { position: absolute; right: 12px; top: 12px; }

body.a11y-large { font-size: 118%; }
body.a11y-links a:not(.button):not(.nav-cta):not(.cart-link),
body.a11y-links button.link-button,
body.a11y-links .service-card a,
body.a11y-links .case-content a { text-decoration: underline !important; text-decoration-thickness: 2px; text-underline-offset: 3px; }
body.a11y-bw { --ink:#000; --muted:#1d1d1d; --paper:#fff; --soft:#f2f2f2; --line:#000; --accent:#000; --accent-dark:#000; --black:#000; background:#fff; color:#000; }
body.a11y-bw img, body.a11y-bw video { filter: grayscale(1) contrast(1.08); }
body.a11y-bw .hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.2) 15%, rgba(0,0,0,.86) 100%); }
body.a11y-bw .service-card,
body.a11y-bw .case-card,
body.a11y-bw .store-product,
body.a11y-bw .newsletter,
body.a11y-bw .chat-panel,
body.a11y-bw .accessibility-panel,
body.a11y-bw .social-grid a { background: #fff; color: #000; border-color: #000; }
body.a11y-bw .chat-launcher,
body.a11y-bw .button.primary,
body.a11y-bw .accessibility-toggle,
body.a11y-bw .quick-replies button,
body.a11y-bw .send { background: #000; color: #fff; border-color: #000; }
body.a11y-bw .accessibility-toggle.alt { background: #fff; color: #000; }
body.a11y-bw .accessibility-toggle.active { background: #000; color: #fff; }
body.a11y-bw .button.secondary,
body.a11y-bw .icon-button,
body.a11y-bw .lang-button.active { border-color: #000; color: #000; }
body.a11y-bw .lang-button { background: #fff; color: #000; border-color: #000; }
body.a11y-bw .site-header,
body.a11y-bw .tour-section,
body.a11y-bw footer,
body.a11y-bw .chat-head { color: #fff; }
body.a11y-bw .social-grid a { display: block; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .nav-links { position: absolute; top: 100%; left: 16px; right: 16px; display: none; align-items: stretch; padding: 16px; background: #fff; color: var(--ink); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
  .nav-links.open { display: grid; }
  .menu-toggle { display: inline-grid; }
  .service-grid, .case-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .advice-form { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .salon-preview, .contact-page { grid-template-columns: 1fr; }
  .tour-section { grid-template-columns: 1fr; }
  .tour-copy { padding: 70px 20px; }
}

@media (max-width: 700px) {
  h1 { font-size: 3rem; }
  .utility-bar > span { display:none; }
  .utility-bar { justify-content:flex-start; padding: 6px 8px; overflow: hidden; }
  .language-switch { flex-wrap: nowrap; justify-content: flex-start; flex: 0 0 auto; gap: 3px; }
  .utility-actions { flex-wrap: nowrap; justify-content: flex-start; gap: 4px; width: 100%; overflow-x: auto; scrollbar-width: none; }
  .utility-actions::-webkit-scrollbar { display: none; }
  .lang-button { min-height: 30px; padding: 5px 7px; font-size: .68rem; }
  .utility-icon { width: 30px; min-width: 30px; height: 30px; }
  .eu-utility-link { min-height: 30px; gap: 5px; padding: 5px 7px; font-size: .66rem; }
  .utility-actions > .eu-utility-link:first-child span:last-child { display: none; }
  .eu-flag-icon { width: 26px; }
  .main-nav { min-height: 66px; padding-top: 8px; padding-bottom: 8px; }
  .brand img { width: 138px; }
  .hero-content { padding-bottom: 65px; }
  .section, .shop-section { padding-top: 70px; padding-bottom: 70px; }
  .service-grid, .case-grid, .product-grid, .advice-form { grid-template-columns: 1fr; }
  .shop-header, .contact-section, .newsletter { display: grid; grid-template-columns: 1fr; }
  .shop-tools { min-width: 0; }
  .social-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .newsletter form { grid-template-columns: 1fr; }
  .newsletter .consent, .newsletter .form-status { grid-column: auto; }
  .tour-controls { gap: 8px; }
  .tour-controls .button { flex: 1; padding: 10px 8px; font-size: .78rem; }
  .tour-controls #tourCounter { min-width: 44px; font-size: .82rem; }
  .tour-section.standalone { min-height: auto; margin-bottom: 40px; }
  .tour-viewer { min-height: 430px; }
  .salon-preview-card, .salon-preview-card img { min-height: 300px; }
  .contact-page { padding-bottom: 70px; }
  .contact-card { padding: 24px; }
  .map-card, .map-card iframe { min-height: 390px; }
  footer,
  .site-footer { grid-template-columns: 1fr; gap: 22px; }
  .footer-links { justify-content: flex-start; }
  .footer-links span { text-align: left; }
}
