:root {
  --bg: #fbf0d6;
  --paper: #fff9ea;
  --ink: #2a1810;
  --ink-soft: #6b5040;
  --rule: #d8c096;
  --primary: #8b3a17;
  --primary-dark: #6a280f;
  --bread: #c79a3e;
  --bread-light: #e8c060;
  --display: 'Georgia', 'Hoefler Text', 'Iowan Old Style', serif;
  --hand: 'Caveat', 'Bradley Hand', cursive;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; }
.container { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 28px; }
a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

header.bake { padding: 28px 0; background: var(--bg); border-bottom: 2px dashed var(--bread); }
header.bake .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.brand { font-family: var(--display); font-size: 28px; color: var(--primary); text-decoration: none; font-weight: 700; font-style: italic; display: inline-flex; align-items: center; gap: 8px; }
.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
.brand small { display: inline; font-family: var(--sans); font-size: 10px; font-weight: 700; color: var(--bread); letter-spacing: 0.2em; text-transform: uppercase; margin-left: 8px; font-style: normal; }
header.bake nav a { color: var(--ink); text-decoration: none; margin-left: 24px; font-size: 14px; font-weight: 700; }
header.bake nav a:hover { color: var(--primary); }

.bakery-hero { padding: 64px 0 48px; text-align: center; position: relative; }
.bakery-hero::before { content: '🥐'; display: block; font-size: 40px; margin-bottom: 16px; }
.bakery-hero .stamp { display: inline-block; padding: 6px 18px; border: 2px solid var(--bread); color: var(--bread); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; transform: rotate(-2deg); margin-bottom: 22px; }
.bakery-hero h1 { font-family: var(--display); font-size: 52px; line-height: 1.1; font-weight: 700; color: var(--primary); margin-bottom: 18px; max-width: 18ch; margin-left: auto; margin-right: auto; font-style: italic; }
.bakery-hero p { font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 24px; line-height: 1.75; }

.todays-bake { padding: 56px 0; background: var(--paper); border-top: 2px solid var(--bread); border-bottom: 2px solid var(--bread); position: relative; }
.todays-bake::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; background: var(--rule); opacity: 0.5; }
.todays-bake .container-narrow { position: relative; z-index: 1; text-align: center; }
.todays-bake .label { display: inline-block; background: var(--bg); padding: 4px 14px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bread); font-weight: 700; position: relative; top: -12px; }
.todays-bake h2 { font-family: var(--display); font-style: italic; font-size: 28px; color: var(--ink); margin-bottom: 24px; }
.bake-list { list-style: none; padding: 0; text-align: left; max-width: 420px; margin: 0 auto; }
.bake-list li { padding: 12px 0; border-bottom: 1px dotted var(--rule); display: flex; justify-content: space-between; align-items: baseline; }
.bake-list li:last-child { border-bottom: none; }
.bake-list .name { font-family: var(--display); font-size: 16px; color: var(--ink); }
.bake-list .name small { display: block; font-family: var(--sans); font-size: 12px; color: var(--ink-soft); margin-top: 2px; font-weight: 400; }
.bake-list .price { font-family: var(--display); font-style: italic; color: var(--primary); font-size: 17px; font-weight: 700; }

.daily-special { padding: 72px 0; background: var(--bg); }
.special-card { max-width: 680px; margin: 0 auto; background: var(--paper); padding: 36px 40px; border: 2px solid var(--rule); position: relative; transform: rotate(-0.5deg); }
.special-card::before { content: 'TODAY ONLY'; position: absolute; top: -14px; left: 28px; background: var(--primary); color: var(--paper); padding: 4px 12px; font-size: 10px; letter-spacing: 0.18em; font-weight: 800; }
.special-card h3 { font-family: var(--display); font-size: 28px; color: var(--primary); font-style: italic; margin-bottom: 12px; font-weight: 700; }
.special-card p { color: var(--ink); line-height: 1.7; margin-bottom: 14px; font-size: 16px; }
.special-card .meta { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--bread); }

.about-bake { padding: 80px 0; text-align: center; }
.about-bake h2 { font-family: var(--display); font-style: italic; font-size: 32px; color: var(--ink); margin-bottom: 18px; font-weight: 700; }
.about-bake p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto 14px; font-size: 16px; line-height: 1.85; }
.about-bake .signed { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--primary); margin-top: 24px; }

.visit { padding: 64px 0; background: var(--paper); border-top: 2px solid var(--bread); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.visit h3 { font-family: var(--display); font-size: 22px; color: var(--primary); margin-bottom: 12px; font-weight: 700; font-style: italic; }
.visit p { color: var(--ink); line-height: 1.7; margin-bottom: 8px; }

footer { padding: 36px 0; background: var(--primary); color: rgba(255,250,238,0.85); text-align: center; }
footer p { margin-bottom: 4px; font-size: 14px; }
footer a { color: var(--bread-light); text-decoration: none; }

article.page { padding: 56px 0; max-width: 1040px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
article.page .breadcrumb { font-size: 12px; color: var(--ink-soft); margin-bottom: 16px; letter-spacing: 0.08em; }
article.page .breadcrumb a { color: var(--ink-soft); }
article.page h1 { font-family: var(--display); font-style: italic; font-size: 40px; color: var(--primary); margin-bottom: 24px; line-height: 1.2; font-weight: 700; }
article.page h2 { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--primary); margin-top: 36px; margin-bottom: 12px; font-weight: 700; }

body > header:not([class]) { padding: 22px 0; border-bottom: 2px dashed var(--bread); }
body > header:not([class]) .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
body > header:not([class]) .brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-style: italic; font-size: 28px; color: var(--primary); text-decoration: none; }
body > header:not([class]) .brand-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--bread); }
body > header:not([class]) nav { display: flex; gap: 22px; }
body > header:not([class]) nav a { font-size: 13px; color: var(--ink); text-decoration: none; font-weight: 600; }

/* Site images */
.site-img { width: 100%; height: auto; display: block; }
.hero-img { max-height: 420px; object-fit: cover; margin-top: 24px; border-radius: 2px; }
.section-img { max-height: 360px; object-fit: cover; margin-bottom: 28px; }
.page-img { max-height: 380px; object-fit: cover; margin-bottom: 24px; }
article.page .site-img { width: 100%; }

@media (max-width: 700px) {
  .bakery-hero h1 { font-size: 34px; }
  .visit-grid { grid-template-columns: 1fr; gap: 24px; }
  header.bake nav a { margin-left: 12px; }
}
