/* ═══════════════════════════════════════════════
   VINSTUE 90 — stylesheet
   ═══════════════════════════════════════════════ */


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0b0905;
  --surface:   #131009;
  --card:      #1b1610;
  --border:    #272018;
  --gold:      #c49a35;
  --gold-dim:  #7a6020;
  --cream:     #ede4d0;
  --muted:     #9a8c75;
  --faint:     #5a5040;
  --red:       #6b1f1f;

  --serif:   'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1100px;
  --container-narrow: 680px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

/* ── Utilities ────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

/* ── Reveal animations ───────────────────────── */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal         { transform: translateY(36px); }
.reveal-left    { transform: translateX(-40px); }
.reveal-right   { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Nav ──────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(9, 7, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.1rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-side {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  min-width: 140px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover { color: var(--cream); }

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 42%, #4e1515 0%, #2a0808 45%, #0d0303 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  #0e0303 0%, transparent 35%),
    linear-gradient(to bottom, #0e0303 0%, transparent 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-content .eyebrow {
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-logo {
  width: min(700px, 88vw);
  height: auto;
  animation: heroFade 1.8s ease both;
  filter: drop-shadow(0 0 40px rgba(180, 80, 40, 0.35));
}

.hero-sub {
  margin-top: 2rem;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  animation: heroFade 1.8s ease 0.3s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  z-index: 2;
  transition: color 0.2s;
  animation: scrollBounce 2.5s ease-in-out 2s infinite;
}

.scroll-down:hover { color: var(--cream); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Pull Quote ──────────────────────────────── */

.quote-section {
  padding: var(--section-pad) 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.quote-section cite {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── Split Section ────────────────────────────── */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--border);
}

.split-img {
  overflow: hidden;
}

.split-img img {
  transition: transform 8s ease;
}

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

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  border-left: 1px solid var(--border);
}

.split-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--cream);
}

.split-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 48ch;
}

.split-text p + p { margin-top: 1.2rem; }

/* ── Full-bleed Image ────────────────────────── */

.fullbleed-section {
  height: clamp(50vh, 70vh, 85vh);
  overflow: hidden;
  position: relative;
}

.fullbleed-img {
  height: 100%;
  position: relative;
}

.fullbleed-img img {
  height: 100%;
  object-position: center 25%;
  transition: transform 8s ease;
}

.fullbleed-img:hover img {
  transform: scale(1.03);
}

.fullbleed-img figcaption {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 228, 208, 0.4);
}

/* ── Slow Beer ───────────────────────────────── */

.slowbeer-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.slowbeer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.slowbeer-img {
  overflow: hidden;
}

.slowbeer-img img {
  transition: transform 8s ease;
}

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

.slowbeer-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  border-left: 1px solid var(--border);
}

.slowbeer-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.slowbeer-text .lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.process {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-left: 0;
}

.process li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-dim);
  width: 1.5rem;
  flex-shrink: 0;
  padding-top: 0.05em;
}

.process li p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.inline-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.25rem;
  line-height: 1.6;
}

.inline-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── Gallery ─────────────────────────────────── */

.gallery-section {
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  height: clamp(320px, 55vh, 600px);
}

.gallery-item {
  overflow: hidden;
  border-right: 1px solid var(--border);
  position: relative;
}

.gallery-item:last-child { border-right: none; }

.gallery-item img {
  transition: transform 8s ease;
  object-position: center;
}

.gallery-item--poster img {
  object-fit: contain;
  background: var(--surface);
  padding: 1rem;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── Spies Quote ─────────────────────────────── */

.spies-section {
  padding: var(--section-pad) 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(107,31,31,0.12) 0%, transparent 70%);
}

.spies-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin: 1.5rem 0 2rem;
  max-width: 55ch;
}

.spies-text {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Menu / Prisliste ────────────────────────── */

.menu-section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,154,53,0.05) 0%, transparent 60%);
}

.menu-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.menu-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.menu-special {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}

.menu-special span {
  color: var(--gold);
  font-style: normal;
  margin-left: 0.5rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.menu-col {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--border);
}

.menu-col:last-child { border-right: none; }

.menu-cat {
  margin-bottom: 2.5rem;
}

.menu-cat h3 {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(39, 32, 24, 0.6);
}

.menu-item.menu-sub {
  opacity: 0.6;
}

.item-name {
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.4;
  font-weight: 300;
  flex: 1;
}

.menu-item.menu-sub .item-name {
  font-size: 0.8rem;
  font-style: italic;
}

.price {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-img-link {
  text-align: center;
  margin-top: 2.5rem;
}

.menu-img-link a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color 0.2s;
}

.menu-img-link a:hover { color: var(--gold); }

/* ── Find Os ─────────────────────────────────── */

.findos-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--border);
}

.findos-img {
  overflow: hidden;
}

.findos-img img {
  transition: transform 8s ease;
}

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

.findos-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  border-left: 1px solid var(--border);
}

.findos-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.findos-city {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.contact-grid a,
.findos-info a:not(.map-btn) {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  transition: color 0.2s;
}

.contact-grid a:hover { color: var(--gold); }

.hours-block {
  margin-bottom: 2.5rem;
}

.hours {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.75rem;
}

.hours td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hours td:first-child {
  color: var(--muted);
  padding-right: 2rem;
  white-space: nowrap;
}

.hours td:last-child {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
}

.map-btn {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.8rem 1.8rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 400;
  align-self: flex-start;
}

.map-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ── Carousel ────────────────────────────────── */

.carousel-section {
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  background: var(--surface);
}

.carousel {
  position: relative;
  width: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide img {
  height: 100%;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 9, 5, 0.55);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(196, 154, 53, 0.15);
  border-color: var(--gold-dim);
  color: var(--gold);
}

.carousel-btn--prev { left: 1.5rem; }
.carousel-btn--next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(237, 228, 208, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot--active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Footer ──────────────────────────────────── */

footer {
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.footer-addr {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--faint);
  text-transform: uppercase;
}

/* ═══ RESPONSIVE ═══════════════════════════════ */

@media (max-width: 900px) {

  .carousel { width: 75%; }

  .split-section,
  .slowbeer-inner,
  .findos-section {
    grid-template-columns: 1fr;
  }

  .split-img,
  .slowbeer-img,
  .findos-img {
    height: clamp(280px, 50vw, 480px);
  }

  .split-text,
  .slowbeer-text,
  .findos-info {
    border-left: none;
    border-top: 1px solid var(--border);
  }

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

  .gallery-item {
    height: clamp(180px, 35vw, 320px);
  }

  .gallery-item:last-child {
    grid-column: 1 / -1;
    border-right: none;
  }

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

  .menu-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .menu-col:last-child { border-bottom: none; }
}

@media (max-width: 600px) {

  .carousel { width: 100%; }

  .nav-side:not(.nav-links) { display: none; }

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

  .gallery-item {
    height: 60vw;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .gallery-item--poster { height: 80vw; }

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

  .fullbleed-section {
    height: 60vw;
  }
}
