:root {
  --cream: #efe6d7;
  --cream-soft: #f6f0e1;
  --navy: #283b5b;
  --navy-deep: #1d2c45;
  --amber: #f5a51c;
  --amber-deep: #b87f08;
  --ink: #161616;
  --ink-soft: rgba(20,20,20,0.62);
  --rule: rgba(20,20,20,0.16);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand__logo { height: 48px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(0.8rem, 2.4vw, 1.8rem); font-size: 0.88rem; font-family: var(--sans); letter-spacing: 0.02em; }
.nav a { color: var(--ink); transition: color .25s; }
.nav a:hover { color: var(--amber-deep); }
.nav__cta {
  background: var(--navy); color: var(--cream);
  padding: 0.5rem 1.1rem; border-radius: 2px;
  font-weight: 600;
  transition: background .25s;
}
.nav__cta:hover { background: var(--amber-deep); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem) 0;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.kicker {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--amber-deep);
}
.lede {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 400;
  max-width: 50ch;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}
.cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.btn {
  display: inline-flex; align-items: center;
  padding: 0.9rem 1.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }

.hero__rule {
  height: 1px; background: var(--navy);
  margin-bottom: 2rem;
}
.hero__photo {
  aspect-ratio: 16/8;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 60px -32px rgba(40,59,91,0.5);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- chapters ---------- */
.chapter {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.chapter--story { background: var(--navy); color: var(--cream); max-width: none; padding-left: clamp(1.5rem, 5vw, 4rem); padding-right: clamp(1.5rem, 5vw, 4rem); }
.chapter--story h2 { color: var(--cream); }
.chapter--story .ord { color: var(--amber); }

.ord {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: var(--amber);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.ord--inv { color: var(--amber); }

.chapter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
  max-width: 18ch;
}
.chapter__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2.4rem;
}

.chapter__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: 4rem;
}
.chapter__copy p { font-size: 1.08rem; color: var(--ink-soft); max-width: 50ch; margin-bottom: 1.8rem; }
.chapter__photo {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 50px -28px rgba(40,59,91,0.35);
}
.chapter__photo img { width: 100%; height: 100%; object-fit: cover; }

.spec { border-top: 1px solid var(--rule); }
.spec li {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}
.spec span:last-child { color: var(--amber-deep); font-family: var(--serif); font-style: italic; }

.cake-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.cake-row h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin-bottom: 0.4rem; }
.cake-row p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.7rem; }
.price { color: var(--amber-deep); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }

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

.quote {
  max-width: 50ch;
  margin-bottom: 3rem;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  color: var(--amber);
  margin-bottom: 1rem;
}
.quote footer {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(239,230,215,0.65);
}
.chapter--story p {
  max-width: 56ch;
  font-size: 1.1rem;
  color: rgba(239,230,215,0.8);
}

.visit__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  margin-top: 1.5rem;
}
.lbl {
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 0.7rem; font-weight: 700;
}
.chapter--visit p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; }
.chapter--visit a { color: var(--ink); border-bottom: 1px solid var(--rule); transition: border-color .25s; }
.chapter--visit 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;
}
.foot__mark { font-family: var(--serif); font-weight: 300; font-size: 1.8rem; color: var(--amber); letter-spacing: -0.01em; }
.foot__social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.foot__social a {
  color: var(--cream); border-bottom: 1px solid rgba(239,230,215,0.2);
  padding-bottom: 2px;
  font-size: 0.9rem;
  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; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .chapter__grid { grid-template-columns: 1fr; }
  .cake-row, .case__grid, .visit__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .nav a:not(.nav__cta) { font-size: 0.78rem; }
}
