:root {
  --cream: #efe6d7;
  --cream-soft: #f7f1e6;
  --navy: #283b5b;
  --navy-soft: #3d5278;
  --amber: #f5a51c;
  --amber-deep: #d68f0e;
  --ink: #161616;
  --ink-soft: rgba(20,20,20,0.62);
  --rule: rgba(20,20,20,0.14);

  --serif: 'Cormorant Garamond', 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.6;
}

/* ---------- header ---------- */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem clamp(1rem, 4vw, 3rem) 1.6rem;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand__logo { height: 64px; width: auto; display: block; }

.nav {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem);
  font-size: 0.92rem;
}
.nav a {
  color: var(--ink);
  transition: color .25s;
  position: relative;
  padding: 0.3rem 0;
}
.nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .25s ease, left .25s ease;
}
.nav a:not(.nav__cta):hover::after { width: 100%; left: 0; }
.nav__cta {
  background: var(--amber);
  color: var(--ink);
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background .25s, color .25s, transform .25s;
}
.nav__cta:hover { background: var(--amber-deep); color: #fff; transform: translateY(-1px); }
.nav__cta::after { display: none; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem);
  max-width: 1320px;
  margin: 0 auto;
}
.hero__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 30px 50px -28px rgba(40,59,91,0.35);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s ease .1s forwards;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__copy {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s ease .25s forwards;
}
.hero__copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  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(--amber-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--cream); }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- about ---------- */
.about {
  border-top: 1px solid var(--rule);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}
.about__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem;
  align-items: center;
}
.eyebrow {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.about__count { color: var(--ink-soft); font-size: 0.92rem; }
.about__social { display: flex; gap: 0.9rem; }
.about__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(40,59,91,0.08);
  border-radius: 50%;
  color: var(--ink);
  transition: background .25s, color .25s;
}
.about__social a:hover { background: var(--amber); color: var(--ink); }
.about__social a svg { width: 18px; height: 18px; }

/* ---------- shared sections ---------- */
section.menu, section.case, section.visit {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  display: flex; align-items: baseline; gap: 1.5rem;
  margin-bottom: 2.6rem;
}
.ord {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 500;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.01em;
}

/* ---------- menu / cakes ---------- */
.cakes {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.cakes li { display: flex; flex-direction: column; gap: 0.9rem; }
.cakes figure {
  aspect-ratio: 5/4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 30px -22px rgba(40,59,91,0.3);
}
.cakes figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.cakes li:hover figure img { transform: scale(1.04); }
.cakes h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
}
.cakes p { color: var(--ink-soft); font-size: 0.96rem; }
.cakes .price {
  color: var(--amber-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; gap: 1rem; place-items: center;
  background: var(--cream-soft);
}
.foot__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--amber-deep);
}
.foot__nap { color: var(--ink-soft); font-size: 0.95rem; }
.foot__social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.foot__social a {
  font-size: 0.9rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  color: var(--ink);
  transition: color .25s, border-color .25s;
}
.foot__social a:hover { color: var(--amber-deep); border-color: var(--amber); }
.foot__fine { color: var(--ink-soft); font-size: 0.82rem; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 2rem; }
  .cakes, .case__grid, .visit__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .about__inner { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .about__social { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo, .hero__copy { animation: none; opacity: 1; transform: none; }
  .cakes figure img { transition: none; }
}
