/*
 * Harris Park Coffee + Eatery — Personality Layer
 * Warm brown · Mountain community · Hospitality
 * Imports: tokens.css → system.css → this file
 */

/* ─── Nav ─── */
.nav-cta { background: var(--primary); }
.nav-cta:hover { background: var(--dark); }

/* ─── Hero ─── */
.hero {
  background: var(--dark); min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(109,74,46,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: var(--sp-16) var(--sp-4);
  display: grid; grid-template-columns: 1fr 360px; gap: var(--sp-10);
  align-items: center; position: relative; z-index: 1;
}
.hero-kicker { color: var(--tertiary); }
.hero-headline {
  font-size: clamp(36px, 5vw, 58px); font-weight: 300; line-height: 1.07;
  letter-spacing: -0.025em; color: white; margin-bottom: var(--sp-3);
}
.hero-headline strong { font-weight: 700; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.72; margin-bottom: var(--sp-5); }
.hero-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--primary); color: white;
  padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: var(--r-md);
  text-decoration: none; transition: opacity var(--t-fast);
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  display: inline-block; background: transparent; color: rgba(255,255,255,0.8);
  padding: 14px 28px; font-size: 14px; font-weight: 500; border-radius: var(--r-md);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color var(--t-fast);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); }

/* Hero aside */
.hero-aside { display: flex; flex-direction: column; gap: var(--sp-3); }
.hero-quote {
  padding: var(--sp-4); background: rgba(255,255,255,0.07); border-radius: var(--r-lg);
  border-left: 3px solid var(--primary);
}
.quote-mark { font-size: 52px; font-weight: 700; color: var(--primary); line-height: 0.7; margin-bottom: var(--sp-2); opacity: 0.7; }
.quote-text { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: var(--sp-2); font-style: italic; }
.quote-attr { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tertiary); }
.open-card {
  padding: var(--sp-4); background: rgba(255,255,255,0.04); border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.open-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tertiary); margin-bottom: var(--sp-1); }
.open-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── Offers ─── */
.offers-section { background: white; border-top: 1px solid var(--border); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.offer-card {
  padding: var(--sp-5) var(--sp-4); border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--light);
  transition: border-color var(--t-std), box-shadow var(--t-std), transform var(--t-std);
}
.offer-card:hover { border-color: rgba(109,74,46,0.25); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.offer-stripe { height: 3px; background: var(--primary); border-radius: 2px; margin-bottom: var(--sp-3); }
.offer-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: var(--sp-2); }
.offer-desc { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ─── Audiences / Community ─── */
.audiences-section { background: var(--light); border-top: 1px solid var(--border); }
.audiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.audience-card {
  padding: var(--sp-4) var(--sp-3); border-radius: var(--r-lg);
  background: white; border: 1px solid var(--border);
  transition: border-color var(--t-std), box-shadow var(--t-std);
}
.audience-card:hover { border-color: rgba(109,74,46,0.2); box-shadow: var(--shadow-sm); }
.audience-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: var(--sp-1); }
.audience-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ─── Process / How It Works ─── */
.process-section { background: var(--primary); }
.process-section .section-kicker { color: rgba(255,255,255,0.55); }
.process-section .section-title { color: white; }
.process-section .section-sub { color: rgba(255,255,255,0.72); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--r-lg); overflow: hidden;
}
.process-step { padding: var(--sp-5) var(--sp-4); background: rgba(255,255,255,0.06); transition: background var(--t-fast); }
.process-step:hover { background: rgba(255,255,255,0.12); }
.process-step-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: var(--sp-2); }
.process-step-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: var(--sp-1); }
.process-step-desc { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ─── CTA ─── */
.cta-section { background: var(--dark); padding: var(--sp-12) var(--sp-4); }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section .section-kicker { color: rgba(255,255,255,0.45); }
.cta-section .section-title { color: white; margin-bottom: var(--sp-2); }
.cta-copy { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: var(--sp-5); }
.cta-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.btn-warm {
  display: inline-block; background: var(--primary); color: white;
  padding: 15px 30px; font-size: 14px; font-weight: 600; border-radius: var(--r-md);
  text-decoration: none; transition: opacity var(--t-fast);
}
.btn-warm:hover { opacity: 0.88; }
.btn-outline-light {
  display: inline-block; background: transparent; color: white;
  padding: 15px 30px; font-size: 14px; font-weight: 500; border-radius: var(--r-md);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color var(--t-fast);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.65); }

/* ─── Responsive ─── */
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .offers-grid, .audiences-grid, .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding: var(--sp-8) var(--sp-3); }
}
