/* ============================================================
   THE STORYLINE — Global Stylesheet
   Palette: #FAFAF8 (bg) · #111111 (ink) · #FFFFFF (white)
   Fonts: Sora (sans) · Fraunces (serif display)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:        #FAFAF8;
  --ink:       #111111;
  --white:     #FFFFFF;
  --gray-light:#F0EEEB;
  --gray-mid:  #D4D2CE;
  --gray-dark: #888884;

  --font-sans: 'Sora', system-ui, sans-serif;
  --font-serif:'Fraunces', Georgia, serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 11rem;

  --max-w:     1280px;
  --nav-h:     72px;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
}
:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 3px;
}

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-sm {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.serif-display {
  font-family: var(--font-serif);
  font-style: italic;
}
.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; font-weight: 300; }
.body-md { font-size: 1rem; line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

.section { padding-block: var(--space-xl); }
.section-sm { padding-block: var(--space-lg); }
.section-inverted { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s var(--ease-out), color 0.2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
}
.btn-primary:hover { background: var(--white); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost-white:hover { background: var(--white); color: var(--ink); }

/* ── Wave Motif ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.wave-divider svg { width: 100%; display: block; }

.wave-underline {
  display: block;
  width: 260px;
  height: 30px;
  margin-top: 0.4rem;
}
.wave-underline--wide { width: 100%; max-width: 360px; }
.wave-underline--white path { stroke: var(--white); }

/* ── Animated wave band ── */
.wave-band {
  height: 68px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="68"><path d="M0,34 Q22.5,16 45,34 Q67.5,52 90,34" fill="none" stroke="%23111111" stroke-width="8" stroke-linecap="butt"/></svg>');
  background-repeat: repeat-x;
  background-size: 90px 68px;
  background-position-y: center;
  animation: wave-flow 0.8s linear infinite;
}
@keyframes wave-flow {
  from { background-position-x: 0px; }
  to   { background-position-x: -90px; }
}
@media (prefers-reduced-motion: reduce) { .wave-band { animation: none; } }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(17,17,17,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img, .nav-logo svg { height: 56px; width: auto; }
.nav-logo-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-top: 1px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav-phone:hover { background: var(--white); color: var(--ink); }
.nav-hamburger {
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow: auto;
}
.nav-overlay.open { transform: translateX(0); }
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 3rem;
}
.nav-overlay-links a {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  border-bottom: 1.5px solid var(--gray-light);
  padding-block: 0.6rem;
  transition: color 0.2s;
}
.nav-overlay-links a:hover { color: var(--gray-dark); }
.nav-overlay-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-overlay-contact a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media (min-width: 900px) {
  .nav-links   { display: flex; }
  .nav-phone   { display: flex; }
  .nav-hamburger { display: none; }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100svh - var(--nav-h));
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) clamp(1.5rem, 5vw, 4rem);
}
.hero-video-col {
  position: relative;
  overflow: hidden;
  background: #FAFAF8;
}
.hero-video-col video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% bottom;
  display: block;
  filter: brightness(1.08) saturate(0.6);
}
.hero-video-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #FAFAF8 0%, transparent 28%),
    linear-gradient(to left,  #FAFAF8 0%, transparent 12%),
    linear-gradient(to bottom, #FAFAF8 0%, transparent 12%),
    linear-gradient(to top,    #FAFAF8 0%, transparent 12%);
  pointer-events: none;
  z-index: 1;
}
.hero-headline { max-width: 18ch; font-size: clamp(2.5rem, 6.5vw, 5rem); }
.hero-tagline  { max-width: 44ch; margin-top: 1.5rem; }
.hero-actions  { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 768px) {
  .hero {
    min-height: unset;
  }
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
    min-height: unset;
  }
  .hero-video-col {
    order: -1;
    border-left: none;
    border-bottom: 1.5px solid var(--ink);
    height: 60vw;
    min-height: 220px;
  }
  .hero-text-col {
    justify-content: flex-start;
    padding: var(--space-lg) clamp(1.25rem, 5vw, 2rem) var(--space-xl);
  }
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-lg);
}
.page-hero-inner { max-width: 700px; }

/* ── Cards ── */
.card {
  border: 1.5px solid var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
  border-bottom: 1.5px solid var(--ink);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}
.card:hover .card-img img { transform: scale(1.04); filter: grayscale(100%) contrast(1.2); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}
.card-title { font-weight: 700; font-size: 1.25rem; line-height: 1.2; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.card-text { font-size: 0.9rem; opacity: 0.7; line-height: 1.65; flex: 1; }
.card-action { margin-top: 1.5rem; }

/* Pillar cards (large, feature) */
.pillar-card {
  position: relative;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar-card-art {
  position: absolute;
  inset: 0;
  background: var(--gray-light);
}
.pillar-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
}
.pillar-card-art--illus {
  position: relative;
  inset: auto;
  background: var(--bg);
}
.pillar-card-art--illus img {
  width: 100%;
  height: auto;
  object-fit: initial;
  filter: none;
  display: block;
  animation: pillar-illus-float 5s ease-in-out infinite alternate;
  transform-origin: center bottom;
}
@keyframes pillar-illus-float {
  from { transform: translateY(0px); }
  to   { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .pillar-card-art--illus img { animation: none; }
}
.pillar-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: var(--bg);
  border-top: 1.5px solid var(--ink);
}
.pillar-card-inverted .pillar-card-body { background: var(--ink); color: var(--white); }
.pillar-card-inverted .pillar-card-body .btn-ghost { border-color: var(--white); color: var(--white); }
.pillar-card-inverted .pillar-card-body .btn-ghost:hover { background: var(--white); color: var(--ink); }

/* Icon cards */
.icon-card {
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.icon-card-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-card-icon svg { width: 28px; height: 28px; }
.icon-card-title { font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
.icon-card-text  { font-size: 0.875rem; opacity: 0.65; line-height: 1.6; }

/* ── Section Headers ── */
.section-header { margin-bottom: var(--space-lg); }
.section-header-split {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
@media (min-width: 900px) {
  .section-header-split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ── Two-column Brand Story ── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 900px) {
  .brand-story { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .brand-story.reverse > *:first-child { order: 2; }
  .brand-story.reverse > *:last-child  { order: 1; }
}
.brand-story-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  background: var(--gray-light);
}
.brand-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}
.brand-story-img.art-contain img {
  object-fit: contain;
  background: var(--bg);
  padding: 2rem;
}
.brand-story-text { display: flex; flex-direction: column; gap: 1.25rem; }
.brand-story-text .display-sm { max-width: 16ch; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1.5px solid var(--ink);
}
.testimonial-item {
  padding: 2rem;
  border-bottom: 1.5px solid var(--ink);
}
.testimonial-item:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-item {
    border-right: 1.5px solid var(--ink);
    border-bottom: none;
  }
  .testimonial-item:last-child { border-right: none; }
  .testimonial-item:nth-child(2n) { border-right: none; }
  .testimonial-item:nth-child(-n+2) { border-bottom: 1.5px solid var(--ink); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-item:nth-child(2n) { border-right: 1.5px solid var(--ink); }
  .testimonial-item:nth-child(3n) { border-right: none; }
  .testimonial-item:nth-child(-n+2) { border-bottom: none; }
  .testimonial-item:nth-child(-n+3) { border-bottom: 1.5px solid var(--ink); }
  .testimonial-item:nth-child(n+4)  { border-bottom: none; }
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.testimonial-author span { display: block; font-weight: 400; opacity: 0.5; margin-top: 2px; }

/* ── Gallery Strip ── */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink);
  overflow: hidden;
}
@media (min-width: 640px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.22) brightness(0.88);
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
}
.gallery-item-art img {
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  max-height: 100%;
}
.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--gray-light);
  gap: 0.5rem;
  text-align: center;
}
.gallery-item-placeholder p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ── Menu ── */
.menu-section { border-top: 1.5px solid var(--ink); padding-top: 2.5rem; margin-top: 2.5rem; }
.menu-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.menu-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-mid);
}
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--gray-light);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 600; font-size: 1rem; }
.menu-item-desc { font-size: 0.8rem; opacity: 0.55; margin-top: 0.25rem; font-weight: 300; }
.menu-item-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Schedule Table ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border: 1.5px solid var(--ink);
}
.schedule-table th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  text-align: left;
}
.schedule-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
  vertical-align: top;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid var(--gray-light);
  width: 140px;
}
.schedule-table tr:nth-child(even) td { background: var(--gray-light); }

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink);
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  padding: 2rem;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.team-card:last-child { border-right: none; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: 1.5px solid var(--ink);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar svg { width: 40px; height: 40px; opacity: 0.4; }
.team-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.75rem; }
.team-bio  { font-size: 0.875rem; opacity: 0.65; line-height: 1.6; }

/* ── Values ── */
.value-list { display: flex; flex-direction: column; }
.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1.5px solid var(--ink);
}
.value-item:last-child { border-bottom: none; }
.value-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 300;
  opacity: 0.2;
}
.value-content-title { font-weight: 700; font-size: 1.25rem; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.value-content-text  { font-size: 0.9rem; opacity: 0.65; line-height: 1.65; }

/* ── Contact / Connect ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1.5px solid var(--ink);
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-panel { padding: 2.5rem; }
.contact-panel + .contact-panel { border-top: 1.5px solid var(--ink); }
@media (min-width: 768px) {
  .contact-panel + .contact-panel { border-top: none; border-left: 1.5px solid var(--ink); }
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; }

/* ── Form ── */
.form-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
@media (min-width: 640px) {
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
.form-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-mid);
  background: transparent;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus { outline: none; border-color: var(--ink); }
.form-input::placeholder { opacity: 0.35; }
textarea.form-input { resize: vertical; min-height: 120px; font-family: inherit; }
.form-submit { margin-top: 0.5rem; }

/* ── Map ── */
.map-frame {
  width: 100%;
  aspect-ratio: 16/7;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--gray-light);
  filter: grayscale(100%) contrast(1.1);
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Hours Block ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td { padding: 0.5rem 0; font-size: 0.9rem; }
.hours-table td:first-child { font-weight: 600; padding-right: 2rem; }
.hours-table td:last-child { opacity: 0.6; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-top: 0;
  position: relative;
}
.footer-wave { display: block; line-height: 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-block: var(--space-lg) var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1fr auto auto; gap: clamp(2rem, 6vw, 5rem); } }
.footer-brand-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.footer-brand-text {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.7;
  max-width: 28ch;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-bottom {
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.35;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Misc Utilities ── */
.border-top-ink { border-top: 1.5px solid var(--ink); }
.border-bottom-ink { border-bottom: 1.5px solid var(--ink); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-white { background: var(--white); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.pt-nav { padding-top: var(--nav-h); }

/* ── Illustration Frame ── */
.illus-frame {
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: #F5F3F0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Black section text helpers ── */
.section-inverted .card { border-color: rgba(255,255,255,0.2); }
.section-inverted .card-img { border-color: rgba(255,255,255,0.2); }
.section-inverted .icon-card { border-color: rgba(255,255,255,0.15); }
.section-inverted .icon-card-icon { border-color: rgba(255,255,255,0.2); }

/* ── Café Hours banner ── */
.hours-banner {
  background: var(--ink);
  color: var(--white);
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  border-bottom: 1.5px solid var(--ink);
}
.hours-banner-item {
  text-align: center;
}
.hours-banner-item .label { opacity: 0.4; margin-bottom: 0.25rem; }
.hours-banner-item p { font-size: 1rem; font-weight: 600; }

/* ── Stat block ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1.5px solid var(--ink);
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
@media (min-width: 640px) {
  .stat-item:last-child { border-right: none; }
  .stat-item { border-bottom: none; }
}
.stat-item:nth-child(2n) { border-right: none; }
@media (min-width: 640px) {
  .stat-item:nth-child(2n) { border-right: 1.5px solid var(--ink); }
}
.stat-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.45; }

/* ── Marquee strip ── */
.marquee-strip {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-block: 0.85rem;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-item {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  flex-shrink: 0;
}
.marquee-sep {
  opacity: 0.2;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Page-specific responsive layouts ── */

/* Café: menu + art column */
@media (min-width: 900px) {
  #menu-layout {
    grid-template-columns: 1fr 380px !important;
    gap: var(--space-xl) !important;
  }
  #tour-layout {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Connect: contact info rows — stack on mobile */
.contact-row-2col {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-row-2col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Details / FAQ open state */
details[open] > summary span[aria-hidden] {
  transform: rotate(45deg);
  display: inline-block;
}
details summary::-webkit-details-marker { display: none; }
details summary { user-select: none; }

/* ── Café hero illustration (right column) ── */
.cafe-hero-illus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .cafe-hero-illus { display: none; }
}

/* ── Menu photo collage ── */
.menu-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.menu-collage-grid .illus-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
}
.menu-collage-grid .illus-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .menu-collage-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
}

/* ── Full Menu Modal ── */
#full-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#full-menu-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-header {
  position: sticky;
  top: 0;
  background: var(--ink);
  border-bottom: 1.5px solid rgba(255,255,255,0.1);
  padding: 1.25rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  flex-shrink: 0;
}
.modal-close {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.modal-close:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}
.modal-inner {
  overflow-y: auto;
  flex: 1;
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem) 5rem;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 6vw, 5rem);
}
#full-menu-modal .menu-section-title {
  color: rgba(255,255,255,0.85);
}
#full-menu-modal .menu-item-name {
  color: rgba(255,255,255,0.8);
}
#full-menu-modal .menu-item-desc {
  color: rgba(255,255,255,0.38);
}
#full-menu-modal .menu-item-price {
  color: rgba(255,255,255,0.5);
}
#full-menu-modal .menu-section {
  border-top-color: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  .modal-grid { grid-template-columns: 1fr; }
}

/* ── Print ── */
@media print {
  .site-header, .nav-overlay, .wave-divider,
  .marquee-strip, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; opacity: .5; }
}
