:root {
  --forest: #1F3D2B;
  --ink: #222222;
  --ink-soft: #1F3D2B;
  --cream: #F7F4EC;
  --paper: #F7F4EC;
  --terracotta: #C8A46A;
  --sage: #1F3D2B;
  --line: rgba(34, 34, 34, .18);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.site-header.scrolled {
  position: fixed;
  height: 76px;
  color: var(--ink);
  background: rgba(247,244,236,.94);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  animation: headerIn .35s ease both;
}
@keyframes headerIn { from { transform: translateY(-100%); } }
.brand { line-height: .8; text-align: center; }
.brand span { display: block; font-size: 10px; letter-spacing: .37em; text-transform: uppercase; margin-bottom: 9px; }
.brand strong { display: block; font: 400 30px/1 var(--serif); }
.main-nav { display: flex; align-items: center; gap: 2.3vw; font-size: 13px; }
.main-nav a { transition: opacity .2s; }
.main-nav a:hover { opacity: .65; }
.nav-cta { border: 1px solid currentColor; padding: 12px 20px; }
.nav-toggle { display: none; border: 0; background: none; color: inherit; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  color: white;
  background: url("assets/enseigne-au-sapin.jpg") center 48%/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,35,23,.80) 0%, rgba(31,61,43,.48) 45%, rgba(31,61,43,.10) 75%), linear-gradient(0deg, rgba(15,35,23,.42), transparent 45%);
}
.hero-content { position: relative; z-index: 2; width: 650px; margin-left: 10vw; padding-top: 55px; }
.eyebrow {
  margin: 0 0 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: #d7d5c5;
}
.eyebrow.dark { color: var(--terracotta); }
h1, h2 { font-family: var(--serif); font-weight: 400; margin: 0; }
h1 { font-size: clamp(76px, 9vw, 142px); line-height: .83; letter-spacing: -.045em; }
h1 em, h2 em { font-weight: 400; color: var(--terracotta); }
.hero-copy { max-width: 490px; margin: 35px 0; font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.8); }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 27px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--ink); }
.button-light:hover { background: white; }
.text-link { font-size: 13px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 8px; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-info {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 45px;
  display: flex;
  gap: 52px;
  font-size: 12px;
  line-height: 1.7;
}
.hero-info span { text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); }
.scroll-cue { position: absolute; z-index: 2; left: 5vw; bottom: 45px; width: 24px; height: 42px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 3px; height: 7px; border-radius: 2px; background: white; left: 10px; top: 8px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

.section { position: relative; padding: 130px 8vw; }
.section-number { position: absolute; top: 55px; left: 5vw; font: 12px var(--sans); color: var(--terracotta); }
.intro {
  background: var(--forest);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10vw;
  min-height: 650px;
  align-items: center;
  overflow: hidden;
}
.intro h2, .menu-section h2, .moments h2 { font-size: clamp(52px, 6.4vw, 96px); line-height: .96; letter-spacing: -.035em; }
.intro-copy { max-width: 460px; padding-top: 70px; }
.intro-copy > p { color: rgba(247,244,236,.78); line-height: 1.75; margin: 0 0 20px; }
.dark-link { display: inline-block; margin-top: 20px; color: var(--ink); border-color: var(--line); }

.menu-section { background: var(--cream); }
.menu-top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 75px; }
.menu-top > p { max-width: 320px; color: #70766f; line-height: 1.6; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 28px 35px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.menu-tab { border: 0; border-bottom: 2px solid transparent; padding: 0 0 15px; background: none; color: #5f665f; cursor: pointer; font-weight: 700; letter-spacing: .02em; }
.menu-tab.active { color: var(--ink); border-color: var(--terracotta); }
.menu-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  animation: itemIn .4s ease both;
}
@keyframes itemIn { from { opacity: 0; transform: translateY(8px); } }
.menu-item .index { color: var(--terracotta); font-size: 12px; font-weight: 700; padding-top: 6px; }
.menu-item h3 { margin: 0 0 9px; font: 700 23px/1.28 var(--sans); letter-spacing: -.01em; }
.menu-item p { margin: 0; color: #5f665f; font-size: 15px; line-height: 1.6; }
.menu-item .price { font: 700 18px/1.3 var(--sans); white-space: nowrap; padding-top: 3px; }
.menu-note { text-align: center; margin: 45px 0 0; font-size: 12px; letter-spacing: .07em; color: #6d746d; }

.photos {
  background: #eee8dc;
}
.photos-heading {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}
.photos-heading h2 { font-size: clamp(52px, 6.4vw, 96px); line-height: .96; letter-spacing: -.035em; }
.photos-heading > p:last-child { max-width: 430px; color: #626962; line-height: 1.7; margin: 0; }
.photo-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 24px;
}
.gallery-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
  min-height: 320px;
}
.gallery-photo-large { grid-row: span 2; min-height: 670px; }
.gallery-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-photo:hover img { transform: scale(1.04); }
.gallery-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--cream);
  background: rgba(31,61,43,.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.moments {
  color: var(--cream);
  min-height: 800px;
  background: linear-gradient(rgba(31,61,43,.70), rgba(20,43,29,.94)), url("assets/entree-cafe-au-sapin.jpg") center 42%/cover fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.moments-title { max-width: 800px; }
.moment-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); margin-top: 100px; }
.moment-card { padding: 32px 4vw 10px 0; border-right: 1px solid rgba(255,255,255,.22); min-height: 190px; }
.moment-card + .moment-card { padding-left: 4vw; }
.moment-card:last-child { border-right: 0; }
.moment-card span { color: var(--terracotta); font-size: 11px; }
.moment-card h3 { font: 25px var(--serif); margin: 28px 0 12px; }
.moment-card p { margin: 0; color: #abb3ac; font-size: 14px; line-height: 1.65; max-width: 300px; }

.team {
  background: var(--forest);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: end;
}
.team-heading h2, .hours-content h2 { font-size: clamp(52px, 6.4vw, 96px); line-height: .96; letter-spacing: -.035em; }
.team-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(247,244,236,.24); }
.team-member { padding: 35px 30px 20px 0; min-height: 270px; border-right: 1px solid rgba(247,244,236,.24); }
.team-member + .team-member { padding-left: 35px; border-right: 0; }
.team-member > span { color: var(--terracotta); font-size: 10px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.team-member h3 { margin: 48px 0 12px; font: 42px/1.02 var(--serif); }
.team-member p { margin: 0; color: rgba(247,244,236,.72); font-size: 13px; }

.hours {
  background: #eee8dc;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) 1.2fr;
  gap: 8vw;
  align-items: center;
}
.hours-poster img { width: 100%; max-height: 820px; object-fit: contain; box-shadow: 0 28px 60px rgba(31,61,43,.16); }
.hours-content { max-width: 680px; }
.hours-block { margin-top: 55px; }
.hours-block h3 { margin: 0 0 10px; color: var(--forest); font: 23px var(--serif); }
.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.65;
}
.hours-row span { color: #606660; }
.hours-row strong { font-weight: 500; text-align: right; }
.closed-note {
  margin: 42px 0 0;
  padding: 18px 22px;
  color: var(--cream);
  background: var(--forest);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

footer {
  background: var(--forest);
  color: #dfe1db;
  padding: 80px 5vw 28px;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 5vw;
}
.footer-brand span { display: block; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; }
.footer-brand strong { display: block; font: 58px var(--serif); margin-top: 7px; }
.footer-brand p { color: #7f8981; line-height: 1.6; margin-top: 25px; }
.footer-column h3 { color: #7f8981; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 25px; }
.footer-column p, .footer-column a { display: block; font-size: 13px; line-height: 1.9; margin: 0; }
.footer-column p + p { margin-top: 10px; }
.footer-column .footer-note { color: var(--terracotta); font-size: 12px; line-height: 1.55; }
.footer-column .footer-sunday { margin-top: 12px; }
.footer-column a:hover { color: var(--terracotta); }
.footer-bottom { grid-column: 1/-1; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 25px; display: flex; gap: 35px; font-size: 10px; color: #687168; }
.footer-bottom a:last-child { margin-left: auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 78px; padding: 0 22px; }
  .nav-toggle { display: block; width: 38px; height: 38px; position: relative; z-index: 30; }
  .nav-toggle span { display: block; height: 1px; width: 24px; background: currentColor; margin: 6px auto; transition: transform .25s; }
  .nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: 0; background: var(--forest); color: white; flex-direction: column;
    justify-content: center; gap: 28px; font: 30px var(--serif); transform: translateX(100%); transition: transform .35s;
  }
  .main-nav.open { transform: none; }
  .main-nav .nav-cta { font: 12px var(--sans); margin-top: 20px; }
  .hero { min-height: 700px; }
  .hero-content { margin: 0 25px; padding-top: 0; }
  .hero-info { left: 25px; right: auto; bottom: 25px; gap: 30px; }
  .scroll-cue { display: none; }
  h1 { font-size: clamp(65px, 21vw, 100px); }
  .hero-copy { font-size: 16px; max-width: 390px; }
  .section { padding: 95px 25px; }
  .section-number { display: none; }
  .intro, .team, .hours { grid-template-columns: 1fr; gap: 55px; }
  .intro { min-height: auto; }
  .intro-copy { padding: 0; }
  .intro h2, .menu-section h2, .photos-heading h2, .moments h2, .team-heading h2, .hours-content h2 { font-size: clamp(49px, 14vw, 76px); }
  .menu-top { display: block; }
  .menu-top > p { margin-top: 25px; }
  .photos-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-photo-large { grid-row: span 1; min-height: 420px; }
  .moments { background-attachment: scroll; }
  .moment-cards { grid-template-columns: 1fr; }
  .moment-card, .moment-card + .moment-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding: 30px 0; min-height: auto; }
  .hours-poster { max-width: 560px; margin: 0 auto; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-info p:last-child { display: none; }
  .menu-item { grid-template-columns: 32px 1fr auto; gap: 10px; }
  .menu-item h3 { font-size: 20px; line-height: 1.35; }
  .menu-item p { font-size: 14px; }
  .menu-tabs { gap: 24px; }
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-photo, .gallery-photo-large { min-height: 360px; }
  .team-list { grid-template-columns: 1fr; }
  .team-member, .team-member + .team-member { min-height: 220px; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(247,244,236,.24); }
  .team-member h3 { margin-top: 35px; }
  .hours-row { grid-template-columns: 1fr; gap: 4px; }
  .hours-row strong { text-align: left; }
  footer { grid-template-columns: 1fr; }
  .footer-brand, .footer-bottom { grid-column: auto; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom a:last-child { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
