root {
  --bg: #f6f7f9;
  --card-bg: #ffffff;
  --text-primary: #14181f;
  --text-secondary: #545b66;
  --accent: #1f6f4f;
  --accent-soft: #e7f3ec;
  --border: #e4e6ea;
  --footer-bg: #14181f;
  --footer-text: #c7cbd1;
  --max-width: 960px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(20, 24, 31, 0.06);
}
 
* {
  box-sizing: border-box;
}
 
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
 
body {
  font-family: Calibri, Carlito, Candara, Segoe, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
 
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}
 
/* ===== Header ===== */
.hero {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 2rem) clamp(1.5rem, 4vw, 2rem);
  max-width: 760px;
  margin: 0 auto;
}
 
.eyebrow {
  font-family: Calibri, Carlito, Candara, Segoe, sans-serif;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 10pt;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
 
.hero h1 {
  font-family: Calibri, Carlito, Candara, Segoe, sans-serif;
  font-weight: 400;
  font-size: 10pt;
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
 
.hero .subtitle {
  font-size: 10pt;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 560px;
}
 
/* ===== Main / QR + Info ===== */
.qr-section {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.25rem, 5vw, 2rem) clamp(3rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 3rem);
}
 
/* Row of images (QR + Ellen) always on top of the column */
.images-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2rem);
  width: 100%;
}
 
.qr-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(100%, 380px);
  aspect-ratio: 1 / 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
}
 
.qr-image {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
 
.qr-caption {
  margin-top: 1.25rem;
  font-family: Calibri, Carlito, Candara, Segoe, sans-serif;
  font-weight: 700;
  font-size: 10pt;
  color: var(--text-primary);
}
 
/* Fallback shown if img.jpg is missing */
.qr-card.qr-fallback .qr-image {
  display: none;
}
 
.qr-card.qr-fallback::before {
  content: "Place your QR image at\A  \201Cimg.jpg\201D next to index.html";
  white-space: pre-wrap;
  text-align: center;
  font-size: 10pt;
  color: var(--text-secondary);
  border: 2px dashed var(--border);
  border-radius: 12px;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--accent-soft);
}
 
/* ===== Person card (Ellen) ===== */
.person-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(100%, 260px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
 
.person-image {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
 
.person-caption {
  margin-top: 1rem;
  font-family: Calibri, Carlito, Candara, Segoe, sans-serif;
  font-weight: 700;
  font-size: 10pt;
  color: var(--text-primary);
}
 
.person-card.person-fallback .person-image {
  display: none;
}
 
.person-card.person-fallback::before {
  content: "Place image at\A  \201Cellen.jpg\201D next to index.html";
  white-space: pre-wrap;
  text-align: center;
  font-size: 10pt;
  color: var(--text-secondary);
  border: 2px dashed var(--border);
  border-radius: 50%;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--accent-soft);
}
 
/* ===== Info card ===== */
.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  width: 100%;
  max-width: 640px;
}
 
.info-card h2 {
  font-family: Calibri, Carlito, Candara, Segoe, sans-serif;
  font-weight: 700;
  font-size: 10pt;
  margin: 0 0 0.9rem;
  color: var(--text-primary);
}
 
.info-card p {
  font-size: 10pt;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}
 
.info-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
}
 
.info-card li {
  font-size: 10pt;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}
 
.info-card li strong {
  color: var(--text-primary);
}
 
.disclaimer {
  font-size: 10pt !important;
  color: #8a8f98 !important;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 0 !important;
}
 
/* ===== Footer ===== */
.footer {
  background: var(--footer-bg);
  margin-top: auto;
}
 
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 5vw, 2rem);
  text-align: center;
}
 
.footer-text {
  color: var(--footer-text);
  font-size: 10pt;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  font-weight: 600;
}
 
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
 
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease;
}
 
.social-icons a:hover {
  transform: translateY(-3px);
  background: var(--accent-soft);
}
 
.social-icons img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
  opacity: 0.85;
}
 
.footer-copy {
  color: #7a808c;
  font-size: 10pt;
  margin: 0;
}
 
/* ===== Responsive tweaks ===== */
@media (max-width: 380px) {
  .social-icons a {
    width: 38px;
    height: 38px;
  }
}