:root {
  --cream: #efe6d7;
  --cream-soft: #f7f1e6;
  --navy: #283b5b;
  --navy-deep: #1d2c45;
  --navy-darker: #131c2d;
  --amber: #f5a51c;
  --amber-deep: #d68f0e;
  --ink: #161616;
  --ink-soft: rgba(20,20,20,0.62);
  --rule: rgba(20,20,20,0.16);

  --display: 'Fraunces', Georgia, serif;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(19,28,45,0.85) 0%, rgba(19,28,45,0) 100%);
}
.brand {
  display: inline-flex; align-items: center;
  line-height: 0;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.brand__logo { height: 40px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(0.8rem, 2.2vw, 1.8rem); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; }
.nav a { color: rgba(239,230,215,0.85); transition: color .25s; }
.nav a:hover { color: var(--amber); }
.nav__cta {
  background: var(--amber); color: var(--ink);
  padding: 0.5rem 1.1rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0;
  border-radius: 4px;
  transition: background .25s;
}
.nav__cta:hover { background: var(--cream); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid; place-items: center;
  overflow: hidden;
  background: var(--navy-darker);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(1.05);
  transform: scale(1.06);
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.2) translate(-2%, -2%); }
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(19,28,45,0.85) 90%),
    linear-gradient(180deg, rgba(19,28,45,0.4) 0%, rgba(19,28,45,0.2) 50%, rgba(19,28,45,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.8rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(245,165,28,0.4);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.4rem, 10vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}
.lede {
  color: rgba(239,230,215,0.85);
  font-size: 1.15rem;
  max-width: 40rem;
  margin: 0 auto 2.4rem;
  line-height: 1.55;
}
.cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center;
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(239,230,215,0.4); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.74rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(239,230,215,0.5);
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- chapters ---------- */
.chapter { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); }
.chapter--cake { background: var(--cream); }
.chapter--case { background: var(--cream-soft); }
.chapter--story { background: var(--navy); color: var(--cream); }
.chapter--story h2 { color: var(--cream); }
.chapter--story .ord { color: var(--amber); }
.chapter--visit { background: var(--cream); }

.chapter__inner { max-width: 1200px; margin: 0 auto; }
.ord {
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.24em;
  color: var(--amber-deep);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.ord--inv { color: var(--amber); }
.chapter h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  max-width: 22ch;
}
.chapter h2 em {
  font-style: italic; color: var(--amber-deep); font-weight: 500;
}
.chapter--story h2 em { color: var(--amber); }
.chapter__body {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 52ch;
  margin-bottom: 2.5rem;
  color: var(--ink-soft);
}
.chapter--story .chapter__body { color: rgba(239,230,215,0.78); }

/* ---------- cake row ---------- */
.cake-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 1.5rem;
}
.cake-row li { display: flex; flex-direction: column; gap: 0.7rem; }
.cake-row figure {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 40px -20px rgba(40,59,91,0.4);
}
.cake-row figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.cake-row li:hover figure img { transform: scale(1.04); }
.cake-row h3 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; }
.cake-row p { color: var(--ink-soft); font-size: 0.95rem; }
.price { font-family: var(--display); font-style: italic; color: var(--amber-deep); font-weight: 600; font-size: 1.1rem; }

/* ---------- case ---------- */
.case__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 1rem;
}
.case__grid ul { border-top: 1px solid var(--rule); }
.case__grid li {
  display: flex; justify-content: space-between;
  padding: 0.85rem 0; border-bottom: 1px solid var(--rule);
  font-size: 1rem;
}
.case__grid li span:last-child { color: var(--amber-deep); font-family: var(--display); font-style: italic; }

/* ---------- pull quote ---------- */
.pull {
  margin-top: 3rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--amber);
  max-width: 56ch;
}
.pull p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  color: var(--amber);
  margin-bottom: 0.7rem;
}
.pull footer { font-family: var(--mono); font-size: 0.82rem; color: rgba(239,230,215,0.6); }

/* ---------- visit ---------- */
.visit__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  margin-top: 1rem;
}
.lbl {
  font-family: var(--mono);
  font-size: 0.74rem; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.visit__grid p { font-family: var(--display); font-size: 1.2rem; line-height: 1.5; }
.visit__grid a { color: var(--ink); border-bottom: 1px solid var(--rule); transition: border-color .25s; }
.visit__grid a:hover { border-color: var(--amber); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-deep); color: var(--cream);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; gap: 1rem; place-items: center;
  border-top: 1px solid rgba(245,165,28,0.2);
}
.foot__mark {
  font-family: var(--display); font-weight: 400; font-size: 1.7rem;
  color: var(--amber); letter-spacing: -0.01em;
}
.foot__social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.foot__social a {
  font-family: var(--mono);
  color: rgba(239,230,215,0.8);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(239,230,215,0.18);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.foot__social a:hover { color: var(--amber); border-color: var(--amber); }
.foot__fine { color: rgba(239,230,215,0.5); font-size: 0.82rem; font-family: var(--mono); }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .cake-row, .case__grid, .visit__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav a:not(.nav__cta) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; transform: scale(1.06); }
  .hero__scroll { animation: none; }
}
