/* ============================================
   BERIKON KEBAB — DESIGN TOKENS
   ============================================ */
:root{
  --charcoal:       #211A14;
  --charcoal-2:     #2C231B;
  --charcoal-3:     #38291D;
  --cream:          #F6EEDF;
  --cream-dim:      #E7D9C1;
  --ink:            #241C15;
  --copper:         #C1652F;
  --copper-light:   #E08A4E;
  --saffron:        #E8A73F;
  --pomegranate:    #A32F2F;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(33, 26, 20, 0.08);
  --shadow-md: 0 16px 40px rgba(33, 26, 20, 0.14);
  --shadow-lg: 0 30px 70px rgba(33, 26, 20, 0.22);

  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg{ display:block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }

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

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.grain-overlay{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 14px;
}
.eyebrow--light{ color: var(--saffron); }

.h2{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 16ch;
}
.h2--light{ color: var(--cream); }

.section-lead{
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #4a3d30;
  margin: 0 0 48px;
}
.section--dark .section-lead{ color: var(--cream-dim); }

/* ============================================
   BUTTONS
   ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn--primary{
  background: var(--copper);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover{
  background: var(--copper-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover{
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn--dark-ghost{ color: var(--ink); border-color: var(--ink); }
.btn--dark{
  background: var(--ink);
  color: var(--cream);
}
.btn--dark:hover{
  background: var(--charcoal-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--sm{ padding: 11px 22px; font-size: 0.85rem; }
.btn--full{ width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-scrolled{
  padding: 12px 0;
  background: rgba(246, 238, 223, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(33,26,20,0.08);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.logo__mark{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo__text{
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.logo__text em{ font-style: normal; color: var(--copper); }
.logo--footer .logo__mark{ background: var(--saffron); color: var(--charcoal); }
.logo--footer .logo__text{ color: var(--cream); }

.nav__links{
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link{
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__link::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after{ width: 100%; }
.nav__link.is-active{ color: var(--copper); }

.nav__burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
}
.nav__burger span{
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2){ opacity: 0; }
.nav__burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: radial-gradient(ellipse 120% 90% at 20% -10%, #3B2A1A 0%, var(--charcoal) 55%, #180F0A 100%);
  overflow: hidden;
}
.hero__glow{
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(232,167,63,0.35) 0%, rgba(193,101,47,0.18) 40%, transparent 72%);
  filter: blur(10px);
  animation: flicker 7s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes flicker{
  0%{ opacity: 0.7; transform: scale(1) translate(0,0); }
  50%{ opacity: 1; transform: scale(1.08) translate(-15px, 10px); }
  100%{ opacity: 0.8; transform: scale(0.98) translate(10px, -10px); }
}
.hero__skewer{
  position: absolute;
  bottom: 8%;
  right: -60px;
  width: 46%;
  min-width: 320px;
  opacity: 0.5;
  transform: rotate(-6deg);
}
.hero__inner{ position: relative; z-index: 2; max-width: 720px; }

.hero__title{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  line-height: 0.92;
  margin: 0 0 26px;
}
.hero__title--accent{
  color: var(--saffron);
  -webkit-text-stroke: 1px rgba(232,167,63,0.4);
}
.hero__text{
  color: var(--cream-dim);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 0 38px;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}
.hero .btn--ghost{ color: var(--cream); border-color: rgba(246,238,223,0.5); }
.hero .btn--ghost:hover{ background: var(--cream); color: var(--ink); }

.hero__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.badge{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(246,238,223,0.08);
  border: 1px solid rgba(246,238,223,0.16);
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.scroll-hint{
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(246,238,223,0.4);
  border-radius: 20px;
  z-index: 2;
}
.scroll-hint span{
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--saffron);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot{
  0%{ opacity: 1; top: 8px; }
  70%{ opacity: 0; top: 22px; }
  100%{ opacity: 0; top: 8px; }
}

/* divider */
.divider{ position: relative; color: var(--charcoal-3); background: var(--charcoal); line-height: 0; }
.divider svg{ width: 100%; height: 32px; }

/* ============================================
   SECTIONS (generic)
   ============================================ */
.section{ padding: 120px 0; }
.section--dark{ background: var(--charcoal); color: var(--cream); }
.section--muted{ background: #EFE4CE; }

/* reveal-on-scroll */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ============================================
   SPLIT (Über uns)
   ============================================ */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split__media{ position: relative; }
.split__media-chip{
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.split__media-chip strong{
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
}
.split__media-chip span{ font-size: 0.82rem; color: var(--cream-dim); line-height: 1.4; }

.split__content p{ line-height: 1.7; color: #4a3d30; margin: 0 0 18px; font-size: 1.02rem; }

.check-list{ margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li{
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: var(--ink);
}
.check-list li::before{
  content: "✓";
  position: absolute;
  left: 0; top: -2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--cream);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.ph-image{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #C1652F 0%, #A32F2F 45%, #7a2418 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ph-image--tall{ min-height: 460px; }
.ph-image__tag{
  margin: 18px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(33,26,20,0.55);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ============================================
   CTA STRIPS
   ============================================ */
.cta-strip{
  background: var(--saffron);
  padding: 56px 0;
}
.cta-strip--accent{ background: var(--copper); }
.cta-strip__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
  margin: 0 0 8px;
}
.cta-strip--accent h3{ color: var(--cream); }
.cta-strip p{ margin: 0; color: rgba(36,28,21,0.75); max-width: 46ch; }
.cta-strip--accent p{ color: rgba(246,238,223,0.85); }

/* ============================================
   MENU / SERVICES GRID
   ============================================ */
.menu-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}
.menu-card{
  background: var(--charcoal-2);
  border: 1px solid rgba(246,238,223,0.08);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.menu-card:hover{
  transform: translateY(-8px);
  background: var(--charcoal-3);
  box-shadow: 0 20px 46px rgba(0,0,0,0.35);
}
.menu-card__icon{
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(232,167,63,0.12);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.menu-card__icon svg{ width: 26px; height: 26px; }
.menu-card h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0 0 10px;
}
.menu-card p{ color: var(--cream-dim); font-size: 0.94rem; line-height: 1.6; margin: 0; }

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  margin-top: 20px;
}
.advantage{
  padding-top: 22px;
  border-top: 2px solid rgba(33,26,20,0.1);
}
.advantage__num{
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--copper);
  margin-bottom: 10px;
}
.advantage h3{ font-size: 1.12rem; margin: 0 0 10px; color: var(--ink); }
.advantage p{ margin: 0; color: #5a4c3d; line-height: 1.6; font-size: 0.95rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.gallery__item{ min-height: 240px; cursor: pointer; }
.gallery__item--tall{ min-height: 500px; grid-row: span 2; }
.gallery__item:nth-child(1){ background: linear-gradient(135deg,#C1652F,#E8A73F 70%); }
.gallery__item:nth-child(2){ background: linear-gradient(150deg,#A32F2F,#6f1f14 75%); }
.gallery__item:nth-child(3){ background: linear-gradient(135deg,#38291D,#C1652F 80%); }
.gallery__item:nth-child(4){ background: linear-gradient(140deg,#E8A73F,#A32F2F 75%); }
.gallery__item:nth-child(5){ background: linear-gradient(135deg,#6f1f14,#C1652F 70%); }
.gallery__item:nth-child(6){ background: linear-gradient(150deg,#C1652F,#38291D 80%); }
.gallery__item:hover{ transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials{ margin-top: 20px; }
.testimonial-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar{ display: none; }
.testimonial{
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid rgba(33,26,20,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars{ color: var(--saffron); letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.testimonial p{ line-height: 1.7; color: #4a3d30; margin: 0 0 22px; }
.testimonial__author{ display: flex; align-items: center; gap: 12px; }
.avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author div:last-child{ display: flex; flex-direction: column; line-height: 1.35; }
.testimonial__author strong{ font-size: 0.92rem; color: var(--ink); }
.testimonial__author span{ font-size: 0.8rem; color: #7a6a58; }

.testimonial-dots{
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.testimonial-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(33,26,20,0.2);
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-dots button.is-active{ background: var(--copper); transform: scale(1.3); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  margin-top: 20px;
}
.contact-form{
  background: var(--cream);
  border: 1px solid rgba(33,26,20,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field{ margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.field label{ font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea{
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(33,26,20,0.15);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(193,101,47,0.12);
  outline: none;
}
.field.has-error input, .field.has-error textarea{ border-color: var(--pomegranate); }
.field__error{
  font-size: 0.78rem;
  color: var(--pomegranate);
  min-height: 1em;
}
.form-success{
  display: none;
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(163,47,47,0.08);
  color: #6f3a12;
  background: #F0E6D2;
  border: 1px solid rgba(193,101,47,0.3);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.is-visible{ display: block; }

.contact-side{ display: flex; flex-direction: column; gap: 20px; }
.info-card{
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.info-card h3{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--saffron);
  margin: 0 0 12px;
}
.info-card p{ margin: 0; line-height: 1.6; color: var(--cream-dim); }
.info-card a{ color: var(--cream); }
.info-card a:hover{ color: var(--saffron); }

.hours-table{ width: 100%; border-collapse: collapse; }
.hours-table td{
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(246,238,223,0.08);
}
.hours-table td:last-child{ text-align: right; font-weight: 600; color: var(--cream); }
.hours-table__highlight td{ color: var(--saffron); }
.hours-table__highlight td:last-child{ color: var(--saffron); }

/* map */
.map-block{ margin-top: 50px; }
.map-placeholder{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: #DCCBA3;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.map-placeholder__grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,26,20,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,26,20,0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-placeholder__pin{
  width: 52px; height: 52px;
  color: var(--pomegranate);
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.25));
  animation: pinBounce 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes pinBounce{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.map-placeholder__label{
  z-index: 1;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(246,238,223,0.85);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer{ background: var(--charcoal); color: var(--cream-dim); padding: 80px 0 0; }
.footer__grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246,238,223,0.1);
}
.footer__brand p{ margin: 18px 0 22px; line-height: 1.6; font-size: 0.92rem; max-width: 34ch; }
.footer__socials{ display: flex; gap: 10px; }
.social-dot{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(246,238,223,0.08);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}
.social-dot:hover{ background: var(--copper); transform: translateY(-3px); }

.footer__col{ display: flex; flex-direction: column; gap: 12px; }
.footer__col h4{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: 0.95rem;
  margin: 0 0 6px;
}
.footer__col a, .footer__col span{ font-size: 0.9rem; color: var(--cream-dim); }
.footer__col a:hover{ color: var(--saffron); }

.footer__bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(246,238,223,0.5);
}

/* ============================================
   TO TOP BUTTON
   ============================================ */
.to-top{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--saffron);
  border: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 400;
}
.to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover{ background: var(--copper); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; gap: 60px; }
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
  .advantages-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .nav__links, .nav__cta{ display: none; }
  .nav__burger{ display: flex; }
  .nav.is-open .nav__links{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 22px 24px 30px;
    box-shadow: var(--shadow-md);
    gap: 18px;
  }
  .nav.is-open .nav__cta{
    display: inline-flex;
    margin: 0 24px 20px;
  }

  .hero{ padding: 120px 0 80px; text-align: left; }
  .hero__skewer{ display: none; }

  .section{ padding: 80px 0; }
  .menu-grid{ grid-template-columns: 1fr; }
  .advantages-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .gallery__item--tall{ grid-row: span 1; min-height: 240px; }

  .form-row{ grid-template-columns: 1fr; }
  .contact-form{ padding: 28px; }

  .cta-strip__inner{ flex-direction: column; align-items: flex-start; }

  .footer__grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom{ flex-direction: column; }

  .split__media-chip{ left: 12px; bottom: -20px; padding: 16px 18px; }
}

@media (max-width: 480px){
  .gallery{ grid-template-columns: 1fr; }
  .hero__title{ font-size: clamp(2.6rem, 13vw, 4rem); }
}
