:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #efede7;
  --ink: #191b1a;
  --muted: #666b67;
  --line: rgba(25, 27, 26, 0.12);
  --brand: #b33a2f;
  --brand-dark: #8e2d25;
  --accent: #d4ad65;
  --success: #2e6f4e;
  --shadow-sm: 0 10px 30px rgba(21, 24, 22, 0.08);
  --shadow-lg: 0 24px 70px rgba(21, 24, 22, 0.16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(179, 58, 47, 0.18);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.legal-header {
  background: rgba(246, 244, 239, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(21, 24, 22, 0.06);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: 0 10px 24px rgba(179, 58, 47, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.07rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand);
  outline: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(860px, 94vh);
  padding: calc(var(--header-h) + 90px) 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.82) 0%, rgba(17, 20, 18, 0.57) 45%, rgba(17, 20, 18, 0.18) 78%, rgba(17, 20, 18, 0.08) 100%),
    url('../img/bg-masthead.jpg') center 58% / cover no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 22%, rgba(212, 173, 101, 0.18), transparent 34%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(246, 244, 239, 0.9) 72%, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 70px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d9af;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 span {
  color: #f3d8a9;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(179, 58, 47, 0.3);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-card {
  justify-self: end;
  width: min(100%, 380px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(21, 24, 22, 0.42);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card-top strong {
  font-size: 1.02rem;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d7eadf;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #69c494;
  box-shadow: 0 0 0 6px rgba(105, 196, 148, 0.13);
}

.hero-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 11px 16px;
  margin: 17px 0 0;
  font-size: 0.9rem;
}

.hero-card dt {
  color: rgba(255, 255, 255, 0.62);
}

.hero-card dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}

.hero-card .mini-link {
  display: inline-flex;
  margin-top: 16px;
  color: #f1d9af;
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  min-height: 118px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.icon-tile {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--brand);
}

.icon-tile svg {
  width: 21px;
  height: 21px;
}

.trust-copy strong {
  display: block;
  font-size: 0.98rem;
}

.trust-copy span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.section-head h2,
.split-copy h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-head p,
.split-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: stretch;
}

.intro-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(20, 23, 21, 0.7);
  color: #fff;
  backdrop-filter: blur(16px);
}

.float-note strong {
  display: block;
  font-size: 1.2rem;
}

.float-note span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.intro-copy {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.intro-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.intro-copy > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.check-list i {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 999px;
  background: rgba(46, 111, 78, 0.1);
  color: var(--success);
  font-style: normal;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(17, 19, 18, 0.9) 0%, rgba(17, 19, 18, 0.28) 58%, rgba(17, 19, 18, 0.05) 100%);
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.75,.25,1);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  color: #fff;
}

.service-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.service-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.91rem;
}

.offer-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.offer-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 58, 47, 0.42), transparent 68%);
}

.offer-section .section-head p {
  color: rgba(255, 255, 255, 0.62);
}

.offer-section .eyebrow {
  color: #f1d9af;
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.offer-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.offer-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.offer-card span {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.45;
}

.offer-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-media {
  position: relative;
}

.split-media > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-media .inset-image {
  position: absolute;
  right: -36px;
  bottom: 28px;
  width: 48%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid var(--bg);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.split-copy {
  padding-inline: 10px;
}

.split-copy > p {
  margin-top: 24px;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.feature-point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.feature-point strong {
  display: block;
  font-size: 0.94rem;
}

.feature-point span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 0;
  background: #ddd;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item::after {
  content: "Ansehen";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(17, 19, 18, 0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(10, 12, 11, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.55rem;
  cursor: pointer;
}

.partners {
  background: var(--surface);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-card {
  min-height: 290px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.partner-logo {
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.partner-logo img {
  max-width: 80%;
  max-height: 58px;
  object-fit: contain;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.partner-card .partner-name {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-section {
  padding: 112px 0 70px;
}

.contact-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-copy {
  padding: 58px;
}

.contact-copy > p {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.64);
}

.contact-copy .eyebrow {
  color: #f1d9af;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.contact-list a,
.contact-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.contact-list svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #f1d9af;
}

.opening-card {
  padding: 58px;
  background:
    linear-gradient(rgba(179, 58, 47, 0.87), rgba(142, 45, 37, 0.91)),
    url('../img/portfolio/6.jpg') center / cover no-repeat;
}

.opening-card h3 {
  margin: 0 0 24px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.hours {
  display: grid;
  gap: 11px;
}

.hours-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span:first-child {
  color: rgba(255, 255, 255, 0.68);
}

.opening-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.opening-actions .btn-light {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 38px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-col strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 2500;
  width: min(720px, calc(100% - 28px));
  transform: translate(-50%, calc(100% + 50px));
  opacity: 0;
  visibility: hidden;
  transition: transform 260ms ease, opacity 260ms ease, visibility 260ms ease;
}

.cookie-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(20, 23, 21, 0.95);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.cookie-inner strong {
  display: block;
  font-size: 0.92rem;
}

.cookie-inner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.cookie-inner p a {
  color: #f1d9af;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-inner button {
  min-width: max-content;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 190ms; }
.reveal-delay-3 { transition-delay: 280ms; }

/* Legal pages */
.legal-main {
  padding-top: var(--header-h);
}

.legal-hero {
  padding: 92px 0 58px;
  border-bottom: 1px solid var(--line);
}

.legal-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-wrap {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 110px;
}

.legal-content {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 1.06rem;
}

.legal-content p,
.legal-content li {
  color: #4e534f;
  font-size: 0.94rem;
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content address {
  font-style: normal;
  line-height: 1.8;
}

.legal-note {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(189, 133, 35, 0.24);
  border-radius: 16px;
  background: #fff7df;
  color: #6d531d;
  font-size: 0.86rem;
}

.placeholder {
  padding: 2px 6px;
  border-radius: 5px;
  background: #fff0c9;
  color: #765715;
  font-weight: 800;
}

.legal-list {
  padding-left: 20px;
}

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 32px, 980px);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    position: fixed;
    inset: var(--header-h) 16px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(246, 244, 239, 0.98);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
  }

  .nav-links.mobile-open a {
    padding: 13px 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-card {
    justify-self: start;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: span 2;
    min-height: 360px;
  }

  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-media .inset-image {
    right: 22px;
  }

  .gallery-grid {
    grid-auto-rows: 120px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 26px);
    --header-h: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 74px) 0 110px;
    background-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.1rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    width: 100%;
  }

  .trust-strip {
    margin-top: -54px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 82px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .intro-media {
    min-height: 430px;
  }

  .intro-copy {
    padding: 30px 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 360px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 42px;
  }

  .feature-points {
    grid-template-columns: 1fr;
  }

  .split-media .inset-image {
    width: 46%;
    right: 12px;
    bottom: 18px;
    border-width: 5px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 2;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .opening-card {
    padding: 34px 26px;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-inner {
    grid-template-columns: 1fr;
  }

  .cookie-inner button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.status-dot[data-state="closed"] {
  color: #f1c8c2;
}

.status-dot[data-state="closed"]::before {
  background: #d97366;
  box-shadow: 0 0 0 6px rgba(217, 115, 102, 0.13);
}

@media (max-width: 1080px) {
  .legal-header .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .legal-header .brand-copy small {
    display: none;
  }

  .legal-header .nav-cta {
    padding: 9px 12px;
    font-size: 0.78rem;
  }
}
