/* Beer Garden, Avignon. Treatment A, layered physical: real photographs of
   the terrace and the room, rotated snapshots, a hand-drawn wordmark. */

@font-face {
  font-family: "Fredoka";
  src: url("fredoka-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fredoka";
  src: url("fredoka-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("nunito-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fbf3e4;
  --cream-2: #f2e6cf;
  --amber: #c98a1a;
  --walnut: #6b4423;
  --walnut-dark: #2b1b10;
  --ink: #1f1108;
  --mustard: #f5b820;
  --pine: #d4a870;
  --stone: #c8baa3;

  --font-display: "Fredoka", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.75rem, 9vw, 5rem);
  --fs-h2: clamp(1.6rem, 5vw, 2.5rem);
  --fs-lede: clamp(1.05rem, 2.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.8125rem;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 2rem;
  --sp-4: 4rem;

  --radius: 14px;
  --measure: 62ch;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}
p {
  max-width: var(--measure);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.6rem var(--sp-2);
  background: rgba(251, 243, 228, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--stone);
}
.nav__mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--ink);
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav__mark img {
  height: 34px;
  width: auto;
}
.nav__mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.nav__links {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex: 1;
}
.nav__links::-webkit-scrollbar {
  display: none;
}
.nav__links a {
  white-space: nowrap;
  text-decoration: none;
  padding: 0.85rem 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav__links a:hover {
  border-color: var(--mustard);
}
.nav__call {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--mustard);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: var(--fs-small);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav__call:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(31, 17, 8, 0.25);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 38%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 17, 8, 0.82) 0%,
    rgba(31, 17, 8, 0.35) 42%,
    rgba(31, 17, 8, 0.05) 70%
  );
}
.hero__card {
  position: absolute;
  border: 6px solid var(--cream);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(31, 17, 8, 0.35);
  width: 30%;
  max-width: 190px;
  overflow: hidden;
  animation: hero-in 0.5s ease-out both;
}
.hero__card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}
.hero__card span {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(31, 17, 8, 0.75);
  color: var(--cream);
  font-size: 0.7rem;
  padding: 0.25rem 0.4rem;
  line-height: 1.2;
}
.hero__card--1 {
  top: 9%;
  right: 5%;
  transform: rotate(-4deg);
}
.hero__card--2 {
  top: 30%;
  left: 4%;
  transform: rotate(3deg);
}
.hero__note {
  position: absolute;
  top: 42%;
  left: 6%;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  background: var(--mustard);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: clamp(0.85rem, 2.4vw, 1.1rem);
  transform: rotate(-3deg);
  box-shadow: 0 2px 6px rgba(31, 17, 8, 0.35);
}
.hero__content {
  position: relative;
  z-index: 2;
  background: rgba(251, 243, 228, 0.96);
  margin: 0 var(--sp-1) var(--sp-1);
  padding: var(--sp-2) var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  animation: hero-in 0.45s ease-out both;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-top: 2px solid var(--walnut);
  border-bottom: 2px solid var(--walnut);
  margin-bottom: 0.6rem;
}
h1.hero__title {
  font-size: var(--fs-display);
  text-transform: uppercase;
}
.hero__tagline {
  font-size: var(--fs-lede);
  margin: 0.8rem 0 var(--sp-2);
  max-width: 42ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-2);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-size: 1rem;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--mustard);
  color: var(--ink);
  flex: 1 1 100%;
}
.btn--ghost {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  flex: 1 1 100%;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 17, 8, 0.25);
}
.tel {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hero__address {
  font-size: var(--fs-small);
  color: var(--walnut);
  margin: 0;
}
@media (min-width: 480px) {
  .btn--primary,
  .btn--ghost {
    flex: 0 1 auto;
  }
}

/* ---------- proof bar ---------- */
.proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1) var(--sp-3);
  background: var(--walnut-dark);
  color: var(--cream-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-small);
  padding: 0.8rem var(--sp-2);
}
.proof strong {
  color: var(--mustard);
  font-family: var(--font-display);
  letter-spacing: normal;
  text-transform: none;
}

/* ---------- sections ---------- */
.section {
  padding: var(--sp-4) var(--sp-2);
  max-width: 880px;
  margin: 0 auto;
}
.section h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-2);
}
.section .lede {
  font-size: var(--fs-lede);
  color: var(--walnut);
  margin-bottom: var(--sp-3);
}

/* offering */
.pours {
  display: grid;
  gap: 0.9rem;
  margin-bottom: var(--sp-3);
}
.pour-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  border-bottom: 1px dotted var(--stone);
  padding-bottom: 0.7rem;
}
.pour-row__name {
  font-weight: 600;
}
.pour-row__desc {
  font-size: var(--fs-small);
  color: var(--walnut);
  display: block;
}
.pour-row__fill {
  flex: 1;
  border-bottom: 1px dotted var(--stone);
  margin-bottom: 0.35rem;
}
.pour-row__price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}
.offer-cards {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .offer-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.offer-card {
  background: var(--cream-2);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: var(--sp-2);
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
}
.offer-card .price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--walnut);
}
.offer-card p {
  font-size: var(--fs-small);
  margin: 0.4rem 0 0;
}
.note {
  font-size: var(--fs-small);
  color: var(--walnut);
  font-style: italic;
  margin-top: var(--sp-2);
}

/* hours */
.hours-table {
  width: 100%;
  max-width: 420px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-2);
}
.hours-table td {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--stone);
}
.hours-table td:first-child {
  font-weight: 600;
}
.hours-table td:last-child {
  text-align: right;
}
.hours-table tr.closed td:last-child {
  color: var(--walnut);
  font-style: italic;
}

/* ambiance, inverted block */
.ambiance {
  max-width: none;
  background: var(--walnut-dark);
  color: var(--cream-2);
  background-image: repeating-linear-gradient(
      45deg,
      rgba(245, 184, 32, 0.06) 0,
      rgba(245, 184, 32, 0.06) 2px,
      transparent 2px,
      transparent 34px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(245, 184, 32, 0.06) 0,
      rgba(245, 184, 32, 0.06) 2px,
      transparent 2px,
      transparent 34px
    );
}
.ambiance-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-2);
}
.ambiance h2 {
  color: var(--mustard);
}
.ambiance p {
  max-width: var(--measure);
}
.ambiance .note {
  color: var(--cream);
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--sp-2);
  padding: 0;
  list-style: none;
}
.facts li {
  border: 1px solid rgba(245, 184, 32, 0.5);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* find us */
.trouver-grid {
  display: grid;
  gap: var(--sp-2);
}
.trouver address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: var(--sp-1);
}
.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: var(--sp-2);
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  text-decoration: none;
  font-weight: 700;
  min-height: 44px;
  transition: background 0.15s ease, color 0.15s ease;
}
.socials a:hover {
  background: var(--ink);
  color: var(--cream);
}

/* footer */
footer.site-footer {
  border-top: 1px solid var(--stone);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  font-size: var(--fs-small);
  color: var(--walnut);
}
footer.site-footer a {
  text-decoration: underline;
}
footer.site-footer .footer-mark {
  height: 28px;
  margin-bottom: 0.6rem;
}

/* desktop widen */
@media (min-width: 1024px) {
  .hero__content {
    max-width: 560px;
    margin: 0 0 var(--sp-3) var(--sp-3);
  }
  .hero__card {
    max-width: 220px;
  }
}

/* motion off */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* print */
@media print {
  .nav,
  .hero__card,
  .hero__note,
  .socials,
  .proof {
    display: none;
  }
  .hero {
    min-height: 0;
    color: var(--ink);
  }
  .hero__bg,
  .hero__scrim {
    display: none;
  }
  .hero__content {
    background: none;
    padding: 0;
  }
  body {
    background: #fff;
    color: #000;
  }
  a[href^="http"]::after,
  a[href^="tel"]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
  }
  .ambiance {
    background: none;
    color: #000;
  }
}
