/*
Theme Name: ECH Hub
Theme URI: https://echgallery.com
Author: Elevated Creative Hub
Description: Dark industrial-gallery theme for Elevated Creative Hub & Cafe — gallery, studio, and cafe space in Brooklyn, NY.
Version: 1.0.6
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: ech-hub
*/

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:        #0a0a0b;
  --bg-1:      #111114;
  --bg-2:      #16161a;
  --bg-3:      #1d1d22;
  --line:      #2a2a31;
  --line-2:    #3a3a43;
  --ink:       #F5F4F2;
  --ink-dim:   #a8a6a0;
  --ink-faint: #6b6a66;
  --ember:     #E63946;
  --cobalt:    #0077B6;
  --red:       #FF3B2E;
  --blue:      #2E7BFF;
  --amber:     #FF8A1F;
  --grad:      linear-gradient(135deg, #E63946 0%, #0077B6 100%);
  --display:   'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, monospace;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--eas-paper);
  color: var(--eas-black);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ember); color: white; }

/* ─── Typography Utilities ────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.92;
}
.mono {
  font-family: var(--mono);
  font-feature-settings: 'ss01';
  letter-spacing: 0.02em;
}
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.section-pad { padding: 96px 48px; }
.container { max-width: 1440px; margin: 0 auto; }
.divider { height: 1px; background: var(--line); width: 100%; }

/* ─── Noise / Grain overlay ───────────────────────────────── */
.noise-bg { position: relative; }
.noise-bg::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ─── Gradient Accent ─────────────────────────────────────── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-border {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.grad-border::before {
  content: '';
  position: absolute; inset: -2px;
  background: var(--grad);
  border-radius: inherit;
  z-index: -1;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10,10,11,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav-shell.scrolled {
  padding: 14px 48px;
  background: rgba(10,10,11,0.92);
  border-bottom-color: rgba(255,255,255,0.07);
}
.brand-mark { display: flex; align-items: center; min-width: 0; }
.brand-logo { height: 120px; width: auto; object-fit: contain; object-position: left center; }
.brand-name {
  font-family: var(--display);
  font-size: 24px; font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-dim); text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: 16px; font-weight: 500; color: var(--ink-dim);
  transition: color .2s; position: relative; padding-bottom: 2px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad);
}
.cta-book {
  padding: 12px 22px;
  font-size: 14px; font-weight: 600;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, background .2s, color .2s;
}
.cta-book:hover { background: var(--ember); color: var(--ink); transform: translateY(-1px); }
.cta-book .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(230,57,70,0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0   rgba(230,57,70,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(230,57,70,0);   }
  100% { box-shadow: 0 0 0 0   rgba(230,57,70,0);   }
}

/* Mobile menu */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { transform: translateX(0); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  background: #1a1a1a;
}
#ech-beams-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  filter: blur(18px);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 80px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim);
}
.hero-meta .ml { display: flex; gap: 32px; }
.hero-meta .blink { color: var(--ember); animation: blink 1.5s step-end infinite; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Staggered Fade-In */
.hero-title {
  font-family: var(--display);
  font-size: clamp(72px, 13vw, 210px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.hero-title .row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-title .fade-word {
  opacity: 0;
  animation: staggerFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .fade-word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .fade-word:nth-child(2) { animation-delay: 0.35s; }
.hero-title .fade-word:nth-child(3) { animation-delay: 0.6s; }
.hero-title .dash-fade {
  opacity: 0;
  animation: staggerFadeUp 0.6s ease forwards;
}
.hero-title .dash-fade:nth-of-type(1) { animation-delay: 0.25s; }
.hero-title .dash-fade:nth-of-type(2) { animation-delay: 0.5s; }
@keyframes staggerFadeUp {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-title .word-create  { color: var(--ink); }
.hero-title .word-capture { color: var(--ink); font-style: italic; }
.hero-title .word-connect { color: var(--ink); }
.hero-title .dash {
  display: inline-block; width: 72px; height: 7px;
  background: var(--grad); border-radius: 4px;
}
.hero-title .dash.cobalt { background: linear-gradient(90deg, var(--cobalt), var(--blue)); }

.hero-bottom {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 40px; align-items: end;
  padding-top: 60px;
  opacity: 0;
  animation: staggerFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.9s forwards;
}
.hero-blurb { font-size: 16px; line-height: 1.6; color: var(--ink-dim); max-width: 420px; }
.hero-blurb b { color: var(--ink); font-weight: 500; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  padding: 17px 26px;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all .22s; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--ember); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-grad {
  background: var(--grad);
  color: white;
}
.btn-grad:hover { opacity: 0.88; transform: translateY(-2px); }

.hero-stats { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; text-align: right; }
.hero-stat .num { font-family: var(--display); font-size: 44px; line-height: 1; }
.hero-stat .lbl { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-dim); margin-top: 6px; }
.hero-stat .num .accent-e { color: var(--ember); }
.hero-stat .num .accent-c { color: var(--cobalt); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-dim);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-cue .l {
  width: 1px; height: 28px; background: var(--ink-dim);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0.4); transform-origin: top; }
  50%      { transform: scaleY(1);   transform-origin: top; }
}

/* ─── Ticker ──────────────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-1);
}
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: tickerScroll 42s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--display); font-size: 26px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 48px;
}
.ticker-track .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.ticker-track .dot-e { background: var(--ember); }
.ticker-track .dot-c { background: var(--cobalt); }
.ticker-track .dot-a { background: var(--amber); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Header ──────────────────────────────────────── */
.sec-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: end;
  margin-bottom: 56px;
}
.sec-head .left { display: flex; flex-direction: column; gap: 16px; }
.sec-head .num  { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.18em; }
.sec-head .lbl  { font-family: var(--mono); font-size: 12px; color: var(--ink); letter-spacing: 0.18em; text-transform: uppercase; }
.sec-head .ttl  { font-family: var(--display); font-size: clamp(44px, 6vw, 84px); line-height: 0.95; letter-spacing: -0.03em; }
.sec-head .ttl em  { font-style: italic; color: var(--ember); }
.sec-head .ttl .c  { color: var(--cobalt); font-style: italic; }
.sec-head .ttl .am { color: var(--amber); font-style: italic; }

/* ─── Gallery ─────────────────────────────────────────────── */
.gallery-controls {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
  align-items: center; justify-content: space-between;
}
.gal-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-dim); transition: all .15s; cursor: pointer; background: transparent;
}
.chip:hover { color: var(--ink); border-color: var(--line-2); }
.chip.on    { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* FooGallery dark mode overrides */
.foogallery-container {
  background: var(--bg) !important;
  --fg-thumb-border-color: var(--line) !important;
  --fg-thumb-bg: var(--bg-2) !important;
}
.foogallery-container .fg-item { background: var(--bg-2) !important; }
.foogallery-container .fg-item-caption { background: rgba(10,10,11,0.9) !important; color: var(--ink) !important; }
.foogallery-container .fg-item-caption-title { font-family: var(--display) !important; color: var(--ink) !important; }
.foogallery-container .fg-item-caption-desc  { color: var(--ink-dim) !important; }
.foogallery-container .fg-load-more { background: var(--bg-1) !important; border-color: var(--line) !important; color: var(--ink) !important; }

/* Masonry fallback gallery (when FooGallery not active) */
.masonry { column-count: 4; column-gap: 16px; }
@media (max-width: 1100px) { .masonry { column-count: 3; } }
@media (max-width: 720px)  { .masonry { column-count: 2; } }

.art-card {
  break-inside: avoid; margin-bottom: 16px;
  position: relative; overflow: hidden; border-radius: 6px;
  cursor: pointer; background: var(--bg-2);
  transition: transform .3s;
}
.art-card:hover { transform: translateY(-4px); }
.art-swatch {
  width: 100%; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.art-swatch img, .art-swatch .swatch-ph {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.art-card:hover .art-swatch img,
.art-card:hover .art-swatch .swatch-ph { transform: scale(1.06); }
.art-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.4) 50%, transparent 80%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.art-card:hover .art-overlay { opacity: 1; }
.art-overlay .a-title  { font-family: var(--display); font-size: 20px; line-height: 1.05; margin-bottom: 4px; }
.art-overlay .a-artist { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-dim); margin-bottom: 12px; }
.art-overlay .a-row    { display: flex; justify-content: space-between; align-items: center; }
.art-overlay .a-price  { font-family: var(--mono); font-size: 12px; color: var(--amber); }
.art-overlay .a-btn    { font-size: 11px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.14em; padding: 7px 12px; background: var(--ink); color: var(--bg); border-radius: 999px; }
.art-tag-corner { position: absolute; top: 12px; left: 12px; z-index: 2; }
.tag-pill {
  font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 4px 8px; background: rgba(0,0,0,0.65); border-radius: 999px;
  backdrop-filter: blur(6px); color: var(--ink);
}

/* ─── Booking ─────────────────────────────────────────────── */
.book-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px;
}
.cal-card, .form-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 28px;
}
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cal-month { font-family: var(--display); font-size: 28px; font-weight: 700; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s; cursor: pointer;
}
.cal-nav button:hover { background: var(--bg-2); border-color: var(--line-2); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-dow {
  font-family: var(--mono); font-size: 10px; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.14em; text-align: center; padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 8px; font-size: 14px; position: relative;
  cursor: pointer; transition: all .15s; border: 1px solid transparent;
  background: transparent; color: var(--ink);
}
.cal-day.empty { cursor: default; }
.cal-day.avail { background: var(--bg-2); }
.cal-day.avail:hover { background: var(--bg-3); border-color: var(--cobalt); }
.cal-day.booked { background: rgba(230,57,70,0.12); color: var(--ember); cursor: not-allowed; text-decoration: line-through; }
.cal-day.partial { background: rgba(255,138,31,0.12); color: var(--amber); }
.cal-day.partial:hover { background: rgba(255,138,31,0.22); border-color: var(--amber); }
.cal-day.selected { background: var(--grad); color: white; border-color: transparent; }
.cal-day.today { font-weight: 700; }
.cal-day .dot-i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; margin-top: 3px; }
.cal-legend { display: flex; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.leg-item { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-dim); }
.leg-sw { width: 12px; height: 12px; border-radius: 4px; }

.space-info {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  margin-bottom: 24px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.space-stat .v { font-family: var(--display); font-size: 32px; font-weight: 700; line-height: 1; }
.space-stat .l { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-dim); margin-top: 6px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-dim); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink); font-size: 14px; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cobalt); }
.field select option { background: var(--bg-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
  width: 100%; padding: 16px; border-radius: 999px;
  background: var(--grad); color: white;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .2s; position: relative; overflow: hidden; cursor: pointer;
}
.submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.sent-confirm {
  padding: 20px; background: rgba(0,119,182,0.1); border: 1px solid var(--cobalt);
  border-radius: 10px; color: var(--ink); display: flex; align-items: flex-start;
  gap: 12px; margin-top: 14px;
}

/* ─── Cafe ────────────────────────────────────────────────── */
.cafe-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cafe-card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 18px;
  padding: 32px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; transition: all .25s;
}
.cafe-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.cafe-card .num-badge { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-faint); }
.cafe-card .icon-glyph {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 24px;
}
.cafe-card.ember .icon-glyph { background: rgba(230,57,70,0.15); color: var(--ember); border: 1px solid rgba(230,57,70,0.3); }
.cafe-card.cobalt .icon-glyph { background: rgba(0,119,182,0.15); color: var(--cobalt); border: 1px solid rgba(0,119,182,0.3); }
.cafe-card.amber .icon-glyph { background: rgba(255,138,31,0.15); color: var(--amber); border: 1px solid rgba(255,138,31,0.3); }
.cafe-card h3 { font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1; margin-bottom: 12px; }
.cafe-card p  { font-size: 14px; line-height: 1.65; color: var(--ink-dim); margin-bottom: 20px; }
.cafe-card .extras { display: flex; gap: 8px; flex-wrap: wrap; }
.cafe-card .ex { font-family: var(--mono); font-size: 10px; padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-dim); }

.cafe-menu {
  margin-top: 48px;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 18px;
  padding: 36px;
  display: grid; grid-template-columns: 260px 1fr; gap: 40px;
}
.menu-head h4 { font-family: var(--display); font-size: 36px; font-weight: 700; line-height: 1; margin-bottom: 10px; }
.menu-head p  { font-size: 13px; color: var(--ink-dim); }
.menu-list { display: flex; flex-direction: column; gap: 14px; }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: baseline; padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.menu-row:last-child { border-bottom: none; }
.menu-row .name  { font-size: 15px; font-weight: 500; }
.menu-row .desc  { font-size: 12px; color: var(--ink-dim); margin-top: 2px; }
.menu-row .price { font-family: var(--mono); font-size: 14px; color: var(--amber); white-space: nowrap; }

/* ─── Hashbar ─────────────────────────────────────────────── */
.hashbar { display: flex; gap: 4px; align-items: center; margin-top: 14px; }
.hashbar .seg { height: 4px; flex: 1; background: var(--bg-2); border-radius: 2px; }
.hashbar .seg.ember  { background: var(--ember); }
.hashbar .seg.cobalt { background: var(--cobalt); }
.hashbar .seg.amber  { background: var(--amber); }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 72px 48px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  max-width: 1440px; margin: 0 auto;
}
.foot-brand .display-mark {
  font-family: var(--display); font-size: 36px; font-weight: 700;
  line-height: 0.95; margin-bottom: 16px; letter-spacing: -0.02em;
}
.foot-brand .display-mark em    { color: var(--ember); font-style: italic; }
.foot-brand .display-mark .c   { color: var(--cobalt); font-style: italic; }
.foot-brand p { font-size: 13px; color: var(--ink-dim); line-height: 1.65; max-width: 320px; }
.foot-col h5 {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-faint); margin-bottom: 16px;
}
.foot-col a { display: block; font-size: 14px; color: var(--ink-dim); margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-col .hours-row { font-size: 13px; color: var(--ink-dim); margin-bottom: 6px; display: flex; justify-content: space-between; }
.newsletter { display: flex; margin-top: 12px; }
.newsletter input { flex: 1; padding: 12px 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px 0 0 8px; color: var(--ink); }
.newsletter input:focus { outline: none; border-color: var(--cobalt); }
.newsletter button { padding: 12px 18px; background: var(--grad); color: white; border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.foot-bottom {
  max-width: 1440px; margin: 52px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.14em;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; transition: all .15s;
  color: var(--ink-dim); font-family: var(--mono); font-size: 11px;
}
.socials a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ─── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-stats  { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex !important; }
}
@media (max-width: 900px) {
  .section-pad { padding: 72px 28px; }
  .sec-head { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .cafe-grid { grid-template-columns: 1fr; }
  .cafe-menu { grid-template-columns: 1fr; }
  .space-info { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 680px) {
  .hero { padding: 120px 24px 72px; }
  .hero-meta .ml { gap: 16px; font-size: 9px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex !important; }
  .brand-logo { height: 82px; width: auto; }
  .section-pad { padding: 56px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .brand-logo { height: 70px; width: auto; }
  .brand-name { font-size: 17px; }
  .brand-sub { display: none; }
}
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; transition: all .3s; }

/* ─── Elevated Art Solutions redesign layer ─────────────── */
:root {
  --eas-gold: #C9A961;
  --eas-gold-dark: #AD8532;
  --eas-black: #111111;
  --eas-charcoal: #1c1c1c;
  --eas-cream: #f8f6f1;
  --eas-paper: #ffffff;
  --eas-muted: #6f6a61;
  --eas-line: #ded8cc;
}


.eas-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eas-nav {
  position: sticky;
  top: 0;
  height: 82px;
  padding: 0 42px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}
.eas-nav.scrolled {
  padding: 0 42px;
  background: rgba(255,255,255,0.98);
}
.eas-brand {
  min-width: 170px;
}
.eas-logo-img {
  width: 168px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}
.eas-nav .nav-links {
  gap: 44px;
}
.eas-nav .nav-link {
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 29px 0 24px;
}
.eas-nav .nav-link:hover,
.eas-nav .nav-link.active {
  color: #111;
}
.eas-nav .nav-link.active::after {
  bottom: 18px;
  height: 3px;
  background: var(--eas-gold);
}
.eas-nav .cta-book {
  border-radius: 4px;
  background: var(--eas-gold);
  color: #fff;
  padding: 15px 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eas-nav .cta-book:hover {
  background: var(--eas-gold-dark);
  color: #fff;
}
.eas-nav .cta-book .pulse,
.eas-nav .cta-book .arr {
  display: none;
}
.eas-nav .hamburger span {
  background: #111;
}

.eas-mobile-menu {
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.eas-mobile-menu.open { transform: translateX(0); }
.eas-mobile-head {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--eas-line);
}
.eas-mobile-head button {
  color: #111;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eas-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
}
.eas-mobile-links a {
  color: #111;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid var(--eas-line);
}

.eas-hero {
  position: relative;
  min-height: 560px;
  height: calc(100vh - 82px);
  max-height: 720px;
  overflow: hidden;
  background: #111;
}
.eas-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  filter: saturate(1.05);
}
.eas-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 36%, rgba(0,0,0,.18) 100%),
    radial-gradient(circle at 70% 45%, rgba(201,169,97,.16), transparent 40%);
}
.eas-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.18));
}
.eas-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.eas-hero-copy {
  width: min(680px, 100%);
  padding-top: 24px;
  margin: 0 auto;
}
.eas-hero h1 {
  font-family: var(--display);
  color: #fff;
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 800;
  margin: 0 0 24px;
}
.eas-hero h1 span {
  color: var(--eas-gold);
}
.eas-hero p {
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 34px;
  margin-left: auto;
  margin-right: auto;
}
.eas-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.eas-btn,
.eas-outline-link,
.eas-dark-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eas-btn-gold {
  background: var(--eas-gold);
  color: #fff;
}
.eas-btn-ghost {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  background: rgba(0,0,0,.18);
}
.eas-outline-link {
  border: 1px solid #111;
  color: #111;
  background: #fff;
}
.eas-dark-btn {
  background: #111;
  color: #fff;
}

.eas-section {
  padding: 78px 0;
}
.eas-section-heading span,
.eas-events-intro span,
.eas-booking-copy span,
.eas-about-copy span,
.eas-footer-col > span {
  display: block;
  color: var(--eas-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eas-centered { text-align: center; }
.eas-section-heading h2,
.eas-events-intro h2,
.eas-booking-copy h2,
.eas-about-copy h2,
.eas-footer-col h2 {
  font-family: var(--display);
  color: #111;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.eas-gallery-section {
  background: #fff;
}
.eas-carousel-wrap {
  position: relative;
  margin-top: 34px;
}
.eas-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 28px 8px;
}
.eas-gallery-track::-webkit-scrollbar { display: none; }
.eas-art-slide {
  text-align: center;
  min-width: 180px;
}
.eas-art-image {
  display: block;
  height: 190px;
  background: #eee;
  overflow: hidden;
}
.eas-art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eas-art-slide h3 {
  color: #111;
  font-size: 15px;
  font-weight: 800;
  margin: 14px 0 4px;
}
.eas-art-slide p {
  color: #555;
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}
.eas-carousel-btn {
  position: absolute;
  top: 84px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eas-carousel-btn.prev { left: -6px; }
.eas-carousel-btn.next { right: -6px; }
.eas-center-action {
  text-align: center;
  margin-top: 34px;
}

.eas-events-section {
  background: #f2eee6;
}
.eas-events-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
}
.eas-events-intro p,
.eas-booking-copy p,
.eas-about-copy p,
.eas-footer-col p {
  color: #4d4942;
  font-size: 15px;
  line-height: 1.75;
  margin: 18px 0 28px;
}
.eas-event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.eas-event-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.11);
}
.eas-event-image {
  display: block;
  position: relative;
  height: 150px;
  background: #ddd;
}
.eas-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eas-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 54px;
  height: 58px;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  font-weight: 800;
  line-height: 1;
}
.eas-date-badge strong {
  font-size: 11px;
  margin-bottom: 5px;
}
.eas-event-body {
  padding: 20px 18px 22px;
}
.eas-event-body h3 {
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}
.eas-event-body p {
  color: #555;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 8px;
}
.eas-location::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--eas-gold);
}

.eas-booking-section {
  background: #101113;
  color: #fff;
}
.eas-booking-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 52px;
  align-items: center;
}
.eas-booking-copy h2 {
  color: #fff;
}
.eas-booking-copy p {
  color: rgba(255,255,255,.82);
}
.eas-booking-copy ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.eas-booking-copy li {
  color: #fff;
  font-size: 14px;
}
.eas-booking-copy li::before {
  content: "✓";
  color: var(--eas-gold);
  margin-right: 10px;
}
.eas-booking-panel {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
  color: #111;
}
.eas-booking-card {
  display: grid;
  grid-template-columns: 230px minmax(330px, 1fr) 260px;
  min-height: 455px;
}
.eas-service-summary,
.eas-calendar-wrap,
.eas-time-form {
  padding: 30px 26px;
}
.eas-service-summary {
  border-right: 1px solid #e5e1d8;
}
.eas-service-logo {
  width: 70px;
  height: 52px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e5e1d8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
}
.eas-service-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.eas-service-summary p,
.eas-service-summary span {
  color: #6a665f;
  font-size: 13px;
  line-height: 1.6;
}
.eas-service-summary h3,
.eas-time-form h3 {
  color: #111;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  margin: 4px 0 14px;
}
.eas-calendar-wrap {
  border-right: 1px solid #e5e1d8;
}
.eas-booking-card .tag,
.eas-booking-card .field label {
  color: #6a665f;
}
.eas-booking-card .cal-month {
  color: #111;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
}
.eas-booking-card .cal-month span:last-child {
  color: #777;
}
.eas-booking-card .cal-nav button {
  color: #2b6fce;
  border: 0;
  background: transparent;
}
.eas-booking-card .cal-nav #cal-today {
  width: auto;
  color: #555;
  font-size: 11px;
  text-transform: uppercase;
}
.eas-booking-card .cal-dow {
  color: #777;
}
.eas-booking-card .cal-day {
  color: #777;
  background: transparent;
  border-radius: 50%;
}
.eas-booking-card .cal-day.avail:hover,
.eas-booking-card .cal-day.partial {
  background: #e7f0ff;
  color: #2b6fce;
}
.eas-booking-card .cal-day.selected {
  background: #2f7eea;
  color: #fff;
}
.eas-booking-card .cal-day.booked {
  color: #c65050;
  background: #fff0f0;
}
.eas-booking-card .leg-item {
  color: #777;
}
.eas-booking-card .leg-sw.available { background: #f0f4fa; }
.eas-booking-card .leg-sw.partial { background: #d9e8ff; }
.eas-booking-card .leg-sw.booked { background: #ffe2e2; }
.eas-time-form {
  max-height: 455px;
  overflow: auto;
}
.eas-booking-card .field {
  margin-bottom: 10px;
}
.eas-booking-card .field input,
.eas-booking-card .field select,
.eas-booking-card .field textarea {
  background: #fff;
  border: 1px solid #d6e3f5;
  border-radius: 3px;
  color: #111;
  padding: 10px 11px;
}
.eas-booking-card .field-row {
  grid-template-columns: 1fr 1fr;
}
.eas-booking-card .submit-btn {
  border-radius: 4px;
  background: var(--eas-gold);
  color: #fff;
  padding: 13px 16px;
}
.eas-slot-note {
  color: var(--eas-gold-dark);
  font-size: 12px;
  line-height: 1.45;
  margin: -2px 0 10px;
}

.eas-about-section {
  background: #fff;
}
.eas-about-layout {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 58px;
  align-items: center;
}
.eas-about-image {
  min-height: 320px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
}
.eas-about-copy {
  max-width: 560px;
}
.eas-about-copy p {
  margin-bottom: 26px;
}

.eas-footer {
  background: #101010;
  color: #fff;
  border-top: 1px solid rgba(201,169,97,.38);
  padding: 64px 0 26px;
}
.eas-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 54px;
}
.eas-footer-col {
  border-right: 1px solid rgba(201,169,97,.24);
  padding-right: 42px;
}
.eas-footer-col:last-child {
  border-right: 0;
  padding-right: 0;
}
.eas-footer-col h2 {
  margin-bottom: 22px;
  color: #fff;
}
.eas-footer address,
.eas-footer address a {
  color: rgba(255,255,255,.74);
  font-style: normal;
  font-size: 15px;
  line-height: 1.85;
}
.eas-hours {
  display: grid;
  gap: 12px;
}
.eas-hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.74);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 10px;
}
.eas-hours strong,
.eas-hours em {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}
.eas-footer .newsletter {
  margin-top: 16px;
  display: block;
}
.eas-footer .newsletter input {
  width: 100%;
  border: 1px solid rgba(201,169,97,.42);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  margin-bottom: 12px;
}
.eas-footer .newsletter input::placeholder {
  color: rgba(255,255,255,.52);
}
.eas-footer .newsletter button {
  border-radius: 4px;
  background: var(--eas-gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eas-socials {
  margin-top: 24px;
}
.eas-socials a {
  color: #fff;
  border-color: rgba(201,169,97,.38);
}
.eas-socials a:hover {
  background: var(--eas-gold);
  border-color: var(--eas-gold);
  color: #111;
}
.eas-footer .foot-bottom {
  margin-top: 44px;
  color: rgba(255,255,255,.58);
  border-top-color: rgba(201,169,97,.22);
  text-transform: none;
  letter-spacing: 0;
}
.eas-back-top {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--eas-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .eas-nav { padding: 0 24px; }
  .eas-nav.scrolled { padding: 0 24px; }
  .eas-nav .nav-links { gap: 24px; }
  .eas-event-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .eas-booking-layout,
  .eas-events-layout {
    grid-template-columns: 1fr;
  }
  .eas-booking-card {
    grid-template-columns: 1fr 1.35fr;
  }
  .eas-service-summary {
    display: none;
  }
}

@media (max-width: 900px) {
  .eas-nav .nav-links { display: none; }
  .eas-nav .nav-mobile-toggle { display: flex !important; }
  .eas-hero {
    height: auto;
    min-height: 620px;
  }
  .eas-gallery-track {
    grid-template-columns: none;
    grid-auto-columns: 72%;
  }
  .eas-booking-card {
    grid-template-columns: 1fr;
  }
  .eas-calendar-wrap {
    border-right: 0;
    border-bottom: 1px solid #e5e1d8;
  }
  .eas-time-form {
    max-height: none;
  }
  .eas-about-layout,
  .eas-footer-grid {
    grid-template-columns: 1fr;
  }
  .eas-footer-col {
    border-right: 0;
    border-bottom: 1px solid rgba(201,169,97,.24);
    padding-right: 0;
    padding-bottom: 28px;
  }
  .eas-footer-col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .eas-shell {
    width: min(100% - 28px, 1180px);
  }
  .eas-nav {
    height: 72px;
  }
  .eas-brand {
    min-width: 142px;
  }
  .eas-logo-img {
    width: 142px;
    height: 62px;
  }
  .eas-hero {
    min-height: 590px;
  }
  .eas-hero-copy {
    padding-top: 0;
    width: 100%;
  }
  .eas-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .eas-hero p {
    font-size: 15px;
  }
  .eas-btn,
  .eas-outline-link,
  .eas-dark-btn {
    width: 100%;
  }
  .eas-section {
    padding: 58px 0;
  }
  .eas-event-grid {
    grid-template-columns: 1fr;
  }
  .eas-booking-panel {
    margin: 0 -4px;
  }
  .eas-calendar-wrap,
  .eas-time-form {
    padding: 24px 18px;
  }
  .eas-booking-card .field-row {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact Page ─────────────────────────────────────────── */
.eas-page-contact {
  background: var(--eas-paper);
  color: var(--eas-black);
}

.eas-page-hero {
  padding: 100px 0 64px;
  border-bottom: 1px solid var(--eas-line);
}
.eas-page-hero span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eas-gold);
  margin-bottom: 16px;
}
.eas-page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--eas-black);
}
.eas-page-hero p {
  font-size: 17px;
  color: var(--eas-muted);
  max-width: 520px;
  line-height: 1.7;
}

.eas-contact-body {
  padding: 80px 0 96px;
}
.eas-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.eas-contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.eas-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eas-contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eas-gold);
}
.eas-contact-block address,
.eas-contact-block p {
  font-style: normal;
  font-size: 16px;
  color: var(--eas-muted);
  line-height: 1.65;
}
.eas-contact-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eas-contact-hours div {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--eas-muted);
  max-width: 280px;
}
.eas-contact-hours strong {
  font-weight: 600;
  color: var(--eas-black);
}
.eas-contact-link {
  font-size: 16px;
  color: var(--eas-black);
  text-decoration: none;
  border-bottom: 1px solid var(--eas-line);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
  width: fit-content;
}
.eas-contact-link:hover {
  color: var(--eas-gold-dark);
  border-color: var(--eas-gold);
}

.eas-contact-card {
  background: var(--eas-cream);
  border: 1px solid var(--eas-line);
  border-radius: 8px;
  padding: 48px 44px;
}
.eas-contact-card h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--eas-black);
}
.eas-contact-card > p {
  font-size: 16px;
  color: var(--eas-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.eas-contact-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.eas-social-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--eas-line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--eas-muted);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.eas-social-card span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eas-gold);
}
.eas-social-card:hover {
  border-color: var(--eas-gold);
  background: #fff;
}

.eas-map-wrap {
  border-top: 1px solid var(--eas-line);
  overflow: hidden;
}

@media (max-width: 860px) {
  .eas-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .eas-contact-socials {
    grid-template-columns: 1fr;
  }
  .eas-contact-card {
    padding: 32px 24px;
  }
}

/* ─── Inner Pages (Gallery, Events, Artists, About) ─────────── */
.eas-inner-page {
  background: var(--eas-paper);
  color: var(--eas-black);
}

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

.eas-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eas-gold);
  margin-bottom: 10px;
}

.eas-section-heading {
  margin-bottom: 48px;
}
.eas-section-heading span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eas-gold);
  margin-bottom: 10px;
}
.eas-section-heading h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--eas-black);
}
.eas-section-heading.eas-centered {
  text-align: center;
}

/* Gallery grid */
.eas-art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.eas-art-card {
  border: 1px solid var(--eas-line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.eas-art-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.eas-art-card-img {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--eas-cream);
}
.eas-art-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.eas-art-card:hover .eas-art-card-img img {
  transform: scale(1.04);
}
.eas-art-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--eas-muted);
}
.eas-art-card-body {
  padding: 20px;
}
.eas-art-card-body h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.eas-art-card-body h2 a {
  color: var(--eas-black);
  text-decoration: none;
}
.eas-art-card-body h2 a:hover {
  color: var(--eas-gold-dark);
}
.eas-art-artist {
  font-size: 13px;
  color: var(--eas-muted);
  margin-bottom: 4px;
}
.eas-art-meta {
  font-size: 12px;
  color: var(--eas-muted);
  margin-bottom: 6px;
}
.eas-art-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--eas-gold-dark);
}

/* Events archive */
.eas-events-types-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--eas-line);
}
.eas-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.eas-pill {
  background: none;
  border: 1px solid var(--eas-line);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--eas-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.eas-pill:hover,
.eas-pill-active {
  border-color: var(--eas-gold);
  color: var(--eas-black);
  background: var(--eas-cream);
}
.eas-filter-bar {
  border-bottom: 1px solid var(--eas-line);
  padding: 20px 0;
  background: var(--eas-paper);
}
.eas-events-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.eas-event-archive-card {
  display: block;
  border: 1px solid var(--eas-line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--eas-black);
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.eas-event-archive-card:hover {
  border-color: var(--eas-gold);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.eas-event-archive-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.eas-event-archive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eas-event-archive-body {
  padding: 20px;
}
.eas-event-date-line {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eas-gold);
  margin-bottom: 8px;
}
.eas-event-archive-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}
.eas-event-location {
  font-size: 13px;
  color: var(--eas-muted);
}
.eas-past-events-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--eas-line);
  border-radius: 6px;
  overflow: hidden;
}
.eas-past-event-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--eas-line);
  background: #fff;
}
.eas-past-event-row:last-child {
  border-bottom: none;
}
.eas-past-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--eas-gold);
  min-width: 90px;
  flex-shrink: 0;
}
.eas-past-title {
  font-size: 15px;
  color: var(--eas-black);
}

/* Artists grid */
.eas-artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.eas-artist-card {
  display: block;
  text-decoration: none;
  color: var(--eas-black);
  border: 1px solid var(--eas-line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.eas-artist-card:hover {
  border-color: var(--eas-gold);
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.eas-artist-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--eas-cream);
}
.eas-artist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.eas-artist-card:hover .eas-artist-card-img img {
  transform: scale(1.04);
}
.eas-artist-initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--eas-line);
}
.eas-artist-card-body {
  padding: 20px;
}
.eas-artist-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.eas-artist-alias {
  display: block;
  font-size: 12px;
  color: var(--eas-gold);
  margin-bottom: 6px;
}

/* About page */
.eas-about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.eas-about-mission-copy span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eas-gold);
  margin-bottom: 16px;
}
.eas-about-mission-copy h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.eas-about-mission-copy p {
  font-size: 16px;
  color: var(--eas-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.eas-about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.eas-pillar-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--eas-cream);
  border: 1px solid var(--eas-line);
  border-radius: 6px;
}
.eas-pillar-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--eas-gold);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eas-pillar-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.eas-pillar-card p {
  font-size: 14px;
  color: var(--eas-muted);
  line-height: 1.6;
  margin: 0;
}
.eas-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.eas-approach-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--eas-line);
  border-radius: 6px;
}
.eas-approach-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.eas-approach-card p {
  font-size: 14px;
  color: var(--eas-muted);
  line-height: 1.65;
}
.eas-philosophy-section {
  background: var(--eas-black);
  color: #fff;
}
.eas-philosophy-inner {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.eas-philosophy-section .eas-label {
  color: var(--eas-gold);
}
.eas-philosophy-inner blockquote {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #fff;
  margin: 20px 0 32px;
}
.eas-philosophy-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Artists join section */
.eas-join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.eas-join-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--eas-line);
  border-radius: 6px;
}
.eas-join-letter {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--eas-gold);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--eas-gold);
  margin-bottom: 20px;
}
.eas-join-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eas-join-card p {
  font-size: 15px;
  color: var(--eas-muted);
  line-height: 1.7;
}

/* CTA band */
.eas-cta-band {
  background: var(--eas-cream);
  border-top: 1px solid var(--eas-line);
}
.eas-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.eas-cta-band-inner h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}
.eas-cta-band-inner p {
  font-size: 15px;
  color: var(--eas-muted);
  max-width: 480px;
}

/* Empty state */
.eas-empty-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--eas-cream);
  border: 1px solid var(--eas-line);
  border-radius: 6px;
}
.eas-empty-state p {
  font-size: 16px;
  color: var(--eas-muted);
  margin-bottom: 24px;
}

/* Shared btn styles for inner pages */
.eas-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.eas-btn-gold {
  background: var(--eas-gold);
  color: #fff;
}
.eas-btn-gold:hover {
  background: var(--eas-gold-dark);
  color: #fff;
}
.eas-outline-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--eas-black);
  text-decoration: none;
  border-bottom: 2px solid var(--eas-gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.eas-outline-link:hover {
  color: var(--eas-gold-dark);
}
.eas-center-action {
  text-align: center;
}

/* Inner page responsive */
@media (max-width: 900px) {
  .eas-about-mission-grid,
  .eas-join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .eas-approach-grid {
    grid-template-columns: 1fr;
  }
  .eas-cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .eas-art-grid,
  .eas-artists-grid,
  .eas-events-archive-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Artwork Detail (single-ech_artwork.php) ─────────────────────── */
.eas-back-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eas-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.eas-back-link:hover { color: var(--eas-gold); }

.eas-artwork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.eas-artwork-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.eas-artwork-main-img img,
.eas-artwork-alt-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.eas-artwork-alt-img {
  position: relative;
}
.eas-alt-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eas-muted);
  margin-bottom: 8px;
}
.eas-artwork-byline {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eas-artwork-byline a,
.eas-artwork-artist-link {
  color: var(--eas-gold);
  text-decoration: none;
}
.eas-artwork-byline a:hover { color: var(--eas-gold-dark); }
.eas-artwork-info h1 {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.eas-artwork-meta-table {
  border-top: 1px solid var(--eas-line);
  margin-bottom: 32px;
}
.eas-artwork-meta-table > div {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--eas-line);
}
.eas-artwork-meta-table dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eas-muted);
  min-width: 110px;
  flex-shrink: 0;
}
.eas-artwork-meta-table dd {
  font-size: 15px;
  color: var(--eas-black);
}
.eas-artwork-purchase {
  background: var(--eas-cream);
  border: 1px solid var(--eas-line);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eas-artwork-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--eas-black);
}
.eas-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}
.eas-avail-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.eas-avail-open {
  background: #f0faf4;
  color: #1a6b3a;
  border: 1px solid #b6dfca;
}
.eas-avail-open span { background: #1a6b3a; }
.eas-avail-sold {
  background: #faf0f0;
  color: #6b1a1a;
  border: 1px solid #dfb6b6;
}
.eas-avail-sold span { background: #6b1a1a; }
.eas-artwork-desc {
  font-size: 15px;
  color: var(--eas-muted);
  line-height: 1.8;
}
.eas-artwork-desc p { margin-bottom: 16px; }

/* Related works uses .eas-art-grid / .eas-art-card already defined above */

@media (max-width: 900px) {
  .eas-artwork-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Artist Profile (single-ech_artist.php) ─────────────────────── */
.eas-artist-back-row {
  padding-top: 32px;
  padding-bottom: 8px;
}
.eas-artist-profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.eas-artist-portrait img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.eas-artist-portrait-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--eas-cream);
  border: 1px solid var(--eas-line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 800;
  color: var(--eas-line);
}
.eas-artist-detail h1 {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.eas-artist-detail .eas-artist-alias {
  font-size: 14px;
  display: block;
  margin-bottom: 24px;
}
.eas-artist-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.eas-meta-chip {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--eas-cream);
  border: 1px solid var(--eas-line);
  color: var(--eas-black);
}
.eas-artist-bio {
  font-size: 16px;
  color: var(--eas-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.eas-artist-bio p { margin-bottom: 16px; }
.eas-artist-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--eas-black);
  text-decoration: none;
  border: 1px solid var(--eas-line);
  padding: 8px 18px;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.eas-artist-social a:hover {
  border-color: var(--eas-gold);
  color: var(--eas-gold);
}
@media (max-width: 860px) {
  .eas-artist-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .eas-artist-portrait img {
    max-width: 280px;
  }
}
