:root {
  --dark: #1D2731;
  --dark-soft: #303E4D;
  --gold: #C8A15A;
  --gold-light: #E6C98A;
  --cream: #FCFBF8;
  --white: #FFFFFF;
  --text: #202B35;
  --muted: #6C747D;

  --shadow: 0 18px 45px rgba(29,39,49,.16);
  --shadow-card:
    0 10px 25px rgba(29,39,49,.06),
    0 20px 60px rgba(29,39,49,.10);
  --shadow-card-hover:
    0 20px 40px rgba(29,39,49,.10),
    0 30px 70px rgba(29,39,49,.18);

  --radius: 28px;
  --top-height: 76px;
  --footer-height: 38px;

  --font-main: "Ubuntu", serif;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: calc(var(--footer-height) + env(safe-area-inset-bottom));
 
  font-family: var(--font-main);

  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

a {
  color: inherit;
}

.top-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;

  min-height: var(--top-height);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 14px 6%;

  background:
    linear-gradient(
      135deg,
      rgba(29,39,49,.88),
      rgba(29,39,49,.72)
    );

  color: var(--white);

  border-bottom: 1px solid rgba(230,201,138,.22);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 10px 30px rgba(29,39,49,.18),
    inset 0 -1px 0 rgba(255,255,255,.05);
}

.top-header::after {
  content: "";
  position: absolute;

  left: 6%;
  right: 6%;
  bottom: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(230,201,138,.75),
      transparent
    );

  opacity: .8;
  pointer-events: none;
}

.brand {
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 750;
  font-size: .92rem;
  padding: 8px 10px;
  border-radius: 12px;
  transition: .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus,
.desktop-nav a.active {
  color: #fff;
  background: rgba(200,161,90,.16);
  outline: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-call,
.btn-primary,
.drawer-call {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 8px 20px rgba(200,161,90,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.header-call::before,
.btn-primary::before,
.drawer-call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.45),
    transparent
  );
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.header-call:hover::before,
.header-call:focus::before,
.btn-primary:hover::before,
.btn-primary:focus::before,
.drawer-call:hover::before,
.drawer-call:focus::before {
  transform: translateX(120%);
}

.header-call:hover,
.header-call:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 15px;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: .25s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(29,39,49,.55);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  width: min(86vw, 380px);
  padding: 24px;
  background: var(--dark);
  color: var(--white);
  transform: translateX(100%);
  transition: .32s ease;
  box-shadow: -20px 0 60px rgba(29,39,49,.42);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.drawer-title {
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer nav {
  display: grid;
  gap: 8px;
}

.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 850;
  background: rgba(255,255,255,.08);
  transition: .25s ease;
}

.mobile-drawer a:hover,
.mobile-drawer a:focus {
  background: rgba(200,161,90,.72);
  color: #fff;
  outline: none;
}

.mobile-drawer a.active {
  background: linear-gradient(
    135deg,
    rgba(200,161,90,.95),
    rgba(230,201,138,.95)
  );
  color: #fff;
  box-shadow: 0 8px 22px rgba(200,161,90,.18);
}

.drawer-call {
  margin-top: 24px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 8px 20px rgba(200,161,90,.18);
}

#start.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

#start .hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 150px 6% 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1s ease,
    transform 6s linear;
  pointer-events: none;
}

#start .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(29,39,49,.78),
    rgba(200,161,90,.34)
  );
  z-index: 0;
}

#start .hero-slide.active {
  opacity: 1;
  transform: scale(1.03);
  pointer-events: auto;
  z-index: 1;
}

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

#start .hero-slide .eyebrow,
#start .hero-slide h1,
#start .hero-slide p,
#start .hero-slide .buttons {
  opacity: 0;
  transform: translateY(26px);
}

#start .hero-slide.active .eyebrow {
  animation: slideTextUp .75s ease .15s both;
}

#start .hero-slide.active h1 {
  animation: slideTextUp .85s ease .32s both;
}

#start .hero-slide.active p {
  animation: slideTextUp .85s ease .50s both;
}

#start .hero-slide.active .buttons {
  animation: slideTextUp .85s ease .68s both;
}

@keyframes slideTextUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;

  width: 0%;
  height: 3px;

  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light)
  );

  box-shadow: 0 0 14px rgba(200,161,90,.55);
  transition: width .08s linear;
}

.contact-details {
  margin: 20px 0;
}

.contact-details p {
  margin: 12px 0;
}

.contact-details a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.reservation-note {
  margin: 22px 0 26px;
  padding: 14px 18px;

  border-left: 4px solid #8B2E2E;

  background: rgba(139,46,46,.08);

  color: #8B2E2E;

  font-style: italic;
  font-weight: 700;

  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-group {
  position: relative;
  margin-top: 22px;
  padding-top: 20px;
}

.hours-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 90px;
  height: 2px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light)
  );

  opacity: .55;
}

.kitchen-hours {
  margin-top: 14px;
  font-size: .92rem;
  font-style: italic;
  color: #7D8690;
  line-height: 1.7;
}

.closed-group {
  position: relative;
  margin-top: 28px;
  padding-top: 22px;
}

.closed-group::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 120px;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      rgba(176,48,48,.75),
      rgba(176,48,48,.15)
    );
}

.closed-day {
  margin-top: 22px;
  padding: 14px 18px;

  border-left: 4px solid #8B2E2E;

  background: rgba(176,48,48,.08);

  color: #8B2E2E;

  font-style: italic;
  font-weight: 700;

  border-radius: 12px;
}

.job-highlight {
  margin: 24px 0;
  padding: 18px 20px;

  border-left: 4px solid var(--gold);

  background:
    linear-gradient(
      135deg,
      rgba(200,161,90,.10),
      rgba(230,201,138,.06)
    );

  border-radius: 12px;

  font-weight: 700;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.job-tags span {
  padding: 8px 14px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(230,201,138,.25),
      rgba(200,161,90,.20)
    );

  border: 1px solid rgba(230,201,138,.30);

  color: #FFFFFF !important;

  font-weight: 800;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 6px 16px rgba(0,0,0,.15);
}

.job-contact p {
  color: rgba(255,255,255,.92);
}

.job-contact a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

.job-contact a:hover {
  text-decoration: underline;
}

.job-note {
  margin-top: 24px;
  padding: 14px 18px;

  border-left: 4px solid var(--gold);

  background:
    linear-gradient(
      135deg,
      rgba(200,161,90,.12),
      rgba(230,201,138,.06)
    );

  color: var(--gold-light);

  font-style: italic;
  font-weight: 800;

  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 24px rgba(0,0,0,.15);
}

#datenschutz .highlight {
  color: rgba(255,255,255,.92);
}

#datenschutz .highlight p,
#datenschutz .highlight li {
  color: rgba(255,255,255,.88);
}

#datenschutz .highlight h2,
#datenschutz .highlight h3 {
  color: #FFFFFF;
}

#datenschutz .highlight a {
  color: var(--gold-light);
  font-weight: 700;
}

#datenschutz .highlight a:hover {
  text-decoration: underline;
}

.privacy-note {
  background: #F8F5EF;
  border-left: 5px solid var(--gold);
  padding: 22px;
  border-radius: 18px;
  margin-top: 24px;
}

#datenschutz .privacy-note {
  margin-top: 24px;
  padding: 18px;

  border-left: 4px solid var(--gold);

  background:
    linear-gradient(
      135deg,
      rgba(200,161,90,.18),
      rgba(230,201,138,.10)
    );

  color: var(--gold-light);

  font-style: italic;
  font-weight: 800;

  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 24px rgba(0,0,0,.15);
}

.privacy-icon {
  font-size: 1.2rem;
  line-height: 1.2;
}

#datenschutz ul {
  margin: 14px 0 24px;
  padding-left: 22px;
}

#datenschutz li {
  margin-bottom: 8px;
  color: rgba(255,255,255,.88);
}

#datenschutz h3 {
  margin-top: 36px;
  color: var(--gold-light);
}

#impressum h3 {
  margin-top: 34px;
  color: var(--dark);
}

#impressum .lead {
  color: var(--muted);
}

#impressum .privacy-note {
  margin-top: 30px;
}

#impressum a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

#impressum a:hover {
  text-decoration: underline;
}

.holiday-note {
  margin-top: 22px;
  padding: 14px 18px;

  border-left: 4px solid #8B2E2E;

  background:
    linear-gradient(
      135deg,
      rgba(176,48,48,.08),
      rgba(231,76,60,.06)
    );

  color: #8B2E2E;

  font-weight: 700;
  line-height: 1.6;
  font-style: italic;

  border-radius: 12px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.40),
    0 8px 20px rgba(0,0,0,.08);
}

.holiday-note strong {
  color: #8B2E2E;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 8px 0 14px;
  letter-spacing: -.02em;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.history-card {
  max-width: 980px;
  margin: 0 auto;
}

.history-story {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.history-story p {
  margin: 0;
}

.history-section {
  padding: 48px;
}

.history-content {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 40px;
  align-items: center;
}

.history-text p {
  color: rgba(255,255,255,.92);
}

.history-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.history-image img {
  width: 320px;
  height: 320px;

  object-fit: cover;

  border-radius: 50%;

  border: 6px solid rgba(230,201,138,.85);

  box-shadow:
    0 0 0 10px rgba(200,161,90,.12),
    0 20px 45px rgba(0,0,0,.24),
    0 35px 80px rgba(0,0,0,.30);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.history-image img:hover {
  transform: scale(1.03);

  box-shadow:
    0 0 0 12px rgba(200,161,90,.16),
    0 24px 55px rgba(0,0,0,.28),
    0 40px 90px rgba(0,0,0,.35);
}

.history-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.history-facts span {
  padding: 10px 16px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(230,201,138,.22),
      rgba(200,161,90,.18)
    );

  border: 1px solid rgba(230,201,138,.28);

  color: #FFFFFF;

  font-weight: 700;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 6px 16px rgba(0,0,0,.12);
}

@media (max-width: 900px) {

  .history-content {
    grid-template-columns: 1fr;
  }

  .history-image {
    order: -1;
  }

  .history-image img {
    width: 260px;
    height: 260px;
  }

}

.history-timeline {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 16px;

  padding-left: 16px;
}

.timeline-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--gold-light);

  transform: translateY(-50%);
}

.timeline-badge {
  flex-shrink: 0;

  min-width: 120px;

  padding: 8px 14px;

  text-align: center;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(230,201,138,.22),
      rgba(200,161,90,.18)
    );

  border: 1px solid rgba(230,201,138,.28);

  color: #FFFFFF;

  font-weight: 800;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 6px 16px rgba(0,0,0,.12);
}

.timeline-item div {
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}

.country-list {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.country-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.country-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-size: .72rem;
}

.guest-section {
  padding: 48px;
}

.guest-content {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 42px;
  align-items: center;
}

.guest-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guest-image img {
  width: 380px;
  height: 380px;

  object-fit: cover;

  border-radius: 50%;

  border: 6px solid rgba(230,201,138,.85);

  box-shadow:
    0 0 0 8px rgba(200,161,90,.12),
    0 18px 40px rgba(0,0,0,.20),
    0 30px 70px rgba(0,0,0,.28);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.guest-image img:hover {
  transform: scale(1.03);

  box-shadow:
    0 0 0 10px rgba(200,161,90,.16),
    0 24px 50px rgba(0,0,0,.24),
    0 35px 80px rgba(0,0,0,.32);
}

.guest-signature {
  margin-top: 28px;
  color: rgba(255,255,255,.92);
}

@media (max-width: 900px) {

  .guest-content {
    grid-template-columns: 1fr;
  }

  .guest-image {
    order: -1;
  }

  .guest-image img {
    min-height: 280px;
  }
}

@media (max-width: 900px) {

  .guest-image img {
    width: 280px;
    height: 280px;
  }

}

.contact-phone {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 950;
  color: var(--gold);
  margin: 18px 0 24px;
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: .25s ease;
}

.slider-btn:hover,
.slider-btn:focus {
  background: var(--gold);
  outline: none;
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: calc(64px + env(safe-area-inset-bottom));
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
  transition: .25s ease;
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--gold-light);
  transform: scale(1.25);
}

.buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition: .25s ease;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.65);
  color: var(--white);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

main section {
  padding: 90px 6%;
  scroll-margin-top: 100px;
}

.container {
  width: min(1150px, 100%);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 36px;
}

.section-number {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .86rem;
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(200,161,90,.18);
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.12rem;
}

.grid,
.contact-box {
  display: grid;
  gap: 24px;
}

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

.contact-box {
  grid-template-columns: 1fr 1fr;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(252,251,248,.94));
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(29,39,49,.06);
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card::before,
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(200,161,90,.10) 35%,
    rgba(255,255,255,.36) 50%,
    rgba(200,161,90,.10) 65%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.card:hover::before,
.image-card:hover::before {
  transform: translateX(120%);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(200,161,90,.26);
}

.highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(200,161,90,.26), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-soft));
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow:
    0 16px 35px rgba(29,39,49,.16),
    0 30px 80px rgba(29,39,49,.20);
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(230,201,138,.18);
  pointer-events: none;
}

.highlight .lead {
  color: rgba(255,255,255,.82);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 22px;
}

.image-card {
  position: relative;
  margin: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(252,251,248,.94));
  border-radius: var(--radius);
  padding: 10px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(29,39,49,.06);
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.image-card::before {
  z-index: 2;
}

.image-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,161,90,.28);
  box-shadow: var(--shadow-card-hover);
}

.image-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
  transition: transform .45s ease;
}

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

.image-card.large {
  grid-row: span 2;
}

.image-card.large img {
  height: 582px;
}

.bottom-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 999;

  min-height: calc(var(--footer-height) + env(safe-area-inset-bottom));

  padding: 0 6% env(safe-area-inset-bottom);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;

  background:
    linear-gradient(
      135deg,
      rgba(29,39,49,.90),
      rgba(29,39,49,.74)
    );

  color: var(--white);

  border-top: 1px solid rgba(230,201,138,.22);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 -10px 30px rgba(29,39,49,.18),
    inset 0 1px 0 rgba(255,255,255,.05);

  font-size: .86rem;
  font-weight: 750;
}

.bottom-footer::before {
  content: "";
  position: absolute;

  left: 6%;
  right: 6%;
  top: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(230,201,138,.75),
      transparent
    );

  opacity: .8;
  pointer-events: none;
}

.bottom-footer a,
.bottom-footer div {
  min-height: var(--footer-height);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-icon,
.footer-copyright {
  color: var(--gold-light);
  font-weight: 800;
}

.footer-address::before,
.footer-phone::before {
  content: "|";
  color: rgba(255,255,255,.35);
  margin-right: 16px;
}

.bottom-footer a:hover,
.bottom-footer a:focus {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(230,201,138,.45);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.card.reveal.visible:hover,
.image-card.reveal.visible:hover {
  transform: translateY(-6px);
}

.highlight.reveal.visible:hover {
  transform: translateY(-3px);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6%;
  background: rgba(29,39,49,.88);
  backdrop-filter: blur(16px);
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background: #fff;
  padding: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  transition: .25s ease;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 72px;
  border-radius: 18px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .burger {
    display: block;
  }
}

@media (max-width: 900px) {
  .grid,
  .contact-box,
  .gallery {
    grid-template-columns: 1fr;
  }

  .image-card.large {
    grid-row: auto;
  }

  .image-card img,
  .image-card.large img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  :root {
    --footer-height: 54px;
  }

  .bottom-footer {
    padding: 6px 4% env(safe-area-inset-bottom);
    gap: 6px 12px;
    font-size: .72rem;
  }

  .footer-address::before,
  .footer-phone::before {
    display: none;
  }

  .bottom-footer a,
  .bottom-footer div {
    min-height: 22px;
  }
}

@media (max-width: 700px) {
  #start .hero-slide {
    padding: 125px 6% 90px;
  }

  .slider-btn {
    width: 42px;
    height: 54px;
    font-size: 2.2rem;
  }

  .slider-prev,
  .lightbox-prev {
    left: 10px;
  }

  .slider-next,
  .lightbox-next {
    right: 10px;
  }

  .slider-dots {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-image {
    max-height: 76vh;
    border-radius: 18px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 56px;
    font-size: 2.4rem;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 620px) {
  :root {
    --top-height: 68px;
  }

  .top-header {
    padding: 12px 5%;
  }

  .brand {
    font-size: .95rem;
  }

  .header-call {
    display: none;
  }

  main section {
    padding: 70px 5%;
  }

  .card,
  .highlight {
    padding: 24px;
  }
}