/* ============================================================
   VIBE C — OPEN FIELD
   Layers on top of site.css and restyles the same markup.
   Photo first: full-bleed hero with type over it, near-white
   ground, tight modern sans, hairline rules, lots of air.
   ============================================================ */

.vibe-c {
  --paper:      #FCFCFA;
  --paper-2:    #F4F4F1;
  --ink:        #14170F;
  --ink-soft:   #5C6157;
  --green-900:  #14170F;
  --green-700:  #3D5A3A;
  --green-500:  #5C6157;
  --green-100:  #E7EDE4;
  --sun:        #3D5A3A;
  --sun-soft:   #E7EDE4;
  --berry:      #3D5A3A;
  --line:       #E2E2DC;
  --radius:     0px;
  --shadow:     none;
}

/* ---------- Type: one tight sans, no serif ---------- */
.vibe-c h1, .vibe-c h2, .vibe-c h3,
.vibe-c .footer-brand, .vibe-c .brand__name, .vibe-c .quote {
  font-family: var(--sans);
  letter-spacing: -.03em;
  font-weight: 600;
}
.vibe-c h1 { font-size: clamp(2.6rem, 1.5rem + 4.6vw, 5.4rem); font-weight: 500; line-height: 1.02; }
.vibe-c h2 { font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem); font-weight: 500; line-height: 1.06; }
.vibe-c h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; }
.vibe-c h1 em { font-style: normal; color: var(--ink-soft); }
.vibe-c .eyebrow, .vibe-c .ripe__month {
  font-size: .72rem; letter-spacing: .18em; color: var(--ink-soft); font-weight: 600;
}
.vibe-c .lede { color: var(--ink-soft); max-width: 54ch; }
.vibe-c .quote { font-style: normal; border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.5rem; font-weight: 500; }

/* ---------- Header: hairline, no fill ---------- */
.vibe-c .banner { background: var(--ink); color: rgba(255,255,255,.82); font-size: .82rem; }
.vibe-c .banner strong { color: #fff; }
.vibe-c .banner a { color: #fff; }
.vibe-c .site-header { background: rgba(252,252,250,.94); border-bottom: 1px solid var(--line); }
.vibe-c .brand__name { font-size: 1rem; }
.vibe-c .brand__sub { color: var(--ink-soft); font-weight: 500; }
.vibe-c .brand__mark circle:first-child { fill: var(--green-700); }
.vibe-c .nav a { font-weight: 500; color: var(--ink-soft); }
.vibe-c .nav a:hover { background: none; color: var(--ink); }
.vibe-c .nav a[aria-current="page"] { color: var(--ink); box-shadow: none; font-weight: 600; }

/* ---------- Buttons: pills, minimal ---------- */
.vibe-c .btn { border-radius: 999px; font-weight: 600; box-shadow: none; }
.vibe-c .btn--primary { background: var(--ink); color: #fff; }
.vibe-c .btn--primary:hover { background: #000; }
.vibe-c .btn--ghost { border-color: var(--line); color: var(--ink); }
.vibe-c .btn--ghost:hover { background: var(--paper-2); color: var(--ink); }
.vibe-c .btn--sun { background: #fff; color: var(--ink); }
.vibe-c .nav a.btn--primary { background: var(--ink); color: #fff; }

/* ---------- Sections: generous air, hairline dividers ---------- */
.vibe-c section { padding: clamp(4rem, 8vw, 7rem) 0; }
.vibe-c .section--tint { background: var(--paper-2); }
.vibe-c .page-head { background: var(--paper); border-bottom: 1px solid var(--line); }
.vibe-c .ripe { background: var(--paper-2); border-block: 1px solid var(--line); }

/* ---------- HERO: full-bleed photo with type over it ---------- */
.vibe-c .hero { position: relative; padding: 0; min-height: min(88vh, 780px); display: grid; align-items: end; overflow: hidden; }
/* .hero__grid must stay position:static so the photo's `inset:0` resolves
   against .hero (full bleed) rather than against the centred wrap column. */
.vibe-c .hero__grid { display: block; position: static; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
/* the text column is what gets lifted above the photo and the scrim */
.vibe-c .hero__grid > div { position: relative; z-index: 2; }
.vibe-c .hero .photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  aspect-ratio: auto; border: 0; border-radius: 0; box-shadow: none; z-index: 0;
  margin: 0;
}
.vibe-c .hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.vibe-c .hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,14,8,.66) 0%, rgba(10,14,8,.2) 30%, rgba(10,14,8,.5) 62%, rgba(10,14,8,.86) 100%);
}
.vibe-c .hero h1, .vibe-c .hero .lede, .vibe-c .hero .eyebrow { color: #fff; }
.vibe-c .hero h1 em { color: rgba(255,255,255,.72); }
.vibe-c .hero .eyebrow { color: rgba(255,255,255,.75); }
.vibe-c .hero .lede { color: rgba(255,255,255,.9); }
/* facts become a hairline metadata strip */
.vibe-c .hero__facts { border-top: 1px solid rgba(255,255,255,.3); gap: 0; padding-top: 0; margin-top: 2rem; }
.vibe-c .hero__facts li {
  background: none; color: #fff; border-radius: 0;
  padding: 1rem 2rem 0 0; margin-right: 2rem; font-weight: 500; font-size: .95rem;
}
.vibe-c .hero .btn--primary { background: #fff; color: var(--ink); }
.vibe-c .hero .btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }

/* ---------- Cards: flat, hairline, no shadow ---------- */
.vibe-c .card { background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 1.75rem 2rem 1.75rem 0; box-shadow: none; }
.vibe-c .card__num { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; color: var(--ink-soft); font-weight: 600; }
.vibe-c .card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Chips ---------- */
.vibe-c .chip { background: #fff; border: 1px solid var(--line); font-weight: 500; font-size: .9rem; }
.vibe-c .chip__dot { display: none; }
.vibe-c .chip[data-kind="berry"], .vibe-c .chip[data-kind="flower"] { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.vibe-c .tag { background: transparent; color: inherit; opacity: .6; font-weight: 600; }

/* ---------- Photos: square-edged, no shadow ---------- */
.vibe-c .photo { border-radius: 0; box-shadow: none; }
.vibe-c .photo-strip { gap: 2px; }

/* ---------- Boxes, tables, FAQ: hairlines only ---------- */
.vibe-c .hours-box { background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 1.5rem 0 0; box-shadow: none; }
.vibe-c .hours-box dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.vibe-c .hours-box dd { color: var(--ink); }
.vibe-c .cal-scroll { background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; }
.vibe-c table.cal thead th { background: transparent; border-bottom: 1px solid var(--line); }
.vibe-c .bar { height: 6px; background: var(--line); }
.vibe-c .bar.on { background: var(--ink-soft); }
.vibe-c .bar.peak { background: var(--green-700); }
.vibe-c td.is-now { background: rgba(61,90,58,.06); }
.vibe-c th.is-now { background: transparent; color: var(--ink); font-weight: 700; }
.vibe-c .faq details { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 1.25rem 0; }
.vibe-c .faq details[open] { border-color: var(--line); }
.vibe-c .faq summary::after { color: var(--ink-soft); font-family: var(--sans); font-size: 1.2rem; }
.vibe-c .note { background: var(--paper-2); border-left: 2px solid var(--green-700); border-radius: 0; color: var(--ink-soft); }
.vibe-c .checklist li::before { background: var(--green-700); transform: none; border-radius: 50%; width: 6px; height: 6px; top: .62em; }

/* ---------- CTA + footer ---------- */
.vibe-c .cta { background: var(--ink); border-radius: 0; }
.vibe-c .site-footer { background: var(--ink); }
.vibe-c .site-footer h4 { color: rgba(255,255,255,.55); }
.vibe-c .social a { border-color: rgba(255,255,255,.25); }
.vibe-c .social a:hover { background: #fff; border-color: #fff; }
.vibe-c .social a:hover svg { fill: var(--ink); }

/* ---------- Map card ---------- */
.vibe-c .map-frame { border: 1px solid var(--line); border-radius: 0; box-shadow: none; background: var(--paper-2); }
.vibe-c .map-frame:hover { transform: none; box-shadow: none; }
.vibe-c .map-card strong { font-family: var(--sans); font-weight: 600; }
.vibe-c .map-card .go { color: var(--green-700); }

@media (max-width: 900px) {
  .vibe-c .hero { min-height: 78vh; }
  .vibe-c .hero__facts li { padding-right: 1.25rem; margin-right: 1.25rem; }
}
