/* The Juleanne Collection — shared styles
   Deliberately a single committed light theme: a warm, off-white gallery-invite
   feel, always-on regardless of the viewer's OS/browser dark-mode setting.
   Deep pine green and gold are accents only — never the driving background. */

:root{
  /* Height of the sticky header — the mobile nav panel hangs off its bottom edge and
     caps its own height against this. script.js overwrites it with the measured value
     once the fonts have settled; this is the sensible starting guess. */
  --header-h:5rem;
  --cream:#fbf6ea;
  --parchment:#fffdf8;
  --paper:#ffffff;
  --ink:#2c2717;
  --ink-soft:#6b6250;
  --pine:#1c3c2c;
  --pine-2:#2e5644;
  --moss:#7c9a80;
  /* Same relationship as --gold/--gold-text: the soft moss is a decoration colour
     (leaf shapes, gradient washes) and only reaches ~2.9:1 on the cream. The hero
     subtitle is 12.8px text and needs 4.5:1, so it uses this darker sibling. */
  --moss-text:#5c7860;
  --gold:#b8823a;
  /* Same gold, darkened just enough to clear WCAG AA (4.5:1) as small text on every
     background the site uses. --gold itself only reaches ~3.1:1, which is fine for
     icon fills, borders and rules, but not for the 11px uppercase labels. */
  --gold-text:#93682e;
  --gold-bright:#d79f4d;
  --line:#ecdfc0;
  --shadow: 0 18px 40px -12px rgba(28,60,44,0.18);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:
    radial-gradient(1100px 500px at 12% -10%, color-mix(in srgb, var(--gold) 7%, transparent), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, color-mix(in srgb, var(--moss) 6%, transparent), transparent 55%),
    var(--cream);
  color:var(--ink);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:1160px; margin:0 auto; padding:0 clamp(1.2rem, 4vw, 2.5rem);}

h1,h2,h3{
  font-family: Georgia, "Iowan Old Style", serif;
  font-weight:400;
  color:var(--pine);
  text-wrap:balance;
  margin:0;
}
a{color:inherit;}
p{color:var(--ink-soft);}

.eyebrow{
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:0.72rem;
  color:var(--gold-text);
  font-weight:600;
  margin:0 0 0.7rem;
}
.center{text-align:center; margin-left:auto; margin-right:auto;}

/* One button, everywhere. Every call to action on the site is the same object: same
   size, same colour, same hover — only the label changes. `min-width` is what makes
   two buttons sitting side by side match instead of each shrink-wrapping its own
   label, so no CTA ever sticks out past its neighbour. The one button allowed to
   exceed it is the lightbox's "Inquire About This Piece" — it stands alone inside
   the modal, and widening every button on the site to fit that label would leave
   the short ones looking stretched. */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:0.5rem;
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  font-size:0.82rem;
  letter-spacing:0.08em;
  line-height:1.2;
  text-transform:uppercase;
  text-align:center;
  text-decoration:none;
  padding:0.95rem 1.6rem;
  min-height:3.2rem;
  min-width:17.5rem;
  max-width:100%;
  border-radius:2px;
  border:1px solid var(--pine);
  cursor:pointer;
  transition:transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  font-weight:600;
}
.btn-primary{background:var(--pine); color:var(--parchment);}
/* Inverts to the parchment/pine reverse on hover and on keyboard focus alike — the
   pointer and the Tab key get the same feedback. */
.btn-primary:hover,
.btn-primary:focus-visible{
  background:var(--parchment); color:var(--pine);
  transform:translateY(-2px); box-shadow:var(--shadow);
}
.btn:focus-visible{outline:2px solid var(--gold); outline-offset:3px;}

/* Below this width a fixed 17.5rem button starts to crowd the screen edge, so the
   buttons go full-width and stack — still identical to one another, and a bigger
   tap target on the devices that need one. */
@media (max-width:520px){
  .btn{width:100%; min-width:0; padding-left:1rem; padding-right:1rem;}
}

/* Every row of buttons on the site shares one layout: centred, evenly gapped, and
   wrapping to a stack rather than overflowing when the viewport gets narrow. */
.hero-actions, .cta-actions, .visit-actions, .venue-links, .btn-row{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:1rem;
}

/* reveal-on-scroll */
.reveal{opacity:0; transform:translateY(18px); transition:opacity 0.7s ease, transform 0.7s ease;}
.reveal.is-visible{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  html{scroll-behavior:auto;}
}

/* ============ HEADER / NAV ============ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:color-mix(in srgb, var(--parchment) 88%, transparent);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem clamp(1.2rem, 4vw, 2.5rem);
}
.logo{
  font-family: Georgia, serif;
  font-style:italic;
  font-size:1.5rem;
  letter-spacing:0.01em;
  color:var(--pine);
  text-decoration:none;
}
.logo b{font-style:normal; font-weight:400; color:var(--gold);}

.main-nav{display:flex; align-items:center; gap:0.4rem;}
.main-nav > ul{display:flex; align-items:center; gap:0.2rem; list-style:none; margin:0; padding:0;}
.main-nav a{
  display:block;
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  color:var(--ink-soft);
  text-decoration:none;
  font-size:0.83rem;
  letter-spacing:0.05em;
  text-transform:uppercase;
  padding:0.6rem 0.9rem;
  border-radius:3px;
  transition:color 0.15s ease, background 0.15s ease;
}
/* [aria-current] with no value test on purpose: venue detail pages (/scentsbydesign,
   /sipscoffee, …) mark the Venues link aria-current="true" — it is the current item
   in the nav set without being the current page — and they should highlight it too. */
.main-nav a:hover, .main-nav a[aria-current]{color:var(--pine); background:color-mix(in srgb, var(--gold) 14%, transparent);}

.nav-toggle{
  display:none;
  background:none; border:1px solid var(--line); border-radius:4px;
  padding:0.5rem 0.7rem; color:var(--pine); font-size:1rem; cursor:pointer;
}

@media (max-width: 860px){
  .nav-toggle{display:inline-flex;}
  /* Absolute, not fixed. `.site-header` has a backdrop-filter, which makes it the
     containing block for fixed-position descendants — so `position:fixed; inset:64px 0 0 0`
     resolved against the ~64px-tall header instead of the viewport and collapsed the
     panel to nothing, leaving only the sliver that peeked out on scroll. Anchoring to
     the header on purpose (top:100%) is both correct and immune to that. */
  .main-nav{
    position:absolute;
    top:100%; left:0; right:0;
    z-index:1;
    background:var(--parchment);
    border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);
    flex-direction:column; align-items:stretch;
    padding:1rem;
    transform:translateY(-8px);
    opacity:0; visibility:hidden;
    transition:opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    max-height:calc(100vh - var(--header-h));
    max-height:calc(100dvh - var(--header-h));
    overflow-y:auto;
    overscroll-behavior:contain;
  }
  .main-nav.is-open{opacity:1; transform:translateY(0); visibility:visible;}
  .main-nav > ul{flex-direction:column; align-items:stretch; width:100%;}
  .main-nav a{padding:0.85rem 0.9rem; font-size:0.9rem;}
  /* Page must not scroll behind an open menu. */
  body.nav-open{overflow:hidden;}
}

/* ============ HERO ============ */
.hero{
  position:relative;
  padding:clamp(4rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  overflow:hidden;
}
.hero-inner{max-width:720px; margin:0 auto; text-align:center; position:relative; z-index:1;}
.hero .eyebrow{justify-content:center;}
.hero h1{
  font-size:clamp(2.6rem, 7vw, 4.4rem);
  font-style:italic;
  line-height:1.05;
}
.hero-sub{
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
  text-transform:uppercase;
  letter-spacing:0.24em;
  font-size:0.8rem;
  color:var(--moss-text);
  margin:1rem 0 0;
}
.hero-tagline{font-size:1.12rem; max-width:520px; margin:1.4rem auto 2.2rem;}

.leaf-field{position:absolute; inset:0; pointer-events:none; z-index:0;}
.leaf{
  position:absolute;
  border-radius:0% 90% 0% 90%;
  background:linear-gradient(135deg, var(--moss), transparent 70%);
  opacity:0.18;
}

/* ============ SECTION SCAFFOLDING ============ */
section{padding:clamp(3.5rem, 8vw, 5.5rem) 0;}
.section-head{max-width:600px; margin:0 auto 3rem;}
.section-sub{font-size:1.02rem; margin-top:0.6rem;}
.divider{
  display:flex; align-items:center; justify-content:center; gap:0.9rem;
  color:var(--gold); margin:0 auto 1.4rem;
}
.divider::before,.divider::after{content:""; height:1px; width:56px; background:var(--line);}

.band{background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}

/* Accent band: cream stays the driving color; green/gold appear only as accents
   (border, headline color, button fills) rather than a solid dark fill. */
.band-accent{
  position:relative;
  background:
    radial-gradient(700px 260px at 50% 0%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 70%),
    var(--parchment);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.band-accent::before{
  content:"";
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:64px; height:3px; border-radius:2px;
  background:var(--gold);
}
.band-accent h2, .band-accent h3{color:var(--pine);}
.band-accent p{color:var(--ink-soft);}
.band-accent .eyebrow{color:var(--gold-text);}
/* Visit cards set their own colours — see the VISIT / EVENT section. */

/* ============ ABOUT / BIO ============ */
.about-grid{
  display:grid; grid-template-columns:280px 1fr; gap:clamp(2rem, 5vw, 4rem);
  align-items:center;
}
.portrait-frame{
  aspect-ratio:4/5;
  border-radius:6px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  position:relative;
}
.portrait-frame img{width:100%; height:100%; object-fit:cover; display:block;}
/* Julie's portrait sits on the white .band, where the default --line border (pale
   cream) disappeared and the photo bled into the page. A thin pine edge in the site's
   own accent green gives it a definite boundary without adding a new colour. */
.artist-portrait{
  border:3px solid var(--pine);
  box-shadow:0 16px 36px -14px rgba(28,60,44,0.34);
}
.portrait-frame .fallback{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg, color-mix(in srgb, var(--gold) 22%, var(--parchment)), var(--parchment));
  text-align:center; padding:1.2rem; font-family:-apple-system,sans-serif; font-size:0.78rem; color:var(--ink-soft); white-space:pre-line;
}
/* The venue shot is a wide interior, not a portrait — give it a landscape frame. */
.venue-grid{grid-template-columns:minmax(0, 460px) 1fr; align-items:start;}
.venue-grid .portrait-frame{aspect-ratio:4/3;}
/* Stacks earlier than the bio grid does. The photo column holds a fixed 460px while
   the text column takes the remainder, so on a tablet the copy was squeezed into a
   ~250px ribbon that broke the address across two lines. */
@media (max-width:900px){
  .venue-grid{grid-template-columns:1fr;}
  .venue-grid .portrait-frame{max-width:460px; margin:0 auto;}
}

.about-text p{font-size:1.05rem;}
.about-text .signoff{font-style:italic; color:var(--pine-2); margin-top:1.2rem;}

@media (max-width:760px){
  .about-grid{grid-template-columns:1fr;}
  .portrait-frame{max-width:280px; margin:0 auto;}
}

/* ============ FEATURED STRIP (home) ============ */
.featured-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1.4rem;
}
@media (max-width:760px){ .featured-grid{grid-template-columns:1fr 1fr;} }
.feature-tile{
  position:relative; aspect-ratio:1; border-radius:6px; overflow:hidden;
  border:1px solid var(--line); cursor:pointer; display:block;
}
.feature-tile img{width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease;}
.feature-tile .fallback{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg, color-mix(in srgb, var(--moss) 30%, var(--parchment)), var(--parchment));
  font-size:0.72rem; color:var(--ink-soft); text-align:center; padding:0.8rem; font-family:-apple-system,sans-serif;
}
.feature-tile:hover img{transform:scale(1.06);}
.feature-tile .tile-cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:0.7rem 0.9rem;
  background:linear-gradient(0deg, rgba(22,48,35,0.75), transparent);
  color:#fff; font-family:-apple-system,sans-serif; font-size:0.8rem; letter-spacing:0.03em;
  opacity:0; transition:opacity 0.25s ease;
}
.feature-tile:hover .tile-cap{opacity:1;}

/* ============ GALLERY ============ */
.filter-bar{
  display:flex; flex-wrap:wrap; gap:0.6rem; justify-content:center; margin-bottom:2.6rem;
}
.filter-chip{
  font-family:-apple-system, sans-serif;
  font-size:0.8rem; letter-spacing:0.04em; text-transform:uppercase;
  padding:0.5rem 1.1rem; border-radius:99px;
  border:1px solid var(--line); background:var(--paper); color:var(--ink-soft);
  cursor:pointer; transition:all 0.15s ease;
}
.filter-chip:hover{border-color:var(--gold);}
.filter-chip.is-active{background:var(--pine); color:var(--parchment); border-color:var(--pine);}

.gallery-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(240px,1fr)); gap:1.8rem;
}
.gallery-item{
  border:none; background:none; padding:0; text-align:left; cursor:pointer;
  font-family:inherit; color:inherit;
}
.gallery-frame{
  aspect-ratio:4/5; border-radius:5px; overflow:hidden; border:1px solid var(--line);
  position:relative;
}
.gallery-frame img{width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.45s ease;}
.gallery-item:hover .gallery-frame img{transform:scale(1.05);}
.gallery-frame .fallback{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(155deg, color-mix(in srgb, var(--gold) 26%, var(--parchment)), var(--parchment));
  font-size:0.74rem; color:var(--ink-soft); text-align:center; padding:1rem; font-family:-apple-system,sans-serif;
}
.gallery-item figcaption{margin:0.8rem 0.1rem 0; display:flex; justify-content:space-between; align-items:baseline; gap:0.7rem;}
/* Longer titles wrap instead of colliding with the category label, which never shrinks. */
.gallery-item .art-title{font-style:italic; color:var(--pine); min-width:0;}
.gallery-item .art-cat{font-family:-apple-system,sans-serif; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--gold-text); flex:none; white-space:nowrap;}

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:1000;
  background:rgba(20,20,14,0.86);
  display:flex; align-items:center; justify-content:center;
  padding:2rem;
  opacity:0; visibility:hidden; transition:opacity 0.25s ease, visibility 0.25s;
}
.lightbox.is-open{opacity:1; visibility:visible;}
.lightbox-panel{
  /* Positioned so the close button anchors to the panel. Without this it fell back to
     .lightbox — i.e. the viewport corner — and floated off the artwork on wide screens. */
  position:relative;
  background:var(--paper); border-radius:8px; overflow:hidden;
  max-width:920px; width:100%; max-height:90vh; max-height:90dvh;
  display:grid; grid-template-columns:1.3fr 1fr;
  box-shadow:0 30px 80px rgba(0,0,0,0.45);
}
.lightbox-media{background:var(--ink); display:flex; align-items:center; justify-content:center; min-height:280px; overflow:hidden;}
.lightbox-media img{width:100%; height:100%; object-fit:contain; max-height:90vh; max-height:90dvh;}
.lightbox-info{padding:2rem; display:flex; flex-direction:column; gap:0.9rem; overflow-y:auto;}
.lightbox-info h3{font-style:italic; font-size:1.5rem;}
.lightbox-close{
  position:absolute; top:0.9rem; right:0.9rem; z-index:2;
  background:var(--paper); border:none; border-radius:50%;
  width:38px; height:38px; font-size:1.1rem; cursor:pointer; color:var(--ink);
  box-shadow:0 2px 10px rgba(0,0,0,0.25);
}
@media (max-width:700px){
  .lightbox{padding:1rem;}
  /* Stacked, the image and the text together exceed the panel — let the panel itself
     scroll rather than clipping the Inquire button off the bottom. */
  .lightbox-panel{grid-template-columns:1fr; grid-template-rows:auto auto; overflow-y:auto;}
  .lightbox-media{min-height:0;}
  .lightbox-media img{max-height:52dvh;}
  .lightbox-info{padding:1.4rem; overflow:visible;}
}

/* ============ VISIT / EVENT ============ */
/* One panel, not two competing cards. The venue heads the panel and the exhibit run
   sits beneath it. */
.visit-panel{
  background:var(--paper); border:1px solid var(--line); border-top:3px solid var(--pine);
  border-radius:10px; box-shadow:var(--shadow);
  max-width:720px; margin:2.4rem auto 2.4rem; padding:2.2rem 2rem 1.9rem;
}

/* These are all descendant-scoped (.visit-panel …) on purpose: the panel sits inside
   .band-accent, whose `.band-accent p` rule is more specific than a bare class and
   would otherwise flatten every colour below to --ink-soft. */

/* Tier 1 — the gold section labels. "The Venue" and "On Display" share one
   treatment so they read as the same kind of thing. */
.visit-panel .visit-venue-label,
.visit-panel .visit-col-label{
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  text-transform:uppercase; letter-spacing:0.16em;
  font-size:0.7rem; font-weight:700; color:var(--gold-text);
  margin:0 0 0.7rem;
}

/* Tier 2 — the headline fact, in the site's serif italic. */
.visit-panel .visit-venue-name,
.visit-panel .visit-col-main{
  font-family:Georgia,"Iowan Old Style","Palatino Linotype",serif; font-style:italic;
  color:var(--pine); line-height:1.35; margin:0 0 0.4rem;
}
.visit-panel .visit-venue-name{font-size:1.45rem; line-height:1.2;}
.visit-panel .visit-col-main{font-size:1.15rem;}

/* Tier 3 — supporting detail. Still green, so it reads as part of the card
   rather than as leftover body text. */
.visit-panel .visit-venue-addr,
.visit-panel .visit-col-sub{
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.9rem; color:var(--pine-2); line-height:1.7; margin:0;
}

.visit-venue{text-align:center; padding-bottom:1.6rem; border-bottom:1px solid var(--line);}
.visit-cols{display:grid; grid-template-columns:1fr 1fr; margin-top:1.7rem;}
.visit-col{text-align:center; padding:0 1.2rem;}
/* Divider between the two columns only — no trailing rule on the last one. */
.visit-col + .visit-col{border-left:1px solid var(--line);}
/* Single-column variant — one fact, centred under the venue rather than half-width. */
.visit-cols.is-single{grid-template-columns:1fr;}

/* Deliberately the quietest thing in the panel — it's a footnote, not a fact. */
.visit-panel .visit-panel-note{
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.85rem; color:var(--ink-soft);
  text-align:center; line-height:1.65;
  margin:1.7rem 0 0; padding-top:1.3rem; border-top:1px dashed var(--line);
}

@media (max-width:640px){
  .visit-panel{padding:1.8rem 1.3rem 1.5rem;}
  .visit-cols{grid-template-columns:1fr; margin-top:1.4rem;}
  .visit-col{padding:1.3rem 0 0;}
  .visit-col + .visit-col{border-left:none; border-top:1px solid var(--line);}
  .visit-col:first-child{padding-top:0;}
}


/* ============ VENUE HUB (/visit) ============ */
/* The hub lists every venue as one clickable card. Upcoming venues sit on the page's
   own cream ground; past venues sit inside a white .band, and their cards flip to
   cream so the two halves of the page stay visibly distinct without inventing a
   second card style. */
.venue-cards{
  display:grid;
  /* min() and not a bare 300px: on a 320px phone .wrap's padding leaves ~281px, and a
     hard 300px minimum would size the track wider than its container and push the whole
     page into a horizontal scroll. min(300px,100%) collapses the floor to the available
     width instead. */
  grid-template-columns:repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap:1.8rem;
}
/* The whole tile is the link — image, name, dates and all — so there is no small
   "read more" target to hunt for on a phone. */
.venue-card{
  display:flex; flex-direction:column;
  background:var(--paper);
  border:1px solid var(--line); border-radius:6px; overflow:hidden;
  text-decoration:none; color:inherit;
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.band .venue-card{background:var(--cream);}
.venue-card:hover,
.venue-card:focus-visible{
  transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--gold);
}
.venue-card:focus-visible{outline:2px solid var(--gold); outline-offset:3px;}

.venue-card-frame{
  position:relative; aspect-ratio:16/9; overflow:hidden;
  border-bottom:1px solid var(--line);
}
.venue-card-frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 0.45s ease;
}
.venue-card:hover .venue-card-frame img{transform:scale(1.05);}
/* Venues announced before there is a photo of them get the same gradient placeholder
   the gallery uses, so an empty card still looks deliberate. */
.venue-card-frame .fallback{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(150deg, color-mix(in srgb, var(--moss) 30%, var(--parchment)), var(--parchment));
  text-align:center; padding:1rem; white-space:pre-line;
  font-family:-apple-system,sans-serif; font-size:0.74rem; letter-spacing:0.04em; color:var(--ink-soft);
}
.venue-card-status{
  position:absolute; top:0.75rem; left:0.75rem;
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.66rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em;
  padding:0.35rem 0.7rem; border-radius:99px;
  background:var(--pine); color:var(--parchment);
}
.venue-card-status.is-past{background:var(--gold-text);}

.venue-card-body{
  flex:1; display:flex; flex-direction:column;
  padding:1.25rem 1.35rem 1.35rem;
}
.venue-card-name{
  font-family:Georgia,"Iowan Old Style","Palatino Linotype",serif; font-style:italic;
  font-size:1.25rem; line-height:1.25; color:var(--pine); margin:0 0 0.5rem;
}
.venue-card-meta,
.venue-card-dates{
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.85rem; line-height:1.6; margin:0;
}
.venue-card-meta{color:var(--ink-soft);}
.venue-card-dates{color:var(--pine-2); font-weight:600;}
/* margin-top:auto pins the call to action to the bottom edge, so cards holding
   different amounts of detail still line their footers up across a row. */
.venue-card-cta{
  margin-top:auto; padding-top:1rem;
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em;
  color:var(--gold-text);
  transition:color 0.18s ease;
}
.venue-card:hover .venue-card-cta{color:var(--pine);}

/* Section headings for the two halves of the hub. */
.venue-section-head{max-width:620px; margin:0 auto 2.6rem;}

/* ============ VENUE DETAIL PAGES ============ */
/* Every venue page (/scentsbydesign, /sipscoffee, …) opens with this crumb back to
   the hub, so a visitor who landed on one venue from search can find the others. */
.venue-back{
  display:inline-flex; align-items:center; gap:0.45rem;
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em;
  color:var(--gold-text); text-decoration:none;
  transition:color 0.18s ease;
}
.venue-back:hover,
.venue-back:focus-visible{color:var(--pine);}
.venue-back:focus-visible{outline:2px solid var(--gold); outline-offset:3px;}

/* Status line inside .visit-panel — "Past Exhibit", "Upcoming", etc. It sits above
   the venue name and is scoped under .visit-panel for the same reason the rest of
   the panel's type is: .band-accent p out-specifies a bare class. */
.visit-panel .visit-status{
  font-family:-apple-system,"Segoe UI",system-ui,sans-serif;
  font-size:0.66rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em;
  display:inline-block; padding:0.3rem 0.7rem; border-radius:99px;
  background:var(--pine); color:var(--parchment);
  margin:0 0 0.9rem;
}
.visit-panel .visit-status.is-past{background:var(--gold-text);}

/* A venue with nothing announced yet still gets a real page — this is the "details
   to come" body that stands in for the map, hours and photo until they exist. */
.venue-tba{
  max-width:620px; margin:0 auto; text-align:center;
}
.venue-tba .venue-tba-mark{
  width:3.4rem; height:3.4rem; margin:0 auto 1.3rem;
  border-radius:50%; border:1px solid var(--line);
  background:linear-gradient(150deg, color-mix(in srgb, var(--gold) 24%, var(--parchment)), var(--parchment));
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-text); font-size:1.3rem;
}

/* ============ CONTACT ============ */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,3.5rem);
  align-items:start;
}
@media (max-width:820px){ .contact-grid{grid-template-columns:1fr;} }

.contact-methods{display:flex; flex-direction:column; gap:0.9rem;}
.contact-method{
  display:flex; align-items:center; gap:1rem;
  padding:1.1rem 1.3rem; background:var(--paper); border:1px solid var(--line); border-radius:6px;
  text-decoration:none; color:var(--ink); transition:border-color 0.15s ease, transform 0.15s ease;
}
.contact-method:hover{border-color:var(--gold); transform:translateX(4px);}
.contact-method .icon{
  width:38px; height:38px; border-radius:50%; background:var(--gold); color:var(--paper);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  line-height:1;
}
.contact-method .kind{font-family:-apple-system,sans-serif; text-transform:uppercase; font-size:0.68rem; letter-spacing:0.08em; color:var(--ink-soft); display:block;}
.contact-method .value{font-style:italic; color:var(--pine); font-size:1.02rem;}

.inquiry-form{
  background:var(--paper); border:1px solid var(--line); border-radius:8px; padding:1.8rem;
}
/* Same gap the fields keep between one another, so the heading sits on the form's
   own rhythm instead of crowding the first label. */
/* An <h2> so the page runs h1 -> h2 without skipping a level; sized down to the
   h3 it replaces so the card looks unchanged. */
.inquiry-form h2{font-style:italic; font-size:1.3rem; margin-bottom:1.1rem;}
.inquiry-form .form-note{font-size:0.85rem; margin-bottom:1.3rem;}
.field{margin-bottom:1.1rem; display:flex; flex-direction:column; gap:0.4rem;}
.field label{
  font-family:-apple-system,sans-serif; font-size:0.75rem; text-transform:uppercase;
  letter-spacing:0.06em; color:var(--ink-soft);
}
.field input, .field textarea, .field select{
  font-family:-apple-system,sans-serif;
  border:1px solid var(--line); border-radius:4px; background:var(--parchment);
  padding:0.7rem 0.8rem; font-size:0.92rem; color:var(--ink);
  /* A <select> is sized by its widest <option>, so long piece names would otherwise
     push the form wider than a narrow phone screen. */
  width:100%; max-width:100%; min-width:0; box-sizing:border-box;
}
.field textarea{resize:vertical; min-height:100px;}
/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;}
.form-status{
  font-family:-apple-system,sans-serif; font-size:0.86rem; line-height:1.5;
  margin:0 0 1rem; min-height:1.2em; color:var(--ink-soft);
}
.form-status.is-success{color:var(--pine); font-weight:600;}
.form-status.is-error{color:#a3401f;}
/* Centred at the site's standard button width rather than stretched across the
   card, so it matches every other button on the site. */
.inquiry-form button[type="submit"]{display:flex; margin-inline:auto;}
.inquiry-form button[type="submit"][disabled]{opacity:0.6; cursor:progress;}
.field input:focus, .field textarea:focus, .field select:focus{outline:2px solid var(--gold); outline-offset:1px;}

/* ============ VENUE / MAP ============ */
.venue-address{font-family:-apple-system,sans-serif; font-size:0.9rem; color:var(--ink-soft);}
.venue-links{margin-top:1.4rem;}
/* The venue column's label, name, address and link form one centred stack, so they
   read as a card about the place. The two body paragraphs between them stay
   left-aligned — centring several lines of running prose costs real readability. */
.venue-grid .eyebrow,
.venue-grid h2,
.venue-grid .venue-address{text-align:center;}
/* Fixed aspect ratio keeps the embed from shifting layout while it loads. */
.map-frame{
  position:relative; aspect-ratio:16/9; width:100%;
  border:1px solid var(--line); border-radius:8px; overflow:hidden;
  box-shadow:var(--shadow); background:var(--parchment);
}
.map-frame iframe{position:absolute; inset:0; width:100%; height:100%; border:0; display:block;}
@media (max-width:640px){ .map-frame{aspect-ratio:4/3;} }
.map-note{
  margin-top:1rem; text-align:center;
  font-family:-apple-system,sans-serif; font-size:0.85rem; color:var(--ink-soft);
}
.map-note a{color:var(--pine);}

/* ============ FOOTER ============ */
.site-footer{background:var(--parchment); color:var(--ink); padding:2.6rem 0; border-top:2px solid var(--pine);}
.footer-inner{display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-start; gap:2rem;}
.footer-brand{font-style:italic; font-size:1.15rem; color:var(--pine); display:block; margin-bottom:0.9rem;}
.footer-links{display:flex; gap:1.4rem; list-style:none; margin:0; padding:0; font-family:-apple-system,sans-serif; font-size:0.85rem;}
.footer-links a{text-decoration:none; color:var(--ink-soft);}
.footer-links a:hover{color:var(--gold-text);}
.footer-sub{width:100%; text-align:center; font-family:-apple-system,sans-serif; font-size:0.78rem; color:var(--ink-soft); margin-top:1rem;}

/* Contact methods live in the left footer column so every page offers a direct line out. */
.footer-contact{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:0.5rem;}
.footer-contact a{
  display:inline-flex; align-items:center; gap:0.6rem; text-decoration:none;
  font-family:-apple-system,sans-serif; font-size:0.85rem; color:var(--ink-soft);
  transition:color 0.18s ease;
}
.footer-contact a:hover{color:var(--gold-text);}
.footer-contact .ico{
  flex:none; width:1.5rem; height:1.5rem; border-radius:50%;
  background:var(--gold); color:var(--paper);
  display:inline-flex; align-items:center; justify-content:center;
  line-height:1;
}

/* Shared icon sizing. The SVGs paint with currentColor, so each circle's own `color`
   decides the glyph — white in the footer, pine on the contact cards — and neither
   icon set needs its own colour rules. */
.ico-svg{display:block; width:100%; height:100%;}
.footer-contact .ico .ico-svg{width:0.88rem; height:0.88rem;}
.contact-method .icon .ico-svg{width:1.15rem; height:1.15rem;}
@media (max-width:860px){
  .footer-inner{flex-direction:column; align-items:flex-start;}
  .footer-sub{text-align:left;}
}

.toast{
  position:fixed; bottom:1.4rem; left:50%; transform:translate(-50%, 20px);
  background:var(--pine); color:var(--parchment);
  padding:0.8rem 1.4rem; border-radius:6px; font-family:-apple-system,sans-serif; font-size:0.88rem;
  opacity:0; pointer-events:none; transition:opacity 0.25s ease, transform 0.25s ease; z-index:2000;
  box-shadow:var(--shadow);
}
.toast.is-visible{opacity:1; transform:translate(-50%, 0);}
