:root {
  --ink: #17211d;
  --muted: #66736a;
  --paper: #fbf7ef;
  --cream: #f3eadb;
  --olive: #4f6544;
  --terracotta: #a45637;
  --gold: #c49a55;
  --sea: #2e6f78;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(12, 20, 17, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(23, 33, 29, 0.86);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2.4rem);
  font-size: 0.92rem;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
}

nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

button,
.button,
.icon-button {
  font: inherit;
}

.lang-toggle,
.icon-button {
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 9rem clamp(1rem, 5vw, 5rem) 3.5rem;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 17, 0.88), rgba(12, 20, 17, 0.42) 56%, rgba(12, 20, 17, 0.78)),
    linear-gradient(0deg, rgba(12, 20, 17, 0.82), rgba(12, 20, 17, 0.05) 40%),
    url("assets/images/back-golub-1680x1050.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin: 0;
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 680px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--terracotta);
  color: #fff;
}

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

.reserve-section .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button:hover,
.icon-button:hover,
.lang-toggle:hover {
  transform: translateY(-1px);
}

.hero-card {
  align-self: end;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card div {
  padding: 1rem;
  background: rgba(12, 20, 17, 0.42);
}

.hero-card span,
.contact-panel span {
  display: block;
  margin-bottom: 0.32rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card a,
.hero-card strong {
  font-size: 1rem;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: #fff;
}

.proof-band div {
  min-height: 122px;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-band strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.proof-band span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.split-section,
.reserve-section,
.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-copy p:not(.eyebrow),
.reserve-section p,
.visit-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.feature-list article span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--olive);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-list p {
  grid-column: 2;
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.reserve-section {
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.9), rgba(23, 33, 29, 0.72)),
    url("assets/images/konoba-golub-vis-011.JPG") center / cover;
  color: #fff;
  align-items: center;
}

.reserve-section p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(180px, 28vw);
  gap: 0.8rem;
}

.photo {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}

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

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo:hover img {
  transform: scale(1.04);
}

.visit-section {
  align-items: start;
}

.contact-panel {
  display: grid;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 45px rgba(23, 33, 29, 0.08);
}

.contact-panel a {
  display: block;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--muted);
}

.contact-panel strong {
  display: block;
  color: var(--ink);
}

footer {
  padding: 2rem clamp(1rem, 5vw, 5rem) 6rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

footer p {
  margin: 0.35rem 0;
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  z-index: 30;
  display: none;
  transform: translateX(-50%);
  width: min(calc(100% - 1rem), 390px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(12, 20, 17, 0.3);
}

.sticky-actions a {
  flex: 1;
  padding: 0.86rem 0.5rem;
  text-align: center;
  background: var(--terracotta);
  color: #fff;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-actions a:nth-child(2) {
  background: var(--olive);
}

.sticky-actions a:nth-child(3) {
  background: var(--sea);
  border-right: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 13, 11, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  max-width: min(1100px, 96vw);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

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

  nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 7.8rem 1rem 2rem;
  }

  .hero-card {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .proof-band,
  .split-section,
  .reserve-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

  .sticky-actions {
    display: flex;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.75rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero-cta,
  .reserve-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .split-section,
  .reserve-section,
  .gallery-section,
  .visit-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .photo.large {
    grid-column: auto;
  }

  .feature-list article {
    grid-template-columns: 44px 1fr;
  }
}
