/* B's Bake Shop — public holding page. */

:root {
  --espresso: #3a2416;
  --cocoa:    #5c3b23;
  --caramel:  #a57c46;
  --honey:    #d6a867;
  --butter:   #f0ddb4;
  --cream:    #fbf6ec;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  color: var(--cocoa);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 50% -8%, rgba(214, 168, 103, .30), transparent 55%),
    radial-gradient(ellipse at 10% 105%, rgba(165, 124, 70, .18), transparent 50%),
    radial-gradient(ellipse at 92% 88%, rgba(214, 168, 103, .16), transparent 45%);
  background-attachment: fixed;
}

/* Faint scattered "crumbs" for warmth without a background image. */
.crumbs {
  position: fixed; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle, rgba(165,124,70,.30) 1.4px, transparent 1.6px),
    radial-gradient(circle, rgba(165,124,70,.20) 1px, transparent 1.2px);
  background-size: 130px 130px, 71px 71px;
  background-position: 0 0, 37px 44px;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px 32px;
}

.logo {
  width: min(300px, 66vw);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(58, 36, 22, .20));
  animation: rise .9s cubic-bezier(.2, .7, .3, 1) both;
}

.eyebrow {
  margin: 30px 0 0;
  font-size: .76rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 600;
  animation: rise .9s .12s cubic-bezier(.2, .7, .3, 1) both;
}

h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 3.9rem);
  color: var(--espresso);
  margin: .18em 0 0;
  letter-spacing: -.015em;
  animation: rise .9s .2s cubic-bezier(.2, .7, .3, 1) both;
}

.lede {
  max-width: 34ch;
  margin: 1rem 0 0;
  font-size: 1.03rem;
  line-height: 1.65;
  color: #6d5137;
  animation: rise .9s .3s cubic-bezier(.2, .7, .3, 1) both;
}

.rule {
  display: flex; align-items: center; gap: 14px;
  width: min(280px, 70vw); margin: 34px 0 0;
  color: var(--honey);
  animation: rise .9s .38s cubic-bezier(.2, .7, .3, 1) both;
}
.rule::before, .rule::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
}
.rule span { font-size: 1rem; line-height: 1; }

.contact {
  margin: 26px 0 0;
  font-size: .92rem;
  line-height: 1.7;
  color: #7d6244;
  animation: rise .9s .46s cubic-bezier(.2, .7, .3, 1) both;
}
.contact a {
  color: var(--cocoa);
  text-decoration-color: var(--honey);
  text-underline-offset: 3px;
}
.contact a:hover { color: var(--caramel); }

.site-foot {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  font-size: .78rem;
  color: #9a856b;
}
.site-foot a.staff {
  color: #b8a488;
  text-decoration: none;
  letter-spacing: .06em;
}
.site-foot a.staff:hover { color: var(--caramel); }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .eyebrow, h1, .lede, .rule, .contact { animation: none; }
}
