:root {
  --paper: #F8F1E0;
  --paper-deep: #F0E7CF;
  --red: #E84B3C;
  --blue: #1F4FBF;
  --yellow: #F4D06F;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;

  --serif: 'DM Serif Display', Georgia, serif;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', system-ui, sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  overflow-x: hidden;
}

/* Paper grain */
.paper-grain {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.6'/></svg>");
  opacity: 0.12;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 3rem);
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.brand { font-family: var(--serif); font-size: 1.8rem; line-height: 1; display: inline-flex; gap: 0.3em; }
.brand__a { color: var(--red); position: relative; }
.brand__a::after { content: 'amore'; position: absolute; left: 2px; top: 0; color: var(--blue); mix-blend-mode: multiply; opacity: 0.7; }
.brand__b { color: var(--ink); font-style: italic; }
.nav { display: flex; gap: 1.4rem; align-items: center; font-family: var(--mono); font-size: 0.88rem; }
.nav a { transition: color .2s; }
.nav a:hover { color: var(--red); }
.cta { color: var(--red); font-weight: 700; }
.cta:hover { color: var(--blue); }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
  align-items: center;
  min-height: 80vh;
}
.stamp {
  font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.6rem;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1.5px solid var(--ink);
  transform: rotate(-1deg);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.hero__title span, .hero__title em {
  display: inline-block;
  position: relative;
  font-style: normal;
}
.hero__title em { font-style: italic; color: var(--red); }
.hero__title em::before {
  content: 'wobbles.';
  position: absolute; top: 2px; left: 4px;
  color: var(--blue); opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
  font-style: italic;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 2.4rem;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.9rem 1.4rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: transform .25s ease, background .25s, color .25s, box-shadow .25s;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--red { color: var(--red); }
.btn--blue { color: var(--blue); }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

.hero__art { display: grid; place-items: center; }
.riso-cake { width: 100%; max-width: 420px; height: auto; }

/* ---------- banner ---------- */
.banner {
  background: var(--red);
  color: var(--paper);
  padding: 1rem;
  font-family: var(--mono);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.18em;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.banner p { animation: scroll 25s linear infinite; white-space: nowrap; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.cakes, section.case, section.story, section.services, section.visit {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px; margin: 0 auto;
}
.ord {
  font-family: var(--mono);
  font-size: 0.82rem; letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.rhead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}
.rhead::after {
  content: attr(data-text);
  position: absolute; left: 3px; top: 3px;
  color: var(--red); opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ---------- cake grid ---------- */
.cake-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cake-card {
  padding: 1.5rem;
  background: var(--paper-deep);
  border: 2px solid var(--ink);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 6px 6px 0 var(--ink);
}
.cake-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.cc__no {
  position: absolute; top: -16px; right: 16px;
  background: var(--paper); color: var(--blue);
  font-family: var(--mono); font-weight: 700;
  padding: 0.3rem 0.7rem; border: 2px solid var(--ink);
}
.cc-1 .cc__no { background: var(--yellow); color: var(--red); }
.cc-2 .cc__no { background: var(--red); color: var(--paper); }
.cc-3 .cc__no { background: var(--blue); color: var(--yellow); }
.cake-card figure {
  aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1rem;
  border: 2px solid var(--ink);
}
.cake-card figure img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(0.95); }
.cake-card h3 { font-family: var(--serif); font-size: 2rem; line-height: 1; margin-bottom: 0.4rem; color: var(--red); }
.cake-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.5rem; }
.cake-card .price { color: var(--blue); font-family: var(--mono); font-weight: 700; }

/* ---------- case ---------- */
.case__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 3rem;
}
.case__grid li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1.5px solid var(--ink);
  font-size: 1.05rem;
}
.case__grid b { color: var(--red); font-family: var(--mono); }

/* ---------- story ---------- */
.story__body {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.5;
  max-width: 50ch;
}

/* ---------- services ---------- */
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc__grid article {
  padding: 2rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  position: relative;
  transition: transform .25s;
}
.svc__grid article:nth-child(1) { background: rgba(244,208,111,0.4); }
.svc__grid article:nth-child(2) { background: rgba(232,75,60,0.18); }
.svc__grid article:nth-child(3) { background: rgba(31,79,191,0.12); }
.svc__grid article:hover { transform: translateY(-4px); }
.svc__num { font-family: var(--mono); font-weight: 700; font-size: 2rem; color: var(--red); margin-bottom: 0.6rem; }
.svc__grid h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--blue); }
.svc__grid p { color: var(--ink-soft); margin-bottom: 1rem; }
.svc__grid a { font-family: var(--mono); font-weight: 700; color: var(--red); font-size: 0.92rem; }

/* ---------- visit ---------- */
.visit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.visit h4 { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.8rem; }
.visit p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.5; }
.visit a { color: var(--red); }
.visit a:hover { color: var(--blue); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-top: 4px solid var(--red);
}
.foot__mark { font-family: var(--serif); font-size: 2.2rem; color: var(--yellow); margin-bottom: 1.5rem; }
.foot__mark em { font-style: italic; color: var(--red); }
.foot__social { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; font-family: var(--mono); font-size: 0.88rem; margin-bottom: 1.5rem; }
.foot__social a:hover { color: var(--yellow); }
.foot__fine { font-family: var(--mono); font-size: 0.78rem; color: rgba(248,241,224,0.5); letter-spacing: 0.1em; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .cake-grid, .case__grid, .svc__grid, .visit__grid { grid-template-columns: 1fr; }
  .nav a:not(.cta) { display: none; }
}
