/* Tick Tok Café & Patisserie - Mockup Styles
   Brand: black #0A0A0A, warm cream #F5EFE4, brass accent #B89058.
   Voice: Williamstown waterfront, heritage iron lace, owl + clock + cogs character.
*/

:root {
  /* Palette - sourced from logo (black background, white owl) + warm hospitality cream + brass cog reference */
  --ink:        #0A0A0A;
  --ink-soft:   #161412;
  --ink-mid:    #2A2622;
  --paper:      #FAF6EE;
  --cream:      #F5EFE4;
  --cream-deep: #ECE3D2;
  --line:       #E5DDD0;
  --line-dark:  #1F1B17;
  --brass:      #B89058;
  --brass-dark: #8C6A3D;
  --brass-soft: #D4B585;
  --grey-700:   #4A4641;
  --grey-500:   #6B6259;
  --grey-300:   #9C948A;
  --white:      #FFFFFF;
  --success:    #2F7D3E;

  /* Layout */
  --max:    1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 6px;
  --radius-lg: 14px;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-hero:    'Archivo', 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-dark); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--ink); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  color: var(--ink);
  font-variation-settings: 'opsz' 100;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); font-weight: 600; }
h4 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; color: var(--ink); }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left:  var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(245, 239, 228, 0.78); }
.section-dark a { color: var(--brass-soft); }
.section-dark a:hover { color: var(--white); }

.section-cream {
  background: var(--cream);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: var(--brass-soft); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-title { margin-bottom: 0.6em; }
.section-lede { color: var(--grey-500); font-size: 1.075rem; }
.section-dark .section-lede { color: rgba(245, 239, 228, 0.7); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Preloader (mechanical clock feel) ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader-clock {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-mark {
  width: auto;
  height: 96px;
  display: block;
  /* Discrete tick - hard step instead of smooth ease, like a wall clock's second hand */
  animation: preloader-tick 1s steps(2, jump-none) infinite;
}
/* Orbital second-hand dot circling the logo in 12 discrete ticks per revolution */
.preloader-hand {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(10, 10, 10, 0.12);
  animation: preloader-orbit 12s steps(12, end) infinite;
}
.preloader-hand::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(184, 144, 88, 0.2);
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloader-tick {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.04); opacity: 1; }
}
@keyframes preloader-orbit {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-mark,
  .preloader-hand { animation: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

.btn-brass {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass);
}
.btn-brass:hover { background: var(--brass-dark); border-color: var(--brass-dark); color: var(--white); }
/* On dark sections the brass button reads better with dark text */
.section-dark .btn-brass { color: var(--ink); }
.section-dark .btn-brass:hover { color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 228, 0.4);
}
.btn-ghost:hover { background: rgba(245, 239, 228, 0.08); border-color: var(--cream); color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 228, 0.55);
}
.btn-ghost-light:hover { background: rgba(245, 239, 228, 0.12); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--brass);
  padding-bottom: 2px;
  transition: gap .15s ease;
}
.link-arrow:hover { color: var(--brass-dark); }

/* ---------- Header (light) ---------- */

.site-header {
  position: relative;
  z-index: 50;
  color: var(--ink);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: var(--cream);
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  transform: translateY(0);
  transition: transform .3s ease, background .25s ease, padding .25s ease;
}
.site-header.is-scrolled.is-hidden {
  transform: translateY(-110%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.brand-logo {
  width: auto;
  height: 56px;
  display: block;
  transition: height .2s ease;
}
.site-header.is-scrolled .brand-logo { height: 44px; }
@media (max-width: 520px) {
  .brand-logo { height: 48px; }
  .site-header.is-scrolled .brand-logo { height: 40px; }
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.pill-nav-items {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header-cta { margin-right: 0.25rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.pill:hover {
  background: rgba(10, 10, 10, 0.06);
  color: var(--ink);
}
.pill-trigger {
  display: none;
  border: 1px solid rgba(10, 10, 10, 0.2);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
@media (max-width: 820px) {
  .pill-trigger { display: inline-flex; }
  .pill-nav-items {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-width .35s ease, opacity .25s ease;
  }
  .site-header[data-nav-open="true"] .pill-nav-items {
    max-width: 600px;
    opacity: 1;
    pointer-events: auto;
  }
  .header-cta { display: none; }
}
.pill-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 14px;
}
.pill-icon .bar {
  display: block;
  height: 1.5px;
  background: currentColor;
  width: 100%;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header[data-nav-open="true"] .pill-icon {
  position: relative;
  height: 14px;
}
.site-header[data-nav-open="true"] .pill-icon .bar:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-header[data-nav-open="true"] .pill-icon .bar:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ---------- Hero (light, split) ---------- */

.hero-split {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 5rem);
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.hero-left { display: flex; flex-direction: column; gap: 2rem; }
.hero-right { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 0.5rem; }

.hero-title-big {
  font-family: var(--font-hero);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  max-width: 26ch;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-large {
  padding: 1.1rem 1.9rem;
  font-size: 0.95rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}
.rating-pill strong { font-weight: 700; }

.hero-lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--grey-700);
  max-width: 46ch;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-700);
  align-self: flex-start;
}

/* Stars + dot */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F7D3E;
  box-shadow: 0 0 0 3px rgba(47, 125, 62, 0.18);
}
.dot.closed { background: #C0392B; box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18); }
.stars { color: var(--brass-dark); letter-spacing: 1px; font-size: 1.1rem; }
.star-half {
  position: relative;
  display: inline-block;
  color: rgba(184, 144, 88, 0.28);
}
.star-half::before {
  content: "★";
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  overflow: hidden;
  color: var(--brass-dark);
}

/* Hero feature image below */
.hero-feature {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.hero-feature img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -25px rgba(10, 10, 10, 0.25);
}

@media (max-width: 820px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-feature img {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- About ---------- */

.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-copy h2 { margin-bottom: 1.1rem; }
.about-copy p {
  color: var(--grey-700);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-art {
  position: relative;
}
.about-art img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 60px -25px rgba(10, 10, 10, 0.35);
}
.about-art figcaption {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Gallery strip (parallax marquee) ---------- */

.gallery-strip {
  background: var(--cream);
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  width: max-content;
  animation: gallery-scroll 50s linear infinite;
  padding: clamp(1rem, 2vw, 1.5rem) 0; /* room for rotated/translated items to breathe */
}
.gallery-strip:hover .gallery-track { animation-play-state: paused; }

.gallery-item {
  flex-shrink: 0;
  width: clamp(170px, 20vw, 260px);
  height: clamp(170px, 20vw, 260px);
  overflow: hidden;
  box-shadow: 0 24px 40px -28px rgba(10, 10, 10, 0.35);
  position: relative;
  transition: transform .4s ease;
}
/* Inset vignette so the shape edge stays defined against the cream strip
   when an image happens to have light content at its border. */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 10, 0.08),
    inset 0 0 24px rgba(10, 10, 10, 0.18);
  z-index: 1;
}
.gallery-circle  { border-radius: 50%; }
.gallery-rounded { border-radius: clamp(20px, 2vw, 36px); }

/* Stagger - alternating vertical offset + slight rotation for the "curated" feel */
.gallery-item:nth-child(4n+1) { transform: translateY(-14px) rotate(-2.2deg); }
.gallery-item:nth-child(4n+2) { transform: translateY( 12px) rotate( 1.6deg); }
.gallery-item:nth-child(4n+3) { transform: translateY( -6px) rotate( 2.4deg); }
.gallery-item:nth-child(4n)   { transform: translateY( 16px) rotate(-1.4deg); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transform: scale(1.18);
  transform-origin: center;
  will-change: transform;
  transition: transform .4s ease;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
  .gallery-strip { overflow-x: auto; }
  .gallery-item img { transform: none !important; }
}

/* ---------- Menu (tabbed) ---------- */

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
  padding-bottom: 0.5rem;
}
.menu-tab {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(245, 239, 228, 0.55);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.is-active {
  color: var(--ink);
  background: var(--brass-soft);
  border-color: var(--brass-soft);
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; }

.menu-panel-note {
  text-align: center;
  color: rgba(245, 239, 228, 0.55);
  font-style: italic;
  margin: 0 0 2rem;
  font-size: 0.92rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list-compact { gap: 1rem 3rem; }

.menu-item { color: rgba(245, 239, 228, 0.85); }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.menu-item-head h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  margin: 0;
  line-height: 1.25;
  flex-shrink: 0;
}
.menu-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(245, 239, 228, 0.25);
  transform: translateY(-4px);
  min-width: 1rem;
}
.menu-price {
  color: var(--brass-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
}
.menu-item p {
  color: rgba(245, 239, 228, 0.62);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}
.menu-tags {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-soft);
  font-weight: 600;
}

.menu-sub-title {
  font-family: var(--font-display);
  color: var(--brass-soft);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 144, 88, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu-sub-title:first-child { margin-top: 0; }
.menu-sub-price {
  color: var(--brass-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
}
.menu-flavor-list {
  color: rgba(245, 239, 228, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.menu-modifier {
  color: rgba(245, 239, 228, 0.45);
  font-size: 0.78rem;
  font-style: italic;
  margin: 1rem 0 0;
  line-height: 1.5;
}

.menu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 820px) {
  .menu-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-list { grid-template-columns: 1fr; gap: 1.5rem; }
}

.menu-foot {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
}
.menu-foot p { color: rgba(245, 239, 228, 0.6); font-size: 0.9rem; }

/* ---------- The Space ---------- */

.space { background: var(--cream); }
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.space-card {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.space-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 50px -32px rgba(10, 10, 10, 0.4);
  margin-bottom: 1.75rem;
  transition: transform .35s ease;
}
.space-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(10, 10, 10, 0.08),
    inset 0 0 30px rgba(10, 10, 10, 0.2);
  z-index: 1;
}
.space-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform .5s ease;
}
.space-card:hover .space-media img { transform: scale(1.1); }

/* Alternating shape + tilt - matches the gallery strip aesthetic */
.space-card:nth-child(1) .space-media { border-radius: 50%; transform: rotate(-2deg); }
.space-card:nth-child(2) .space-media { border-radius: clamp(28px, 3vw, 44px); transform: rotate(1.5deg); }
.space-card:nth-child(3) .space-media { border-radius: 50%; transform: rotate(-1.5deg); }
.space-card:hover .space-media { transform: rotate(0); }

.space-body {
  padding: 0 0.5rem;
  max-width: 36ch;
}
.space-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}
.space-body p {
  color: var(--grey-700);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.space-list {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  padding: 0;
}
.space-list li {
  position: relative;
  padding-left: 0;
  color: var(--grey-700);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.space-list li::before { content: none; }
.space-list li + li::before {
  content: "·";
  position: absolute;
  left: -0.7rem;
  top: 0;
  color: var(--brass);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Reservations ---------- */

.reservations { background: var(--cream); }
.reservations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.reservations-copy h2 { margin-bottom: 1.1rem; }
.reservations-copy p { color: var(--grey-700); }

.check-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--grey-700);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 22px; height: 22px;
  background: var(--brass);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.reservations-fallback {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.booking-widget {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 1.85rem;
  box-shadow: 0 30px 60px -25px rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(184, 144, 88, 0.25);
}
.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(184, 144, 88, 0.2);
}
.booking-eyebrow {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}
.booking-powered {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.7);
  font-weight: 600;
}
.booking-form select,
.booking-form input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(245, 239, 228, 0.06);
  color: var(--cream);
  border: 1px solid rgba(245, 239, 228, 0.18);
  border-radius: var(--radius);
  appearance: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.booking-form select:focus,
.booking-form input:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  background: rgba(245, 239, 228, 0.1);
}
.booking-form input::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(0.5) hue-rotate(0deg);
  cursor: pointer;
}
.booking-form .btn-brass { margin-top: 0.5rem; }
.booking-note {
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.55);
  margin: 0.85rem 0 0;
  text-align: center;
  line-height: 1.5;
}

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}
.visit-address {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 2rem;
}

.hours {
  margin-bottom: 2rem;
}
.hours-title {
  margin-bottom: 0.85rem;
  color: var(--brass-soft);
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184, 144, 88, 0.18);
  color: var(--cream);
  font-weight: 500;
}
.hours-row-sub {
  font-size: 0.9rem;
  color: rgba(245, 239, 228, 0.65) !important;
  padding-left: 1rem !important;
  font-weight: 400 !important;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--cream);
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  font-weight: 600;
}
.contact-value {
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-item:hover .contact-value { color: var(--brass-soft); }

.visit-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(184, 144, 88, 0.3);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(0.2) contrast(0.95);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(245, 239, 228, 0.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-mark {
  width: auto;
  height: 80px;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-col h4 {
  color: var(--brass-soft);
  margin-bottom: 1rem;
}
.footer-col p, .footer-social a {
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-col a { color: var(--cream); }
.footer-col a:hover { color: var(--brass-soft); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-base {
  border-top: 1px solid rgba(184, 144, 88, 0.16);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.footer-base-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-base p { margin: 0; }
.footer-credit a { color: var(--brass-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid,
  .reservations-grid,
  .visit-grid,
  .space-grid {
    grid-template-columns: 1fr;
  }
  .about-art img { aspect-ratio: 4 / 3; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  /* Full-page overlay nav on mobile */
  .pill-trigger { z-index: 60; position: relative; }
  .brand { z-index: 60; position: relative; }

  .pill-nav-items {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: clamp(6rem, 18vw, 8rem) clamp(1.75rem, 6vw, 3rem) 2rem;
    margin: 0;
    border-radius: 0;
    max-height: none;
    max-width: none;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .3s ease;
    z-index: 55;
  }
  .site-header[data-nav-open="true"] .pill-nav-items {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .pill-nav-items li { width: 100%; }
  .pill-nav-items .pill {
    width: 100%;
    justify-content: flex-start;
    font-family: var(--font-hero);
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.65rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--ink);
  }
  .pill-nav-items .pill:hover {
    background: transparent;
    color: var(--brass-dark);
  }
  /* Lock the underlying page when the overlay is up so the user can't scroll behind it */
  body.nav-locked { overflow: hidden; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-base-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .hero-title-big { font-size: clamp(2rem, 9vw, 3rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
