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

  --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.6;
}

/* ---------- 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: 50px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); font-size: 0.93rem; }
.nav a { color: var(--ink); transition: color .25s; }
.nav a:hover { color: var(--amber-deep); }
.nav__cta {
  background: var(--amber); color: var(--ink);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 6px 14px -8px rgba(245,165,28,0.6);
}
.nav__cta:hover { background: var(--amber-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 18px -8px rgba(245,165,28,0.7); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
  max-width: 1320px;
  margin: 0 auto;
}
.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.kicker::before {
  content: ''; width: 8px; height: 8px;
  background: var(--amber); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,165,28,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(245,165,28,0.2); }
  50%     { box-shadow: 0 0 0 10px rgba(245,165,28,0); }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-deep);
  font-weight: 400;
}
.lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center;
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.btn--primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 8px 18px -8px rgba(245,165,28,0.55);
}
.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__caption { color: var(--ink-soft); font-size: 0.92rem; margin-top: 1.4rem; }
.hero__caption a { color: var(--amber-deep); border-bottom: 1px dotted; }

.hero__photo {
  position: relative;
  aspect-ratio: 4/4.4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 50px -28px rgba(40,59,91,0.35);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__sticker {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--cream);
  border: 2px solid var(--amber);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 12px 24px -12px rgba(40,59,91,0.4);
  transform: rotate(-3deg);
}
.hero__sticker__lbl {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 700;
}
.hero__sticker__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ---------- sections ---------- */
section.today, section.case, section.visit {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1320px;
  margin: 0 auto;
}
.section-head { margin-bottom: 2.8rem; max-width: 50ch; }
.ord {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-deep); font-weight: 600; margin-bottom: 0.6rem;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

/* ---------- cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--cream-warm);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform .4s ease, box-shadow .4s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(40,59,91,0.4); border-color: var(--amber); }
.card figure { aspect-ratio: 5/4; overflow: hidden; }
.card figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.card:hover figure img { transform: scale(1.05); }
.card__body { padding: 1.4rem 1.4rem 1.6rem; position: relative; }
.card__tag {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.2rem; }
.card__foot { display: flex; align-items: center; justify-content: space-between; }
.card__price { font-family: var(--serif); font-style: italic; color: var(--amber-deep); font-weight: 600; }
.card__cta {
  color: var(--ink); font-size: 0.88rem; font-weight: 600;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.card__cta:hover { color: var(--amber-deep); border-color: var(--amber); }

.card--featured { background: var(--rose); border-color: var(--amber); }

/* ---------- case ---------- */
.case__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.case__h {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.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(--serif); font-style: italic; }

/* ---------- story ---------- */
.story {
  background: var(--navy); color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.story__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.story h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin: 0.6rem auto 1.5rem;
  line-height: 1.1;
}
.story p { font-size: 1.15rem; max-width: 56ch; margin: 0 auto 1em; color: rgba(239,230,215,0.85); }
.ord--light { color: var(--amber); }

/* ---------- visit ---------- */
.visit__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.lbl {
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 0.7rem; font-weight: 700;
}
.visit p { font-family: var(--serif); font-size: 1.15rem; 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);
  background: var(--cream-soft);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; gap: 1rem; place-items: center;
}
.foot__mark { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--amber-deep); font-weight: 600; }
.foot__tag { color: var(--ink-soft); font-style: italic; }
.foot__social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.foot__social a { color: var(--ink); border-bottom: 1px solid var(--rule); padding-bottom: 2px; transition: color .25s, border-color .25s; font-size: 0.9rem; }
.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; }
  .cards { grid-template-columns: 1fr; }
  .case__grid, .visit__grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav a:not(.nav__cta) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .kicker::before { animation: none; box-shadow: 0 0 0 4px rgba(245,165,28,0.2); }
}
