@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700&family=DM+Sans:wght@400;500;600&display=swap');

/* ==========================================================================
   Jotji — design tokens
   Values copied from the original build. Change a colour here and it
   updates everywhere on the site.
   Colours are raw HSL triplets, used as hsl(var(--name)) or
   hsl(var(--name) / 0.5) for transparency.
   ========================================================================== */
:root {
  --background: 30 60% 98%;
  --foreground: 0 0% 4%;
  --card: 24 100% 99%;
  --primary: 12 73% 55%;
  --primary-foreground: 0 0% 100%;
  --secondary: 19 82% 68%;
  --secondary-foreground: 0 0% 100%;
  --muted: 28 43% 93%;
  --muted-foreground: 16 22% 39%;
  --border: 22 48% 86%;
  --destructive: 0 84% 60%;

  /* Warm coral/peach gradient tints (named "sky" in the original) */
  --sky-tint-light: 22 80% 96%;
  --sky-tint-mid: 22 80% 94%;
  --sky-tint-soft: 19 70% 90%;
  --sky-tint-card: 24 90% 97%;

  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 0.5rem;

  --shadow-sm: 0 1px 3px 0 hsl(0 0% 0% / 0.10), 0 1px 2px -1px hsl(0 0% 0% / 0.10);
  --shadow-md: 0 1px 3px 0 hsl(0 0% 0% / 0.10), 0 2px 4px -1px hsl(0 0% 0% / 0.10);
  --shadow-lg: 0 1px 3px 0 hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);

  --header-h: 4rem;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.wrap-6xl { max-width: 72rem; }
.wrap-5xl { max-width: 64rem; }
.wrap-4xl { max-width: 56rem; }
.wrap-3xl { max-width: 48rem; }
.wrap-2xl { max-width: 42rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: hsl(var(--primary) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 0.75rem 1.5rem;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}
.btn-outline:hover { background: hsl(var(--primary) / 0.05); }

.btn-lg { padding: 0.875rem 1.75rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: hsl(var(--border));
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo img {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 8px;
}
.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.7);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: hsl(var(--primary)); }

.header-cta { display: none; }
.header-cta .btn-primary {
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: hsl(var(--foreground) / 0.7);
}
.menu-toggle .bars {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle .bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: hsl(0 0% 100% / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.7);
}
.nav-mobile a:hover { color: hsl(var(--primary)); }
.nav-mobile .btn-primary { padding: 0.625rem 1rem; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 2rem; }
  .header-cta { display: flex; align-items: center; }
  .menu-toggle { display: none; }
  .nav-mobile, .nav-mobile.is-open { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(135deg,
    hsl(var(--background)) 0%,
    hsl(var(--sky-tint-light)) 50%,
    hsl(var(--muted)) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.blob-1 {
  top: 0; right: 0;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: radial-gradient(circle,
    hsl(var(--sky-tint-soft) / 0.5) 0%,
    hsl(var(--secondary) / 0.15) 60%,
    transparent 100%);
  transform: translate(20%, -20%);
  animation: blob-a 8s ease-in-out infinite;
}
.blob-2 {
  bottom: 0; left: 0;
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  background: radial-gradient(circle, hsl(var(--secondary) / 0.12) 0%, transparent 70%);
  transform: translate(-30%, 30%);
  animation: blob-b 10s ease-in-out 2s infinite;
}

@keyframes blob-a {
  0%, 100% { transform: translate(20%, -20%) scale(1) rotate(0deg); }
  50%      { transform: translate(20%, -20%) scale(1.06) rotate(8deg); }
}
@keyframes blob-b {
  0%, 100% { transform: translate(-30%, 30%) scale(1); }
  50%      { transform: translate(-30%, 30%) scale(1.08); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw + 1.25rem, 4.5rem);
  letter-spacing: -0.02em;
}
.hero h1 .line-2 {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.0625rem, 0.6vw + 0.9rem, 1.25rem);
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.6);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.5);
}
.trust li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: hsl(var(--secondary));
}

.hero-art {
  display: flex;
  justify-content: center;
}
.phone {
  width: 220px;
  animation: float 6s ease-in-out infinite;
}
.phone img { display: block; width: 100%; height: auto; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@media (min-width: 768px) {
  .phone { width: 260px; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-art { justify-content: flex-end; }
  .phone { width: 300px; }
}

/* ==========================================================================
   Section furniture
   ========================================================================== */
.section { padding-block: 6rem; }
.section-sm { padding-block: 5rem; }

.bg-plain { background: hsl(var(--background)); }
.bg-support { background: linear-gradient(180deg, hsl(var(--muted)) 0%, hsl(var(--sky-tint-light)) 100%); }
.bg-quotes  { background: linear-gradient(180deg, hsl(var(--sky-tint-light)) 0%, hsl(var(--muted)) 100%); }
.bg-cta     { background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--sky-tint-mid)) 100%); }
.bg-page-hero { background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--sky-tint-light)) 100%); }
.bg-page-hero-3 { background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--sky-tint-light)) 60%, hsl(var(--muted)) 100%); }
.bg-values { background: linear-gradient(180deg, hsl(var(--muted)) 0%, hsl(var(--sky-tint-light)) 100%); }
.bg-about-cta { background: linear-gradient(180deg, hsl(var(--sky-tint-light)) 0%, hsl(var(--background)) 100%); }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.eyebrow-secondary { color: hsl(var(--secondary)); }

.section-head h2 {
  font-size: clamp(2rem, 3vw + 1.25rem, 3rem);
}

/* ==========================================================================
   Features
   ========================================================================== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-art { display: flex; justify-content: center; }

.feature-tile {
  width: 12rem;
  height: 12rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--sky-tint-light)) 100%);
}
.feature-tile svg { width: 100%; height: 100%; }

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
}
.feature-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary) / 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.feature-copy h3 { font-size: clamp(1.5rem, 1.5vw + 1rem, 1.875rem); }
.feature-copy p {
  color: hsl(var(--foreground) / 0.6);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .feature-tile { width: 14rem; height: 14rem; }
  .feature-reverse .feature-art { order: 2; }
  .feature-reverse .feature-copy { order: 1; }
}

/* ==========================================================================
   Support tiers
   ========================================================================== */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 42rem;
  margin-inline: auto;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  transition: transform 0.3s, box-shadow 0.3s;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tier-highlighted {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, hsl(var(--sky-tint-card)) 0%, hsl(var(--primary) / 0.06) 100%);
}
.tier-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.tier-emoji { font-size: 1.875rem; line-height: 1; }
.tier-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.125rem;
}
.tier-desc {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.6);
  line-height: 1.65;
  flex: 1;
}
.tier-cta {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.tier-cta-plain {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground) / 0.7);
}
.tier-cta-plain:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}
.tier-cta-ghost {
  border: 1px solid hsl(var(--primary) / 0.4);
  color: hsl(var(--primary));
}
.tier-cta-ghost:hover { background: hsl(var(--primary) / 0.05); }

@media (min-width: 640px) {
  .tiers { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0;
  font-style: italic;
  color: hsl(var(--foreground) / 0.7);
  line-height: 1.65;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.avatar {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
}
.quote-name { font-size: 0.875rem; font-weight: 600; }
.quote-role { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

@media (min-width: 768px) {
  .quotes { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding-inline: 1.25rem;
  transition: border-color 0.2s;
}
.faq-item.is-open { border-color: hsl(var(--primary) / 0.3); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}
.faq-trigger:hover { color: hsl(var(--primary)); }

.faq-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: hsl(var(--foreground) / 0.5);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-out;
}
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > div { overflow: hidden; }
.faq-panel p {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.6);
}

/* ==========================================================================
   Download CTA
   ========================================================================== */
.download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.download-inner h2 { font-size: clamp(2rem, 3vw + 1.25rem, 3rem); }
.download-sub {
  font-size: 1.125rem;
  color: hsl(var(--foreground) / 0.55);
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.store-btn:hover {
  background: hsl(var(--foreground) / 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.store-btn svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }

.donate-link {
  font-size: 0.875rem;
  color: hsl(var(--primary) / 0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.donate-link:hover { color: hsl(var(--primary)); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--muted)));
  padding-block: 3rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand .logo img { width: 30px; height: 30px; }
.footer-brand .logo span { font-size: 1.125rem; }
.footer-tag {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.footer-nav a:hover { color: hsl(var(--primary)); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .footer-top { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .footer-brand { align-items: flex-start; }
  .footer-nav { justify-content: flex-end; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ==========================================================================
   Inner pages
   ========================================================================== */
.page-hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  text-align: center;
}
.page-hero-tall { padding-bottom: 5rem; }
.page-hero h1 {
  font-size: clamp(2.25rem, 3vw + 1.25rem, 3.75rem);
  margin-bottom: 1.25rem;
}
.page-hero-sub {
  font-size: clamp(1.0625rem, 0.6vw + 0.9rem, 1.25rem);
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.6);
  max-width: 36rem;
  margin-inline: auto;
}
.page-meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.prose h2 { font-size: 1.875rem; }
.prose p {
  color: hsl(var(--foreground) / 0.65);
  line-height: 1.75;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.policy section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.policy h2 { font-size: 1.25rem; }
.policy p {
  color: hsl(var(--foreground) / 0.65);
  line-height: 1.75;
}
.policy .policy-contact {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--sky-tint-card));
}

/* Values grid (about) */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.value {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}
.value-num {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.value-num-alt {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}
.value h3 { font-size: 1.125rem; }
.value p {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.6);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .values { grid-template-columns: 1fr 1fr; }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
}
.contact-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.contact-card p {
  color: hsl(var(--foreground) / 0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-card .btn-primary {
  width: 100%;
  border-radius: 0.75rem;
  padding-block: 0.875rem;
}
.contact-address {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}
.contact-address a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aside-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.aside-stack > h2 { font-size: 1.25rem; }
.aside-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aside-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}
.aside-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aside-value { font-size: 0.875rem; font-weight: 600; word-break: break-word; }
.aside-value a { text-decoration: underline; text-underline-offset: 3px; }
.aside-value a:hover { color: hsl(var(--primary)); }
.aside-desc { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.privacy-note {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--sky-tint-card));
}
.privacy-note p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.6);
}
.privacy-note a { color: hsl(var(--primary)); text-decoration: underline; }

.about-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.about-cta h2 { font-size: clamp(1.875rem, 2vw + 1.25rem, 2.25rem); }
.about-cta p { color: hsl(var(--foreground) / 0.55); }

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Hidden only when JS is running, so the page is fully readable without it. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .phone, .blob { animation: none; }
}
