:root {
  --green: #314b2e;
  --green-dark: #20351f;
  --cream: #fbf5ea;
  --paper: #fffaf1;
  --yellow: #fac83f;
  --orange: #e6a329;
  --ink: #263525;
  --muted: #596557;
  --line: #dfd5c4;
  --peach: #fde7dd;
  --shadow: 0 12px 28px rgba(49, 75, 46, 0.16);
  --font-body: "Inter", sans-serif;
  --font-title: "Amatic SC", cursive;
  --font-hand: "Kalam", cursive;
  --gutter: clamp(32px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

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

.container {
  width: min(1190px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 108px;
  padding: 14px var(--gutter);
  background: rgba(255, 252, 246, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(49, 75, 46, 0.08);
}

.brand {
  display: grid;
  color: var(--green);
  font-family: var(--font-hand);
  line-height: 0.95;
  text-transform: uppercase;
}

.brand .lights {
  margin-bottom: 4px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
}

.brand strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.02em;
}

.brand span:last-child {
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-align: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta {
  color: #fff;
  background: var(--green);
}

.button-yellow {
  color: #162414;
  background: var(--yellow);
}

.button-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-hand);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

h2 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 560px;
  padding: clamp(40px, 7vw, 80px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.12) 78%),
    url("assets/hero-guinguette.png") center / cover no-repeat;
}

.hero::after,
.menu-band::before,
.menu-band::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 26px;
  content: "";
  background: var(--cream);
  clip-path: polygon(0 38%, 12% 62%, 27% 48%, 44% 72%, 61% 50%, 79% 68%, 100% 42%, 100% 100%, 0 100%);
}

.hero::after {
  bottom: -1px;
}

.hero-inner {
  display: grid;
  align-items: center;
  width: min(1190px, calc(100% - (var(--gutter) * 2)));
  min-height: 480px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 600px;
}

.hero p {
  max-width: 460px;
  margin: 24px 0 30px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.squiggle {
  display: block;
  width: 56px;
  height: 12px;
  margin: 0 0 22px;
  background: repeating-linear-gradient(135deg, transparent 0 8px, var(--yellow) 8px 13px, transparent 13px 20px);
  border-radius: 999px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.9fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.script {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-family: var(--font-hand);
  font-size: 1.7rem;
}

.intro-copy p {
  max-width: 340px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy a,
.event-list a {
  color: var(--green);
  font-family: var(--font-hand);
  font-weight: 700;
  text-transform: uppercase;
}

.polaroid {
  padding: 10px 10px 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.values {
  display: grid;
  gap: 34px;
}

.values article,
.infos article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
}

.values i,
.infos i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 1.8rem;
}

.values p,
.infos p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-band {
  position: relative;
  padding: clamp(64px, 9vw, 96px) 0;
  color: #fff;
  background: var(--green);
}

.menu-band::before {
  top: -1px;
  transform: rotate(180deg);
}

.menu-band::after {
  bottom: -1px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.menu-band h2,
.menu-band h3 {
  color: #fff;
}

.menu-intro p {
  max-width: 280px;
}

.dish-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.dish-media {
  position: relative;
  height: 190px;
  margin: 0;
  overflow: hidden;
}

.dish-media img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 300%;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.dish-center img { transform: translate(-33.333%, -50%); }
.dish-right img { transform: translate(-66.666%, -50%); }

.dish-card div {
  padding: 16px 18px 20px;
}

.dish-card h3 {
  color: var(--ink);
}

.dish-card p {
  margin-bottom: 8px;
  color: #354334;
}

.dish-card strong {
  color: var(--orange);
}

.events-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr 0.85fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}

.event-list > span {
  display: block;
  font-family: var(--font-hand);
  font-weight: 700;
  text-transform: uppercase;
}

.event-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.event-list strong {
  color: var(--yellow);
  font-family: var(--font-hand);
  font-size: 2.6rem;
  line-height: 0.85;
}

.event-list small {
  display: block;
  color: var(--orange);
  font-size: 1rem;
  text-transform: uppercase;
}

.event-list p {
  margin-bottom: 0;
}

.events img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.mood-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--peach);
  border-radius: 4px;
}

.mood-card strong {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-family: var(--font-hand);
  font-size: 1.7rem;
}

.infos {
  padding: 34px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

.infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reservation {
  padding: 58px 0;
  text-align: center;
}

.reservation-inner {
  padding: 42px 24px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.reservation h2 {
  color: #fff;
}

.site-footer {
  padding: 54px 0 26px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(250, 200, 63, 0.18), transparent 30%),
    var(--green-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

.footer-grid nav,
.footer-grid div:nth-child(3) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h3 {
  color: #fff;
}

.footer-grid form div {
  display: flex;
  margin-top: 12px;
}

.footer-grid input,
.footer-grid button {
  min-height: 44px;
  border: 0;
}

.footer-grid input {
  min-width: 0;
  padding: 0 14px;
  border-radius: 4px 0 0 4px;
}

.footer-grid button {
  width: 50px;
  color: var(--green);
  background: var(--yellow);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  padding-top: 42px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .intro-grid,
  .menu-grid,
  .events-grid,
  .infos-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dish-card img {
    height: 250px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 22px;
  }

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .site-header {
    min-height: auto;
  }

  .hero {
    min-height: 620px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .values article,
  .infos article {
    grid-template-columns: 54px 1fr;
  }

  .values i,
  .infos i {
    width: 48px;
    height: 48px;
  }
}
