:root {
  --ink: #17211e;
  --muted: #5b6762;
  --paper: #fbfaf4;
  --mist: #edf2ed;
  --lake: #2c746d;
  --pine: #193d36;
  --sun: #e8b84d;
  --wood: #936b41;
  --stone: #d8ded3;
  --snow: #fffdf6;
  --line: rgba(23, 33, 30, 0.14);
  --shadow: 0 22px 70px rgba(25, 61, 54, 0.18);
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: clamp(14px, 3vw, 42px);
  right: clamp(14px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(12, 28, 25, 0.58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.call-link {
  display: flex;
  align-items: center;
}

.brand {
  width: fit-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(210px, 18vw, 270px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 42px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  padding-right: 11px;
}

.brand-mark svg {
  width: 42px;
  height: 30px;
}

.brand-mark path {
  fill: none;
  stroke: var(--sun);
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark path + path {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 3.2;
}

.brand-text {
  display: grid;
  gap: 3px;
  line-height: 0.96;
}

.brand-text strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links {
  width: fit-content;
  min-height: 44px;
  padding: 4px;
  justify-self: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.nav-links a,
.call-link {
  text-decoration: none;
}

.nav-links a {
  min-height: 34px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pine);
  background: var(--sun);
  outline: none;
}

.call-link {
  display: grid;
  min-height: 48px;
  padding: 8px 16px;
  justify-content: center;
  border: 1px solid rgba(232, 184, 77, 0.62);
  color: var(--pine);
  background: var(--sun);
  font-weight: 900;
  line-height: 1.05;
}

.call-link span {
  font-size: 0.74rem;
  text-transform: uppercase;
}

.call-link strong {
  font-size: 0.92rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 142px clamp(20px, 6vw, 86px) 80px;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 30, 27, 0.78) 0%, rgba(11, 30, 27, 0.48) 44%, rgba(11, 30, 27, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 30, 27, 0.56) 0%, rgba(11, 30, 27, 0) 38%),
    url("assets/bergrestaurant-golzernsee.jpeg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.96;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.15vw, 3.35rem);
  line-height: 1.08;
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--pine);
  background: var(--sun);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--pine);
  border-color: rgba(25, 61, 54, 0.34);
  background: rgba(255, 255, 255, 0.5);
}

.button.lift-link {
  color: #fff;
  background: var(--lake);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(54px, 7vw, 88px);
  background: var(--paper);
}

.intro h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 2.95vw, 3.2rem);
  line-height: 1.08;
}

.intro-copy p {
  max-width: 720px;
}

.intro-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.intro-points span {
  display: flex;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--pine);
  font-weight: 850;
}

.intro-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 14px;
  background: var(--sun);
}

.intro p,
.section-heading p,
.menu-copy p,
.arrival-content p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.audiences {
  background: var(--mist);
}

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

.audience-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--lake);
}

.icon svg {
  width: 27px;
  height: 27px;
}

.icon path,
.icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  color: #fff;
  background: var(--pine);
}

.menu-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-row strong {
  color: var(--sun);
}

.menu-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 280px));
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

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

.photo-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(11, 30, 27, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.arrival {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.78) 0%, rgba(255, 253, 246, 0.16) 48%, rgba(44, 116, 109, 0.1) 100%),
    var(--stone);
  border-top: 1px solid rgba(25, 61, 54, 0.1);
  border-bottom: 1px solid rgba(25, 61, 54, 0.1);
}

.arrival h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  line-height: 1.02;
}

.arrival-copy,
.arrival-side {
  min-height: 420px;
  background: rgba(255, 253, 246, 0.86);
  border: 1px solid rgba(25, 61, 54, 0.14);
  box-shadow: 0 18px 48px rgba(25, 61, 54, 0.1);
}

.arrival-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.arrival-side {
  width: 392px;
  justify-self: end;
  padding: 30px;
}

.arrival-meta {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 11px;
  color: var(--pine);
  background: rgba(232, 184, 77, 0.22);
  border-left: 4px solid var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
}

.arrival-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.18rem;
}

.arrival-photo {
  position: relative;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.arrival-photo img {
  width: 100%;
  height: 178px;
  border-bottom: 6px solid var(--sun);
  object-fit: contain;
  background: #dbe6e8;
}

.arrival-photo figcaption {
  display: inline-flex;
  margin-top: 12px;
  padding: 0;
  color: var(--pine);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 800;
}

.arrival-content {
  align-self: stretch;
  padding: 28px 0 0;
}

.arrival-label {
  display: block;
  margin-bottom: 12px;
  color: var(--wood);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrival-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(25, 61, 54, 0.93), rgba(25, 61, 54, 0.76)),
    url("assets/golzernsee-panorama.jpeg") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.6fr);
  gap: 30px;
  align-items: center;
  width: min(1060px, 100%);
  color: #fff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.phone-box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.phone-box span,
.phone-box small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.phone-box a {
  display: block;
  margin: 8px 0;
  color: var(--sun);
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  font-weight: 900;
  text-decoration: none;
}

.hours-box {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hours-box strong {
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hours-box span {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.74);
  background: #101816;
  font-size: 0.88rem;
}

.footer-brand,
.footer-address,
.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.02rem;
}

.footer-address {
  font-style: normal;
}

.footer-contact span,
.footer-contact small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-contact a {
  color: var(--sun);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 10px;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .section-heading,
  .menu-band,
  .arrival,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-rows: none;
  }

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

  .arrival-copy,
  .arrival-side {
    min-height: auto;
  }

  .arrival-side {
    width: 100%;
  }

  .arrival-photo {
    height: auto;
  }

  .arrival-photo img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .site-header {
    left: 10px;
    right: 10px;
    min-height: 62px;
    padding: 8px;
  }

  .brand-logo {
    width: 188px;
  }

  .call-link {
    min-height: 42px;
    padding: 7px 11px;
  }

  .call-link strong {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 116px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
