:root {
  --cream: #fbf3e3;
  --paper: #fef8eb;
  --navy: #1f2a48;
  --navy-soft: #2d3a5e;
  --brown: #6b3a1c;
  --brown-soft: #8d4f2a;
  --gold: #d09a3c;
  --ink: #261d12;
  --muted: #6f5b41;
  --line: rgba(31,42,72,0.18);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--cream); color: var(--ink);
  font-family: 'Nunito Sans', system-ui, sans-serif; line-height: 1.65;
  /* subtle paper-grain via CSS noise */
  background-image:
    radial-gradient(rgba(31,42,72,0.04) 1px, transparent 1px),
    radial-gradient(rgba(208,154,60,0.05) 1px, transparent 1px);
  background-size: 24px 24px, 36px 36px;
  background-position: 0 0, 12px 12px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 600; }
.script { font-family: 'Caveat', cursive; font-weight: 700; }

.preview-bar {
  background: var(--navy); color: var(--cream); text-align: center;
  padding: 9px 0; font-size: 0.84rem; letter-spacing: 0.04em;
}
.preview-bar a { color: var(--gold); font-weight: 700; }

/* Top bar — navy stripe with the brand mark */
.top {
  background: var(--navy); color: var(--cream);
  padding: 16px 0;
  border-bottom: 4px solid var(--gold);
}
.top__row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.4rem;
  box-shadow: inset 0 -4px 0 rgba(31,42,72,0.10);
}
.brand__name { line-height: 1.05; }
.brand__name b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.4rem; }
.brand__name small { display: block; font-family: 'Caveat', cursive; font-weight: 500; font-size: 1rem; color: var(--gold); margin-top: 2px; }
.nav { display: flex; gap: 28px; font-size: 0.94rem; font-weight: 600; letter-spacing: 0.04em; }
.nav a:hover { color: var(--gold); }

/* Hero — split, with a hand-drawn-feeling decorative element */
.hero {
  padding: 64px 0 80px; position: relative;
  border-bottom: 1px solid var(--line);
}
.hero__row {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero__photo {
  aspect-ratio: 4 / 5; background-size: cover; background-position: center;
  border-radius: 14px; border: 8px solid var(--paper);
  box-shadow: 0 30px 60px -30px rgba(31,42,72,0.30);
  transform: rotate(-1.2deg);
}
.hero__text { position: relative; }
.hero__hello {
  font-family: 'Caveat', cursive; font-size: 2.2rem;
  color: var(--brown); margin: 0 0 8px; line-height: 1;
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.05;
  letter-spacing: -0.012em; margin: 0 0 20px; color: var(--navy);
}
.hero h1 em { font-style: italic; color: var(--brown); }
.hero p {
  color: var(--ink); font-size: 1.1rem; margin: 0 0 28px; max-width: 480px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--navy); color: var(--cream);
  padding: 13px 24px; border-radius: 999px; font-weight: 700;
  letter-spacing: 0.04em; font-size: 0.96rem;
  transition: background 200ms ease;
}
.btn-primary:hover { background: var(--brown); }
.btn-outline {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  padding: 11px 22px; border-radius: 999px; font-weight: 700;
  letter-spacing: 0.04em; font-size: 0.96rem;
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.badge-strip {
  margin-top: 30px; display: flex; gap: 24px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.92rem;
}
.badge-strip span { display: inline-flex; align-items: center; gap: 6px; }
.badge-strip span::before {
  content: "✻"; color: var(--gold); font-weight: 700;
}

/* Wheat divider — simple ornamental rule */
.ornament {
  text-align: center; padding: 24px 0;
  color: var(--gold);
  font-family: 'Fraunces', serif; font-size: 1.2rem;
  letter-spacing: 0.4em;
}
.ornament::before, .ornament::after {
  content: ""; display: inline-block; width: 80px; height: 1px;
  background: var(--gold); vertical-align: middle; margin: 0 14px;
  opacity: 0.6;
}

/* Pastry case — display row */
.display { padding: 80px 0 64px; }
.display__head {
  text-align: center; margin-bottom: 36px;
}
.display__head .script { color: var(--brown); font-size: 1.8rem; line-height: 1; margin-bottom: 4px; display: block; }
.display__head h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 0;
  color: var(--navy); letter-spacing: -0.005em;
}
.display__head h2 em { font-style: italic; color: var(--brown); }

.case-row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: stretch;
}
.case-photo {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border-radius: 14px;
}
.case-list {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 30px;
}
.case-list h3 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.6rem; color: var(--navy); margin: 0 0 14px;
}
.case-list h3 em { font-style: italic; color: var(--brown); }
.item {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-family: 'Fraunces', serif; font-size: 1.04rem;
}
.item:last-child { border-bottom: none; }
.item span:last-child { color: var(--brown); font-weight: 600; }

/* Featured loaf — alternating block */
.feature { padding: 80px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature__row {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
}
.feature__photo { aspect-ratio: 1 / 1; background-size: cover; background-position: center; border-radius: 14px; }
.feature__text .script { color: var(--brown); font-size: 1.5rem; display: block; line-height: 1; margin-bottom: 6px; }
.feature__text h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.6rem); color: var(--navy); margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.feature__text h2 em { font-style: italic; color: var(--brown); }
.feature__text p { color: var(--ink); font-size: 1.06rem; margin: 0 0 12px; }
.feature__list {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.chip {
  border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px;
  color: var(--brown); font-size: 0.86rem; background: var(--cream);
}

/* Storefront / hours */
.visit { padding: 80px 0; }
.visit__row {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: stretch;
}
.visit__photo { aspect-ratio: 4 / 3; background-size: cover; background-position: center; border-radius: 14px; }
.visit__panel {
  background: var(--navy); color: var(--cream);
  border-radius: 14px; padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.visit__panel .script { color: var(--gold); font-size: 1.6rem; line-height: 1; margin-bottom: 4px; display: block; }
.visit__panel h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 2rem; color: var(--cream); margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.info-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 0.98rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .lbl { color: rgba(251,243,227,0.6); font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* Story */
.story { padding: 80px 0; }
.story__row {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
.story__photo { aspect-ratio: 4 / 5; background-size: cover; background-position: center; border-radius: 14px; transform: rotate(1deg); border: 8px solid var(--paper); box-shadow: 0 24px 60px -30px rgba(31,42,72,0.30); }
.story__text .script { color: var(--brown); font-size: 1.5rem; display: block; line-height: 1; margin-bottom: 6px; }
.story__text h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.6rem); color: var(--navy); margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.story__text p { font-size: 1.08rem; color: var(--ink); margin: 0 0 12px; max-width: 520px; }
.story__sig { font-family: 'Caveat', cursive; color: var(--brown); font-size: 1.4rem; margin-top: 12px; }

/* CTA strip */
.cta {
  background: var(--navy); color: var(--cream);
  text-align: center; padding: 72px 0;
  border-top: 8px solid var(--gold);
}
.cta h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--cream);
  margin: 0 0 16px; line-height: 1.1; letter-spacing: -0.005em;
}
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p { color: rgba(251,243,227,0.7); margin: 0 auto 22px; max-width: 540px; }
.cta .btn-primary { background: var(--gold); color: var(--navy); }
.cta .btn-primary:hover { background: var(--cream); color: var(--navy); }

/* Standing orders */
.stand { padding: 80px 0; }
.stand__row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.stand__panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 36px 32px;
}
.stand__panel .script { color: var(--brown); font-size: 1.5rem; display: block; line-height: 1; margin-bottom: 6px; }
.stand__panel h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem); color: var(--navy); margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.stand__panel h2 em { font-style: italic; color: var(--brown); }
.stand__panel p { color: var(--ink); font-size: 1.04rem; margin: 0 0 14px; }
.stand__list {
  margin-top: 14px;
  display: grid; gap: 10px;
}
.stand__list .row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-family: 'Fraunces', serif; font-size: 1.04rem;
}
.stand__list .row:last-child { border-bottom: none; }
.stand__list .row span:last-child { color: var(--brown); font-weight: 600; }

.stand__photo {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  border-radius: 14px; transform: rotate(-1.2deg);
  border: 8px solid var(--paper);
  box-shadow: 0 24px 60px -30px rgba(31,42,72,0.30);
}

/* Wholesale + Custom */
.wholesale {
  padding: 80px 0; background: var(--paper);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.wholesale__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.wholesale__head .script { color: var(--brown); font-size: 1.5rem; display: block; line-height: 1; margin-bottom: 4px; }
.wholesale__head h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--navy); margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.wholesale__head h2 em { font-style: italic; color: var(--brown); }
.wholesale__head p { color: var(--muted); margin: 0; }
.wholesale__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.wholesale__card {
  background: var(--cream); border: 1px solid var(--line);
  padding: 28px; border-radius: 14px;
}
.wholesale__card h3 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.4rem;
  color: var(--navy); margin: 0 0 8px;
}
.wholesale__card h3 em { font-style: italic; color: var(--brown); }
.wholesale__card p { color: var(--ink); margin: 0 0 16px; }
.wholesale__card ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  color: var(--ink); font-size: 0.96rem;
}
.wholesale__card ul li { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.wholesale__card ul li:last-child { border-bottom: none; }
.wholesale__card ul li::before { content: "✻ "; color: var(--brown); }

/* Press strip */
.press-strip {
  padding: 36px 0;
}
.press-strip__row {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.press-strip__label {
  font-family: 'Caveat', cursive; font-size: 1.6rem;
  color: var(--brown); line-height: 1;
}
.press-strip ul {
  display: flex; gap: 28px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0;
}
.press-strip li {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  color: var(--navy); font-size: 1.05rem; opacity: 0.78;
}

/* Footer */
.foot {
  background: var(--paper); color: var(--muted);
  text-align: center; padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.foot strong { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); font-size: 1.1rem; display: block; margin-bottom: 4px; }
.foot .small { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

@media (max-width: 920px) {
  .hero__row, .case-row, .feature__row, .visit__row, .story__row { grid-template-columns: 1fr; gap: 32px; }
  .nav { display: none; }
}
