/* ==========================================================================
   Bizinka Bakery — Union City, TN
   Private preview built by Already Built Sites — v2.0 art direction pass
   Hand-written CSS. No framework, no build step.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/fraunces-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('fonts/public-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url('fonts/public-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('fonts/public-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('fonts/public-sans-latin-700-normal.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --cream:      #FBF6EC;
  --cream-deep: #F3E6CE;
  --paper:      #FFFDF8;
  --paper-warm: #FCF3E4;
  --ink:        #2E2019;
  --ink-soft:   #574337;
  --berry:      #8E2B3E;
  --berry-deep: #6B1E2E;
  --berry-dark: #4C1521;
  --sage:       #5F7256;
  --honey:      #C98A2E;
  --honey-deep: #9C6A1E;
  --gold-deep:  #8A5A16;
  --cornflower: #3F6199;
  --line:       #E3D3BC;
  --line-soft:  rgba(46,32,25,.10);

  --chip-macaron:    #F0C9D2;
  --chip-honey:      #EBC97F;
  --chip-pavlova:    #F4DCE4;
  --chip-tiramisu:   #CBB29A;
  --chip-cheesecake: #E5BCC4;
  --chip-croissant:  #EFDAAE;
  --chip-bread:      #DCC5A2;
  --chip-cookie:     #DAB68E;

  --wrap: 1220px;
  --wrap-wide: 1360px;
  --r: 3px;
  --r-lg: 5px;

  --shadow-card: 0 1px 2px rgba(46,32,25,.06), 0 14px 30px -16px rgba(46,32,25,.30);
  --shadow-lift: 0 4px 10px rgba(46,32,25,.10), 0 28px 46px -20px rgba(46,32,25,.38);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* extremely subtle paper grain — CSS-only, no image request */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(46,32,25,.014) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(46,32,25,.012) 0, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(46,32,25,.010) 0, transparent 40%);
  background-size: 900px 900px, 700px 700px, 600px 600px;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.008em;
}

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

a { color: var(--berry-deep); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.wrap-wide { max-width: var(--wrap-wide); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--berry);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 3px;
}

/* ---------- The stitch band (original vyshyvanka-idiom ornament) ---------- */
.stitch-rule {
  height: 11px;
  background-image: url('stitch-band.svg');
  background-repeat: repeat-x;
  background-size: 24px 11px;
  background-position: center;
  position: relative;
  z-index: 1;
}
.stitch-rule-inline {
  margin-top: 44px;
  opacity: 0.85;
}

/* ---------- Buttons: bakery-counter / stamped-label system ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 30px 17px;
  border-radius: var(--r);
  font-family: 'Public Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .12s ease;
  transform: translateY(0);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  z-index: -1;
  transition: transform .12s ease;
}
.btn:active { transform: translateY(3px); }

.btn-primary {
  background: var(--berry);
  color: #fff;
}
.btn-primary::after {
  background: var(--berry-dark);
  transform: translateY(4px);
}
.btn-primary:hover { background: #9C3346; }
.btn-primary:active::after { transform: translateY(1px); }

.btn-outline {
  background: var(--paper);
  color: var(--berry-deep);
  border: 2px solid var(--berry);
}
.btn-outline::after {
  background: var(--berry);
  opacity: .28;
  transform: translateY(4px);
}
.btn-outline:hover { background: #FDF0E9; }
.btn-outline:active::after { transform: translateY(1px); }

.btn-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 2px solid rgba(255,255,255,.8);
}
.btn-ghost::after {
  background: rgba(0,0,0,.35);
  transform: translateY(4px);
}
.btn-ghost:hover { background: #fff; color: var(--berry-deep); border-color: #fff; }
.btn-ghost:active::after { transform: translateY(1px); }

.btn-call {
  background: var(--paper-warm);
  color: var(--berry-deep);
  border: 2px solid var(--honey);
  padding: 10px 18px 12px;
  min-height: 44px;
  font-size: 15px;
}
.btn-call::after {
  background: var(--honey-deep);
  transform: translateY(2px);
}
.btn-call:hover { background: #fff; }
.btn-call:active::after { transform: translateY(1px); }

.btn-block { display: flex; width: 100%; }

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn:hover::after { transform: translateY(6px); }
}

/* ---------- Header ---------- */
.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { text-decoration: none; color: var(--ink); flex: 0 0 auto; }.brand-name {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 29px;
  line-height: 1;
  color: var(--berry-deep);
  letter-spacing: -0.01em;
}
.brand-sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-left: auto;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--berry); color: var(--berry-deep); }

.topbar-call { flex: 0 0 auto; }

/* ==========================================================================
   HERO — layered pastry-box composition on desktop; copy-first on small
   ========================================================================== */

.hero {
  position: relative;
  background: var(--cream);
  padding: 76px 0 96px;
  overflow: visible;
  z-index: 1;
}
.hero-band {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22px;
  background-image: url('stitch-band-vertical.svg');
  background-repeat: repeat-y;
  background-size: 22px 48px;
  opacity: .85;
  z-index: 0;
}
.hero-band-left  { left: 34px; }
.hero-band-right { right: 34px; }

.hero-inner {
  max-width: var(--wrap-wide);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 30px;
  align-items: center;
}

.hero-text { position: relative; z-index: 2; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.eyebrow-light { color: #F0D8B8; }

.hero h1 {
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--berry-deep);
}

.hero-lede {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 0 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin-bottom: 34px;
}

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
  font-size: 16px;
  color: var(--ink-soft);
}
.hero-facts strong { color: var(--ink); font-weight: 700; }

/* --- the layered composition itself --- */
.hero-composition {
  position: relative;
  z-index: 1;
  height: 560px;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.hero-backdrop {
  position: absolute;
  top: 8%;
  left: 0;
  width: 84%;
  height: 72%;
  background: var(--chip-cheesecake);
  border-radius: var(--r-lg);
  transform: rotate(2deg);
  z-index: 1;
  opacity: .55;
}

.hero-photo-main {
  position: absolute;
  top: 0;
  left: 6%;
  width: 78%;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--paper);
  transform: rotate(-1.6deg);
  z-index: 2;
}
.hero-photo-main img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.hero-photo-detail {
  position: absolute;
  bottom: 18px;
  right: 0;
  width: 46%;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--paper);
  transform: rotate(3deg);
  z-index: 3;
}
.hero-photo-detail img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }

.hero-tag {
  position: absolute;
  top: 44%;
  left: -6px;
  z-index: 4;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 10px 16px;
  border-radius: var(--r);
  transform: rotate(-4deg);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--berry-deep);
  white-space: nowrap;
}
.hero-tag::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r);
  background: var(--honey);
  z-index: -1;
  transform: translate(3px, 4px);
}

/* ---------- The rule of the house / creed band ---------- */
.creed {
  background: var(--berry);
  color: #fff;
  padding: 74px 0 78px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.creed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.05) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.04) 0, transparent 45%);
}
.creed-inner { max-width: 860px; text-align: center; position: relative; }
.creed-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2D3B4;
  margin-bottom: 26px;
}
.creed-quote { margin: 0 0 28px; }
.creed-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.9vw, 48px);
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 18px;
  color: #fff;
}
.creed-quote cite {
  font-family: 'Public Sans', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #F6E2CB;
}
.creed-body {
  font-size: 19px;
  color: #FBEBDB;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Generic section ---------- */
.section { padding: 88px 0; position: relative; z-index: 1; }
.sec-head { max-width: 640px; margin-bottom: 46px; }
.sec-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(32px, 4vw, 48px); }
.sec-lede { font-size: 19px; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   THE CASE — asymmetric bakery-case merchandising system
   ========================================================================== */

.case-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 20px;
}

.case-card {
  position: relative;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
@media (hover: hover) {
  .case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
}

.case-card-inner {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(46,32,25,.10);
}

.case-card.has-photo .case-card-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.case-card .case-card-text {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
}
.case-card.has-photo .case-card-text {
  padding: 58px 22px 22px;
  background: linear-gradient(to top, rgba(46,32,25,.90) 0%, rgba(46,32,25,.68) 58%, rgba(46,32,25,0) 100%);
}
.case-card.has-photo h3,
.case-card.has-photo p { color: #fff; }
.case-card.has-photo .case-price { color: #F3DCC4; }

.case-card h3 { font-size: 24px; margin-bottom: 7px; }
.case-card p { font-size: 16px; color: var(--ink-soft); margin: 0; max-width: 42ch; }
.case-price {
  font-size: 14px;
  font-weight: 700;
  margin-top: 9px;
  color: var(--berry-deep);
  letter-spacing: .01em;
}

/* price slip: a tiny paper tag pinned to the corner of select cards */
.case-price-slip {
  position: absolute;
  top: -10px;
  right: 14px;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 700;
  color: var(--berry-deep);
  box-shadow: 0 6px 14px -6px rgba(46,32,25,.4);
  transform: rotate(-3deg);
}

/* colored offset backing layer, tied to the embroidery palette */
.case-card.offset-berry::before,
.case-card.offset-honey::before,
.case-card.offset-cornflower::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  z-index: -1;
  transform: translate(6px, 7px);
}
.case-card.offset-berry::before      { background: var(--berry); opacity: .85; }
.case-card.offset-honey::before      { background: var(--honey-deep); opacity: .8; }
.case-card.offset-cornflower::before { background: var(--cornflower); opacity: .78; }

/* Grid placement: asymmetric merchandising layout, not a uniform grid */
.card-macaron     { grid-column: 1 / 8;  grid-row: 1 / 3; min-height: 380px; }
.card-honey       { grid-column: 8 / 13; grid-row: 1 / 2; min-height: 175px; transform: rotate(-0.6deg); }
.card-pavlova     { grid-column: 8 / 13; grid-row: 2 / 3; min-height: 175px; }
.card-tiramisu    { grid-column: 1 / 5;  grid-row: 3 / 4; min-height: 200px; transform: rotate(-0.4deg); }
.card-cheesecake  { grid-column: 5 / 9;  grid-row: 3 / 4; min-height: 200px; }
.card-croissant   { grid-column: 9 / 13; grid-row: 3 / 4; min-height: 200px; transform: rotate(0.5deg); }
.card-bread       { grid-column: 1 / 6;  grid-row: 4 / 5; min-height: 200px; }
.card-cookie      { grid-column: 6 / 13; grid-row: 4 / 5; min-height: 200px; }

.case-card:nth-child(1) h3 { font-size: 34px; }

/* ---------- Savory: counter-ticket composition ---------- */
.section-savory {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.savory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}
.savory-photo-main {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--cream);
  transform: rotate(-1deg);
}
.savory-photo-main img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.savory-photo-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--paper);
  padding: 7px 14px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  box-shadow: 0 6px 14px -6px rgba(46,32,25,.35);
  transform: rotate(-1deg);
}

.savory-side { display: flex; flex-direction: column; gap: 22px; }

.savory-copy h2 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 14px; }
.savory-copy p { font-size: 18px; color: var(--ink-soft); }
.savory-note {
  margin-top: 4px;
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 16px !important;
}

.savory-ticket {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.savory-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: var(--cornflower);
  opacity: .7;
  z-index: -1;
  transform: translate(5px, 6px);
}
.savory-ticket-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cornflower);
  margin-bottom: 12px;
}
.savory-ticket dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  font-size: 15px;
}
.savory-ticket dt { font-weight: 700; color: var(--ink); white-space: nowrap; }
.savory-ticket dd { margin: 0; color: var(--ink-soft); }

.savory-photo-small {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--cream);
  transform: rotate(1.4deg);
  max-width: 260px;
}
.savory-photo-small img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ==========================================================================
   CUSTOM CAKES — the bakery-box signature moment
   ========================================================================== */

.cakes {
  background: var(--berry-deep);
  color: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.cakes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0, transparent 45%);
}

.cakes-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.cakes-copy { position: relative; z-index: 2; }
.cakes-copy h2 { color: #fff; font-size: clamp(32px, 4vw, 50px); }
.cakes-copy p { font-size: 19px; color: #F7E3D2; max-width: 54ch; }
.cakes-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.cakes-box {
  position: relative;
  max-width: 420px;
  justify-self: center;
}
.cakes-box-backdrop {
  position: absolute;
  inset: -14px -14px 40px -14px;
  background: var(--honey);
  border-radius: var(--r-lg);
  transform: rotate(2.2deg);
  z-index: 0;
}
.cakes-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 7px solid var(--paper);
  transform: rotate(-1.8deg);
}
.cakes-photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; display: block; }

.cakes-review-tag {
  position: relative;
  z-index: 2;
  margin: -50px 0 0 auto;
  width: 78%;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--shadow-lift);
  transform: rotate(1.4deg);
}
.cakes-review-tag blockquote {
  margin: 0 0 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
}
.cakes-review-tag cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--berry-deep);
}

/* ==========================================================================
   STORY — route device, not a photo-led section
   ========================================================================== */

.section-story { background: var(--cream-deep); position: relative; overflow: hidden; }
.section-story::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background-image: url('stitch-medallion.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .07;
  transform: rotate(12deg);
}
.story-inner { max-width: 1040px; margin: 0 auto; position: relative; }
.section-story h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 40px;
  text-align: center;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: start;
}

.story-body { font-size: 19px; color: var(--ink-soft); }
.story-body p { margin-bottom: 1.3em; }

/* route device: Kharkiv -> Union City -> South First Street */
.story-route {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.story-route::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: var(--sage);
  opacity: .6;
  z-index: -1;
  transform: translate(6px, 7px);
}
.story-route-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.story-route ol {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.story-route ol::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.story-route li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--ink-soft);
}
.story-route li:last-child { margin-bottom: 0; }
.story-route li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--berry);
}
.story-route li.route-end::before { background: var(--berry); }
.story-route strong { display: block; color: var(--ink); font-weight: 700; font-size: 17px; margin-bottom: 2px; }

.story-photo-small {
  margin-top: 22px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--paper);
  transform: rotate(-1.2deg);
}
.story-photo-small img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.story-photo-small figcaption {
  padding: 8px 4px 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ==========================================================================
   REVIEWS — customer notes, not identical component cards
   ========================================================================== */

.section-reviews { background: var(--cream); position: relative; }
.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}
.stars { color: var(--gold-deep); font-size: 22px; letter-spacing: 2px; }

.review-notes {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 26px 22px;
}
.review-note {
  background: var(--paper);
  border-radius: 2px;
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.review-note::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 30px;
  height: 12px;
  background: var(--honey);
  opacity: .55;
  border-radius: 1px;
}
.review-note blockquote {
  margin: 0 0 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  line-height: 1.38;
  color: var(--ink);
}
.review-src {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.review-note.note-a { transform: rotate(-1.4deg); align-self: start; }
.review-note.note-b { transform: rotate(1deg);    align-self: end; margin-bottom: -10px; }
.review-note.note-c { transform: rotate(0.8deg);  align-self: start; margin-top: 18px; }
.review-note.note-d { transform: rotate(-0.6deg); align-self: end; }
.review-note.paper-b { background: var(--paper-warm); }
.review-note.paper-c { background: #FDF6EA; }

/* ==========================================================================
   VISIT — composed hierarchy, not three equal cards
   ========================================================================== */

.section-visit { background: var(--paper); border-top: 1px solid var(--line); position: relative; }
.visit-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: stretch;
}
.visit-primary,
.visit-secondary,
.visit-contact {
  display: flex;
  flex-direction: column;
}

.visit-primary {
  background: var(--berry);
  color: #fff;
  border-radius: var(--r);
  padding: 38px 34px 34px;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.visit-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: var(--honey);
  opacity: .7;
  z-index: -1;
  transform: translate(7px, 8px);
}
.visit-primary-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F2D3B4;
  margin-bottom: 16px;
}
.visit-primary-address {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 26px;
}

.visit-secondary {
  background: var(--cream);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.visit-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: var(--sage);
  opacity: .35;
  z-index: -1;
  transform: translate(5px, 6px);
}
.visit-secondary h3 {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

.visit-contact {
  background: var(--cream);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.visit-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: var(--cornflower);
  opacity: .3;
  z-index: -1;
  transform: translate(5px, 6px);
}
.visit-contact h3 {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cornflower);
  margin-bottom: 18px;
}

.visit-big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 20px;
}
.visit-big a { color: var(--berry-deep); text-decoration: none; }
.visit-big a:hover { text-decoration: underline; }
.visit-email { font-size: 16px; margin-bottom: 16px; word-break: break-word; }
.visit-social { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.visit-social a { color: var(--berry-deep); }
.visit-hint { font-size: 15px; color: var(--ink-soft); margin: 0; }

.hours { width: 100%; border-collapse: collapse; font-size: 16px; }
.hours th, .hours td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.hours th { font-weight: 600; color: var(--ink); }
.hours td { text-align: right; color: var(--ink-soft); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .closed td { color: var(--berry-deep); font-weight: 600; }
.hours-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Closing ---------- */
.closing { background: var(--cream-deep); position: relative; z-index: 1; }
.closing-inner { text-align: center; padding: 78px 28px; }
.closing h2 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 30px; }
.closing-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #EFE3D6; padding: 52px 0 30px; position: relative; z-index: 1; }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  font-size: 17px;
}
.footer a { color: #F3DCC4; }
.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.preview-note {
  max-width: var(--wrap);
  margin: 38px auto 0;
  padding: 20px 28px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 14px;
  color: #B7A493;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .case-grid { gap: 16px; }
}

@media (max-width: 1080px) {
  .hero-band { display: none; }
  .topbar-inner { flex-wrap: wrap; gap: 14px 20px; }
  .nav { margin-left: 0; order: 3; width: 100%; gap: 4px 20px; }
  .topbar-call { margin-left: auto; }

  /* tablet hero: deliberate two-column composition, not a stretched mobile layout */
  .hero-inner {
    max-width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 36px;
    align-items: center;
  }
  .hero h1 { font-size: clamp(38px, 5vw, 52px); }
  .hero-lede { font-size: 18px; max-width: 440px; }
  .hero-composition {
    height: 420px;
    max-width: 360px;
    margin-top: 0;
    justify-self: center;
  }

  .cakes-inner { grid-template-columns: 1fr; gap: 48px; }
  .cakes-box { max-width: 360px; }

  .savory-layout { grid-template-columns: 1fr; gap: 36px; }
  .savory-side { flex-direction: row; flex-wrap: wrap; }
  .savory-ticket { flex: 1 1 260px; }
  .savory-photo-small { flex: 0 0 auto; }

  .story-layout { grid-template-columns: 1fr; gap: 36px; }
  .story-route { max-width: 480px; }

  .visit-composition { grid-template-columns: 1fr 1fr; }
  .visit-primary { grid-column: 1 / -1; }

  .review-notes { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .review-note.note-b { margin-bottom: 0; }
  .review-note.note-c { margin-top: 0; }
}

/* genuine mobile collapse — hero goes single-column only below this */
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 640px; gap: 0; }
  .hero-composition { max-width: 380px; margin: 20px auto 0; }
}

@media (max-width: 860px) {
  .case-grid { grid-template-columns: repeat(6, 1fr); }
  .card-macaron    { grid-column: 1 / 7; grid-row: 1 / 3; min-height: 300px; }
  .card-honey      { grid-column: 1 / 7; grid-row: 3 / 4; min-height: 140px; transform: none; }
  .card-pavlova    { grid-column: 1 / 7; grid-row: 4 / 5; min-height: 160px; }
  .card-tiramisu   { grid-column: 1 / 4; grid-row: 5 / 6; transform: none; }
  .card-cheesecake { grid-column: 4 / 7; grid-row: 5 / 6; }
  .card-croissant  { grid-column: 1 / 4; grid-row: 6 / 7; transform: none; }
  .card-bread      { grid-column: 4 / 7; grid-row: 6 / 7; }
  .card-cookie     { grid-column: 1 / 7; grid-row: 7 / 8; min-height: 140px; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }

  .brand-name { font-size: 23px; }
  .brand-sub { font-size: 11px; }
  .topbar-inner { padding-top: 11px; padding-bottom: 11px; gap: 8px 16px; }
  .nav {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
    padding-top: 2px;
    border-top: 1px solid var(--line-soft);
    margin-top: 7px;
  }
  .nav a {
    font-size: 15px;
    padding: 11px 0;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .topbar-call {
    order: 1;
    margin-left: auto;
    min-height: 46px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero { padding: 34px 0 44px; }
  .hero-inner { gap: 0; }
  .hero h1 { font-size: 36px; margin-bottom: 16px; }
  .eyebrow { margin-bottom: 12px; font-size: 12px; }
  .hero-lede { font-size: 17px; margin-bottom: 22px; max-width: none; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 24px; }
  .hero-cta .btn { width: 100%; }
  .hero-facts { flex-direction: column; gap: 7px; font-size: 15px; padding-top: 16px; margin-bottom: 30px; }

  .hero-composition { height: 340px; max-width: 300px; margin: 0 auto; }
  .hero-photo-main { width: 82%; }
  .hero-tag { font-size: 13px; padding: 8px 12px; top: 40%; }

  .creed { padding: 44px 0 48px; }
  .creed-quote p { font-size: 25px; }
  .creed-body { font-size: 16px; }

  .section { padding: 52px 0; }
  .sec-head { margin-bottom: 28px; }
  .sec-lede { font-size: 16px; }

  .case-grid { grid-template-columns: 1fr; gap: 18px; }
  .card-macaron, .card-honey, .card-pavlova, .card-tiramisu,
  .card-cheesecake, .card-croissant, .card-bread, .card-cookie {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 0 !important;
    transform: none !important;
  }
  .case-card.has-photo .case-card-inner { min-height: 220px; }
  .case-card:not(.has-photo) .case-card-text { padding: 22px; }
  .case-card:nth-child(1) h3 { font-size: 26px; }
  .case-price-slip { top: -8px; right: 10px; font-size: 12px; padding: 4px 9px; }
  .case-card.offset-berry::before,
  .case-card.offset-honey::before,
  .case-card.offset-cornflower::before { transform: translate(4px, 5px); }

  .savory-side { flex-direction: column; }
  .savory-copy p { font-size: 16px; }
  .savory-photo-small { max-width: none; transform: rotate(0.6deg); }

  .cakes { padding: 52px 0; }
  .cakes-copy p { font-size: 16px; }
  .cakes-cta { flex-direction: column; align-items: stretch; }
  .cakes-box { max-width: 280px; }
  .cakes-review-tag { width: 92%; margin-top: -34px; padding: 16px 18px; }
  .cakes-review-tag blockquote { font-size: 16px; }

  .story-body { font-size: 16px; }
  .story-route { padding: 24px 20px; }

  .review-notes { grid-template-columns: 1fr; gap: 18px; }
  .review-note { transform: none !important; margin: 0 !important; }
  .review-note blockquote { font-size: 17px; }

  .visit-composition { grid-template-columns: 1fr; }
  .visit-primary-address { font-size: 21px; }
  .visit-big { font-size: 20px; }

  .closing-inner { padding: 48px 20px; }
  .closing-cta { flex-direction: column; align-items: stretch; }

  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .preview-note { padding-left: 20px; padding-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .btn:hover, .btn:active, .btn::after { transform: none !important; }
  .case-card:hover { transform: none !important; }
}
