:root {
  --paper:  #faf7ee;
  --ink:    #211d16;
  --yellow: #f5d90a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { border-top: 8px solid var(--yellow); }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

/* clamp(minimum, preferred, maximum): the font scales with the screen
   (6vw = 6% of the viewport width) but never goes below the first
   value or above the last. Keeps the heading fitting on phones. */
h1 {
  font-size: clamp(1.65rem, 6vw + 0.4rem, 2.3rem);
  line-height: 1.15;
  margin: 2rem 0 1.25rem;
}

h2 { font-size: 1.35rem; margin: 2.25rem 0 0.75rem; }
p  { margin-bottom: 1rem; }

.lede { font-size: clamp(1.1rem, 3.5vw + 0.4rem, 1.25rem); font-style: italic; }

.wordmark {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-line { font-size: 1.5rem; font-weight: 700; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}
a:hover { background: var(--yellow); }

/* Padding sized so the button clears the ~44px touch-target minimum
   from phone accessibility guidelines. */
.call-line a {
  display: inline-block;
  background: var(--yellow);
  border: 1px solid var(--ink);
  padding: 0.6rem 1.1rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
}
.call-line a:hover { background: var(--ink); color: var(--yellow); }

hr { border: none; border-top: 1px solid var(--ink); margin: 2rem 0; }

.hours {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25rem 1.5rem;
  margin-bottom: 1rem;
}
.hours dt { font-weight: 700; }

img { max-width: 100%; height: auto; border: 1px solid var(--ink); }

/* The embedded map: full column width, in the same 1px ink frame the
   photos get, so it sits in the design instead of floating on it. */
.map-frame {
  width: 100%;
  height: 320px;
  border: 1px solid var(--ink);
}

footer { font-size: 0.95rem; margin-top: 3rem; }

/* The open/closed line. :empty hides it when JS has not filled it,
   so there is no ghost gap without JavaScript. */
.status { font-weight: 700; }
.status:empty { display: none; }

/* Review links: ink border, paper fill, yellow on hover. */
.button {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 0.6rem 1rem;
  margin: 0.35rem 0;
  cursor: pointer;
  text-decoration: none;
}
.button:hover { background: var(--yellow); }

.review-buttons .button { margin-right: 0.6rem; }

/* Phone layout: rules inside apply only on screens narrower than
   ~480px, on top of everything above. */
@media (max-width: 30rem) {

  body { padding-top: 2rem; }

  /* The number one action gets the biggest target on the smallest
     screen: full-width call button. */
  .call-line a {
    display: block;
    text-align: center;
  }

  /* Review buttons stack full-width instead of squeezing. */
  .review-buttons .button {
    display: block;
    text-align: center;
    margin-right: 0;
  }

  /* A slightly shorter map on phones so it does not swallow the
     whole screen between hours and reviews. */
  .map-frame { height: 260px; }
}