/* ===========================================================
   Second Street Bakehouse: demo site styles
   Direction: "Flour dust & morning light", crisp, warm,
   editorial bakery-ticket aesthetic. System type only.
   =========================================================== */

:root {
  /* --- Color tokens --- */
  --buttermilk: #f7f1e4;   /* page background, warm flour cream    */
  --paper: #fffdf8;        /* card / raised surface                */
  --rye: #3a2a20;          /* primary ink, warm coffee-brown       */
  --rye-soft: #6b5847;     /* secondary ink, muted brown           */
  --crust: #8b4a3c;        /* baked-crust red-brown, sparing use   */
  --plum: #6b3352;         /* blackberry-jam accent, CTAs/links    */
  --plum-deep: #522540;    /* pressed / hover state of plum        */
  --sage: #7c8b6f;         /* rosemary-sage accent, dividers/tags  */
  --sage-pale: #e4e8dc;    /* pale sage tint for chips/backgrounds */
  --line: rgba(58, 42, 32, 0.16);   /* hairline rule                */
  --line-strong: rgba(58, 42, 32, 0.28);

  /* --- Type --- */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "URW Palladio", serif;
  --font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- Scale & rhythm --- */
  --radius: 3px;
  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--buttermilk);
  color: var(--rye);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  color: var(--rye);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
}
/* On the plum (.cakes) and rye (.contact) dark surfaces the plum ring
   nearly disappears; switch to a warm cream ring that stays visible. */
.cakes :focus-visible,
.contact :focus-visible {
  outline-color: var(--paper);
}

/* -------------------- Eyebrow / ticket labels -------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
}
.eyebrow::before {
  content: "";
  width: 0.9em;
  height: 1px;
  background: var(--plum);
  display: inline-block;
}

/* -------------------- Scored-loaf divider motif --------------------
   Recurring signature mark: the diagonal "bâtard" scoring pattern a
   baker cuts into a loaf before it hits the oven. Used wherever a
   section needs to close, instead of a generic rule. */
.scoreline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 auto;
  width: 100%;
  max-width: 220px;
  color: var(--sage);
}
.scoreline svg { width: 100%; height: 14px; }

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 228, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--rye);
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--plum);
}
.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--rye-soft);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--plum); }
.main-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--plum);
  font-weight: 700;
}

/* -------------------- Utility -------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.72em 1.35em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--plum);
  color: var(--paper);
}
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--rye);
}
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); }
.btn-invert {
  background: var(--buttermilk);
  color: var(--plum-deep);
}
.btn-invert:hover { background: var(--paper); transform: translateY(-1px); }
.btn-small { font-size: 0.76rem; padding: 0.55em 1em; }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle { display: none; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.hero-copy { max-width: 46ch; }
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(2.8rem, 4vw + 1.8rem, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--plum);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--rye-soft);
  max-width: 40ch;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.1rem;
}
.hero-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--rye-soft);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 0.6em 0.95em;
}
.hero-stamp strong {
  color: var(--rye);
  font-weight: 700;
}
.hero-stamp .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  flex: none;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50% 50% 10px 10px;
  box-shadow: 0 28px 54px -22px rgba(58, 42, 32, 0.38);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 6px 6px;
  display: block;
}

/* -------------------- Section shell -------------------- */
.section { padding: clamp(4rem, 3rem + 4vw, 7.5rem) 0; }
.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.25rem, 1.6rem + 2.6vw, 3.5rem);
}
.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-title {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
}
.section-desc {
  color: var(--rye-soft);
  font-size: 1.02rem;
  max-width: 54ch;
}
.section-alt { background: var(--paper); }

/* -------------------- Ticket list (shared) --------------------
   Generic pastry-case-ticket components: a category heading with a short
   accent mark, and a dotted-leader price list. Used for the homepage's
   "Today's Case" teaser and reused wholesale on the full menu page, so a
   line item looks identical wherever a guest encounters it. */
.case-head { max-width: 62ch; margin-bottom: 1.1rem; }
.case-head .eyebrow { margin-bottom: 0.6rem; }
.case-head-title {
  font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.1rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.case-head-desc { color: var(--rye-soft); font-size: 0.95rem; max-width: 56ch; }

.case-foot-wrap { padding-top: clamp(2rem, 1.5rem + 2vw, 3rem); }
.case-foot {
  font-size: 0.88rem;
  color: var(--rye-soft);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 3rem;
}
.case-mark {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 0.65rem;
  background: var(--sage);
  transform-origin: left center;
}
.case-group h3 {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 0.6rem;
  color: var(--plum-deep);
}
.case-group-note {
  color: var(--rye-soft);
  font-size: 0.85rem;
  margin: -0.3rem 0 0.7rem;
}
.case-list { list-style: none; margin: 0; padding: 0; }
.case-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
}
.case-item:first-child { padding-top: 0; }
.case-name { font-weight: 600; font-size: 0.93rem; white-space: nowrap; }
.case-note {
  color: var(--rye-soft);
  font-size: 0.82rem;
  font-style: italic;
}
.case-leader {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  margin: 0 0.35rem 0.28rem;
  min-width: 1rem;
}
.case-price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--rye);
  white-space: nowrap;
}

/* -------------------- Homepage "Today's Case" teaser --------------------
   A short, purposeful sample of the case with a clear hand-off to the full
   menu page. No scroll-jacking here: the sequence lived here only while the
   full case did too, and now that the whole case has its own page, a plain
   staggered reveal reads better than a pin for six lines of copy. */
.case-teaser { padding-bottom: clamp(3rem, 2rem + 3vw, 4.5rem); }
.case-teaser-list {
  list-style: none;
  margin: 0 0 clamp(2rem, 1.4rem + 2vw, 3rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 3rem;
  max-width: 62ch;
}
.case-teaser-list .case-item:nth-child(3),
.case-teaser-list .case-item:nth-child(4) { border-top: none; }
.case-teaser-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}
.case-teaser-foot p {
  color: var(--rye-soft);
  font-size: 0.88rem;
  max-width: 42ch;
  margin: 0;
}

/* -------------------- Menu page intro band -------------------- */
.menu-intro {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 2.5rem + 5vw, 6rem) 0;
}
.menu-intro-bg {
  position: absolute;
  inset: -60px 0;
  z-index: 0;
  background-image: url("img/hero-bread.jpg");
  background-size: cover;
  background-position: center 30%;
}
.menu-intro-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(247, 241, 228, 0.94) 0%, rgba(247, 241, 228, 0.88) 55%, rgba(124, 139, 111, 0.35) 100%);
}
.menu-intro .wrap { position: relative; z-index: 1; max-width: 62ch; }
.menu-intro .eyebrow { margin-bottom: 1.1rem; }
.menu-intro-title {
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.menu-intro-sub {
  font-size: 1.05rem;
  color: var(--rye-soft);
  max-width: 52ch;
  margin-bottom: 1.4rem;
}
.menu-intro-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--rye-soft);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 0.6em 0.95em;
}
.menu-intro-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  flex: none;
}

/* -------------------- Menu page body + category rail --------------------
   The rail is the one "pinned" moment on this page: it earns its place
   because a six-category menu genuinely benefits from a wayfinding jump
   list, and it works with plain anchor links, so it is just as usable with
   JavaScript disabled. Sticky (not scroll-jacked): it never covers content
   or blocks the fold. */
.menu-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: start;
}
.menu-rail {
  position: sticky;
  top: calc(64px + 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.menu-rail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.2rem;
}
.menu-rail a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--rye-soft);
  padding: 0.15rem 0;
}
.menu-rail a:hover { color: var(--plum); }

.menu-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 2rem + 3vw, 4rem);
}
.menu-group { scroll-margin-top: calc(64px + 1.5rem); }
.menu-group .case-grid { grid-template-columns: 1fr; max-width: 46rem; }

@media (max-width: 900px) {
  .menu-layout { grid-template-columns: 1fr; }
  .menu-rail {
    position: sticky;
    top: 0;
    z-index: 30;
    flex-direction: row;
    overflow-x: auto;
    gap: 1.2rem;
    background: rgba(247, 241, 228, 0.96);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem var(--gutter);
    margin: 0 calc(var(--gutter) * -1) 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .menu-rail-label { display: none; }
  .menu-rail a {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
  .case-teaser-list { grid-template-columns: 1fr; }
}

/* -------------------- Cakes & catering band -------------------- */
.cakes {
  background: var(--plum);
  color: var(--buttermilk);
  position: relative;
  overflow: clip;
}
.cakes-bg {
  position: absolute;
  inset: -60px 0;
  z-index: 0;
  background-image: url("img/cakes-bread.jpg");
  background-size: cover;
  background-position: center;
}
.cakes-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Plum tint over the bread photo so it reads as warm texture/depth
     behind the band, matched to the buttermilk/plum palette. */
  background: linear-gradient(120deg, rgba(107, 51, 82, 0.92) 0%, rgba(82, 37, 64, 0.9) 100%);
}
.cakes .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.cakes .eyebrow { color: #e9c9d6; }
.cakes .eyebrow::before { background: #e9c9d6; }
.cakes-title {
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1rem;
}
.cakes-copy { color: #e9dbe1; max-width: 46ch; margin-bottom: 1.6rem; }
.cakes-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.cakes-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--paper);
}
.cakes-list svg { width: 16px; height: 16px; flex: none; color: #e9c9d6; }
.cakes-card {
  background: var(--plum-deep);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  padding: 2rem;
}
.cakes-card h3 {
  color: var(--paper);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.cakes-card p { color: #e9dbe1; font-size: 0.92rem; margin-bottom: 1.5rem; }
.cakes-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #d9c3ce;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}
.cakes-price-row:last-of-type { margin-bottom: 1.6rem; }
.cakes-price-row strong { color: var(--paper); font-weight: 700; }

/* -------------------- Hours & location -------------------- */
.hours-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 2.3rem;
}
.hours-card h3 {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.3rem;
  color: var(--plum-deep);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.65rem 0;
  font-size: 0.95rem;
}
.hours-table td:first-child { color: var(--rye-soft); }
.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hours-table .closed td:last-child { color: var(--crust); }
.hours-note {
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line-strong);
  font-size: 0.85rem;
  color: var(--rye-soft);
}

.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.map-card svg { width: 100%; height: auto; margin-bottom: 1.4rem; }
.addr {
  font-style: normal;
  font-size: 0.98rem;
  color: var(--rye-soft);
  line-height: 1.7;
}
.addr strong { display: block; color: var(--rye); font-size: 1.02rem; margin-bottom: 0.2rem; }
.addr a { text-decoration: none; color: var(--plum); font-weight: 600; }
.addr a:hover { text-decoration: underline; }

/* -------------------- About -------------------- */
.about .wrap {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 1.1rem;
}
.about-copy p { color: var(--rye-soft); font-size: 1rem; }
.pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--plum-deep);
  line-height: 1.4;
  margin: 1.5rem 0;
  padding-left: 1.1rem;
  border-left: 3px solid var(--sage);
}
.signature {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--rye-soft);
}
.signature strong { display: block; color: var(--rye); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }

/* -------------------- Contact / order ahead -------------------- */
.contact {
  background: var(--rye);
  color: var(--buttermilk);
}
.contact .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact .eyebrow { color: #cbb6a3; }
.contact .eyebrow::before { background: #cbb6a3; }
.contact-title {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1rem;
}
.contact-copy { color: #d8c9ba; max-width: 44ch; margin-bottom: 1.8rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.contact-fineprint {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #a99781;
  max-width: 40ch;
}
.contact-card {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card dl { margin: 0; }
.contact-card dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a99781;
  margin-top: 1.2rem;
}
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd {
  margin: 0.3rem 0 0;
  font-size: 1.02rem;
  color: var(--paper);
}
.contact-card a { color: var(--paper); text-decoration: none; border-bottom: 1px solid rgba(255,253,248,0.35); }
.contact-card a:hover { border-color: var(--paper); }

/* -------------------- Footer -------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 0;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--rye-soft);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--rye-soft);
  text-decoration: none;
}
.footer-links a:hover { color: var(--plum); }
.footer-demo {
  width: 100%;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line-strong);
  font-size: 0.78rem;
  color: var(--rye-soft);
}
.footer-demo a { color: var(--plum); text-decoration: none; font-weight: 600; }
.footer-demo a:hover { text-decoration: underline; }

/* -------------------- Responsive -------------------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 260px; margin: 0 auto; }
  .case-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hours-grid { grid-template-columns: 1fr; }
  .about .wrap { grid-template-columns: 1fr; }
  .about-art { max-width: 220px; margin: 0 auto; }
  .cakes .wrap { grid-template-columns: 1fr; }
  .contact .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap { padding-left: 1.15rem; padding-right: 1.15rem; }
  .header-cta .btn-ghost { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stamp { align-self: flex-start; }
  .case-item { flex-wrap: wrap; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}

/* Tap-target minimums (mobile a11y): interactive elements >= 40px */
.brand, .contact-card dd a, .addr a, .footer-links a, .footer-demo a, .skip-link, .btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.footer-links a, .contact-card dd a { padding-inline: 8px; min-width: 40px; justify-content: center; }
