@import url('https://fonts.cdnfonts.com/css/maroni');
@import url('https://fonts.cdnfonts.com/css/brockmann');

:root {
  --font-main: Metropolis, Helvetica Neue;
  --bg: #F7F4EF;
  --surface: #FFFCF8;
  --text: #2E2A25;
  --muted: #6a6058;
  --accent: #C7A27C;
  --accent-dark: #a88056;
  --line: rgba(46, 42, 37, 0.12);
  --glass: rgba(247, 244, 239, 0.72);
  --shadow-soft: 0 16px 45px rgba(46, 42, 37, 0.11);
  --shadow-card: 0 10px 30px rgba(46, 42, 37, 0.1);
  --radius: 22px;
}
.panel h2 {
  font-size: clamp(2rem,3vw,2.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #fdfaf6 0%, var(--bg) 45%);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 2200;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: 6rem 0; }
.section-tight { padding: 2.5rem 0 3.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: var(--glass);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: .35s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 22px rgba(46, 42, 37, 0.08);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height .35s ease;
}
.site-header.scrolled .nav { min-height: 68px; }
.brand {
  font-size: 1.42rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links { list-style: none; display: flex; gap: 1.55rem; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .32s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.4rem; color: var(--text); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 8s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1.13); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(199,162,124,0.14) 0%, transparent 40%),
    linear-gradient(105deg, rgba(20, 16, 12, 0.7), rgba(20, 16, 12, 0.25));
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 7rem 0;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .75rem;
  opacity: .92;
  margin-bottom: .9rem;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.hero h1 { font-size: clamp(3.2rem, 9vw, 7rem); margin: 0 0 1rem; }
.hero p { font-size: clamp(1rem, 2vw, 1.32rem); max-width: 560px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 12px 24px rgba(199, 162, 124, .34);
  transition: .3s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(199, 162, 124, .42); background: var(--accent-dark); }

.page-main { padding: 4rem 0 6rem; }
.page-title { font-size: clamp(2.4rem, 5vw, 4.3rem); margin-bottom: 1.2rem; }
.lead { color: var(--muted); max-width: 760px; margin-bottom: 2.2rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.3rem; align-items: center; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow-soft); }
.text-link { color: var(--accent-dark); font-weight: 600; }

.parallax-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.parallax-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 55%, rgba(18, 12, 8, 0.24) 100%);
  pointer-events: none;
}
.parallax-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.12) saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  transition: transform .6s ease;
}
.parallax-image-wrap:hover img { transform: scale(1.08); }

.panel, .menu-card, .location-card, .contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.panel { padding: 2rem; }

.card-grid { display: grid; gap: 1.35rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.menu-card {
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.menu-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.1,1);
  filter: sepia(.08) saturate(1.05);
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.menu-card:hover img { transform: scale(1.08); }
.card-content { padding: 1rem 1.1rem 1.25rem; }
.card-content h3 { margin-bottom: .2rem; font-size: 1.1rem; }
.card-content p { margin: 0; color: var(--accent-dark); font-weight: 700; }
.menu-section-title { margin: 3.2rem 0 1rem; font-size: 2rem; }

.location-card, .contact-form { padding: 1.7rem; }
.map {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form { display: grid; gap: 1rem; }
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  padding: 1.2rem .95rem .55rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 6px 16px rgba(46, 42, 37, 0.05);
}
.field label {
  position: absolute;
  left: .9rem;
  top: .95rem;
  font-size: .84rem;
  color: var(--muted);
  transition: .24s ease;
  pointer-events: none;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: rgba(199,162,124,.9); box-shadow: 0 0 0 4px rgba(199,162,124,.15); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-.55rem) scale(.88);
  color: var(--accent-dark);
}

.footer {
  border-top: 1px solid rgba(199,162,124,0.2);
  background: #191611;
  color: #f3e7d9;
  padding: 2.8rem 0;
  text-align: center;
}
.footer h3 { font-size: 1.2rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem; }
.footer p { margin: .15rem 0; color: rgba(243, 231, 217, .72); }
.footer a:hover { color: var(--accent); }

.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: transform .8s cubic-bezier(.18,.71,.23,.99), opacity .8s ease;
}
.reveal.visible,
.reveal-stagger > *.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .card-grid.four, .card-grid.three { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
}

@media (max-width: 700px) {
  .hero h1 { font-size: clamp(2.8rem, 11vw, 3.4rem); }
  .hero p { font-size: clamp(1.2rem, 6vw, 1.6rem); }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(247,244,239,.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 4%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
  }
  .nav-links.open { transform: scaleY(1); }
  .card-grid.four, .card-grid.three { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.7rem, 11vw, 4rem); }
}
