:root {
  --brown: #3a281f;
  --brown-dark: #241812;
  --kraft: #c9a77d;
  --cream: #f4efe7;
  --paper: #fffaf1;
  --metal: #b8b8b5;
  --amber: #e4a64a;
  --muted: #7a665b;
  --max: 1180px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brown-dark);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.section-pad { padding: 92px 0; }
.section-kicker {
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .78rem;
  margin: 0 0 14px;
}
h1, h2, h3 {
  font-family: "League Spartan", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .92;
  margin: 0;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); max-width: 920px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.9rem); }
h3 { font-size: 1.7rem; }
p { margin: 0; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(36,24,18,.82), rgba(36,24,18,.1));
  backdrop-filter: blur(8px);
}
.brand img { width: 172px; height: auto; filter: brightness(1.2); }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.header-actions { display: flex; align-items: center; gap: 14px; order: 3; }
.lang-switch { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid rgba(255,250,241,.28); border-radius: 999px; background: rgba(36,24,18,.42); }
.lang-switch a { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 30px; border-radius: 999px; font-size: .76rem; font-weight: 900; letter-spacing: .06em; opacity: .78; }
.lang-switch a:hover { color: var(--amber); opacity: 1; }
.lang-switch a.active { background: var(--amber); color: var(--brown-dark); opacity: 1; }
.main-nav a { opacity: .9; }
.main-nav a:hover { color: var(--amber); opacity: 1; }
.nav-cta { border: 1px solid rgba(255,250,241,.4); padding: 11px 15px; border-radius: 999px; }
.nav-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 142px clamp(18px, 5vw, 70px) 64px;
  overflow: hidden;
  color: var(--paper);
  background: var(--brown-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36,24,18,.92), rgba(36,24,18,.58) 42%, rgba(36,24,18,.2)),
    linear-gradient(0deg, rgba(36,24,18,.9), rgba(36,24,18,.1) 35%),
    url("assets/airstream-evening.png") center / cover no-repeat;
  transform: scale(1.02);
}
.hero-content { position: relative; z-index: 1; max-width: 1040px; }
.eyebrow { color: var(--amber); font-weight: 900; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 20px; }
.hero-text { color: rgba(255,250,241,.82); max-width: 720px; font-size: 1.12rem; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.button.primary { background: var(--amber); color: var(--brown-dark); box-shadow: 0 18px 40px rgba(228,166,74,.22); }
.button.secondary { color: var(--paper); border-color: rgba(255,250,241,.42); background: rgba(255,250,241,.08); }
.hero-badge {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 58px;
  z-index: 1;
  border: 1px solid rgba(255,250,241,.3);
  border-radius: 20px;
  padding: 18px 20px;
  background: rgba(36,24,18,.42);
  text-align: center;
  box-shadow: 0 0 36px rgba(228,166,74,.22);
}
.hero-badge span { display: block; font-family: "League Spartan"; font-size: 1.8rem; font-weight: 900; }
.hero-badge small { letter-spacing: .22em; color: var(--amber); font-weight: 900; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.intro p:last-child { font-size: 1.08rem; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 42px; }
.section-head h2 { max-width: 780px; }
.section-head.narrow { display: block; text-align: center; max-width: 840px; margin-inline: auto; }

.offer { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--paper);
  border: 1px solid rgba(58,40,31,.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 286px;
  box-shadow: 0 18px 45px rgba(58,40,31,.06);
}
.card-icon { color: var(--kraft); font-weight: 900; letter-spacing: .14em; }
.card h3 { margin: 54px 0 16px; }
.card p { font-size: .96rem; }

.airstream { background: var(--brown-dark); color: var(--paper); }
.airstream p { color: rgba(255,250,241,.78); }
.feature-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; }
.frame { border-radius: 32px; overflow: hidden; border: 1px solid rgba(255,250,241,.18); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.frame img { aspect-ratio: 4 / 3; object-fit: cover; }
.feature-copy p { margin: 22px 0; font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li { color: rgba(255,250,241,.88); position: relative; padding-left: 30px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 11px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(228,166,74,.12); }

.menu-section { background: linear-gradient(180deg, var(--cream), #eadccc); }
.menu-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.menu-board {
  background: var(--paper);
  border: 12px solid #7c5738;
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 30px 70px rgba(58,40,31,.2);
}
.menu-logo { width: 260px; margin: 0 auto 20px; }
.menu-label { display: flex; align-items: center; gap: 14px; justify-content: center; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; color: var(--brown); border-block: 1px solid rgba(58,40,31,.28); padding: 10px 0; }
.menu-label span { display: block; height: 1px; width: 54px; background: var(--brown); }
.menu-category { padding: 24px 0 8px; border-bottom: 1px solid rgba(58,40,31,.16); }
.menu-category h3 { font-size: 1.35rem; color: var(--kraft); margin-bottom: 14px; letter-spacing: .1em; }
.menu-item { display: flex; justify-content: space-between; gap: 18px; font-weight: 900; text-transform: uppercase; }
.menu-item span { color: var(--brown); }
.menu-category p { font-size: .86rem; margin: 2px 0 14px; }
.menu-board small { display: block; color: var(--muted); margin-top: 18px; text-align: center; }
.menu-copy p { margin: 24px 0 30px; font-size: 1.05rem; }

.events { background: var(--paper); }
.event-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }
.event-tags span { border: 1px solid rgba(58,40,31,.18); border-radius: 999px; padding: 14px 18px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; background: var(--cream); }

.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-auto-rows: 330px; gap: 18px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; box-shadow: 0 18px 50px rgba(58,40,31,.12); }
.gallery-grid img:first-child { grid-row: span 2; }

.contact { background: var(--brown); color: var(--paper); }
.contact p { color: rgba(255,250,241,.78); margin-top: 20px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.contact-lines { margin-top: 28px; display: grid; gap: 10px; color: var(--amber); font-weight: 900; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; background: rgba(255,250,241,.08); border: 1px solid rgba(255,250,241,.18); border-radius: 30px; padding: 24px; }
.contact-form label { display: grid; gap: 7px; color: rgba(255,250,241,.78); font-size: .84rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.contact-form .full { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid rgba(255,250,241,.22); border-radius: 16px; padding: 14px 15px; background: rgba(255,250,241,.12); color: var(--paper); font: inherit; outline: none; }
input:focus, textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(228,166,74,.14); }
.contact-form button { justify-self: start; }

.site-footer { background: #160f0b; color: var(--paper); padding: 34px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid img { width: 150px; }
.footer-grid p { color: rgba(255,250,241,.62); }
.footer-grid a { color: var(--amber); font-weight: 900; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; font-size: .82rem; }
  .brand img { width: 150px; }
}

@media (max-width: 950px) {
  .site-header { background: rgba(36,24,18,.9); }
  .nav-toggle { display: inline-flex; border: 1px solid rgba(255,250,241,.3); border-radius: 999px; background: transparent; color: var(--paper); padding: 10px 14px; font-weight: 900; text-transform: uppercase; }
  .main-nav { position: absolute; top: 82px; right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--brown-dark); border: 1px solid rgba(255,250,241,.16); border-radius: 20px; padding: 12px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; }
  .hero-badge { display: none; }
  .intro-grid, .feature-grid, .menu-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-grid img:first-child { grid-row: span 1; }
}

@media (max-width: 640px) {
  .section-pad { padding: 66px 0; }
  .brand img { width: 128px; }
  .site-header { gap: 12px; padding-inline: 14px; }
  .header-actions { gap: 8px; }
  .lang-switch a { min-width: 30px; height: 28px; font-size: .7rem; }
  .hero { min-height: 92svh; padding-bottom: 42px; }
  .cards, .contact-form { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card h3 { margin-top: 32px; }
  .section-head { display: block; }
  .contact-form button { width: 100%; }
  .footer-grid { flex-direction: column; text-align: center; }
}

#page-top { position: absolute; top: 0; left: 0; width: 1px; height: 1px; }
