:root {
  --ink: #090909;
  --paper: #f2f0ea;
  --white: #fff;
  --muted: #888780;
  --line: rgba(10, 10, 10, .14);
  --accent: #d5d2ca;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
  --header: "Raleway", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 74px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0;
  height: 88px; padding: 0 clamp(24px, 5vw, 80px); display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
  align-items: center; justify-content: space-between; color: white;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 74px;
  background: rgba(8,8,8,.92);
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--header); font-size: 14px; letter-spacing: .12em; }
.brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; }
.brand b { font-weight: 700; }
.brand small { margin-top: 3px; color: rgba(255,255,255,.48); font-family: var(--sans); font-size: 7px; letter-spacing: .14em; }
nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px,2vw,30px); color: rgba(255,255,255,.78); font-family: var(--header); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
nav a:hover { color: white; }
.header-socials, .footer-socials { display: flex; align-items: center; gap: 8px; }
.social-icon {
  width: 34px; height: 34px; display: grid; place-items: center; padding: 0;
  border: 1px solid rgba(255,255,255,.24); border-radius: 50%;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.social-icon:hover { color: var(--ink); background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.social-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-icon svg path { fill: currentColor; stroke: none; }
.social-icon.dark { color: var(--ink); border-color: rgba(0,0,0,.25); }
.social-icon.dark:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: #fff; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.page-loader {
  position: fixed; z-index: 200; inset: 0; display: grid; place-content: center;
  justify-items: center; gap: 12px; background: #080808; color: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader strong { font: 600 14px var(--display); letter-spacing: .22em; }
.page-loader span { color: #777; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.page-loader::after {
  content: ""; width: 150px; height: 1px; margin-top: 10px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform-origin: left; animation: loaderLine 1.1s ease-in-out infinite;
}
.barber-pole {
  width: 42px; height: 86px; margin-bottom: 14px; overflow: hidden;
  border: 3px solid #eee; border-radius: 20px; background:
    repeating-linear-gradient(-45deg,#f2f0ea 0 12px,#222 12px 24px,#a82828 24px 36px,#222 36px 48px);
  background-size: 68px 68px; box-shadow: 0 0 35px rgba(255,255,255,.12);
  animation: barberPole .85s linear infinite;
}
@keyframes barberPole { to { background-position: 0 68px; } }
@keyframes loaderLine {
  0%, 100% { opacity: .2; transform: scaleX(.2); }
  50% { opacity: 1; transform: scaleX(1); }
}

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 32px;
  min-height: 56px; padding: 0 26px; border: 1px solid white; background: white;
  color: black; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  font-family: var(--header);
}
.button-icon { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button:hover { background: #d5d2ca; border-color: #d5d2ca; }
.button-small { min-height: 42px; padding: 0 18px; gap: 10px; }
.button-dark { background: var(--ink); border-color: var(--ink); color: white; }
.text-link { display: inline-flex; gap: 22px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.hero {
  min-height: 820px; padding: 155px clamp(24px, 7vw, 120px) 90px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; color: white; background: #070707;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .42; pointer-events: none;
  background: radial-gradient(circle at 70% 40%, #3b3b3b 0, #111 31%, transparent 55%);
}
.hero-noise { position: absolute; inset: -15% 0 0; opacity: .12; transform: translate3d(0,var(--parallax-y,0),0); will-change: transform; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow { display: block; font-size: 11px; letter-spacing: .22em; font-weight: 600; margin-bottom: 30px; color: rgba(255,255,255,.6); }
.eyebrow.dark { color: #6d6b66; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(48px, 5vw, 76px); }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; }
.hero-copy > p { max-width: 460px; margin: 34px 0; color: rgba(255,255,255,.6); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 40px; }
.hero-mark { position: absolute; z-index: 1; right: -6%; top: 4%; width: 55vw; height: 78%; opacity: .5; mix-blend-mode: screen; transform: translate3d(0,var(--parallax-y,0),0); will-change: transform; }
.hero-mark img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.2); }
.hero-meta { position: absolute; z-index: 2; left: clamp(24px, 7vw, 120px); right: clamp(24px, 7vw, 120px); bottom: 42px; display: flex; justify-content: flex-end; gap: 70px; }
.hero-meta div { display: flex; gap: 14px; font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.hero-meta span { color: white; }
.meta-icon {
  width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 13px;
}
.hero-meta p { margin: 0; line-height: 1.5; text-transform: uppercase; }

.ticker { overflow: hidden; white-space: nowrap; padding: 17px 0; border-bottom: 1px solid #333; background: #171717; color: #ddd; font-family: var(--display); font-size: 13px; letter-spacing: .14em; font-weight: 700; }
.ticker div { width: max-content; animation: ticker 22s linear infinite; }
.ticker i { margin: 0 35px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px clamp(24px, 7vw, 120px); }
.section-label { display: flex; gap: 14px; font-size: 13px; letter-spacing: .16em; font-weight: 600; margin-bottom: 80px; }
.section-label span { color: #888; }
.section-label.light { color: white; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; }
h2 { font-size: clamp(38px, 4.3vw, 68px); }
.about-copy { max-width: 570px; padding-top: 8px; }
.about-copy p { color: #66645f; line-height: 1.7; }
.about-copy .lead { color: #171717; font-size: 22px; line-height: 1.55; }
.about-copy .text-link { margin-top: 25px; }

.services { background: var(--ink); color: white; }
.services-heading { display: grid; grid-template-columns: 1fr 300px; align-items: end; gap: 40px; margin-bottom: 70px; }
.services-heading p { color: #858585; line-height: 1.6; }
.service-list { border-top: 1px solid #333; }
.service-row { display: grid; grid-template-columns: 54px 42px 1fr 105px 85px; align-items: center; gap: 18px; min-height: 96px; border-bottom: 1px solid #333; transition: .2s; }
.service-row:hover { padding-left: 16px; background: #111; }
.service-row .number { color: #666; font-size: 11px; }
.service-icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid #383838; border-radius: 50%; color: #bbb;
}
.service-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.service-row:hover .service-icon { color: #fff; border-color: #777; }
.service-row h3 { font-family: var(--display); font-size: clamp(19px, 1.7vw, 28px); font-weight: 500; margin: 0; }
.service-row p { color: #777; font-size: 12px; }
.service-row strong { font-size: 15px; }

.booking { background: #d9d7d0; }
.booking-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.booking-intro { position: sticky; top: 40px; }
.booking-intro p { color: #686660; max-width: 450px; line-height: 1.7; margin: 30px 0; }
.booking-note { font-size: 13px; display: flex; gap: 10px; align-items: center; }
.booking-note span { width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--ink); color: white; }
.booking-note svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.booking-card { background: var(--paper); padding: 44px; }
.form-step { display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.step-number { width: 28px; height: 28px; border: 1px solid #aaa; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.field label { display: block; margin-bottom: 16px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.field select, .field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #aaa; background: transparent; border-radius: 0; padding: 13px 3px; outline: none; }
.field select:focus, .field input:focus, .field textarea:focus { border-color: #000; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-grid .full { grid-column: 1 / -1; }
.calendar-navigation { display: grid; grid-template-columns: 42px 1fr 42px; align-items: center; gap: 10px; margin-bottom: 12px; }
.calendar-navigation strong { text-align: center; font: 600 13px var(--header); letter-spacing: .08em; text-transform: uppercase; }
.calendar-navigation button { width: 42px; height: 38px; border: 1px solid #c2c0ba; background: transparent; }
.calendar-navigation button:disabled { opacity: .3; cursor: not-allowed; }
.date-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.date-button, .time-button { border: 1px solid #c2c0ba; background: transparent; padding: 12px 5px; }
.date-button span, .date-button b { display: block; }
.date-button span { font-size: 10px; color: #777; margin-bottom: 4px; text-transform: uppercase; }
.date-button b { font-size: 17px; }
.date-button.active, .time-button.active { background: var(--ink); color: white; border-color: var(--ink); }
.time-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.time-button { min-height: 51px; font-size: 13px; }
.time-button span, .time-button small { display: block; }
.time-button small { margin-top: 3px; color: #8a8882; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.time-button.unavailable { cursor: not-allowed; border-color: #d5d2cc; background: #e7e5df; color: #9d9b95; opacity: .78; }
.time-button.unavailable:hover { border-color: #d5d2cc; background: #e7e5df; }
.muted { color: #888; font-size: 13px; }
.form-status { min-height: 25px; font-size: 13px; color: #a02323; }
.full-button { width: 100%; }

.work { background: var(--ink); color: white; }
.work-header { display: flex; align-items: flex-start; justify-content: space-between; }
.instagram-link { font-size: 12px; letter-spacing: .1em; border-bottom: 1px solid #555; padding-bottom: 8px; }
.instagram-showcase { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr); min-height: 520px; border: 1px solid #333; }
.instagram-feature { position: relative; overflow: hidden; min-height: 520px; border-right: 1px solid #333; }
.instagram-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1); opacity: .62; transition: opacity .5s, transform .7s ease; }
.instagram-feature:hover img { transform: scale(1.025); opacity: .76; }
.instagram-feature > div { position: absolute; inset: 0; padding: 45px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(90deg, rgba(0,0,0,.5), transparent); }
.instagram-feature span { color: white; font-size: 10px; letter-spacing: .2em; }
.instagram-feature strong { font-family: var(--display); font-size: clamp(32px, 4vw, 64px); line-height: 1.05; font-weight: 500; }
.instagram-feature b { font-size: 12px; letter-spacing: .1em; }
.instagram-side { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 28px; color: #aaa; line-height: 1.6; }
.instagram-side p { margin: 0; font-size: 18px; }
.outline-button { border: 1px solid #555; padding: 18px; text-align: center; color: white; font-size: 11px; letter-spacing: .1em; }
.outline-button:hover { border-color: white; color: white; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: start; }
.contact-form h2 { margin-bottom: 42px; }
.contact-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 3px; border: 0; border-bottom: 1px solid #aaa; border-radius: 0; background: transparent; outline: none; }
.contact-form textarea { grid-column: 1 / -1; resize: vertical; }
.contact-form-status { min-height: 24px; margin-bottom: 10px; color: #666; font-size: 13px; }
.contact-form-status.error { color: #a02323; }
.contact-form-status.success { color: #27653a; }
.contact-details { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.contact-details > div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-details span, .footer-column > strong { display: block; margin-bottom: 10px; color: #777; font: 600 10px var(--header); letter-spacing: .18em; }
.contact-details a { font: 500 18px var(--display); }
.contact-socials { display: flex; gap: 8px; }
.placeholder-note { margin-top: 60px; color: #777; font-size: 12px; }
footer { padding: 48px clamp(24px, 7vw, 120px); background: var(--paper); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 50px; color: #777; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-copyright { align-self: center; justify-self: center; margin: 0; text-align: center; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column > strong { color: #111; }
.footer-column > a { color: #555; }
.footer-column > a:hover { color: #000; }
.footer-cookie-button { padding: 0; border: 0; color: #555; background: transparent; font: inherit; letter-spacing: inherit; text-transform: uppercase; }
.footer-cookie-button:hover { color: #000; }
.footer-socials { color: #111; }
.reveal-section { opacity: 0; transform: translateY(36px); transition: opacity .75s ease, transform .75s ease; }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }
.error-page { min-height: 100vh; display: grid; place-content: center; gap: 24px; padding: 30px; text-align: center; }
.error-page h1 { color: var(--ink); }
.error-page .button { margin: 0 auto; }

.success-modal { position: fixed; z-index: 100; inset: 0; background: rgba(0,0,0,.75); display: grid; place-items: center; padding: 20px; }
.success-modal[hidden] { display: none; }
.modal-card { position: relative; width: min(480px, 100%); padding: 55px; text-align: center; background: var(--paper); }
.modal-close { position: absolute; right: 18px; top: 14px; background: none; border: 0; font-size: 28px; }
.success-icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 25px; border-radius: 50%; background: var(--ink); color: white; font-size: 24px; }
.modal-card h3 { margin: 5px 0 15px; font-family: var(--display); font-size: 38px; }
.modal-card p { color: #666; line-height: 1.6; }
.modal-done { margin-top: 20px; width: 100%; }

.cookie-banner {
  position: fixed; z-index: 120; left: 24px; right: 24px; bottom: 24px;
  display: grid; grid-template-columns: 46px minmax(220px, 1fr) auto; align-items: center;
  gap: 18px; max-width: 920px; margin: 0 auto; padding: 20px 22px;
  color: #fff; background: rgba(12,12,12,.97); border: 1px solid #353535;
  box-shadow: 0 20px 65px rgba(0,0,0,.38); backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: none; }
.cookie-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #444; border-radius: 50%; }
.cookie-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cookie-banner strong { display: block; margin-bottom: 5px; font: 700 11px var(--header); letter-spacing: .14em; }
.cookie-banner p { margin: 0; color: #aaa; font-size: 12px; line-height: 1.5; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 0 17px; border: 1px solid #555; font: 700 10px var(--header); letter-spacing: .08em; text-transform: uppercase; }
.cookie-secondary { color: #ddd; background: transparent; }
.cookie-primary { color: #000; background: #fff; border-color: #fff !important; }
.cookie-modal { position: fixed; z-index: 130; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(0,0,0,.72); }
.cookie-modal[hidden] { display: none; }
.cookie-panel { position: relative; width: min(920px, 100%); max-height: min(820px, 92vh); overflow: auto; padding: 44px; background: var(--paper); }
.cookie-close { position: absolute; top: 14px; right: 18px; border: 0; background: transparent; font-size: 28px; }
.cookie-panel h3 { margin: 0 0 18px; font: 600 clamp(25px, 3vw, 38px) var(--display); }
.cookie-panel > p { color: #555; line-height: 1.7; }
.cookie-categories { display: grid; grid-template-columns: repeat(4, 1fr); margin: 30px 0; border: 1px solid var(--line); }
.cookie-categories label { min-height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; border-right: 1px solid var(--line); }
.cookie-categories label:last-child { border-right: 0; }
.cookie-categories b, .cookie-categories small { display: block; }
.cookie-categories small { margin-top: 7px; color: #777; line-height: 1.4; }
.cookie-categories input { width: 46px; height: 24px; accent-color: var(--ink); }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 10px; }
.cookie-modal-actions button { min-height: 48px; padding: 0 22px; border: 1px solid #333; font: 700 10px var(--header); letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; grid-column: 2; }
  .header-actions { grid-column: 3; }
  nav {
    position: fixed; inset: 74px 0 auto; display: flex; flex-direction: column; align-items: stretch;
    gap: 0; padding: 18px 24px 28px; background: rgba(8,8,8,.98);
    border-bottom: 1px solid #333; opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  nav a { padding: 15px 0; border-bottom: 1px solid #222; font-size: 16px; }
  .header-socials { justify-content: center; padding-top: 16px; }
  .header-socials a { padding: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .hero { min-height: 760px; grid-template-columns: 1fr; padding-top: 150px; }
  .hero-mark { width: 100vw; right: -30%; opacity: .35; }
  .hero-meta { justify-content: flex-start; gap: 30px; }
  .about-grid, .booking-layout, .contact-grid { grid-template-columns: 1fr; gap: 65px; }
  .booking-intro { position: static; }
  .services-heading { grid-template-columns: 1fr; }
  .instagram-showcase { grid-template-columns: 1fr; }
  .instagram-feature { border-right: 0; border-bottom: 1px solid #333; }
  .instagram-side { min-height: 240px; }
  .cookie-categories { grid-template-columns: 1fr 1fr; }
  .cookie-categories label:nth-child(2) { border-right: 0; }
  .cookie-categories label { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .site-header { height: 74px; padding: 0 18px; }
  .site-header.is-scrolled { height: 68px; }
  .brand span { display: none; }
  .header-actions { gap: 12px; }
  .button-small { width: 44px; min-height: 42px; padding: 0; font-size: 0; gap: 0; }
  .button-small .button-icon { width: 18px; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero { min-height: 700px; padding: 135px 22px 70px; }
  h1 { font-size: clamp(40px, 11vw, 49px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-meta { display: none; }
  .section { padding: 85px 22px; }
  .section-label { margin-bottom: 55px; }
  .service-row { grid-template-columns: 28px 34px 1fr 58px; gap: 9px; min-height: 88px; }
  .service-row p { display: none; }
  .service-icon { width: 32px; height: 32px; }
  .booking-card { padding: 28px 20px; margin: 0 -8px; }
  .form-step { grid-template-columns: 30px 1fr; gap: 10px; }
  .date-strip { grid-template-columns: repeat(4, 1fr); }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid .full { grid-column: auto; }
  .instagram-feature, .instagram-showcase { min-height: 430px; }
  .instagram-feature > div, .instagram-side { padding: 28px; }
  .contact-form-fields { grid-template-columns: 1fr; }
  .contact-form textarea { grid-column: auto; }
  footer { grid-template-columns: 1fr 1fr; gap: 34px; }
  footer > p { grid-column: 1 / -1; justify-self: center; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 38px 1fr; padding: 17px; }
  .cookie-icon { width: 38px; height: 38px; }
  .cookie-actions { grid-column: 1 / -1; }
  .cookie-actions button { flex: 1; padding: 0 10px; }
  .cookie-actions { flex-wrap: wrap; }
  .cookie-panel { padding: 34px 20px 22px; }
  .cookie-categories { grid-template-columns: 1fr; }
  .cookie-categories label, .cookie-categories label:nth-child(2) { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line); }
  .cookie-modal-actions { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div { animation: none; }
  .reveal-section { opacity: 1; transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
  .barber-pole { animation: none; }
  .page-loader::after { animation: none; }
}
