/* Cavendish Cycling Store – Futura Bold */
:root {
  --color-primary: #0d3b2e;
  --color-primary-dark: #082419;
  --color-secondary: #c9a227;
  --color-bg-primary: #faf9f7;
  --color-bg-secondary: #f5f2ec;
  --color-bg-off: #f0eeea;
  --color-text-primary: #1a1a1a;
  --color-text-muted: #555;
  --font-body: "Futura Bold", "Futura", "Century Gothic", "Trebuchet MS", "Gill Sans", sans-serif;
  --font-display: "Futura Bold", "Futura", "Century Gothic", "Trebuchet MS", "Gill Sans", sans-serif;
  --font-sans: "Futura Bold", "Futura", "Century Gothic", "Trebuchet MS", "Gill Sans", sans-serif;
  --container: min(1200px, 100% - 2rem);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.75rem;
  --text-3xl: clamp(2rem, 5vw, 3rem);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); font-size: var(--text-base); font-weight: 400; color: var(--color-text-primary); background: var(--color-bg-primary); line-height: 1.6; }
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
strong, b { font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
a { color: inherit; text-decoration: none; }

.announcement { background: var(--color-primary-dark); color: #fff; text-align: center; padding: 0.6rem 1rem; font-size: 0.9rem; }
.announcement a { color: var(--color-secondary); text-decoration: underline; }
.navbar { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; display: inline-flex; align-items: center; position: relative; z-index: 2; cursor: pointer; }
.nav-logo img { height: 108px; width: auto; display: block; vertical-align: middle; pointer-events: none; }
.nav-logo span { color: var(--color-secondary); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.95rem; }
.nav-links a.active { color: var(--color-primary); font-weight: 600; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }

.hero { min-height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--color-primary-dark); color: #fff; }
.page-hero { min-height: 40vh; }
.hero-inner { padding: 3rem 1.5rem; max-width: 640px; }
.hero-overline { display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-secondary); margin-bottom: 0.5rem; }
.hero h1 { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; margin: 0 0 1rem; line-height: 1.2; }
.hero-text { margin: 0; opacity: 0.95; font-size: var(--text-lg); font-weight: 400; }
.hero-text .pop { font-size: var(--text-xl); font-weight: 700; }
.shop-purchase-header { margin: 1.5rem 0 0; padding: 1rem 1.5rem; background: rgba(201, 162, 39, 0.2); border: 2px solid var(--color-secondary); font-size: var(--text-lg); font-weight: 400; display: inline-block; }
.shop-purchase-header strong { color: var(--color-secondary); }
.subnav-link { font-size: var(--text-sm); font-weight: 400; }
.subnav-link.active { font-weight: 700; }

.page-subnav { background: var(--color-bg-off); padding: 0.75rem 0; border-bottom: 2px solid var(--color-primary-dark); }
.page-subnav .container { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.subnav-link { font-size: 0.9rem; color: var(--color-text-muted); }
.subnav-link:hover, .subnav-link.active { color: var(--color-primary); font-weight: 600; }
.subnav-num { font-weight: 700; color: var(--color-secondary); margin-right: 0.25rem; }

.section { padding: 3.5rem 0; border-top: 1px solid rgba(0,0,0,0.06); }
.section:first-of-type { border-top: none; }
.section--off { background: var(--color-bg-off); border-top-color: rgba(0,0,0,0.08); }
.section--bounded { border-top: 3px solid var(--color-secondary); padding-top: 2.5rem; }
.section-label { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-num { font-size: 2.25rem; font-weight: 700; color: var(--color-secondary); line-height: 1; min-width: 2.5rem; }
.section-title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; margin: 0; color: var(--color-primary); }
.section-inner { background: #fff; padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.06); }
.section--off .section-inner { background: #fff; }
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.overline { display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-secondary); margin-bottom: 0.5rem; }
.section-header h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; margin: 0 0 0.5rem; }
.section-header p { margin: 0; font-size: var(--text-base); font-weight: 400; color: var(--color-text-muted); }

/* Our Story prose – size & weight contrast */
.story-prose { max-width: 720px; font-size: var(--text-base); font-weight: 400; }
.story-prose h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; margin: 2rem 0 1rem; }
.story-prose h3 { font-size: var(--text-xl); font-weight: 700; margin: 1.5rem 0 0.75rem; }
.story-prose p { margin: 0 0 1rem; color: var(--color-text-primary); font-size: var(--text-base); }
.story-prose p .lead { font-size: var(--text-lg); font-weight: 700; }
.revenue-block { margin: 2rem 0; padding: 1.5rem 1.75rem; background: var(--color-bg-off); border-left: 4px solid var(--color-secondary); }
.revenue-block h3 { margin: 0 0 0.75rem; }
.revenue-block p { margin: 0 0 1rem; }
.revenue-block p:last-child { margin-bottom: 0; }
.revenue-block .img-block { margin-top: 1rem; }
.img-block { margin: 1rem 0; }
.img-block img { max-width: 100%; height: auto; display: block; }

/* Our Story: two photos side by side, scaled down */
.story-images { display: flex; gap: 1rem; margin: 1rem 0; max-width: 520px; }
.story-images .img-block { margin: 0; flex: 1; min-width: 0; }
.story-images .img-block img { max-width: 100%; max-height: 320px; width: auto; height: auto; object-fit: contain; display: block; }
.img-caption { margin: 0.5rem 0 1rem; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }

/* Timeline */
.timeline { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2rem; }
.timeline-marker { flex-shrink: 0; }
.timeline-year { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: var(--color-primary-dark); color: var(--color-secondary); font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm); }
.timeline-block { display: flex; gap: 2rem; align-items: flex-start; background: #fff; padding: 1.5rem; box-shadow: var(--shadow); border-left: 3px solid var(--color-secondary); }
.timeline-media { width: 100%; max-width: 320px; aspect-ratio: 16/10; background: var(--color-bg-off); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.timeline-media img { width: 100%; height: 100%; object-fit: cover; }
.timeline-placeholder { font-size: 2rem; opacity: 0.5; }
.timeline-text h3 { margin: 0 0 0.5rem; font-size: var(--text-lg); font-weight: 700; }
.timeline-text p { margin: 0; color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 400; }
.timeline-item--alt .timeline-block { flex-direction: row-reverse; border-left: none; border-right: 3px solid var(--color-secondary); }

/* Three Pillars – What We Do */
.pillars { display: flex; flex-direction: column; gap: 3rem; }
.pillar { background: #fff; padding: 2rem; box-shadow: var(--shadow); border-top: 4px solid var(--color-secondary); }
.pillar h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin: 0 0 1rem; color: var(--color-primary); }
.pillar p { margin: 0 0 1rem; color: var(--color-text-primary); font-size: var(--text-base); font-weight: 400; }
.pillar-stats { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #eee; font-size: var(--text-sm); }
.pillar-stat { display: inline-block; font-weight: 700; color: var(--color-primary); margin-right: 1rem; }
.pillar-partners { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); margin: 0.5rem 0 0; }
.pillar-media { margin: 1.5rem 0; }
.pillar-placeholder { display: block; padding: 2rem; background: var(--color-bg-off); text-align: center; color: var(--color-text-muted); font-size: 0.9rem; }
.btn-link { color: var(--color-secondary); font-weight: 600; }
.btn-link:hover { text-decoration: underline; }

/* Advantages – alternating blocks */
.advantage-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.advantage-block:last-child { margin-bottom: 0; }
.advantage-block--text-only { grid-template-columns: 1fr; }
.advantage-block--alt .advantage-media { order: 2; }
.advantage-block--alt .advantage-content { order: 1; }
.advantage-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--color-bg-off);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.advantage-media:has(.gallery-scroll) { overflow-x: auto; overflow-y: hidden; flex-direction: row; justify-content: flex-start; align-items: stretch; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.advantage-media .gallery-scroll { flex: 0 0 auto; width: max-content; margin: 0; align-self: stretch; min-height: 0; }
.advantage-media .gallery-scroll img { flex: 0 0 auto; width: 180px; height: 100%; min-height: 120px; object-fit: cover; scroll-snap-align: start; display: block; }
.advantage-media > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.advantage-media > a.advantage-media-link { display: block; width: 100%; height: 100%; cursor: pointer; }
.advantage-media > a.advantage-media-link img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.advantage-placeholder { padding: 1.5rem; text-align: center; color: var(--color-text-muted); font-size: 0.9rem; }
.advantage-time { position: absolute; bottom: 0.5rem; right: 0.75rem; font-size: 0.75rem; color: var(--color-text-muted); opacity: 0.8; }
.advantage-content { padding: 0.5rem 0; }
.advantage-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); margin: 0 0 1rem; line-height: 1.3; }
.advantage-content > p { margin: 0 0 0.75rem; color: var(--color-text-primary); font-size: var(--text-base); font-weight: 400; line-height: 1.65; }
.advantage-stat { margin: 1rem 0 0 !important; font-weight: 700; color: var(--color-secondary); font-size: var(--text-sm); }
.advantage-source { margin: 0.5rem 0 0 !important; font-size: var(--text-xs); font-weight: 400; color: var(--color-text-muted); font-style: italic; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.5rem; margin: 0.75rem 0; }
.gallery img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; display: block; }
.gallery-scroll { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0; margin: 0.75rem 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-scroll img { flex: 0 0 auto; width: 180px; height: 180px; object-fit: cover; scroll-snap-align: start; display: block; }
.gallery-scroll a { flex: 0 0 auto; display: block; cursor: pointer; }
.gallery-scroll a img { pointer-events: none; }

/* Testimonials */
.testimonials-source { margin-top: 0.5rem !important; font-size: 0.9rem; color: var(--color-text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: #fff; padding: 1.75rem; box-shadow: var(--shadow); border-left: 4px solid var(--color-secondary); }
.testimonial-quote { margin: 0 0 1.25rem; font-size: var(--text-base); font-weight: 400; line-height: 1.65; color: var(--color-text-primary); font-style: italic; }
.testimonial-meta { display: flex; flex-direction: column; gap: 0.25rem; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }
.testimonial-meta strong { font-weight: 700; color: var(--color-primary); }
.testimonial-product { font-weight: 500; color: var(--color-text-primary); }
.testimonial-type, .testimonial-detail, .testimonial-time { font-size: 0.85rem; opacity: 0.9; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: #fff; padding: 1.75rem; box-shadow: var(--shadow); }
.card-icon { display: none; }
.card h3 { font-size: var(--text-lg); font-weight: 700; margin: 0 0 0.5rem; }
.card p { margin: 0; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }

/* Mission & Vision */
.section--mission .section-title { color: #fff; }
.section--mission .section-num { color: var(--color-secondary); }
.section--mission {
  background: var(--color-bg-secondary);
  background-image:
    linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='none' stroke='%230d3b2e' stroke-width='0.5' opacity='0.05' d='M0 60 Q30 40 60 60 T120 60 M60 0 Q40 30 60 60 T60 120 M0 30 Q20 45 60 30 T120 30 M0 90 Q20 75 60 90 T120 90'/%3E%3C/svg%3E");
  background-size: auto, 120px 120px;
}
.mission-vision-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.mv-card { background: var(--color-primary-dark); color: #fff; padding: 2rem; border: 2px solid var(--color-secondary); box-shadow: var(--shadow); }
.mv-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-secondary); margin: 0 0 1rem; }
.mv-card p { margin: 0; line-height: 1.65; opacity: 0.95; font-size: 1rem; }
.values-heading { text-align: center; margin-bottom: 2rem; }
.values-heading h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 0.35rem; color: var(--color-primary); }
.values-tagline { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; letter-spacing: 0.02em; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-card { background: #fff; padding: 1.75rem; box-shadow: var(--shadow); opacity: 0; transform: translateY(20px); }
.section--mission.in-view .value-card { animation: valueReveal 0.6s ease forwards; }
.section--mission.in-view .value-card--1 { animation-delay: 0.1s; }
.section--mission.in-view .value-card--2 { animation-delay: 0.2s; }
.section--mission.in-view .value-card--3 { animation-delay: 0.3s; }
.section--mission.in-view .value-card--4 { animation-delay: 0.4s; }
.value-card h4 { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin: 0 0 0.5rem; }
.value-card p { margin: 0; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); line-height: 1.55; }
@keyframes valueReveal { to { opacity: 1; transform: translateY(0); } }

/* Shop */
.brands-note { margin: 0; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); }
/* Shop: Brands photo – separate full-bleed section (no overlay, photo not covered) */
.section--brands-photo {
  min-height: 55vh;
  background-image: url("https://raw.githubusercontent.com/eyccasia-web/Cavendish-CC/main/Brands%20carried-Mainpage%20%26%20About%20Page.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.partner-section { max-width: 720px; margin: 0 auto; }
.partner-intro { margin: 0 0 1.5rem; font-size: var(--text-base); font-weight: 400; color: var(--color-text-primary); line-height: 1.65; }
.partner-section .gallery-scroll { margin: 1rem 0 0; }

.brand-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.brand-logos--single { grid-template-columns: 120px 1fr; }
.brand-logo { display: flex; align-items: center; justify-content: center; aspect-ratio: 2/1; background: #fff; padding: 1rem; box-shadow: var(--shadow); transition: transform 0.25s ease, filter 0.25s ease; filter: grayscale(100%); }
.brand-logo:hover { filter: none; transform: scale(1.05); }
.brand-logo--wide { aspect-ratio: auto; min-height: 80px; }
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-logo--wide img { width: 100%; object-fit: contain; }
.brand-placeholder { font-size: 0.85rem; color: var(--color-text-muted); }
.brands-disclaimer { text-align: center; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); margin: 0; }
.categories-note { margin: 0 0 1rem; color: var(--color-text-muted); }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.category-card { background: #fff; overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.25s ease, transform 0.25s ease; display: block; color: inherit; }
.category-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-2px); }
.category-image { aspect-ratio: 16/10; background: var(--color-bg-off); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.category-image--gallery { aspect-ratio: auto; min-height: 200px; }
.category-image--gallery .gallery-scroll { margin: 0; width: 100%; }
.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-image .gallery-scroll img { width: 200px; height: 200px; }
.category-placeholder { padding: 1rem; font-size: 0.9rem; color: var(--color-text-muted); text-align: center; }
.category-body { padding: 1.5rem; }
.category-body h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-primary); margin: 0 0 0.5rem; }
.category-body p { margin: 0 0 0.5rem; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); line-height: 1.5; }
.category-price { font-size: var(--text-sm); font-weight: 700; color: var(--color-secondary); }
.how-to-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.how-step { text-align: center; padding: 1.5rem; }
.how-step h3 { font-size: var(--text-lg); font-weight: 700; margin: 0 0 0.5rem; color: var(--color-primary); }
.how-step p { margin: 0; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); line-height: 1.6; }
.how-step p a { color: var(--color-secondary); text-decoration: underline; }
.how-step p a:hover { color: var(--color-primary); }
.how-to-cta { text-align: center; margin: 0; }

/* Membership */
.member-card { max-width: 560px; margin: 0 auto; background: #fff; padding: 2rem 2.5rem; box-shadow: var(--shadow); border-top: 4px solid var(--color-secondary); }
.member-card-header { margin-bottom: 0.5rem; }
.member-card h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); margin: 0; }
.member-card-subhead { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin: 0 0 0.75rem; }
.member-card-divider { border: none; border-top: 1px solid var(--color-bg-off); margin: 0 0 1.25rem; }
.member-card-body { margin: 0 0 1.25rem; font-size: var(--text-base); font-weight: 400; color: var(--color-text-primary); line-height: 1.65; }
.member-card-list { list-style: none; padding: 0; margin: 0; }
.member-card-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--color-primary); font-weight: 500; }
.member-card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-secondary); font-weight: 700; }
.benefit-block { max-width: 640px; margin: 0 auto; display: flex; gap: 1.5rem; align-items: flex-start; background: #fff; padding: 2rem; box-shadow: var(--shadow); }
.benefit-content h3 { font-size: var(--text-lg); font-weight: 700; margin: 0 0 0.5rem; color: var(--color-primary); }
.benefit-content p { margin: 0; font-size: var(--text-base); font-weight: 400; color: var(--color-text-muted); line-height: 1.65; }
.stay-tuned-banner { background: linear-gradient(135deg, var(--color-secondary) 0%, #d4af37 40%, #b8962e 100%); color: var(--color-primary-dark); padding: 4rem 0; }
.stay-tuned-inner { text-align: center; max-width: 480px; margin: 0 auto; }
.stay-tuned-label { display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; opacity: 0.95; }
.stay-tuned-inner h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin: 0 0 0.5rem; }
.stay-tuned-inner p { margin: 0 0 1.5rem; opacity: 0.9; font-size: var(--text-base); font-weight: 400; }
.stay-tuned-cta { display: inline-block; background: var(--color-primary-dark); color: #fff; padding: 0.75rem 1.5rem; font-weight: 600; transition: opacity 0.2s ease; }
.stay-tuned-cta:hover { opacity: 0.9; color: #fff; }

/* Community */
.community-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.community-visual { aspect-ratio: 4/3; background: var(--color-bg-off); display: flex; align-items: center; justify-content: center; }
.community-placeholder { padding: 2rem; text-align: center; color: var(--color-text-muted); font-size: 0.9rem; }
.community-content p { margin: 0 0 1rem; color: var(--color-text-primary); line-height: 1.65; }
.community-features { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.community-features li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: var(--color-text-primary); }
.community-features li::before { content: "✓"; position: absolute; left: 0; color: var(--color-secondary); font-weight: 700; }
.join-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 800px; margin: 0 auto 1.5rem; }
.join-step-card { background: #fff; padding: 1.75rem; box-shadow: var(--shadow); border-top: 4px solid var(--color-secondary); }
.join-step-num { display: none; }
.join-step-card h3 { font-size: var(--text-lg); font-weight: 700; margin: 0 0 0.5rem; color: var(--color-primary); }
.join-step-card p { margin: 0; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); line-height: 1.55; }
.join-wechat-id { margin-bottom: 1rem !important; }
.join-wechat-id strong { color: var(--color-primary); }
.join-qr { margin-top: 1rem; aspect-ratio: 1; max-width: 160px; background: var(--color-bg-off); display: flex; align-items: center; justify-content: center; }
.qr-placeholder { padding: 1rem; font-size: 0.8rem; color: var(--color-text-muted); text-align: center; }
.join-note { text-align: center; font-size: 0.9rem; color: var(--color-text-muted); margin: 0; max-width: 560px; margin-left: auto; margin-right: auto; }
.sponsorship-cta { text-align: center; margin: 0; }

/* FAQ */
.container--narrow { max-width: 720px; }
.faq-list { border: 1px solid #e5e3df; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.faq-item { border-bottom: 1px solid #e5e3df; }
.faq-item:last-child { border-bottom: none; }
.faq-item:nth-child(even) { background: var(--color-bg-off); }
.faq-question { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 700; color: #2c2c2c; padding: 1rem; cursor: pointer; list-style: none; position: relative; transition: background 0.2s ease; }
.faq-question::-webkit-details-marker, .faq-question::marker { display: none; content: none; }
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-answer { font-family: var(--font-body); font-size: var(--text-base); font-weight: 400; color: var(--color-text-muted); padding: 0 1rem 1rem; padding-left: 16px; overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-item[open] .faq-answer { max-height: 1200px; }
.faq-answer p, .faq-answer ul { margin: 0 0 0.75rem; line-height: 1.6; }
.faq-answer ul { list-style: disc; padding-left: 1.25rem; }
.faq-answer a { color: var(--color-secondary); text-decoration: underline; }
.faq-answer a:hover { color: var(--color-primary); }
.faq-cta { text-align: center; margin: 2rem 0 0; }

/* Contact */
.contact-card { background: #fff; padding: 2rem; box-shadow: var(--shadow); border-top: 4px solid var(--color-secondary); margin-bottom: 1.5rem; }
.contact-card:last-of-type { margin-bottom: 0; }
.contact-card-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-secondary); margin-bottom: 0.5rem; }
.contact-card h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin: 0 0 0.75rem; color: var(--color-primary); }
.contact-card h2 a:hover { color: var(--color-secondary); }
.contact-card-link { margin: 0 0 0.75rem; word-break: break-all; }
.contact-card-link a { color: var(--color-secondary); text-decoration: underline; }
.contact-card-link a:hover { color: var(--color-primary); }
.contact-card-address { margin: 0 0 0.75rem; color: var(--color-text-primary); line-height: 1.6; }
.contact-card-note { margin: 0; font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); line-height: 1.55; }
.contact-hours { text-align: center; padding: 1.5rem; }
.contact-hours h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; margin: 0 0 0.5rem; color: var(--color-primary); }
.contact-hours p { margin: 0; font-size: var(--text-base); font-weight: 400; color: var(--color-text-muted); }

.footer { background: var(--color-primary-dark); color: #fff; padding: 3rem 0 1.5rem; margin-top: 3rem; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--color-secondary); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-brand .nav-logo img { height: 84px; }
.footer-brand .nav-logo span { color: var(--color-secondary); }
.footer h4 { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 1rem; opacity: 0.9; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; font-size: 0.85rem; opacity: 0.8; }

.fade-up { opacity: 1; }

@media (max-width: 900px) {
  .mission-vision-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logos { grid-template-columns: repeat(3, 1fr); }
  .how-to-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .timeline-block { flex-direction: column !important; border-left: 3px solid var(--color-secondary) !important; border-right: none !important; }
  .timeline-media { max-width: none; }
  .values-grid { grid-template-columns: 1fr; }
  .advantage-block, .advantage-block--alt { grid-template-columns: 1fr; gap: 1.5rem; }
  .advantage-block--alt .advantage-media, .advantage-block--alt .advantage-content { order: unset; }
  .member-card { padding: 1.5rem; }
  .benefit-block { flex-direction: column; }
  .community-split { grid-template-columns: 1fr; }
  .join-steps { grid-template-columns: 1fr; }
}
