@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: "Italiana";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/italiana-latin.woff2') format('woff2');
}
@font-face {
  font-family: "Yellowtail";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/yellowtail-latin.woff2') format('woff2');
}

:root {
  --red: #8f1d25;
  --red-dark: #5f1117;
  --ink: #171513;
  --paper: #f6f0e3;
  --paper-deep: #e9dfcb;
  --white: #fffdf8;
  --muted: #6f6962;
  --line: rgba(23, 21, 19, 0.16);
  --display: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --script: "Yellowtail", "Brush Script MT", cursive;
  --page: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--white); background: var(--red); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.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;
}
.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 1000; padding: 10px 16px;
  color: var(--white); background: var(--ink); text-decoration: none;
}
.skip-link:focus { top: 16px; }

.topline {
  height: 33px; display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--ink); color: rgba(255, 253, 248, 0.84); font-size: 11px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.topline p { margin: 0; }
.topline p::after { content: "•"; margin-left: 12px; color: var(--red); }
.topline a { color: var(--white); text-decoration: none; }
.topline a:hover { color: #e8a6a9; }

.site-header {
  position: absolute; top: 33px; left: 0; z-index: 30; width: 100%; height: 96px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 max(24px, calc((100vw - 1240px) / 2));
  color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 220ms ease, height 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  position: fixed; top: 0; height: 78px; color: var(--ink); background: rgba(246, 240, 227, 0.96);
  border-color: var(--line); box-shadow: 0 10px 30px rgba(23, 21, 19, 0.08); backdrop-filter: blur(12px);
}
.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 0.75; text-decoration: none; }
.brand-bella { color: #dc4b53; font-family: var(--script); font-size: 47px; line-height: 0.72; text-shadow: 1px 1px 0 var(--white); transform: rotate(-4deg); }
.brand-marketplace { color: currentColor; font-family: var(--display); font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  position: relative; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 18px; color: var(--ink); background: var(--white); border: 1px solid var(--white); }
.is-scrolled .nav-cta { color: var(--white); background: var(--red); border-color: var(--red); }
.nav-cta:hover { color: var(--white); background: var(--red); border-color: var(--red); }
.nav-toggle { display: none; }

.hero {
  position: relative; min-height: 820px; height: 100svh; max-height: 960px; overflow: hidden;
  color: var(--white); background: #26344a;
}
.hero-photo {
  position: absolute; inset: 0; background-image: url('/assets/bella-storefront.webp');
  background-size: cover; background-position: center 48%; transform: scale(1.015);
  animation: hero-in 1.2s cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 9, .78) 0%, rgba(12, 10, 9, .42) 46%, rgba(12, 10, 9, .12) 74%),
              linear-gradient(0deg, rgba(9, 8, 7, .58) 0%, transparent 38%, rgba(9, 8, 7, .24) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: var(--page); height: 100%; margin: 0 auto; padding-top: 184px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.hero-copy { max-width: 735px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 46px; height: 1px; background: #e4575f; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px; font-family: var(--display); font-size: clamp(68px, 8.2vw, 122px);
  font-weight: 400; letter-spacing: -.045em; line-height: .86;
}
h1 em { color: #f4d8c8; font-weight: 400; }
.hero-lede { max-width: 620px; margin-bottom: 34px; color: rgba(255, 253, 248, .86); font-size: 18px; line-height: 1.7; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px;
  border: 1px solid transparent; font-size: 13px; font-weight: 700; letter-spacing: .035em; text-decoration: none; transition: 180ms ease;
}
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { color: var(--ink); background: var(--white); transform: translateY(-2px); }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .55); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.hero-card {
  align-self: flex-end; width: 290px; margin-bottom: 104px; padding: 24px;
  background: rgba(15, 13, 12, .72); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(12px);
}
.status-row { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 12px; letter-spacing: .04em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #66c47a; box-shadow: 0 0 0 4px rgba(102, 196, 122, .12); }
.status-row.is-closed .status-dot { background: #cfb072; box-shadow: 0 0 0 4px rgba(207, 176, 114, .12); }
.hero-card > p { margin: 18px 0; color: rgba(255, 255, 255, .78); font-family: var(--display); font-size: 20px; line-height: 1.35; }
.mini-rule { height: 1px; margin: 16px 0; background: rgba(255, 255, 255, .19); }
.hero-card dl { margin: 0; }
.hero-card dl > div { display: flex; justify-content: space-between; gap: 12px; color: rgba(255, 255, 255, .74); font-size: 11px; }
.hero-card dt, .hero-card dd { margin: 0; }
.hero-card dd { color: #fff; font-weight: 600; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 28px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 9px; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { display: block; width: 1px; height: 34px; background: rgba(255, 255, 255, .7); animation: pulse-line 1.8s ease-in-out infinite; }

.ticker { overflow: hidden; color: var(--paper); background: var(--red); }
.ticker > div { width: max-content; display: flex; align-items: center; gap: 28px; min-width: 100%; padding: 17px 28px; justify-content: space-around; }
.ticker span { font-family: var(--display); font-size: 19px; letter-spacing: .03em; }
.ticker i { color: #e6b6a8; font-style: normal; font-size: 11px; }

.section { padding: 120px max(24px, calc((100vw - 1240px) / 2)); }
.section-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 54px; }
.section-kicker span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font-size: 9px; font-weight: 700; }
.section-kicker p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.section-kicker.light span { border-color: rgba(255, 255, 255, .3); }
.section-kicker.light p { color: rgba(255, 255, 255, .6); }
.intro { overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.script-note { margin-bottom: 4px; color: var(--red); font-family: var(--script); font-size: clamp(27px, 3vw, 42px); line-height: 1; transform: rotate(-2deg); }
.intro h2, .story h2, .visit h2, .finds h2 {
  margin-bottom: 0; font-family: var(--display); font-size: clamp(52px, 6.1vw, 88px); font-weight: 400; letter-spacing: -.04em; line-height: .96;
}
.intro-copy { max-width: 545px; }
.intro-copy .lead { margin-bottom: 22px; color: var(--ink); font-family: var(--display); font-size: 27px; line-height: 1.35; }
.intro-copy > p:not(.lead) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 22px; margin-top: 14px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link span { font-size: 18px; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(4px, 3px); }
.number-block {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 24px;
  margin-top: 108px; padding: 40px 0 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.big-number { color: var(--red); font-family: var(--display); font-size: clamp(96px, 17vw, 238px); letter-spacing: -.08em; line-height: .66; }
.number-caption { align-self: center; display: flex; flex-direction: column; padding-top: 12px; }
.number-caption strong { font-family: var(--display); font-size: 28px; font-weight: 400; }
.number-caption span { color: var(--muted); font-size: 12px; }
.number-mark { width: 78px; height: 78px; display: grid; place-items: center; color: var(--paper); background: var(--ink); border-radius: 50%; font-family: var(--display); font-size: 41px; }

.finds { color: var(--white); background: var(--ink); }
.finds-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 72px; }
.finds-heading .script-note { color: #e98187; }
.finds h2 { text-align: right; }
.finds h2 em { color: #e3aa9e; font-weight: 400; }
.find-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.find-card { position: relative; min-height: 390px; padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.18); }
.find-card:last-child { border-right: 0; }
.find-number { color: rgba(255,255,255,.58); font-size: 10px; }
.find-card svg { width: 69px; margin: 61px 0 42px; fill: none; stroke: #da686f; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }
.find-card h3 { margin-bottom: 12px; font-family: var(--display); font-size: 26px; font-weight: 400; line-height: 1.15; }
.find-card p { margin-bottom: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; }
.inventory-note { margin: 28px 0 0; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .05em; text-align: center; }

.story { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: clamp(56px, 8vw, 120px); align-items: center; }
.story-image { position: relative; }
.story-image::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: -1; border: 1px solid rgba(143, 29, 37, .25); }
.story-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 42% center; filter: saturate(.82) contrast(1.03); }
.photo-label { position: absolute; right: -26px; bottom: 32px; width: 142px; padding: 18px; color: var(--white); background: var(--red); }
.photo-label span { display: block; font-size: 8px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.photo-label strong { display: block; font-family: var(--display); font-size: 50px; font-weight: 400; line-height: 1; }
.story-copy .section-kicker { margin-bottom: 68px; }
.story h2 { margin-bottom: 28px; font-size: clamp(48px, 5.2vw, 73px); }
.story-copy > p:not(.script-note) { color: var(--muted); }
blockquote { margin: 42px 0 0; padding: 22px 0 0 27px; border-top: 1px solid var(--line); border-left: 2px solid var(--red); font-family: var(--display); font-size: 21px; line-height: 1.45; }
blockquote cite { display: block; margin-top: 10px; color: var(--muted); font-family: var(--sans); font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.visit { display: grid; grid-template-columns: 1fr .78fr; gap: clamp(54px, 9vw, 130px); color: var(--white); background: var(--red); }
.visit .script-note { color: #f0c6ad; }
.visit h2 { margin-bottom: 28px; }
.visit-copy > p:not(.script-note) { max-width: 550px; color: rgba(255,255,255,.7); }
.visit-actions { margin-top: 35px; }
.button-cream { color: var(--ink); background: var(--paper); }
.button-cream:hover { background: var(--white); transform: translateY(-2px); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline:hover { color: var(--ink); background: var(--white); transform: translateY(-2px); }
.visit-card { padding: 38px; color: var(--ink); background: var(--paper); box-shadow: 18px 18px 0 rgba(75, 9, 13, .55); }
.visit-card-head { display: flex; align-items: center; justify-content: space-between; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.visit-card-head svg { width: 30px; fill: none; stroke: var(--red); stroke-width: 1.4; }
.visit-card address { margin: 34px 0 32px; font-family: var(--display); font-size: clamp(31px, 3.6vw, 48px); font-style: normal; line-height: 1.05; }
.visit-rule { height: 1px; margin-bottom: 22px; background: var(--line); }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; font-size: 12px; }
.hours-row span { color: var(--muted); }
.holiday-note { margin: 14px 0 30px; color: var(--muted); font-size: 9px; }
.social-row { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.social-row > div { display: flex; gap: 8px; }
.social-row a { display: grid; place-items: center; width: 32px; height: 32px; color: var(--white); background: var(--ink); border-radius: 50%; font-family: Arial, sans-serif; font-size: 15px; text-decoration: none; transition: background 180ms ease; }
.social-row a:hover { background: var(--red); }

.site-footer { padding: 68px max(24px, calc((100vw - 1240px) / 2)) 28px; color: var(--paper); background: var(--ink); text-align: center; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: center; color: var(--white); line-height: .75; }
.footer-brand .brand-bella { font-size: 72px; }
.footer-brand .brand-marketplace { font-size: 19px; }
.site-footer > p { margin: 30px 0 58px; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.footer-meta { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: 10px; }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { color: var(--white); }
.visit .section-kicker.light p { color: rgba(255,255,255,.82); }

.reveal { opacity: 1; transform: translateY(0); }
.reveal.is-visible { animation: reveal-up 700ms ease both; }
.find-card:nth-child(2).is-visible, .find-card:nth-child(4).is-visible { animation-delay: 90ms; }
.find-card:nth-child(3).is-visible { animation-delay: 180ms; }

@keyframes hero-in { from { opacity: .35; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }
@keyframes pulse-line { 0%, 100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  :root { --page: min(100% - 40px, 760px); }
  .site-header { padding-inline: 20px; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 11px; color: currentColor; background: rgba(0,0,0,.16); border: 1px solid rgba(255,255,255,.35); }
  .is-scrolled .nav-toggle { background: transparent; border-color: var(--line); }
  .nav-toggle span:not(.sr-only) { width: 100%; height: 1px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; color: var(--ink); background: var(--paper); box-shadow: 0 20px 50px rgba(0,0,0,.24); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .site-nav .nav-cta { margin-top: 6px; color: var(--white); background: var(--red); text-align: center; }
  .hero { min-height: 780px; }
  .hero-inner { padding-top: 145px; align-items: center; }
  .hero-card { display: none; }
  .hero-copy { max-width: 680px; }
  .intro-grid { grid-template-columns: 1fr; gap: 42px; }
  .intro-copy { margin-left: auto; }
  .finds-heading { display: block; }
  .finds h2 { margin-top: 20px; text-align: left; }
  .find-grid { grid-template-columns: 1fr 1fr; }
  .find-card:nth-child(2) { border-right: 0; }
  .find-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .story { grid-template-columns: 1fr; }
  .story-image { max-width: 650px; }
  .story-image img { aspect-ratio: 5 / 4; }
  .visit { grid-template-columns: 1fr; }
  .visit-card { max-width: 620px; }
}

@media (max-width: 640px) {
  :root { --page: calc(100vw - 32px); }
  .topline { justify-content: space-between; padding: 0 14px; letter-spacing: .09em; }
  .topline p { font-size: 0; }
  .topline p::before { content: "Open daily"; font-size: 9px; }
  .topline p::after { display: none; }
  .topline a { white-space: nowrap; }
  .site-header { height: 78px; }
  .brand-bella { font-size: 39px; }
  .brand-marketplace { font-size: 12px; }
  .hero { min-height: 735px; height: 100svh; }
  .hero-photo { background-position: 47% 50%; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,10,9,.79), rgba(12,10,9,.22)), linear-gradient(0deg, rgba(9,8,7,.65), transparent 55%); }
  .hero-inner { align-items: end; padding-top: 130px; padding-bottom: 100px; }
  h1 { font-size: clamp(58px, 19vw, 82px); }
  .hero-lede { font-size: 15px; line-height: 1.6; }
  .hero-actions .button { flex: 1 1 auto; }
  .scroll-cue { display: none; }
  .ticker > div { gap: 15px; justify-content: start; }
  .ticker span { font-size: 15px; }
  .ticker span:nth-of-type(n+5), .ticker i:nth-of-type(n+5) { display: none; }
  .section { padding: 82px 20px; }
  .section-kicker { margin-bottom: 38px; }
  .intro h2, .story h2, .visit h2, .finds h2 { font-size: clamp(45px, 14vw, 64px); }
  .intro-copy .lead { font-size: 23px; }
  .number-block { grid-template-columns: 1fr auto; margin-top: 72px; gap: 8px; }
  .big-number { grid-column: 1 / -1; font-size: 31vw; line-height: .72; }
  .number-caption strong { font-size: 22px; }
  .number-mark { width: 58px; height: 58px; font-size: 30px; }
  .find-grid { grid-template-columns: 1fr; }
  .find-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .find-card:last-child { border-bottom: 0; }
  .find-card svg { margin: 32px 0; }
  .story-image::before { inset: -10px 10px 10px -10px; }
  .story-image img { aspect-ratio: 4 / 5; }
  .photo-label { right: -4px; bottom: 20px; width: 116px; }
  .story-copy .section-kicker { margin-bottom: 48px; }
  .visit-card { padding: 28px 22px; box-shadow: 9px 9px 0 rgba(75,9,13,.55); }
  .hours-row { display: block; }
  .hours-row strong { display: block; }
  .visit-actions .button { width: 100%; }
  .footer-meta { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
