/* ============================================================
   Qazzaz Coffee – About page showcase (premium visuals)
   Scoped to .page-about; pairs with about.html.
   ============================================================ */

.page-about {
  --about-glow: rgba(212, 184, 122, 0.45);
  --about-rose: rgba(232, 168, 160, 0.25);
}

.page-about body {
  background-color: transparent;
  background-image: none;
}

.page-about .site-parallax-bg__overlay {
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 245, 0.12) 0%,
    rgba(245, 232, 212, 0.22) 40%,
    rgba(250, 245, 236, 0.34) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-atmosphere__shift,
  .about-founder-banner__shimmer,
  .about-video-premium .home-video-frame::after {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO – depth + glass inner (matches home energy, darker story)
   ═══════════════════════════════════════════════════════════ */
.page-about .about-hero {
  background: linear-gradient(
    165deg,
    #080402 0%,
    #140a05 25%,
    #1f1008 50%,
    #2a1810 75%,
    #1a0d06 100%
  );
  padding: 0;
  min-height: min(88svh, 42rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about .about-hero::before {
  opacity: 1;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 184, 122, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 8% 60%, rgba(232, 168, 160, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 45% at 92% 55%, rgba(100, 140, 120, 0.1) 0%, transparent 50%);
}

.about-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.about-hero-atmosphere__mesh {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 25% 35%, rgba(212, 184, 122, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 75% 65%, rgba(80, 50, 35, 0.25) 0%, transparent 45%);
  opacity: 0.85;
}

.about-hero-atmosphere__shift {
  position: absolute;
  inset: -35%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    rgba(212, 184, 122, 0.1),
    rgba(232, 168, 160, 0.06),
    rgba(40, 24, 14, 0.2),
    rgba(212, 184, 122, 0.08)
  );
  animation: about-hero-aurora 20s ease-in-out infinite alternate;
  opacity: 0.5;
}

@keyframes about-hero-aurora {
  0%   { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(22deg) scale(1.06); }
}

.about-hero-atmosphere__ring {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(130vw, 820px);
  height: min(130vw, 820px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 122, 0.1);
  box-shadow: 0 0 100px rgba(212, 184, 122, 0.06);
}

.about-hero-atmosphere__sparkles {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.3) 0, transparent 1.5px),
    radial-gradient(circle at 85% 25%, rgba(212, 184, 122, 0.4) 0, transparent 1px),
    radial-gradient(circle at 70% 85%, rgba(255, 244, 228, 0.25) 0, transparent 1px);
}

.about-hero-atmosphere__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 25%, rgba(5, 2, 0, 0.5) 100%);
}

.page-about .about-hero-inner {
  max-width: 50rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
  background: linear-gradient(
    155deg,
    rgba(255, 252, 248, 0.08) 0%,
    rgba(42, 21, 8, 0.25) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 244, 228, 0.14);
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-about .about-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--caramel-400);
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(13, 5, 1, 0.35);
}

.page-about .about-hero h1 {
  color: #fff9f0;
  text-shadow: 0 2px 36px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
}

.page-about .about-hero h1 em {
  background: linear-gradient(115deg, #ffe8b8 0%, #e8c97e 45%, #c9a962 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(212, 184, 122, 0.35));
}

.page-about .about-hero p {
  color: rgba(255, 244, 228, 0.78);
  font-size: 1.12rem;
}

/* ═══════════════════════════════════════════════════════════
   FOUNDER BANNER (replaces inline block)
   ═══════════════════════════════════════════════════════════ */
.about-founder-banner {
  position: relative;
  padding: 3.75rem 1.5rem;
  margin: 0 calc(-1.25rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 151, 93, 0.18);
  background: linear-gradient(125deg, #120805 0%, #1f1008 40%, #2a1812 100%);
}

.about-founder-banner__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(212, 184, 122, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(232, 168, 160, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.about-founder-banner__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 45%,
    transparent 55%
  );
  animation: about-banner-sheen 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes about-banner-sheen {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  50%      { transform: translateX(30%); opacity: 1; }
}

.about-founder-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.about-founder-banner__mark {
  font-size: clamp(3rem, 8vw, 4.25rem);
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.about-founder-banner__body {
  flex: 1;
  min-width: min(100%, 16rem);
}

.about-founder-banner__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel-400);
  margin: 0 0 0.65rem;
}

.about-founder-banner__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--caramel-100);
  line-height: 1.68;
  margin: 0;
  font-style: italic;
  border-left: 3px solid rgba(212, 184, 122, 0.55);
  padding-left: 1.25rem;
  quotes: "“" "”" "‘" "’";
}

.about-founder-banner__quote::before {
  content: open-quote;
}

.about-founder-banner__quote::after {
  content: close-quote;
}

/* ═══════════════════════════════════════════════════════════
   STORY – editorial column + portrait frame
   ═══════════════════════════════════════════════════════════ */
.page-about .about-story-premium {
  position: relative;
  padding: 5.5rem 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 248, 0.92) 0%,
    rgba(250, 243, 232, 0.95) 50%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
  border-bottom: none;
}

.page-about .about-story-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5c3d2a, #c9a962, #8b6914, #c9a962, #3d2314);
  opacity: 0.85;
}

.page-about .about-story-premium .about-story-text h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.45rem);
  background: linear-gradient(120deg, var(--brand-900) 0%, var(--brand-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.page-about .about-story-premium .about-story-text p {
  font-size: 1.06rem;
  color: var(--text-mid);
}

.page-about .about-story-premium .founder-photo-wrap {
  border-radius: 1.35rem;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--brand-900), var(--brand-900)) padding-box,
    linear-gradient(145deg, #c9a962, rgba(212, 184, 122, 0.4), #5c3d2a) border-box;
  box-shadow:
    var(--shadow-xl),
    0 0 40px rgba(212, 184, 122, 0.12);
}

.page-about .about-story-premium .founder-caption {
  background: linear-gradient(180deg, rgba(26, 13, 6, 0.98) 0%, #130801 100%);
  border-top-color: rgba(212, 184, 122, 0.25);
}

.page-about .about-story-premium .about-pull-quote {
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.95) 0%, rgba(245, 237, 219, 0.5) 100%);
  border-left-width: 4px;
  border-left-color: var(--caramel-600);
  color: var(--brand-800);
  box-shadow: var(--shadow-sm);
}

.page-about .about-story-premium .about-pull-quote--spaced {
  margin-top: 1.5rem;
}

.page-about .about-story-premium .about-pull-quote-attrib {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   VALUES
   ═══════════════════════════════════════════════════════════ */
.page-about .about-values-premium {
  padding: 5.5rem 1.25rem;
  background: linear-gradient(
    165deg,
    rgba(255, 250, 242, 0.9) 0%,
    rgba(237, 220, 195, 0.35) 45%,
    rgba(250, 245, 236, 0.85) 100%
  ) !important;
  border-bottom: none;
  position: relative;
}

.page-about .about-values-premium::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 93, 0.35), transparent);
}

.page-about .about-values-premium .section-eyebrow {
  background: linear-gradient(90deg, var(--caramel-600), var(--brand-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.page-about .about-values-premium .value-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 252, 248, 0.92) 100%);
  border: 1px solid rgba(184, 151, 93, 0.2);
  border-radius: 1.35rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.page-about .about-values-premium .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.page-about .about-values-premium .value-card:nth-child(1)::before {
  background: linear-gradient(90deg, #8b4513, #d4a574);
}
.page-about .about-values-premium .value-card:nth-child(2)::before {
  background: linear-gradient(90deg, #4a6fa5, #7a9cc6);
}
.page-about .about-values-premium .value-card:nth-child(3)::before {
  background: linear-gradient(90deg, #2d5a4a, #7d9b8c);
}
.page-about .about-values-premium .value-card:nth-child(4)::before {
  background: linear-gradient(90deg, #6b4423, #c9a962);
}

.page-about .about-values-premium .value-icon {
  font-size: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   SIGNATURE DRINKS GRID – jewel cards on deep field
   ═══════════════════════════════════════════════════════════ */
.page-about .about-drinks-premium {
  position: relative;
  padding: 5.5rem 1.25rem;
  background: linear-gradient(180deg, #0a0502 0%, #150a05 40%, #0d0603 100%) !important;
  border-bottom: 1px solid rgba(184, 151, 93, 0.12);
  overflow: hidden;
}

.page-about .about-drinks-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(212, 184, 122, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(120, 60, 80, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.page-about .about-drinks-premium .about-drinks-inner {
  position: relative;
  z-index: 1;
}

.page-about .about-drinks-premium .section-subtitle a {
  color: var(--caramel-400);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-about .about-drinks-premium .section-subtitle a:hover {
  color: var(--caramel-200);
  text-decoration: none;
}

.page-about .about-drinks-premium .drink-showcase-card {
  background: linear-gradient(
    160deg,
    rgba(255, 252, 248, 0.07) 0%,
    rgba(42, 21, 8, 0.45) 100%
  );
  border: 1px solid rgba(212, 184, 122, 0.22);
  border-radius: 1.35rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.page-about .about-drinks-premium .drink-showcase-card:hover {
  background: linear-gradient(
    160deg,
    rgba(212, 184, 122, 0.12) 0%,
    rgba(42, 21, 8, 0.55) 100%
  );
  border-color: rgba(212, 184, 122, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.page-about .about-drinks-premium .drink-showcase-card h3 {
  color: #fff4e4;
}

.page-about .about-drinks-premium .drink-showcase-card p {
  color: rgba(245, 237, 219, 0.62);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO
   ═══════════════════════════════════════════════════════════ */
.page-about .about-video-premium {
  position: relative;
  padding: 5.5rem 1.25rem;
  background: linear-gradient(
    165deg,
    rgba(255, 252, 248, 0.75) 0%,
    rgba(245, 237, 219, 0.5) 100%
  ) !important;
}

.page-about .about-video-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(212, 184, 122, 0.1) 0%, transparent 55%);
}

.page-about .about-video-premium .home-video-inner {
  position: relative;
  z-index: 1;
}

.page-about .about-video-premium .home-video-frame {
  border-radius: 1.5rem;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--surface-warm), var(--surface-warm)) padding-box,
    linear-gradient(135deg, #c9a962, rgba(212, 184, 122, 0.45), #5c3d2a, #c9a962) border-box;
  box-shadow: var(--shadow-xl), 0 0 50px rgba(212, 184, 122, 0.1);
}

.page-about .about-video-premium .home-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  animation: about-video-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes about-video-sheen {
  0%, 100% { opacity: 0; transform: translateX(-15%); }
  50%      { opacity: 1; transform: translateX(15%); }
}

/* ═══════════════════════════════════════════════════════════
   ATMOSPHERE – prose + glass chips
   ═══════════════════════════════════════════════════════════ */
.page-about .about-atmosphere-premium {
  position: relative;
  padding: 5.5rem 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 248, 0.88) 0%,
    rgba(250, 246, 238, 0.95) 100%
  ) !important;
  border-bottom: none;
}

.page-about .about-atmosphere-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 100% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-about .about-atmosphere-premium .about-atmosphere-inner {
  position: relative;
  z-index: 1;
}

.page-about .about-atmosphere-premium .about-atmosphere-prose {
  font-size: 1.06rem;
  color: var(--text-mid);
  line-height: 1.88;
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.page-about .about-atmosphere-premium .about-atmosphere-prose:last-of-type {
  margin-bottom: 2rem;
}

.page-about .about-atmosphere-premium .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.page-about .about-atmosphere-premium .atmosphere-chip {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 151, 93, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.2s;
}

.page-about .about-atmosphere-premium .atmosphere-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 14, 5, 0.08);
  border-color: var(--caramel-400);
}

/* ═══════════════════════════════════════════════════════════
   HOURS + CTA
   ═══════════════════════════════════════════════════════════ */
.page-about .about-hours-premium {
  background: linear-gradient(
    180deg,
    rgba(255, 252, 248, 0.82) 0%,
    rgba(250, 243, 232, 0.92) 100%
  ) !important;
}

.page-about .about-hours-premium .info-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 248, 0.94) 100%);
  border: 1px solid rgba(184, 151, 93, 0.2);
  box-shadow: var(--shadow-md);
}

.page-about .about-cta-premium {
  background: linear-gradient(135deg, #1a0d06 0%, #2d1810 40%, #0d0501 100%) !important;
  position: relative;
}

.page-about .about-cta-premium::before {
  background:
    radial-gradient(ellipse 65% 80% at 25% 25%, rgba(212, 184, 122, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 85% 75%, rgba(232, 168, 160, 0.1) 0%, transparent 45%);
}

.page-about .about-cta-premium h2 {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
