/* ============= PAGE.CSS — Internal pages styles ============= */

.nav-links a.active { color: var(--c-ink); }
.nav-links a.active::after { width: 100%; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  background: var(--c-bg);
  position: relative;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 968px) { .page-hero-grid { grid-template-columns: 1fr; } }

.page-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--c-ink);
  margin-bottom: var(--s-6);
}
.page-title em { color: var(--c-accent); font-style: italic; font-weight: 700; }
.page-lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-ink-soft);
  max-width: 56ch;
  margin-bottom: var(--s-8);
}

.page-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1.5px dashed var(--c-border);
  width: fit-content;
}
@media (max-width: 600px) { .page-meta { grid-template-columns: 1fr 1fr; gap: var(--s-4); } }
.page-meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--c-accent);
  letter-spacing: -0.02em;
}
.page-meta span { font-size: 12px; color: var(--c-ink-muted); letter-spacing: 0.05em; }

.page-hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PAGE TABS (sticky) ---------- */
.page-tabs {
  position: sticky;
  top: 56px;
  z-index: 60;
  background: oklch(from var(--c-bg) l c h / 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--c-border);
  padding: 12px 0;
}
.page-tabs .container {
  display: flex; gap: var(--s-4);
  overflow-x: auto;
  scrollbar-width: none;
}
.page-tabs .container::-webkit-scrollbar { display: none; }
.pt {
  padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--c-ink-soft);
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: all .25s var(--ease-out);
  border: 1.5px solid transparent;
}
.pt:hover { color: var(--c-ink); border-color: var(--c-border); }
.pt.active { background: var(--c-ink); color: var(--c-cream); }

/* ---------- MENU PAGE SECTIONS ---------- */
.menu-page {
  padding: clamp(60px, 8vw, 100px) 0;
  scroll-margin-top: 100px;
}
.menu-page-alt { background: var(--c-bg-2); border-block: 1px solid var(--c-border); }

.page-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-12);
  align-items: start;
}
.page-num {
  font-family: var(--f-display);
  font-size: 4rem; font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.04em;
  line-height: 0.85;
  padding-top: var(--s-2);
}
.page-section-head .display { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: var(--s-4); }
.page-section-head p { color: var(--c-ink-soft); font-size: 1rem; max-width: 56ch; }

.menu-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 968px) { .menu-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .menu-page-grid { grid-template-columns: 1fr; } }

.mp-item {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  transition: all .35s var(--ease-out);
  position: relative;
}
.mp-item:hover { transform: translateY(-3px); border-color: var(--c-accent); box-shadow: var(--sh-md); }
.mp-item-feature { padding: 0; overflow: hidden; }
.mp-item-feature .mp-body { padding: var(--s-6); }

.mp-img { aspect-ratio: 4/3; overflow: hidden; }
.mp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.mp-item:hover .mp-img img { transform: scale(1.06); }
.mp-body { display: flex; flex-direction: column; gap: var(--s-3); flex-grow: 1; }
.mp-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-3); }
.mp-row h3 {
  font-family: var(--f-display);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.mp-price {
  font-family: var(--f-display);
  font-weight: 700; color: var(--c-accent);
  font-size: 1.1rem;
}
.mp-item p { font-size: 14px; color: var(--c-ink-soft); line-height: 1.55; flex-grow: 1; }
.mp-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-ink-muted);
  padding-top: var(--s-3);
  border-top: 1.5px dashed var(--c-border);
  margin-top: auto;
}
.mp-tag {
  display: inline-block; align-self: flex-start;
  padding: 5px 11px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--r-pill);
}
.mp-tag-popular { background: var(--c-accent-soft); color: var(--c-accent); }
.mp-tag-signature { background: var(--c-green); color: var(--c-cream); }

/* ---------- BEAN CARDS ---------- */
.bean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 968px) { .bean-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bean-grid { grid-template-columns: 1fr; } }

.bean-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex; flex-direction: column;
  gap: var(--s-3);
  transition: all .35s var(--ease-out);
  text-align: center;
  align-items: center;
}
.bean-card:hover { transform: translateY(-4px); border-color: var(--c-accent); box-shadow: var(--sh-md); }
.bean-art { width: 90px; height: 110px; color: var(--c-ink); margin-bottom: var(--s-3); transition: color .3s; }
.bean-card:hover .bean-art { color: var(--c-accent); }
.bean-card h3 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.015em; }
.bean-card p { font-size: 14px; color: var(--c-ink-soft); line-height: 1.5; flex-grow: 1; }
.bean-row {
  display: flex; justify-content: space-between; align-items: baseline;
  width: 100%; padding-top: var(--s-4);
  border-top: 1.5px dashed var(--c-border);
  font-size: 13px; color: var(--c-ink-muted);
  margin-top: auto;
}
.bean-card-feature { background: var(--c-green); color: var(--c-cream); border-color: var(--c-green); }
.bean-card-feature .bean-art { color: var(--c-cream); }
.bean-card-feature h3 { color: var(--c-cream); }
.bean-card-feature p { color: rgba(244, 236, 219, 0.8); }
.bean-card-feature .bean-row { color: rgba(244, 236, 219, 0.6); border-top-color: rgba(244, 236, 219, 0.2); }
.bean-card-feature .mp-tag { background: var(--c-accent); color: #fff; }
.bean-card-feature:hover .bean-art { color: #FF8B73; }

/* ---------- MENU NOTES ---------- */
.menu-notes {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--c-bg-2);
  border-block: 1px solid var(--c-border);
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}
@media (max-width: 968px) { .notes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .notes-grid { grid-template-columns: 1fr; } }

.notes-block h4 {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1.5px solid var(--c-accent);
}
.notes-block p { font-size: 14px; color: var(--c-ink-soft); line-height: 1.55; }

.notes-foot {
  padding-top: var(--s-6);
  border-top: 1.5px dashed var(--c-border);
  font-size: 12px;
  font-style: italic;
  color: var(--c-ink-muted);
  letter-spacing: 0.02em;
}

/* ---------- CROSSLINKS ---------- */
.page-crosslinks { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-bg); }
.cl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (max-width: 768px) { .cl-grid { grid-template-columns: 1fr; } }

.cl-card {
  display: block;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cl-card:hover { transform: translateY(-4px); border-color: var(--c-accent); box-shadow: var(--sh-lg); }
.cl-card-alt { background: var(--c-ink); color: var(--c-cream); border-color: var(--c-ink); }
.cl-card-alt:hover { background: var(--c-green); border-color: var(--c-green); }

.cl-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-4);
}
.cl-card-alt .cl-eyebrow { color: #FF8B73; }
.cl-card h3 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--s-3);
}
.cl-card h3 em { color: var(--c-accent); font-style: italic; }
.cl-card-alt h3 em { color: #FF8B73; }
.cl-card p { font-size: 1rem; line-height: 1.55; color: var(--c-ink-soft); margin-bottom: var(--s-5); max-width: 50ch; }
.cl-card-alt p { color: rgba(244, 236, 219, 0.78); }
.cl-link {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 2px;
}
.cl-card-alt .cl-link { color: #FF8B73; border-bottom-color: #FF8B73; }

/* ---------- STORY PAGE ---------- */
.long-story {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--c-bg);
}
.long-story .container {
  max-width: 880px;
}
.long-block {
  margin-bottom: clamp(60px, 8vw, 110px);
}
.long-block:last-child { margin-bottom: 0; }
.long-block h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--s-6);
}
.long-block h2 em { color: var(--c-accent); font-style: italic; }
.long-block p {
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.long-block p.first-line::first-line {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.005em;
}
.long-block .pullquote {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500; font-style: italic;
  line-height: 1.3;
  color: var(--c-accent);
  border-left: 3px solid var(--c-accent);
  padding: var(--s-3) 0 var(--s-3) var(--s-6);
  margin: var(--s-8) 0;
}
.long-block figure {
  margin: var(--s-8) 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.long-block figure img { width: 100%; height: 100%; object-fit: cover; }
.long-block figcaption {
  margin-top: var(--s-3);
  font-size: 12px;
  font-style: italic;
  color: var(--c-ink-muted);
  letter-spacing: 0.05em;
}

.story-num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  margin-bottom: var(--s-3);
}

/* ---------- LOCATIONS PAGE ---------- */
.loc-page-block {
  padding: clamp(60px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--c-border);
}
.loc-page-block:nth-child(even) { background: var(--c-bg-2); }
.loc-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 968px) { .loc-page-grid { grid-template-columns: 1fr; } }

.loc-page-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
}
.loc-page-img img { width: 100%; height: 100%; object-fit: cover; }

.loc-page-text {
  max-width: 560px;
}
.loc-page-text .display {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: var(--s-3);
}
.loc-page-tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-ink-soft);
  margin-bottom: var(--s-5);
}
.loc-page-text address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin-bottom: var(--s-6);
}
.loc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.loc-detail {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
}
.loc-detail span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-ink-muted);
  display: block;
  margin-bottom: 4px;
}
.loc-detail strong {
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--c-ink);
}

.loc-rooms {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1.5px dashed var(--c-border);
}
.loc-rooms h4 {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: var(--s-3);
}
.loc-rooms ul {
  display: flex; flex-direction: column; gap: var(--s-2);
}
.loc-rooms li {
  font-size: 14px; color: var(--c-ink-soft);
  display: flex; gap: var(--s-2);
}
.loc-rooms li span { color: var(--c-accent); font-weight: 700; }

.loc-page-actions {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}

/* ---------- VISIBILITY/CONTRAST ---------- */
.eyebrow { color: var(--c-accent); }
