/* =========================================================
   KOA'S LOUNGE DESIGN SYSTEM
   Edit this section to control the entire site:
   1) Brand colors
   2) Fonts
   3) Type scale
   4) Spacing / radii
   5) Shadows / borders / motion
   ========================================================= */
:root {
  /* Brand palette */
  --color-bg-900: #1d2332;
  --color-bg-800: #303a52;
  --color-bg-700: #435172;
  --color-surface: rgba(29, 35, 50, 0.82);
  --color-surface-solid: #303a52;
  --color-surface-alt: #435172;
  --color-text-strong: #ffffff;
  --color-text: rgba(255, 255, 255, 0.82);
  --color-text-soft: rgba(255, 255, 255, 0.58);
  --color-line: rgba(3, 255, 246, 0.18);
  --color-line-strong: rgba(3, 255, 246, 0.34);
  --color-aqua: #03fff6;
  --color-teal: #00cfc8;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: var(--font-body);

  /* Type scale */
  --text-xs: 0.72rem;
  --text-sm: 0.94rem;
  --text-base: 1rem;
  --text-md: 1.06rem;
  --text-lg: 1.32rem;
  --text-xl: clamp(1.5rem, 3vw, 2.2rem);
  --text-2xl: clamp(2.6rem, 5vw, 4.8rem);
  --text-3xl: clamp(4rem, 11vw, 8rem);

  /* Line heights and tracking */
  --leading-tight: 1.02;
  --leading-display: 1.02;
  --leading-body: 1.72;
  --tracking-tight: -0.015em;
  --tracking-wide: 0.06em;
  --tracking-ultra: 0.28em;

  /* Layout */
  --container-max: 1240px;
  --section-space: 5.5rem;
  --section-space-compact: 4rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Radius */
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-accent: 1px solid rgba(3, 255, 246, 0.18);

  /* Shadows */
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 20px 48px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.34);
  --shadow-accent: 0 12px 32px rgba(0, 207, 200, 0.22);

  /* Motion */
  --ease-standard: 0.2s ease;
  --ease-slow: 0.35s ease;

  /* Semantic aliases used by the site */
  --bg: var(--color-bg-900);
  --bg-soft: var(--color-bg-800);
  --panel: var(--color-surface);
  --panel-solid: var(--color-surface-solid);
  --panel-alt: var(--color-surface-alt);
  --text: var(--color-text);
  --text-strong: var(--color-text-strong);
  --muted: var(--color-text);
  --dim: var(--color-text-soft);
  --line: var(--color-line);
  --aqua: var(--color-aqua);
  --teal: var(--color-teal);
  --steel: var(--color-bg-700);
  --shadow: var(--shadow-lg);
  --radius: var(--radius-lg);
  --radius-lg: var(--radius-xl);
  --max: var(--container-max);
}

/* Optional quick theme swaps
.theme-tropical {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

.theme-nightlife {
  --color-bg-900: #151825;
  --color-bg-800: #23293b;
  --color-bg-700: #354261;
  --color-aqua: #00f0ff;
  --color-teal: #00c2b8;
}
========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(3, 255, 246, 0.10), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 207, 200, 0.12), transparent 22%),
    linear-gradient(180deg, #1d2332 0%, #20293b 38%, #171d2a 100%);
  line-height: var(--leading-body);
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.design-system-note {
  border: var(--border-accent);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.u-display-font { font-family: var(--font-display); }
.u-body-font { font-family: var(--font-body); }
.u-text-strong { color: var(--text-strong); }
.u-text-soft { color: var(--dim); }
.u-surface { background: var(--panel); border: var(--border-subtle); box-shadow: var(--shadow-md); }
.u-radius-lg { border-radius: var(--radius-lg); }
.u-radius-xl { border-radius: var(--radius-xl); }
.u-section { padding: var(--section-space) 0; }
.u-section-compact { padding: var(--section-space-compact) 0; }

.container { width: min(calc(100% - 2rem), var(--container-max)); margin: 0 auto; }
.section { padding: var(--section-space) 0; }
.section.compact { padding-top: var(--section-space-compact); padding-bottom: var(--section-space-compact); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  letter-spacing: var(--tracking-ultra);
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--aqua), transparent);
}
.display, h1, h2, h3, h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
}
h1 { font-size: var(--text-3xl); max-width: 8ch; line-height: var(--leading-display); }
h2 { font-size: var(--text-2xl); max-width: 11ch; line-height: var(--leading-display); }
h3 { font-size: var(--text-xl); }
p { margin: 0 0 1rem; color: var(--muted); }
.lead {
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  color: #f8fbff;
  max-width: 56ch;
}
.small { font-size: var(--text-sm); color: var(--dim); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(29, 35, 50, 0.84);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.34));
}
.brand-lockup { line-height: 1.1; }
.brand-lockup strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}
.brand-lockup span {
  display: block;
  margin-top: 0.15rem;
  color: var(--dim);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.nav-shell { display: flex; align-items: center; gap: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.8rem;
}

.btn,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.88rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--ease-standard);
}
.btn {
  background: linear-gradient(135deg, var(--aqua), var(--teal));
  color: #1d2332;
  box-shadow: var(--shadow-accent);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn-outline:hover,
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-ghost { min-height: auto; padding: 0; color: var(--aqua); }
.button-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

.hero,
.page-hero { position: relative; overflow: clip; }
.hero {
  min-height: min(100svh, 980px);
  display: flex;
  align-items: flex-end;
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 35, 50, 0.22) 0%, rgba(29, 35, 50, 0.56) 42%, rgba(29, 35, 50, 0.94) 100%),
    linear-gradient(90deg, rgba(29, 35, 50, 0.82) 0%, rgba(29, 35, 50, 0.54) 40%, rgba(29, 35, 50, 0.76) 100%);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: auto auto 7% 6%;
  width: clamp(240px, 30vw, 460px);
  height: clamp(240px, 30vw, 460px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3,255,246,0.18), transparent 72%);
  filter: blur(18px);
  z-index: 0;
}
.hero-inner,
.page-hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-inner { padding: 8rem 0 2.2rem; }
.page-hero-inner { padding: 7rem 0 2.6rem; }
.hero-layout,
.split-layout,
.story-layout,
.contact-layout,
.page-intro,
.menu-layout,
.events-layout,
.footer-grid,
.gallery-ribbon,
.stat-band,
.hero-badges,
.event-card-grid,
.program-grid,
.hours-grid,
.tasting-grid {
  display: grid;
  gap: 1.6rem;
}
.hero-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
  align-items: end;
}
.hero-copy { max-width: 780px; }
.hero-copy h1 { max-width: 7.5ch; }
.hero-card,
.panel,
.menu-panel,
.contact-panel,
.calendar-shell,
.quote-block,
.footer-card,
.signature-banner,
.event-card,
.program-card,
.hours-card,
.info-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card,
.panel,
.menu-panel,
.contact-panel,
.calendar-shell,
.footer-card,
.signature-banner,
.event-card,
.program-card,
.hours-card,
.info-strip { padding: clamp(1.3rem, 2vw, 2rem); }
.hero-card {
  background: linear-gradient(180deg, rgba(3,255,246,0.12), rgba(255,255,255,0.02)), rgba(48, 58, 82, 0.76);
}
.kicker {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.stat-band {
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 2rem;
}
.stat-pill {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
}
.stat-pill strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.stat-pill span { color: var(--dim); font-size: 0.86rem; }

.signature-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(3,255,246,0.12), rgba(67,81,114,0.24));
}
.hero-badges { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 1rem; }
.hero-badge {
  padding: 1rem 1.1rem;
  border-left: 2px solid rgba(3,255,246,0.4);
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
}
.hero-badge strong { display:block; margin-bottom:0.2rem; }
.hero-badge span { color: var(--dim); font-size:0.9rem; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.8rem;
}
.section-heading p { max-width: 52ch; margin-bottom: 0; }

.split-layout,
.story-layout,
.contact-layout,
.events-layout,
.menu-layout,
.program-grid,
.hours-grid,
.tasting-grid { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: start; }
.text-column { padding-right: min(4vw, 2rem); }
.image-frame,
.tall-frame,
.wide-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #1d2332;
  box-shadow: var(--shadow);
}
.image-frame::after,
.tall-frame::after,
.wide-frame::after,
.ribbon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.28));
  pointer-events: none;
}
.image-frame img,
.tall-frame img,
.wide-frame img,
.ribbon-card img { width: 100%; height: 100%; object-fit: cover; }
.image-frame { min-height: 620px; }
.tall-frame { min-height: 740px; }
.wide-frame { min-height: 420px; }

.gallery-ribbon { grid-template-columns: 1.1fr 0.72fr 0.72fr; align-items: stretch; }
.ribbon-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.ribbon-stack { display: grid; gap: 1.6rem; }
.ribbon-card.large { min-height: 520px; }
.ribbon-card.tall { min-height: 520px; }

.editorial { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 1.5rem; align-items: center; }
.quote-block {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}
.quote-block p {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
}
.quote-block span { color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.76rem; }

.feature-list,
.clean-list,
.contact-list,
.menu-list,
.inline-list,
.hour-list,
.promo-list { list-style: none; padding: 0; margin: 0; }
.feature-list li,
.clean-list li,
.inline-list li,
.promo-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}
.feature-list li + li,
.clean-list li + li,
.inline-list li + li,
.promo-list li + li { margin-top: 0.75rem; }
.feature-list li::before,
.clean-list li::before,
.inline-list li::before,
.promo-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--aqua);
}
.card-grid,
.event-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.4rem; }
.minimal-card {
  padding: 1.6rem;
  border-top: 1px solid var(--teal);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 0 0 26px 26px;
}
.minimal-card p { margin: 0; }
.minimal-card .number {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--dim);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-size: cover;
  background-position: center;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,35,50,0.1), rgba(29,35,50,0.82));
}
.event-card > * { position: relative; z-index: 1; }
.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--text-xs);
  margin-bottom: 0.8rem;
}
.event-card p { max-width: 30ch; }

.calendar-shell { overflow: hidden; }
.calendar-frame,
.map-frame {
  width: 100%;
  border: 0;
  border-radius: 22px;
  background: #1d2332;
}
.calendar-frame { min-height: 720px; }
.map-frame { min-height: 380px; }
.helper-note { margin-top: 1rem; color: var(--dim); font-size: 0.9rem; }

.program-card {
  background: linear-gradient(180deg, rgba(3,255,246,0.08), rgba(255,255,255,0.02));
}
.program-card h3 { margin-bottom: 0.4rem; }
.program-card .program-note {
  color: var(--dim);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.menu-panel header,
.contact-panel header { margin-bottom: 1.4rem; }
.menu-list li,
.contact-list li,
.hour-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-list li:last-child,
.contact-list li:last-child,
.hour-list li:last-child { border-bottom: 0; }
.menu-copy span,
.contact-copy span { display: block; color: var(--muted); }
.menu-copy small,
.contact-copy small,
.hour-list small { display: block; color: var(--dim); }
.price,
.contact-meta,
.hour-time { color: var(--aqua); font-weight: 700; white-space: nowrap; }
.price-sub { display:block; color: var(--dim); font-size: 0.78rem; margin-top:0.2rem; }
.menu-highlight {
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}
.menu-highlight strong { display:block; margin-bottom:0.25rem; }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
}
.social-row a:hover { color: var(--text); }

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  background: linear-gradient(135deg, rgba(3,255,246,0.10), rgba(48,58,82,0.4));
}
.info-strip-item strong { display:block; margin-bottom:0.3rem; }
.info-strip-item span { color: var(--dim); }

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(3,255,246,0.14), rgba(0,207,200,0.1));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.cta-band .button-row { margin-top: 1rem; }

.site-footer { padding: 2rem 0 1.6rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr; }
.footer-card p,
.footer-card li { color: var(--dim); }
.footer-card ul { list-style: none; padding: 0; margin: 0; }
.footer-card li + li { margin-top: 0.7rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  color: var(--dim);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .mobile-toggle { display: inline-flex; }
  .nav-shell {
    position: fixed;
    inset: 84px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(29, 35, 50, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav-shell.open { display: flex; }
  .nav-links,
  .nav-cta { flex-direction: column; align-items: stretch; }
  .nav-links { gap: 0.2rem; }
  .nav-links a,
  .nav-cta a { padding: 0.95rem 1rem; border-radius: 16px; background: rgba(255,255,255,0.02); }
  .nav-links a.active { background: rgba(255,255,255,0.07); }

  .hero-layout,
  .split-layout,
  .story-layout,
  .contact-layout,
  .page-intro,
  .events-layout,
  .menu-layout,
  .footer-grid,
  .editorial,
  .gallery-ribbon,
  .card-grid,
  .stat-band,
  .hero-badges,
  .event-card-grid,
  .program-grid,
  .hours-grid,
  .tasting-grid,
  .info-strip { grid-template-columns: 1fr; }

  .hero { min-height: auto; }
  .hero-inner { padding-top: 7rem; }
  .hero-copy h1,
  h2 { max-width: none; }
  .text-column { padding-right: 0; }
  .image-frame { min-height: 420px; }
  .tall-frame { min-height: 520px; }
  .wide-frame { min-height: 320px; }
  .calendar-frame { min-height: 620px; }
}


/* About page premium layout */
.about-hero .page-hero-media::after {
  background:
    linear-gradient(180deg, rgba(29, 35, 50, 0.18) 0%, rgba(29, 35, 50, 0.52) 40%, rgba(29, 35, 50, 0.94) 100%),
    linear-gradient(90deg, rgba(29, 35, 50, 0.82) 0%, rgba(29, 35, 50, 0.40) 42%, rgba(29, 35, 50, 0.78) 100%);
}
.about-hero-panel {
  max-width: 820px;
  background: linear-gradient(180deg, rgba(29,35,50,0.44), rgba(29,35,50,0.72));
  border: 1px solid rgba(255,255,255,0.1);
}
.about-intro-grid,
.founder-grid,
.mission-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pillar-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(3,255,246,0.06));
  box-shadow: var(--shadow-sm);
}
.pillar-card h3 { margin-bottom: 0.5rem; }
.about-visual-stack,
.founder-visuals {
  position: relative;
}
.about-photo-main,
.founder-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: var(--border-subtle);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.03);
}
.about-photo-main img,
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-main { min-height: 620px; }
.about-photo-main img { min-height: 620px; }
.about-floating-card {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  max-width: 320px;
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(3,255,246,0.22);
  background: rgba(29,35,50,0.9);
  box-shadow: var(--shadow-md);
}
.about-floating-card strong {
  display: block;
  margin: 0.35rem 0 0.45rem;
  color: var(--text-strong);
  font-size: 1.08rem;
}
.founder-copy { padding: clamp(1.5rem, 3vw, 2.2rem); }
.founder-visuals {
  min-height: 690px;
}
.founder-photo-large {
  position: absolute;
  inset: 0 4.75rem 4.5rem 0;
}
.founder-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44%, 260px);
  aspect-ratio: 0.9;
}
.quote-block-large {
  padding: clamp(1.7rem, 3vw, 2.5rem);
  min-height: 100%;
}
.quote-block-large p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
  color: var(--text-strong);
}
.mission-copy h2 { max-width: 12ch; }
.about-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.about-cta-band h3 {
  max-width: 14ch;
  margin-bottom: 0.6rem;
}
@media (max-width: 980px) {
  .about-intro-grid,
  .founder-grid,
  .mission-layout,
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .about-photo-main,
  .about-photo-main img {
    min-height: 440px;
  }
  .about-floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
  .founder-visuals {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }
  .founder-photo-large,
  .founder-photo-small {
    position: static;
    width: 100%;
    aspect-ratio: auto;
  }
  .founder-photo-large img {
    min-height: 420px;
  }
  .founder-photo-small img {
    min-height: 300px;
  }
  .about-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
