/* Fern & Flour, as it stands today.
   This reproduces the look of a typical small-business template site: the
   palette, the condensed display face, and body copy set in a monospace.
   The accessibility and structure problems in the markup are deliberate and
   documented in NOTES.md; they are the thing the refresh fixes. */

@font-face {
  font-family: 'Abel';
  src: url('fonts/abel-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Code Pro';
  src: url('fonts/source-code-pro.woff2') format('woff2-variations');
  font-weight: 200 900; font-style: normal; font-display: swap;
}

:root {
  --ink: #121212;
  --page: #F5F5F5;
  --plum: #A7496D;
  --sage: #818B7E;
  --warm: #EAE6E1;
  --white: #FFFFFF;
  --display: 'Abel', 'Arial Narrow', sans-serif;
  --body: 'Source Code Pro', ui-monospace, Consolas, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

.wrap { max-width: 1100px; margin-inline: auto; padding-inline: 24px; }

/* ---- header ---- */
.bar { background: var(--page); }
.bar__in {
  max-width: 1100px; margin-inline: auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.bar__name { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 21px; letter-spacing: .01em; text-decoration: none; }
.bar__logo { width: 40px; height: 40px; display: block; flex: none; }
.bar__nav { display: flex; gap: 18px; }
/* Deliberately small: these are 11px links in a mono face, well under any
   comfortable tap target. */
.bar__nav a { font-size: 11px; text-decoration: none; letter-spacing: .04em; }
.bar__nav a:hover { text-decoration: underline; }
.bar__burger { display: none; background: none; border: 0; font-size: 20px; cursor: pointer; }

/* ---- hero ---- */
.hero { position: relative; min-height: 430px; display: grid; align-items: center; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* The overlay is light, so the links sit on whatever the photograph is doing
   underneath them. */
.hero__veil { position: absolute; inset: 0; background: rgba(18,18,18,.22); }
.hero__links { position: relative; padding: 40px 24px 40px 90px; display: grid; gap: 4px; justify-items: start; }
.hero__links h1 { margin: 0; font-weight: 400; font-size: 0; }
.hero__links a {
  font-family: var(--display); font-size: 40px; color: #fff; text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,.85); line-height: 1.45;
}

/* ---- bands ---- */
.band { background: var(--plum); color: #fff; text-align: center; padding: 54px 24px; }
.band--sage { background: var(--sage); }
.band h3 { font-family: var(--display); font-weight: 400; font-size: 26px; margin: 0 0 14px; }
.band .quote { font-family: var(--display); font-size: 22px; font-style: italic; border-bottom: 1px solid #fff; display: inline-block; padding-bottom: 3px; }
.band h2 { font-family: var(--display); font-weight: 400; font-size: 34px; margin: 0 0 8px; line-height: 1.25; }

/* ---- buttons: 11px mono in a tight box ---- */
.btn {
  display: inline-block; margin-top: 18px; padding: 9px 20px;
  background: var(--plum); color: #fff; text-decoration: none;
  font-size: 11px; letter-spacing: .09em; font-weight: 600;
}
.btn--ghost { background: #fff; color: var(--plum); }
.btn--sage { background: var(--sage); }

/* ---- alternating rows ---- */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 70px 0; }
.row__copy h3 { font-family: var(--display); font-weight: 400; font-size: 27px; margin: 0 0 18px; }
.row__copy p { margin: 0 0 14px; }
.row--flip .row__copy { order: 2; text-align: center; }
.row--flip .row__media { order: 1; }

/* ---- hours ---- */
.hours { background: var(--plum); color: #fff; text-align: center; padding: 10px 24px 60px; }
.hours__grid { display: flex; justify-content: center; gap: 90px; flex-wrap: wrap; }
.hours h3 { font-family: var(--display); font-weight: 400; font-size: 25px; margin: 0; line-height: 1.35; }

/* ---- menu page ---- */
.sheet { padding: 60px 0 20px; }
.sheet h2 { font-family: var(--display); font-weight: 400; font-size: 34px; text-align: center; margin: 0 0 8px; }
.sheet__tabs { display: flex; justify-content: center; gap: 26px; margin-bottom: 34px; font-size: 11px; letter-spacing: .09em; }
.sheet__tabs span { border-bottom: 2px solid var(--plum); padding-bottom: 3px; }
.item { max-width: 640px; margin: 0 auto 26px; text-align: center; }
.item__price { font-size: 11px; letter-spacing: .06em; color: var(--plum); }
.item__name { font-family: var(--display); font-size: 21px; margin: 2px 0 4px; }
.item__desc { margin: 0; }
.item__note { font-size: 11px; font-style: italic; }

/* ---- testimonials ---- */
.says { background: var(--warm); padding: 56px 0; }
.says h2 { font-family: var(--display); font-weight: 400; font-size: 30px; text-align: center; margin: 0 0 30px; }
.says__q { max-width: 700px; margin: 0 auto 30px; text-align: center; }
.says__q p { margin: 0 0 8px; }
.says__who { font-size: 11px; letter-spacing: .05em; }

/* ---- story ---- */
.story { padding: 60px 0; }
.story h2 { font-family: var(--display); font-weight: 400; font-size: 34px; text-align: center; margin: 0 0 6px; }
.story__role { text-align: center; font-size: 11px; letter-spacing: .08em; margin-bottom: 26px; }
.story__body { max-width: 660px; margin-inline: auto; }
.story__body p { margin: 0 0 15px; }
.story__pic { max-width: 380px; margin: 0 auto 28px; }

/* ---- contact ---- */
.contact { padding: 60px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact h2 { font-family: var(--display); font-weight: 400; font-size: 34px; margin: 0 0 12px; }
.contact__det { margin-top: 22px; }
.form label { display: block; font-size: 11px; letter-spacing: .06em; margin: 14px 0 4px; }
.form input, .form textarea {
  width: 100%; padding: 8px; border: 1px solid #c9c9c9; background: #fff;
  font-family: var(--body); font-size: 13px;
}
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.map { width: 100%; height: 280px; background: var(--warm); display: grid; place-items: center; font-size: 11px; letter-spacing: .06em; color: #6a6a6a; margin-top: 26px; }

/* ---- events ---- */
.ev { padding: 54px 0; }
.ev__h { font-family: var(--display); font-size: 30px; text-align: center; margin: 0 0 34px; font-weight: 400; }
.ev__item { max-width: 700px; margin: 0 auto 44px; text-align: center; }
.ev__item h2 { font-family: var(--display); font-weight: 400; font-size: 25px; margin: 0 0 6px; }
.ev__when { font-size: 11px; letter-spacing: .06em; color: var(--plum); margin-bottom: 10px; }

/* ---- footer ---- */
.foot { background: var(--warm); padding: 34px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 24px; font-size: 11px; line-height: 1.8; }

@media (max-width: 800px) {
  .bar__nav { display: none; }
  .bar__burger { display: block; }
  .hero__links { padding-left: 24px; }
  .hero__links a { font-size: 30px; }
  .row, .contact { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .row--flip .row__copy, .row--flip .row__media { order: initial; }
  .hours__grid { gap: 26px; }
  .foot__in { flex-direction: column; }
}
