@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Jost:wght@400;500;600&display=swap");

:root {
  --bg: #f7f0e2;
  --bg-alt: #efe3c9;
  --surface: #fdf9ef;
  --border: #ddcca1;
  --text: #2b2013;
  --text-muted: #6e5f43;
  --accent: #a3711f;
  --accent-soft: #c98f2c;
  --accent-2: #7a2a1c;
  --dark: #1c1712;
  --dark-alt: #251f16;
  --cream: #f3ead9;
  --cream-muted: #b8ab8b;
  --radius: 6px;
  --max-width: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at top, rgba(163,113,31,.07), transparent 55%),
    repeating-linear-gradient(0deg, rgba(43,32,19,.015) 0px, transparent 1px, transparent 2px);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  color: var(--text);
}
h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1rem; }
h3 { font-size: 1.45rem; margin-bottom: .5rem; font-weight: 600; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead { color: var(--text-muted); font-size: 1.1rem; max-width: 52ch; }

.accent { color: var(--accent); font-style: italic; }

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

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--accent);
  margin: 0 0 2.5rem;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--border));
}
.ornament::after { background: linear-gradient(90deg, var(--border), transparent); }
.ornament span {
  font-size: 1.1rem;
  transform: rotate(45deg);
  display: inline-block;
  width: 8px; height: 8px;
  border: 1px solid var(--accent);
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(28,23,18,.88);
  border-bottom: 1px solid rgba(243,234,217,.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .01em;
  color: var(--cream);
}
.logo svg { width: 30px; height: 30px; color: var(--accent-soft); }
.logo img { height: 34px; width: auto; }
.logo em { color: var(--accent-soft); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(20,16,10,.72) 0%, rgba(20,16,10,.5) 45%, rgba(20,16,10,.88) 100%),
    url("../assets/photos/hero-nebel.jpg") center 38% / cover no-repeat;
  filter: saturate(.85) contrast(1.05);
}

.hero-fog {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 55%, rgba(20,16,10,.5) 82%, var(--dark) 100%);
}

.hero-content { padding-top: 76px; text-align: center; margin: 0 auto; }

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  margin: .6rem 0 1.4rem;
  color: var(--cream);
}

.hero-sub {
  color: #e4d9c2;
  font-size: 1.15rem;
  max-width: 56ch;
  margin: 0 auto 2.4rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, border-color .2s, color .2s, box-shadow .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(163,113,31,.28);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-soft); box-shadow: 0 6px 18px rgba(163,113,31,.38); }

.btn-ghost {
  border: 1px solid rgba(243,234,217,.4);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent-soft); color: var(--accent-soft); transform: translateY(-2px); }

.btn-dark {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-dark:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream-muted);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Sections */
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}

/* Film section */
.film-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(163,113,31,.1);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .03em;
  margin-bottom: 1.5rem;
}
.film-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.film-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.film-meta div { border-left: 1px solid var(--border); padding-left: 1rem; }
.film-meta span { display: block; }
.film-meta .num { font-family: var(--serif); font-size: 1.6rem; color: var(--accent); font-weight: 700; }
.film-meta .label { color: var(--text-muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }

.frame {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(43,32,19,.1);
}
.frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.film-link { display: inline-flex; margin-top: 1.75rem; }

.shorts-wall h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.short-frame {
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(43,32,19,.12);
}
.short-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.shorts-more { display: inline-flex; margin-top: 1.5rem; }

/* History Club */
.club-feature {
  max-width: 760px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(43,32,19,.14);
}
.club-feature img { width: 100%; height: auto; display: block; }
.club-cta { text-align: center; margin-top: 2.5rem; }
.club-cta .film-status { justify-content: center; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: .9rem;
}
.gallery-grid a {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(43,32,19,.08);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(.92);
}
.gallery-grid a:hover img { transform: scale(1.08); filter: saturate(1.05); }
.gallery-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,16,10,.45));
  opacity: 0;
  transition: opacity .3s;
}
.gallery-grid a:hover::after { opacity: 1; }
.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 2; grid-row: span 1; }
.g-c { grid-column: span 2; grid-row: span 1; }
.g-d { grid-column: span 2; grid-row: span 1; }
.g-e { grid-column: span 2; grid-row: span 1; }
.g-f { grid-column: span 2; grid-row: span 2; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 130px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border) 8%, var(--border) 92%, transparent);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.5rem;
  padding-bottom: 3.2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-era {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  text-align: right;
  padding-top: .1rem;
}
.timeline-dot {
  position: absolute;
  left: 126px;
  top: .3rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--accent);
}
.timeline-content p { color: var(--text-muted); }

/* Press */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.press-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  box-shadow: 0 6px 16px rgba(43,32,19,.06);
  display: block;
}
.press-card:hover { box-shadow: 0 14px 30px rgba(43,32,19,.15); transform: translateY(-3px); }
.press-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.press-thumb img { width: 100%; height: 100%; object-fit: cover; }
.press-body { padding: 1.5rem 1.75rem 1.75rem; }
.press-outlet {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .4rem;
}
.press-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: .9rem; }
.press-card .press-link { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); }

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(43,32,19,.06);
}
.support-card .pct {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .3rem;
}
.support-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 1.5rem; }

/* Shop */
.section-shop {
  background: var(--dark);
  color: var(--cream);
  position: relative;
}
.section-shop::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(163,113,31,.18), transparent 60%);
  pointer-events: none;
}
.section-shop .section-head h2, .section-shop .section-head p.lead { color: var(--cream); }
.section-shop .section-head .lead { color: var(--cream-muted); }
.section-shop .eyebrow { color: var(--accent-soft); }
.section-shop .eyebrow::before { background: var(--accent-soft); }

.shop-crest { width: 56px; height: 56px; margin: 0 auto 1.5rem; display: block; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.shop-card {
  background: var(--dark-alt);
  border: 1px solid rgba(243,234,217,.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.shop-card:hover { transform: translateY(-6px); border-color: var(--accent-soft); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.shop-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #100d09; }
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.shop-card:hover .shop-thumb img { transform: scale(1.06); }
.shop-badge {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--accent-2);
  color: var(--cream);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.shop-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.shop-name { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--cream); }
.shop-price-row { display: flex; align-items: baseline; gap: .6rem; margin-top: auto; padding-top: .6rem; }
.shop-price { font-family: var(--serif); font-size: 1.4rem; color: var(--accent-soft); font-weight: 700; }
.shop-price-old { font-size: .85rem; color: var(--cream-muted); text-decoration: line-through; }
.shop-cta {
  margin-top: 3rem;
  text-align: center;
  position: relative;
}

/* Newsletter */
.newsletter-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 26px rgba(43,32,19,.08);
}
.newsletter-form {
  display: flex;
  gap: .75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button { border: none; cursor: pointer; }
.newsletter-honeypot { display: none !important; }
.newsletter-note { font-size: .78rem; color: var(--text-muted); margin-top: 1.25rem; }

/* Contact */
.contact-info { list-style: none; margin-top: 1.75rem; }
.contact-info li { margin-bottom: .9rem; color: var(--text-muted); display: flex; gap: .6rem; align-items: baseline; }
.contact-info strong { color: var(--accent); font-family: var(--serif); font-style: italic; font-weight: 600; min-width: 90px; }
.contact-info a { color: var(--text); font-weight: 500; }
.contact-info a:hover { color: var(--accent); }

.socials { display: flex; gap: 1rem; margin-top: 2rem; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s;
  background: var(--surface);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { color: var(--accent); border-color: var(--accent); }

.quote-card { text-align: center; padding: 2.5rem; position: relative; }
.quote-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--text-muted); }
.quote-author { margin-top: 1.25rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--cream-muted);
  border-top: 1px solid rgba(243,234,217,.08);
  padding: 3rem 0 2rem;
  font-size: .88rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-crest img { height: 46px; width: auto; }
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--cream); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .press-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 6px; }
  .timeline-item { grid-template-columns: 14px 1fr; gap: 1.5rem; }
  .timeline-dot { left: 2px; }
  .timeline-era { text-align: left; grid-column: 1 / -1; margin-bottom: .3rem; }
  .timeline-content { grid-column: 1 / -1; padding-left: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px; }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .shorts-wall { margin-top: 3rem; max-width: 560px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 24px;
    border-bottom: 1px solid rgba(243,234,217,.1);
    display: none;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .film-meta { gap: 1.25rem; }
  .press-grid, .shop-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-a { grid-column: span 2; grid-row: span 1; }
  .shorts-grid { grid-template-columns: 1fr 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid rgba(243,234,217,.12);
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  padding: 1.25rem 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  min-width: 240px;
  color: var(--cream-muted);
  font-size: .88rem;
  margin: 0;
}
.cookie-banner a { color: var(--accent-soft); text-decoration: underline; }
.cookie-banner button { flex-shrink: 0; }

@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
}
