﻿<!-- =========================
FILE: css/about.css
========================= -->
:root {
  --bg: #f7fcfc;
  --bg-soft: #eef8f7;
  --panel: rgba(255, 255, 255, 0.96);
  --turquoise: #2ecfc8;
  --text: #3a5f63;
  --muted: #739295;
  --deep: #17474c;
  --line: rgba(23, 71, 76, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f9fdfd 0%, #edf7f6 100%);
  color: var(--text);
  line-height: 1.75;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.sub-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--deep);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a.active,
.nav a:hover {
  color: var(--turquoise);
}

.page-hero {
  padding: 110px 0 70px;
  background: url('../images/aboutbanner.jpg') center/cover no-repeat;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.page-hero h1,
.story-card h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 680px;
}

.story-section,
.values-section {
  padding: 90px 0;
}

.story-section {
  background: #cfeeed;
}

.values-section {
  background: #bfe7e5;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 30px;
}

.story-card,
.quote-panel,
.value-grid article {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 71, 76, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(21, 71, 76, 0.07);
}

.story-card h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-card p + p {
  margin-top: 18px;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  background: linear-gradient(135deg, #ffffff, #f1fbfa);
}

.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--deep);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-grid h3 {
  color: var(--deep);
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.value-grid p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-wrap,
  .story-grid,
  .value-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }
}