/* ===== Kulture Yard — Brand System ===== */

:root {
  --bg: #0A0A0A;
  --bg-elev: #141414;
  --bg-card: #1A1A1A;
  --red: #E63946;
  --red-deep: #B0202C;
  --gold: #FFD700;
  --gold-warm: #E8B923;
  --green: #1B7F3A;
  --green-deep: #0F5C29;
  --cream: #F8F1E5;
  --cream-dim: #D9D2C5;
  --muted: #9A9A9A;
  --border: #2A2A2A;

  --font-display: 'Permanent Marker', cursive;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-lift: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow-red: 0 0 0 4px rgba(230, 57, 70, 0.15);
  --shadow-glow-gold: 0 0 0 4px rgba(255, 215, 0, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cream); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ===== Reusable layout ===== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: 0.5px; }

h2.section-title {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 16px;
  color: var(--cream);
}

.section-lede {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--cream-dim);
  max-width: 640px;
  margin-bottom: 56px;
}

.divider {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33.33%, var(--gold) 33.33%, var(--gold) 66.66%, var(--green) 66.66%, var(--green) 100%);
  border: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-glow-red); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--bg); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--gold-warm); transform: translateY(-2px); box-shadow: var(--shadow-glow-gold); }

/* ===== Navigation ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.nav-brand img { height: 44px; width: auto; }
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  position: relative;
  transition: transform .25s ease, background .25s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(230, 57, 70, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(27, 127, 58, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.10), transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-logo {
  width: clamp(220px, 32vw, 360px);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation: floatLogo 8s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  margin: 12px 0 16px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 50%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.hero-subline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--cream-dim);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-meta-dot { color: var(--red); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-prose p { margin-bottom: 18px; font-size: 17px; color: var(--cream-dim); }
.about-prose strong { color: var(--gold); font-weight: 600; }
.about-quote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  background: var(--bg-elev);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-top: 24px;
}
.about-figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--border);
  margin: 0;
}
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-figure:hover img { transform: scale(1.03); }
.about-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.about-figcaption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ===== Gallery ===== */
.gallery {
  background: var(--bg);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 720px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery-tall {
  grid-row: 1 / span 2;
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--cream);
}
.gallery-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.gallery-caption {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.gallery-credit {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 14px;
}
.gallery-credit a { color: var(--gold); font-weight: 600; }

/* ===== Experience ===== */
.experience { background: var(--bg-elev); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--red));
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, var(--red));
  box-shadow: var(--shadow-lift);
}
.exp-card:nth-child(1) { --accent: var(--red); }
.exp-card:nth-child(2) { --accent: var(--gold); }
.exp-card:nth-child(3) { --accent: var(--green); }
.exp-card:nth-child(4) { --accent: var(--red); }
.exp-card:nth-child(5) { --accent: var(--gold); }
.exp-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  filter: grayscale(0.1);
}
.exp-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--cream);
}
.exp-card p { font-size: 14px; color: var(--cream-dim); line-height: 1.55; }

/* ===== Signature dishes ===== */
.signatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.dish-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.dish-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  transition: transform .4s ease;
}
.dish-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.dish-card:hover::before { transform: translate(-15%, 15%); }
.dish-emoji { font-size: 40px; line-height: 1; }
.dish-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
}
.dish-desc { font-size: 14px; color: var(--cream-dim); line-height: 1.55; flex: 1; }
.dish-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}
.dish-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ===== Menu preview ===== */
.menu-preview { background: var(--bg-elev); }
.menu-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.menu-chip {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  font-weight: 500;
  font-size: 14px;
  transition: all .2s ease;
}
.menu-chip:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.menu-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.menu-vat-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== Visit / Contact ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.visit-info { display: flex; flex-direction: column; gap: 28px; }
.visit-block { display: flex; gap: 16px; align-items: flex-start; }
.visit-icon {
  font-size: 22px;
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-block h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 4px;
}
.visit-block p, .visit-block a { font-size: 16px; color: var(--cream-dim); }
.visit-block a:hover { color: var(--gold); }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 460px;
  box-shadow: var(--shadow-lift);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.site-footer {
  background: #050505;
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--cream-dim); font-size: 14px; }
.footer-col a:hover { color: var(--cream); }
.footer-socials { display: flex; gap: 12px; margin-top: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 16px;
  transition: all .2s ease;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom span.heart { color: var(--red); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Menu page ===== */
.menu-hero {
  padding: 160px 0 60px;
  background:
    radial-gradient(ellipse at top, rgba(27, 127, 58, 0.25), transparent 70%),
    var(--bg);
  text-align: center;
}
.menu-hero h1 {
  font-size: clamp(48px, 8vw, 90px);
  background: linear-gradient(135deg, var(--cream), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.menu-hero p { color: var(--cream-dim); max-width: 640px; margin: 0 auto; font-size: 17px; }
.menu-toolbar {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.menu-toolbar-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.menu-search {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
}
.menu-search input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.menu-search input::placeholder { color: var(--muted); }
.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex: 2;
  min-width: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.menu-tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all .2s ease;
}
.menu-tab:hover { color: var(--cream); border-color: var(--gold); }
.menu-tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 600; }

.menu-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.menu-section:last-of-type { border-bottom: none; }
.menu-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--red);
  margin-bottom: 12px;
}
.menu-section .menu-section-blurb { color: var(--muted); margin-bottom: 32px; max-width: 600px; }
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px 40px;
}
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.menu-item-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
}
.menu-item-dotted {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, var(--border) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  align-self: center;
  min-width: 24px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc { font-size: 14px; color: var(--cream-dim); line-height: 1.5; }
.menu-section.hidden { display: none; }
.menu-item.hidden { display: none; }

.menu-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
}
.menu-empty p { margin-bottom: 16px; }

.vat-note {
  background: var(--bg-elev);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: var(--green);
  font-weight: 500;
  margin: 48px 0;
}
.vat-note strong { color: var(--cream); display: block; margin-bottom: 4px; }

/* ===== Mobile ===== */
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: var(--bg-elev);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 32px;
    transform: translateX(100%);
    transition: transform .3s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links a { font-size: 22px; }
  .nav-cta { font-size: 16px; padding: 14px 24px; }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-toggle { display: inline-flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { aspect-ratio: 4/5; max-width: 460px; margin: 0 auto; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 320px);
    height: auto;
  }
  .gallery-tall { grid-row: auto; }
  .gallery-caption { font-size: 20px; }

  .visit-grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-map { height: 320px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .menu-toolbar { top: 68px; }
  .menu-tabs { width: 100%; }
}

@media (max-width: 540px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .hero { padding-top: 100px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .menu-toolbar-inner { flex-direction: column; align-items: stretch; }
  .menu-items { grid-template-columns: 1fr; gap: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}
