/* Optik Berg */

/* Fonts */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/instrument-sans-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: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/instrument-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/instrument-sans-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: 'Instrument Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/instrument-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/manrope-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: 'Manrope';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #FAF8F5;
  --bg-warm: #F2EEE7;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --muted: #8A8581;
  --line: #E5DFD6;
  --accent: #C8553D;
  --accent-dark: #A8432F;
  --black: #111;

  --serif: 'Instrument Sans', 'Manrope', system-ui, -apple-system, sans-serif;
  --sans: 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --topbar-h: 38px;
  --nav-h: 84px;
  --max: 1280px;
  --max-narrow: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--max-narrow); }

/* Typography */
.display {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin: 0;
  color: #3A352F;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: inherit;
}

h1.display, h2.display { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.eyebrow-center { display: block; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--ink); }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: #EFEAE2;
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar a { color: #EFEAE2; }
.topbar a:hover { color: var(--accent); }
.topbar-hours { color: #B8B0A4; letter-spacing: 0.04em; }
.topbar-phone { display: inline-flex; align-items: center; gap: 8px; }
.topbar-mail { color: #EFEAE2; }
.topbar-cta { margin-left: auto; font-weight: 600; letter-spacing: 0.06em; }

/* Navigation */
.nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 49;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-right: auto;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
  overflow: visible;
}
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-cta { padding: 15px 32px; font-size: 15px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--topbar-h) - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-image { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 21s ease-in-out infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -14s; }
.hero-slide:nth-child(3) { animation-delay: -7s; }
@keyframes heroSlide {
  0%      { opacity: 0; transform: scale(1.04); }
  4.76%   { opacity: 1; }
  28.57%  { opacity: 1; transform: scale(1.08); }
  33.33%  { opacity: 0; transform: scale(1.08); }
  100%    { opacity: 0; transform: scale(1.04); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 80%);
  display: flex;
  align-items: flex-end;
}
.hero-text {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 80px;
  color: #fff;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
h1.hero-headline {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.75rem);
  max-width: 18ch;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: #fff;
  margin-top: 8px;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* Statement */
.statement {
  padding: clamp(120px, 18vh, 200px) 0;
  text-align: center;
  background: var(--bg);
}
.statement-headline { margin-bottom: 40px; }
.statement-body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}
.statement-tagline {
  margin-top: 24px;
}

/* About */
.about { padding: 0; background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.about-image {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
}
.about-text .display { margin-bottom: 32px; }
.about-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}

/* Brands */
.brands {
  padding: clamp(120px, 16vh, 180px) 0;
  background: var(--bg);
}
.brands-head { text-align: center; margin-bottom: 80px; }
.brands-headline { margin-bottom: 24px; }
.brands-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}
.brands-wall {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
}
.brands-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  max-width: 1100px;
}
.brands-wall li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.brands-wall li:hover { background: var(--bg-warm); }
.brands-wall li img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.15);
  opacity: 0.85;
  transition: opacity .25s ease, filter .25s ease;
}
.brands-wall li:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
.brand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--ink);
  line-height: 1.2;
}
.brand-name small {
  display: block;
  font-size: 0.65rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Services */
.services {
  padding: clamp(120px, 16vh, 180px) 0;
  background: var(--bg-warm);
}
.section-head { text-align: center; margin-bottom: 80px; }
.section-head .display { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
}
.service:last-child { border-right: 0; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}
.service h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* Booking */
.booking {
  padding: clamp(120px, 16vh, 180px) 0;
  background: var(--bg);
  text-align: center;
}
.booking-headline { margin-bottom: 24px; }
.booking-sub {
  color: var(--ink-soft);
  margin-bottom: 56px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.booking-sub a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.booking-embed {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
}
.booking-embed iframe {
  width: 100%;
  height: 800px;
  border: 0;
  display: block;
}
.booking-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 48px 32px;
  text-align: center;
  color: var(--ink);
}
.booking-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 18px;
}
.booking-placeholder h3 {
  margin-bottom: 12px;
  color: var(--ink);
}
.booking-placeholder p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 380px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.booking-placeholder p.map-permanent { margin-top: 14px; margin-bottom: 0; font-size: 0.85rem; }
.booking-placeholder a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

/* Contact */
.contact { background: var(--bg-warm); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.contact-info {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info .display { margin-bottom: 56px; }
.contact-block { margin-bottom: 40px; }
.contact-block h3 {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-block p { margin-bottom: 12px; }
.contact-block a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.contact-block a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours-note {
  display: block !important;
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem !important;
  padding-top: 14px !important;
}
.contact-map {
  position: relative;
  background: var(--ink);
  min-height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: var(--ink);
  color: var(--bg);
}
.map-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--bg);
  margin-bottom: 16px;
  opacity: 0.7;
}
.map-placeholder h3 { color: var(--bg); margin-bottom: 12px; }
.map-placeholder p {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 20px;
}
.map-placeholder a {
  color: var(--bg);
  border-bottom: 1px solid rgba(250,248,245,0.4);
}
.map-permanent {
  margin-top: 14px !important;
  font-size: 0.85rem !important;
}
.map-permanent label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

/* Footer */
.footer {
  background: var(--black);
  color: #B8B0A4;
  padding: 80px 0 0;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer a { color: #EFEAE2; }
.footer a:hover { color: var(--accent); }
.footer-col { line-height: 1.7; }
.footer p {
  font-size: 0.95rem;
  margin: 0 0 4px;
  line-height: 1.7;
}
.footer-eyebrow {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A8581;
  margin: 0 0 16px !important;
  line-height: 1.7;
}
.footer-col p + p { margin-top: 12px; }
.footer-hours {
  color: #8A8581 !important;
  font-size: 0.85rem !important;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav a {
  font-size: 0.95rem;
  line-height: 1.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.footer-social svg { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #6B6560;
  margin: 0;
}

/* Modal */
.modal {
  border: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  width: min(720px, 92vw);
  max-height: 86vh;
  border-radius: 0;
}
.modal::backdrop { background: rgba(0,0,0,0.5); }
.modal-inner { padding: 56px 48px; position: relative; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.modal h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 32px 0 12px;
}
.modal h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.modal p { font-size: 0.95rem; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.65; }
.modal ul {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 12px;
  padding-left: 22px;
}
.modal ul li { margin-bottom: 4px; }
.modal a { color: var(--accent); }
.modal a:hover { color: var(--accent-dark); }
.modal .legal-source {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.cookie-text h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.cookie-text p {
  color: rgba(250,248,245,0.75);
  font-size: 0.9rem;
  margin: 0 0 20px;
}
.cookie-text a {
  color: var(--bg);
  border-bottom: 1px solid rgba(250,248,245,0.4);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-actions .btn {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(250, 248, 245, 0.55);
  font-weight: 500;
}
.cookie-actions .btn:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.cookie-settings {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(250,248,245,0.85);
  cursor: pointer;
}
.cookie-option strong { color: var(--bg); }

/* Responsive */
@media (max-width: 1024px) {
  .brands-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .topbar { font-size: 12px; }
  .topbar-inner { gap: 16px; padding: 0 20px; }
  .topbar-mail,
  .topbar-hours { display: none; }

  .nav-inner { padding: 0 20px; height: 72px; gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu ul { flex-direction: column; gap: 0; }
  .nav-menu li { border-bottom: 1px solid var(--line); }
  .nav-menu a { display: block; padding: 16px 0; font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-logo img { height: 24px; }

  .hero {
    height: calc(100vh - var(--topbar-h) - 72px);
    min-height: 480px;
  }
  .hero-text { padding: 0 20px 56px; }

  .container { padding: 0 20px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-image { min-height: 60vh; }
  .about-text { padding: 64px 24px; }
  .contact-info { padding: 64px 24px; }
  .contact-map { min-height: 50vh; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service:nth-child(2n) { border-right: 0; }
  .service:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

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

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 22px;
  }
  .cookie-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .topbar-cta { font-size: 12px; }
  .topbar-phone span { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: 0; }
  .brands-wall { grid-template-columns: repeat(2, 1fr); }
  .brands-wall li { height: 96px; padding: 16px; }
  .brand-name { font-size: 1rem; }
  .modal-inner { padding: 40px 24px; }
}
