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

  --serif: 'DM Serif Display', 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;
}

/* ---------- ticker tape ---------- */
.tape {
  background: var(--navy);
  color: var(--amber);
  overflow: hidden;
  border-bottom: 1px solid rgba(245,165,28,0.3);
}
.tape__track {
  display: flex;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  white-space: nowrap;
  animation: tape 40s linear infinite;
}
.tape__track span { padding-right: 3rem; }
@keyframes tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
  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(1rem, 2.5vw, 2rem); font-size: 0.92rem; }
.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.55rem 1.15rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background .25s;
}
.nav__cta:hover { background: var(--amber-deep); color: #fff; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1320px; margin: 0 auto;
}
.open-tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(245,165,28,0.16);
  color: var(--amber-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.open-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BAA60;
  box-shadow: 0 0 0 4px rgba(43,170,96,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(43,170,96,0.2); } 50% { box-shadow: 0 0 0 10px rgba(43,170,96,0); } }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.lede { color: var(--ink-soft); font-size: 1.08rem; max-width: 40ch; 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.92rem;
  font-weight: 600;
  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: 1.5px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }

.hero__board {
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 1.5rem 1.6rem;
  box-shadow: 8px 8px 0 var(--amber);
  font-family: var(--sans);
}
.board__date {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ink);
  text-align: center;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 0.7rem;
}
.board__items li {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.96rem;
  border-bottom: 1px dotted var(--rule);
}
.board__items li:last-child { border-bottom: 0; }
.board__items span:last-child { color: var(--amber-deep); font-family: var(--serif); }
.board__foot {
  margin-top: 0.9rem;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* ---------- counter section ---------- */
section.counter, section.case {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1320px;
  margin: 0 auto;
}
.section-head { margin-bottom: 2.6rem; max-width: 50ch; }
.ord {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber-deep); font-weight: 700; margin-bottom: 0.5rem;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.counter-card {
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .35s ease, border-color .3s ease, box-shadow .35s ease;
}
.counter-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--amber);
}
.counter-card figure { aspect-ratio: 5/4; overflow: hidden; }
.counter-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.counter-card:hover figure img { transform: scale(1.05); }
.counter-meta { padding: 1.5rem 1.5rem 1.7rem; }
.ticket {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}
.counter-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-bottom: 0.5rem; }
.counter-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.3rem; }
.counter-foot { display: flex; align-items: center; justify-content: space-between; }
.price-stamp {
  display: inline-block;
  border: 1.5px dashed var(--amber);
  color: var(--amber-deep);
  padding: 0.3rem 0.7rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.counter-foot a {
  color: var(--ink); font-size: 0.88rem; font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .25s;
}
.counter-foot a:hover { color: var(--amber-deep); }

/* ---------- case ---------- */
.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);
  font-size: 1rem;
}
.case__grid li span:last-child { color: var(--amber-deep); font-family: var(--serif); }

/* ---------- visit ---------- */
.visit {
  background: var(--navy); color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.visit__inner { max-width: 1320px; margin: 0 auto; }
.visit h2 { color: var(--cream); }
.ord--inv { color: var(--amber); }
.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); margin-bottom: 0.7rem; font-weight: 700;
}
.visit__grid p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; color: var(--cream); font-weight: 400; }
.visit__grid a { color: var(--amber); border-bottom: 1px solid rgba(245,165,28,0.3); transition: border-color .25s; }
.visit__grid a:hover { border-color: var(--amber); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--cream-soft);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; gap: 1rem; place-items: center;
  border-top: 4px solid var(--amber);
}
.foot__mark { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.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; }
  .counter-grid, .case__grid, .visit__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .nav a:not(.nav__cta) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tape__track { animation: none; }
  .open-dot { animation: none; }
}
