/*
Theme Name: Oak City Run Club
Theme URI: https://oakcityrunclub.com
Description: Custom standalone theme for Oak City Run Club — a belonging-first running community in Raleigh, NC. Ported from the V2 design. Header/footer authored once, single-page front template, token-based design system. No page builder.
Author: Snazzy Solutions
Version: 1.0
*/

/* =========================================================================
   DESIGN TOKENS — everything inherits from here.
   ========================================================================= */
:root {
    --c-bg:        #0b0b0b;   /* near-black page background */
    --c-ink:       #0b0b0b;   /* text on white invert bands */
    --c-ink-soft:  #4a463f;   /* muted body text on white */
    --c-white:     #ffffff;
    --c-accent:    #FC5201;   /* OCRC orange */

    --w-65:  rgba(255,255,255,0.65);
    --w-45:  rgba(255,255,255,0.45);
    --w-line:rgba(255,255,255,0.12);

    --font-head:   "Anton", Impact, sans-serif;          /* display */
    --font-body:   "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-label:  "Archivo Narrow", "Archivo", sans-serif;  /* eyebrows / nav */

    --wrap:   1340px;
    --pad-x:  24px;
    --hdr-h:  64px;
}

/* =========================================================================
   RESET-ISH
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; /* NOT hidden — hidden breaks sticky + iOS momentum */
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
::selection { background: #fff; color: #0b0b0b; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

/* =========================================================================
   LAYOUT HELPERS
   ========================================================================= */
.ocrc-wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.ocrc-section { padding-top: clamp(64px,9vw,120px); padding-bottom: clamp(64px,9vw,120px); }
/* offset sticky header for anchor jumps */
[id] { scroll-margin-top: 84px; }

/* section header (number + title) */
.ocrc-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.ocrc-num  { font-family: var(--font-head); color: rgba(255,255,255,0.3); font-size: clamp(28px,4vw,52px); }
.ocrc-h2   { font-family: var(--font-head); font-size: clamp(38px,6vw,76px); line-height: 1.02; }
.ocrc-eyebrow { font-family: var(--font-label); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }

/* =========================================================================
   TOP UTILITY BAR
   ========================================================================= */
.ocrc-topbar { background: #000; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ocrc-topbar-inner { max-width: var(--wrap); margin: 0 auto; min-height: 40px; padding: 7px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.ocrc-topbar-social { display: flex; align-items: center; gap: 16px; }
.ocrc-topicon { opacity: 0.72; transition: opacity .2s ease; display: flex; }
.ocrc-topicon:hover { opacity: 1; }
.ocrc-topbar-links { display: flex; align-items: center; gap: 22px;
    font-family: var(--font-label); font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.ocrc-toplink { color: rgba(255,255,255,0.6); transition: color .2s ease; display: inline-flex; align-items: center; gap: 5px; }
.ocrc-toplink:hover { color: #fff; }
.ocrc-toplink span { font-size: 11px; }

/* =========================================================================
   HEADER
   ========================================================================= */
.ocrc-header { position: sticky; top: 0; z-index: 50; background: rgba(11,11,11,0.9);
    backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-bar .ocrc-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .ocrc-header { top: 46px; } }
.ocrc-header-inner { max-width: var(--wrap); margin: 0 auto; height: var(--hdr-h); padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ocrc-logo { font-family: var(--font-head); color: #fff; font-size: 23px; letter-spacing: 0.04em; white-space: nowrap; }
.ocrc-logo-short { letter-spacing: 0.06em; display: none; }
.ocrc-nav { display: flex; align-items: center; gap: 30px; }
.ocrc-nav a { color: rgba(255,255,255,0.7); font-family: var(--font-label); font-weight: 700; font-size: 14px;
    letter-spacing: 0.12em; text-transform: uppercase; transition: color .2s ease; }
.ocrc-nav a:hover { color: #fff; }
.ocrc-btn-solid { background: #fff; color: #0b0b0b; font-family: var(--font-label); font-weight: 700; font-size: 14px;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 18px; line-height: 1; white-space: nowrap;
    transition: transform .2s ease; }
.ocrc-btn-solid:hover { transform: translateY(-2px); }

/* =========================================================================
   HERO
   ========================================================================= */
.ocrc-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; background: #0b0b0b;
    padding-top: clamp(72px,11vh,112px); /* keep content clear of the sticky header */ }
/* z-index:0 makes this its own stacking context so the crossfading images'
   internal z-index (1-3) stay BELOW the scrim — overlay stays static, no flicker. */
.ocrc-hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.ocrc-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
    opacity: 0; animation: ocrcSlide 30s ease-in-out infinite; }
@keyframes ocrcSlide {
    0%   { opacity: 0; transform: scale(1.06); z-index: 3; }
    4%   { opacity: 1; transform: scale(1.075); z-index: 3; }
    20%  { opacity: 1; transform: scale(1.115); z-index: 2; }
    24%  { opacity: 1; transform: scale(1.125); z-index: 2; }
    27%  { opacity: 0; transform: scale(1.13);  z-index: 1; }
    100% { opacity: 0; transform: scale(1.06);  z-index: 1; }
}
.ocrc-hero-scrim { position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.05) 32%, rgba(11,11,11,0.55) 74%, rgba(11,11,11,0.9) 100%); }
.ocrc-hero-inner { position: relative; z-index: 3; width: 100%; max-width: var(--wrap); margin: 0 auto;
    padding: 0 24px clamp(44px,6vw,72px); }
.ocrc-hero-loc { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.82);
    font-family: var(--font-label); font-weight: 700; font-size: 13.5px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px; }
.ocrc-hero-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.22); }
.ocrc-hero h1 { font-family: var(--font-head); color: #fff; font-size: clamp(48px,8.5vw,128px); line-height: 0.92;
    letter-spacing: 0.01em; text-shadow: 0 2px 40px rgba(0,0,0,0.3); }
.ocrc-hero-lede { color: rgba(255,255,255,0.86); font-size: clamp(16px,1.6vw,21px); line-height: 1.5; max-width: 50ch; margin: 24px 0 32px; }
.ocrc-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ocrc-btn-lg { font-weight: 700; font-size: 16.5px; padding: 16px 32px; line-height: 1; transition: transform .2s ease; }
.ocrc-btn-lg:hover { transform: translateY(-2px); }
.ocrc-btn-lg.is-solid { background: #fff; color: #0b0b0b; }
.ocrc-btn-lg.is-ghost { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(6px); color: #fff; padding: 16px 30px; }
.ocrc-hero-stats { display: grid; grid-template-columns: repeat(4, max-content); gap: 26px 40px; margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.22); padding-top: 26px; }
.ocrc-stat-num { font-family: var(--font-head); font-size: clamp(30px,3.4vw,46px); line-height: 1; }
.ocrc-stat-lbl { color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-top: 4px; }

/* =========================================================================
   MARQUEE STRIP
   ========================================================================= */
.ocrc-marquee { background: var(--c-accent); color: #fff; padding: 18px 24px; overflow: hidden; }
.ocrc-marquee-inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 26px; align-items: center; font-family: var(--font-head); font-size: clamp(18px,2.4vw,30px); letter-spacing: 0.02em; }
.ocrc-marquee-sep { opacity: 0.5; }

/* =========================================================================
   SIGNUP BAND (white invert)
   ========================================================================= */
.ocrc-band-white { background: #fff; color: #0b0b0b; }
.ocrc-signup-grid { max-width: var(--wrap); margin: 0 auto; padding: clamp(56px,8vw,110px) 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.ocrc-signup-grid .ocrc-eyebrow { color: #0b0b0b; opacity: 0.55; margin-bottom: 16px; }
.ocrc-signup-h2 { font-family: var(--font-head); font-size: clamp(40px,6vw,84px); line-height: 1.0; letter-spacing: 0.005em; margin-bottom: 18px; }
.ocrc-signup-p { font-size: clamp(16px,1.5vw,19px); line-height: 1.55; color: var(--c-ink-soft); max-width: 44ch; }

/* signup form (on white) */
.ocrc-form { display: flex; flex-direction: column; gap: 12px; }
.ocrc-form input { width: 100%; padding: 17px 18px; border: 2px solid #0b0b0b; background: #fff; font-size: 16px;
    font-family: inherit; color: #0b0b0b; outline: none; }
.ocrc-form input:focus { border-color: var(--c-accent); }
.ocrc-form button { width: 100%; background: #0b0b0b; color: #fff; border: none; font-family: var(--font-label);
    font-weight: 700; font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; padding: 18px; cursor: pointer; transition: background .2s ease; }
.ocrc-form button:hover { background: var(--c-accent); }
.ocrc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; } /* honeypot */
.ocrc-form-success { border: 2px solid #0b0b0b; padding: 40px 28px; text-align: center; }
.ocrc-form-success .t { font-family: var(--font-head); font-size: 30px; margin-bottom: 8px; }
.ocrc-form-success p { color: var(--c-ink-soft); font-size: 16px; }

/* =========================================================================
   SCHEDULE
   ========================================================================= */
.ocrc-sched-row { display: grid; grid-template-columns: 300px 1fr; gap: clamp(20px,3vw,44px); align-items: center;
    padding: clamp(24px,3vw,40px) 0; border-top: 1px solid rgba(255,255,255,0.14); }
.ocrc-sched-end { border-top: 1px solid rgba(255,255,255,0.14); }
.ocrc-imgwrap { position: relative; overflow: hidden; background: #161616; }
.ocrc-imgwrap img { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.ocrc-imgwrap:hover img { transform: scale(1.06); }
.ocrc-sched-thumb { aspect-ratio: 4/3; }
.ocrc-sched-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.ocrc-tag { position: absolute; top: 12px; left: 12px; background: #fff; color: #0b0b0b; font-family: var(--font-label);
    font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; white-space: nowrap; }
.ocrc-sched-title { font-family: var(--font-head); font-size: clamp(28px,3.5vw,46px); line-height: 0.95; margin-bottom: 16px; }
.ocrc-sched-meta { display: flex; flex-wrap: wrap; gap: 14px 40px; }
.ocrc-meta-lbl { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.ocrc-meta-val { font-size: 16.5px; font-weight: 600; }
.ocrc-sched-note { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.5; margin-top: 16px; max-width: 56ch; }

/* =========================================================================
   GALLERY
   ========================================================================= */
.ocrc-gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.ocrc-link-underline { color: #fff; font-family: var(--font-label); font-weight: 700; font-size: 14px;
    letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 2px solid #fff; padding-bottom: 4px; }
.ocrc-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ocrc-gallery a { position: relative; display: block; overflow: hidden; aspect-ratio: 1/1; background: #161616; }
.ocrc-gallery a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%;
    transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.ocrc-gallery a:hover img { transform: scale(1.06); }
.ocrc-gallery-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.74) 100%); pointer-events: none; }
.ocrc-gallery-cap { position: absolute; left: 13px; bottom: 11px; right: 13px; z-index: 2; pointer-events: none; }
.ocrc-gallery-cap .t { font-family: var(--font-head); color: #fff; font-size: 15px; letter-spacing: 0.02em; }
.ocrc-gallery-cap .d { color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 600; }

/* =========================================================================
   EVENTS
   ========================================================================= */
.ocrc-events { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ocrc-event { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #161616; }
.ocrc-event img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.ocrc-event:hover img { transform: scale(1.06); }
.ocrc-event-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.82) 100%); }
.ocrc-event-body { position: absolute; inset: 0; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; }
.ocrc-event-tag { align-self: flex-start; background: #fff; color: #0b0b0b; font-family: var(--font-label); font-weight: 700;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; margin-bottom: 14px; }
.ocrc-event-title { font-family: var(--font-head); font-size: 28px; color: #fff; margin-bottom: 8px; letter-spacing: 0.01em; }
.ocrc-event-desc { color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.45; }

/* =========================================================================
   ABOUT (full-bleed)
   ========================================================================= */
.ocrc-about { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1); }
.ocrc-about > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.ocrc-about-scrim { position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,11,11,0.93) 0%, rgba(11,11,11,0.72) 46%, rgba(11,11,11,0.32) 100%); }
.ocrc-about-inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: clamp(48px,7vw,96px) 24px; width: 100%; }
.ocrc-about .ocrc-eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.ocrc-about h2 { font-family: var(--font-head); font-size: clamp(34px,5vw,72px); line-height: 0.95; margin-bottom: 26px; max-width: 18ch; }
.ocrc-about p { font-size: clamp(16px,1.6vw,20px); line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 56ch; margin-bottom: 14px; }
.ocrc-about p:last-child { margin-bottom: 0; }

/* Generic page (Privacy Policy, Terms, etc.) — readable prose column */
.ocrc-page { padding: clamp(56px,7vw,90px) var(--pad-x) clamp(64px,9vw,110px); }
.ocrc-page-wrap { max-width: 760px; margin: 0 auto; }
.ocrc-page-title { font-family: var(--font-head); color: #fff; font-size: clamp(40px,7vw,68px);
    line-height: 0.95; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 18px; }
.ocrc-prose { color: rgba(255,255,255,0.74); font-size: 16.5px; line-height: 1.7; }
.ocrc-prose > p:first-child { color: rgba(255,255,255,0.9); font-size: 18px; }
.ocrc-prose h2 { font-family: var(--font-head); color: #fff; font-size: clamp(24px,3.2vw,33px);
    text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.02; margin: 44px 0 14px; }
.ocrc-prose h3 { font-family: var(--font-label); color: #fff; font-weight: 700; font-size: 17px;
    text-transform: uppercase; letter-spacing: 0.05em; margin: 28px 0 10px; }
.ocrc-prose p { margin: 0 0 18px; }
.ocrc-prose a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
.ocrc-prose a:hover { filter: brightness(1.15); }
.ocrc-prose ul, .ocrc-prose ol { margin: 0 0 18px; padding-left: 22px; }
.ocrc-prose li { margin-bottom: 8px; }
.ocrc-prose strong { color: rgba(255,255,255,0.92); }
.ocrc-prose em { color: rgba(255,255,255,0.58); font-style: italic; }
.ocrc-prose hr { border: 0; border-top: 1px solid rgba(255,255,255,0.14); margin: 36px 0; }

/* =========================================================================
   PARTNERS
   ========================================================================= */
.ocrc-partners { max-width: var(--wrap); margin: 0 auto; padding: clamp(48px,6vw,80px) 24px; text-align: center; }
.ocrc-partners .ocrc-eyebrow { color: rgba(255,255,255,0.45); display: block; margin-bottom: 26px; }
.ocrc-partners-row { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; }
.ocrc-partner { font-family: var(--font-head); font-size: clamp(20px,2.6vw,32px); color: #fff; }

/* =========================================================================
   CONNECT
   ========================================================================= */
.ocrc-connect { border-top: 1px solid rgba(255,255,255,0.1); }
.ocrc-connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); align-items: start; }
.ocrc-connect-p { font-size: clamp(16px,1.6vw,19px); line-height: 1.55; color: rgba(255,255,255,0.7); margin-bottom: clamp(32px,4vw,48px); max-width: 60ch; }
.ocrc-channels { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 16px; }
/* Connect hero: GroupMe card beside a team photo */
.ocrc-connect-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; align-items: stretch; }
.ocrc-connect-hero .ocrc-card-white { display: flex; flex-direction: column; }
.ocrc-connect-hero .ocrc-card-white .ocrc-card-btn { margin-top: auto; align-self: flex-start; }
.ocrc-connect-photo { position: relative; overflow: hidden; min-height: 300px; background: #161616; }
.ocrc-connect-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.ocrc-channel { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12); padding: 15px 18px; transition: background .25s ease, border-color .25s ease; }
.ocrc-channel:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.ocrc-channel-icon { width: 42px; height: 42px; flex: none; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; }
.ocrc-channel-txt { flex: 1; }
.ocrc-channel-txt .n { display: block; font-weight: 700; font-size: 16px; color: #fff; }
.ocrc-channel-txt .h { display: block; color: rgba(255,255,255,0.6); font-size: 13.5px; }
.ocrc-channel-arrow { color: #fff; font-weight: 800; font-size: 17px; }

/* Inline NE arrow — drawn as SVG (NOT the ↗ U+2197 glyph) so it can NEVER
   fall back to an emoji glyph on iOS. Inherits color via currentColor, scales in em. */
.ocrc-arr { display: inline-block; width: 0.78em; height: 0.78em; flex: none; vertical-align: -0.05em; }
.ocrc-channel-arrow .ocrc-arr { width: 1em; height: 1em; vertical-align: -0.08em; }
.ocrc-card-white { background: #fff; color: #0b0b0b; padding: clamp(28px,3.5vw,44px); }
.ocrc-card-white .ocrc-eyebrow { opacity: 0.55; margin-bottom: 12px; }
.ocrc-card-white h3 { font-family: var(--font-head); font-size: clamp(26px,3vw,38px); line-height: 0.95; margin-bottom: 18px; }
.ocrc-card-p { color: rgba(11,11,11,0.7); font-size: 15.5px; line-height: 1.6; margin-bottom: 26px; }
.ocrc-card-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--c-accent); color: #fff;
    font-family: var(--font-label); font-weight: 700; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 16px 26px; transition: transform .2s ease, filter .2s ease; }
.ocrc-card-btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.ocrc-card-white .ocrc-form input { padding: 16px 18px; }
.ocrc-card-white .ocrc-form button { font-size: 16px; padding: 17px; }
.ocrc-card-white .ocrc-form-success { padding: 30px 22px; }
.ocrc-card-white .ocrc-form-success .t { font-size: 26px; margin-bottom: 6px; }
.ocrc-card-white .ocrc-form-success p { font-size: 15px; }

/* closing CTA */
.ocrc-closing { margin-top: clamp(56px,8vw,96px); border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: clamp(48px,6vw,76px); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.ocrc-closing .ocrc-eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.ocrc-closing-big { font-family: var(--font-head); font-size: clamp(30px,4.6vw,58px); line-height: 0.98; }
.ocrc-closing-btn { background: #fff; color: #0b0b0b; font-family: var(--font-label); font-weight: 700; font-size: 15px;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 18px 34px; white-space: nowrap; transition: transform .2s ease; }
.ocrc-closing-btn:hover { transform: translateY(-2px); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.ocrc-foot { border-top: 1px solid rgba(255,255,255,0.1); padding-bottom: clamp(40px,5vw,64px); }
.ocrc-foot-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr; gap: 36px 40px; margin-top: clamp(48px,6vw,76px); }
.ocrc-foot-brand { font-family: var(--font-head); font-size: 24px; margin-bottom: 14px; }
.ocrc-foot-about { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 32ch; margin-bottom: 18px; }
.ocrc-foot-social { display: flex; gap: 10px; }
.ocrc-foot-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; transition: background .2s ease; }
.ocrc-foot-social a:hover { background: rgba(255,255,255,0.12); }
.ocrc-foot-col-h { font-family: var(--font-label); font-weight: 700; font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.ocrc-foot-links { display: flex; flex-direction: column; gap: 11px; font-family: var(--font-label); font-weight: 700;
    font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; }
.ocrc-foot-link { color: rgba(255,255,255,0.62); transition: color .2s ease; }
.ocrc-foot-link:hover { color: #fff; }
.ocrc-foot-meet { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.55; }
.ocrc-foot-meet .strong { display: block; color: #fff; font-weight: 700; }
.ocrc-foot-meet > div { margin-bottom: 12px; }
.ocrc-foot-meet > div:last-child { margin-bottom: 0; }
.ocrc-foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; margin-top: clamp(28px,3vw,40px); }
.ocrc-foot-copy { display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; font-size: 13px; }
.ocrc-foot-copyline { color: rgba(255,255,255,0.7); }
.ocrc-foot-credit { color: rgba(255,255,255,0.3); font-size: 11.5px; transition: color .2s ease; }
.ocrc-foot-credit:hover { color: var(--c-accent); }
.ocrc-foot-top-link { color: rgba(255,255,255,0.6); font-family: var(--font-label); font-weight: 700; font-size: 12.5px;
    letter-spacing: 0.12em; text-transform: uppercase; }

/* Floating back-to-top button */
.ocrc-totop { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 48px; height: 48px; border: 0;
    border-radius: 50%; background: var(--c-accent); color: #fff; cursor: pointer; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 6px 22px rgba(0,0,0,0.4); opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: opacity .25s ease, transform .25s ease, visibility .25s, filter .2s ease; }
.ocrc-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ocrc-totop:hover { filter: brightness(1.08); transform: translateY(-2px); }
.ocrc-totop svg { width: 22px; height: 22px; }

/* schedule card actions (Get directions / Join the GroupMe) */
.ocrc-sched-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ocrc-sched-btn { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-family: var(--font-label); font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 11px 18px; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.ocrc-sched-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.ocrc-sched-btn.is-accent { background: var(--c-accent); border-color: var(--c-accent); }
.ocrc-sched-btn.is-accent:hover { filter: brightness(1.08); background: var(--c-accent); }

/* WHAT TO EXPECT — connected timeline (dots on a hairline) */
.ocrc-expect-intro { color: rgba(255,255,255,0.6); font-size: clamp(16px,1.6vw,19px); line-height: 1.55;
    max-width: 60ch; margin: -8px 0 clamp(40px,5vw,60px); }
.ocrc-expect { display: grid; grid-template-columns: repeat(4,1fr); }
.ocrc-expect-step { position: relative; padding: 30px 36px 0 0; border-top: 2px solid rgba(255,255,255,0.16); margin-top: 26px; }
.ocrc-expect-step::before { content: ""; position: absolute; top: -8px; left: 0; width: 14px; height: 14px; border-radius: 50%;
    background: var(--c-accent); box-shadow: 0 0 0 5px var(--c-bg); }
.ocrc-expect-time { font-family: var(--font-label); font-weight: 700; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 12px; }
.ocrc-expect-time span { margin-left: 4px; }
.ocrc-expect-label { font-family: var(--font-head); font-size: clamp(27px,3vw,40px); line-height: 0.98; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 12px; }
.ocrc-expect-desc { color: rgba(255,255,255,0.62); font-size: 15.5px; line-height: 1.55; max-width: 26ch; }

/* inquiry form textarea (matches .ocrc-form inputs) */
.ocrc-form textarea { width: 100%; padding: 17px 18px; border: 2px solid #0b0b0b; background: #fff; font-size: 16px;
    font-family: inherit; color: #0b0b0b; outline: none; resize: vertical; min-height: 110px; }
.ocrc-form textarea:focus { border-color: var(--c-accent); }

/* =========================================================================
   RESPONSIVE (matches design breakpoints)
   ========================================================================= */
@media (max-width: 980px) {
    .ocrc-nav { display: none !important; }
    .ocrc-sched-row { grid-template-columns: 1fr !important; }
    .ocrc-signup-grid, .ocrc-connect-grid { grid-template-columns: 1fr !important; }
    .ocrc-connect-hero { grid-template-columns: 1fr !important; }
    .ocrc-channels { grid-template-columns: 1fr !important; }
    /* Mobile: centered single-column timeline (1×4) — dot centered above each
       centered step (matches the all-text-centered mobile layout). */
    .ocrc-expect { grid-template-columns: 1fr !important; max-width: 440px; margin-left: auto; margin-right: auto; }
    .ocrc-expect-step { border-top: none; border-left: none; margin-top: 0; padding: 32px 0 0; text-align: center; }
    .ocrc-expect-step:first-child { padding-top: 0; }
    .ocrc-expect-step::before { position: static; display: block; margin: 0 auto 16px; top: auto; left: auto; }
    .ocrc-expect-desc { max-width: 34ch; margin-left: auto; margin-right: auto; }
    .ocrc-foot-cols { grid-template-columns: 1fr 1fr !important; }
    .ocrc-foot-cols > div:nth-child(1) { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    /* Spell out the full club name on mobile (sized down to sit beside Join Us) */
    .ocrc-logo-full { display: inline !important; font-size: clamp(15px,4.6vw,19px); }
    .ocrc-logo-short { display: none !important; }
    .ocrc-hero h1 { font-size: clamp(64px,18vw,78px) !important; } /* ~40% bigger on mobile */
    /* Hero CTAs inline (side-by-side) instead of stacked */
    .ocrc-hero-cta { flex-wrap: nowrap !important; gap: 10px !important; }
    .ocrc-hero-cta .ocrc-btn-lg { flex: 1 1 0; min-width: 0; text-align: center; white-space: nowrap;
        padding: 15px 12px !important; font-size: 15px !important; }
    /* Our Story: stays a cropped background image on mobile (shorter section) */
    .ocrc-about { min-height: 56vh !important; }
    .ocrc-about > img { object-position: 50% 50% !important; }
    .ocrc-about-inner { padding: clamp(40px,9vw,60px) 24px !important; }
    /* stronger overlay on mobile for text legibility */
    .ocrc-hero-scrim { background: linear-gradient(180deg, rgba(11,11,11,0.62) 0%, rgba(11,11,11,0.4) 34%, rgba(11,11,11,0.72) 70%, rgba(11,11,11,0.95) 100%) !important; }
    .ocrc-gallery { grid-template-columns: repeat(2,1fr) !important; }
    .ocrc-events { grid-template-columns: 1fr !important; }
    /* Brand spans full; the four link columns sit 2-up */
    .ocrc-foot-cols { grid-template-columns: 1fr 1fr !important; }
    .ocrc-foot-cols > div:nth-child(1) { grid-column: 1 / -1; }
    .ocrc-topbar-links { display: none !important; }
    /* Stats as an even 2×2 grid */
    .ocrc-hero-stats { grid-template-columns: repeat(2,1fr) !important; gap: 24px 16px !important; justify-items: center; }
    .ocrc-marquee-sep2 { display: none !important; }
    .ocrc-marquee-3 { flex-basis: 100%; text-align: center; }

    /* --- Center all text on mobile --- */
    .ocrc-hero-inner, .ocrc-section, .ocrc-about-inner, .ocrc-connect .ocrc-section,
    .ocrc-sched-note, .ocrc-expect-intro, .ocrc-connect-p, .ocrc-card-p, .ocrc-card-white,
    .ocrc-about p, .ocrc-about h2, .ocrc-foot-about, .ocrc-foot-copy, .ocrc-foot-cols,
    .ocrc-stat-num, .ocrc-stat-lbl, .ocrc-event-body, .ocrc-sched-title { text-align: center !important; }
    .ocrc-head, .ocrc-gallery-head, .ocrc-sched-meta, .ocrc-sched-actions, .ocrc-hero-cta,
    .ocrc-hero-loc, .ocrc-hero-stats, .ocrc-foot-social, .ocrc-foot-bottom, .ocrc-foot-copy,
    .ocrc-channels, .ocrc-marquee-inner, .ocrc-foot-links { justify-content: center !important; }
    .ocrc-foot-links { align-items: center !important; }
    .ocrc-channel { justify-content: center; text-align: left; }
    .ocrc-card-white .ocrc-form, .ocrc-card-btn { justify-content: center; }
    .ocrc-connect-hero .ocrc-card-white .ocrc-card-btn { align-self: center; }
    .ocrc-sched-meta > div { min-width: 0 !important; }
}
