/* ============================================================
   Soul Supporters: site styles
   Warm orange accent (logo #FF8C00) + silver grey neutrals
   on warm off-white. Built for legibility and AA contrast.
   ============================================================ */

:root {
  /* Orange (brand accent) */
  --orange-50:  #FFF4E6;
  --orange-100: #FFE6C7;
  --orange-200: #FFD49C;
  --orange-500: #FF8C00; /* brand / logo orange */
  --orange-600: #E27800;
  --orange-700: #A85400; /* accessible orange text on white */

  /* Silver grey neutrals (warm) */
  --grey-0:   #FFFFFF;
  --grey-25:  #FAF8F4; /* warm paper background */
  --grey-50:  #F4F3F1;
  --grey-100: #EAE9E6;
  --grey-200: #DEDCD8; /* silver hairline */
  --grey-300: #C6C4BF; /* silver */
  --grey-500: #84827E;
  --grey-600: #63615D; /* muted text */
  --grey-900: #1C1B1A; /* ink / primary text */

  --positive-500: #2E7D5B;
  --positive-50:  #E7F3EC;

  /* Semantic aliases */
  --color-bg:             var(--grey-25);
  --color-surface:        var(--grey-0);
  --color-surface-soft:   var(--grey-50);
  --color-surface-inverse:var(--grey-900);
  --color-text:           var(--grey-900);
  --color-text-muted:     var(--grey-600);
  --color-text-subtle:    var(--grey-500);
  --color-text-inverse:   var(--grey-0);
  --color-text-accent:    var(--orange-700);
  --color-text-on-accent: var(--grey-900);
  --color-border:         var(--grey-200);
  --color-border-strong:  var(--grey-300);
  --color-accent:         var(--orange-500);
  --color-accent-hover:   var(--orange-600);
  --color-accent-active:  var(--orange-700);
  --color-accent-soft:    var(--orange-50);
  --color-accent-border:  var(--orange-200);
  --color-focus-ring:     rgba(255, 140, 0, 0.45);

  /* Type */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-xs:   0.8125rem;
  --text-sm:   0.9375rem;
  --text-base: 1.0625rem;
  --text-md:   1.1875rem;
  --text-lg:   1.375rem;
  --text-2xl:  2.25rem;
  --text-4xl:  3.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-7:  2.5rem;
  --space-8:  3rem;
  --space-9:  4rem;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 27, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 27, 26, 0.08);
  --shadow-lg: 0 18px 44px rgba(28, 27, 26, 0.10);
  --shadow-accent: 0 12px 28px rgba(255, 140, 0, 0.24);
  --focus-ring: 0 0 0 4px var(--color-focus-ring);

  /* Layout */
  --container-max: 1180px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-gap: clamp(3.5rem, 8vw, 7rem);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 140ms;
  --duration-base: 220ms;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); letter-spacing: 0; }

p { margin: 0 0 1em; text-wrap: pretty; }

a {
  color: var(--color-text-accent);
  text-decoration-color: var(--color-accent-border);
  text-underline-offset: 0.18em;
}
a:hover { color: var(--color-accent-active); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-xs);
}

img { max-width: 100%; display: block; }

.container {
  width: min(var(--container-max), 100% - 2 * var(--container-pad));
  margin-inline: auto;
}

.eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  color: var(--color-text);
  padding: var(--space-3) var(--space-5);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Page-wide ambient background ---------- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.page-bg .float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.32;
}
.float-orb-1 {
  width: 480px; height: 480px; top: 12%; left: -160px;
  background: radial-gradient(circle at 50% 50%, var(--orange-100), transparent 70%);
  animation: pageFloatA 46s ease-in-out infinite;
}
.float-orb-2 {
  width: 420px; height: 420px; top: 55%; right: -140px;
  background: radial-gradient(circle at 50% 50%, var(--grey-200), transparent 70%);
  animation: pageFloatB 54s ease-in-out infinite;
}
.float-orb-3 {
  width: 300px; height: 300px; bottom: -80px; left: 38%;
  opacity: 0.22;
  background: radial-gradient(circle at 50% 50%, var(--orange-200), transparent 70%);
  animation: pageFloatA 60s ease-in-out infinite reverse;
}
.page-bg .float-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--orange-200);
  opacity: 0.5;
}
.float-dot-1 { width: 10px; height: 10px; top: 22%; left: 8%;  animation: sway 17s ease-in-out infinite; }
.float-dot-2 { width: 7px;  height: 7px;  top: 38%; right: 10%; background: var(--grey-300); animation: sway 21s ease-in-out 2s infinite; }
.float-dot-3 { width: 8px;  height: 8px;  top: 64%; left: 14%;  animation: sway 25s ease-in-out 5s infinite; }
.float-dot-4 { width: 6px;  height: 6px;  top: 78%; right: 18%; background: var(--grey-300); animation: sway 19s ease-in-out 8s infinite; }
.float-dot-5 { width: 9px;  height: 9px;  top: 50%; left: 48%;  animation: sway 23s ease-in-out 3.5s infinite; }
.page-bg .float-heart {
  position: absolute;
  color: var(--orange-200);
  opacity: 0.55;
}
.float-heart-1 { top: 30%; right: 6%; animation: sway 26s ease-in-out 1s infinite; }
.float-heart-2 { top: 70%; left: 5%;  width: 18px; animation: sway 31s ease-in-out 6s infinite; }
@keyframes pageFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -56px) scale(1.06); }
}
@keyframes pageFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-46px, 48px) scale(1.05); }
}
@keyframes sway {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(10px, -22px) rotate(6deg); }
  50%      { transform: translate(-6px, -38px) rotate(-4deg); }
  75%      { transform: translate(-12px, -16px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .page-bg .float-orb { animation: none; }
  .page-bg .float-dot, .page-bg .float-heart { display: none; }
}
@media (max-width: 940px) {
  .float-dot-3, .float-dot-5, .float-heart-2 { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  padding: 0.875rem 1.5rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-on-accent);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 140, 0, 0.32);
}
.btn--primary:active { background: var(--color-accent-active); color: #fff; }

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}
.btn--secondary:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.btn--sm { min-height: 40px; padding: 0.625rem 1.1rem; font-size: var(--text-sm); }
.btn--lg { min-height: 56px; padding: 1.05rem 2rem; font-size: var(--text-md); }
.btn--block { display: flex; width: 100%; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-muted);
  background: transparent;
}
.badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--duration-base) var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
/* Header spans the full screen width, content pinned to the edges */
.site-header .container {
  width: calc(100% - 2 * var(--container-pad));
  max-width: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-3) 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.logo img { height: 56px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}
.logo-tagline { font-size: var(--text-xs); color: var(--color-text-muted); }

.header-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
}
.header-nav a {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}
.header-nav a:hover { background: var(--color-accent-soft); color: var(--color-text-accent); }

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
}
.header-phone:hover { color: var(--color-text-accent); }
.header-social { display: flex; align-items: center; gap: var(--space-1); }
.header-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-circle);
  color: var(--color-text-muted);
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.header-social a:hover {
  background: var(--color-accent-soft);
  color: var(--color-text-accent);
}

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.header-burger span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
}
.header-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-3) var(--container-pad) var(--space-5);
  gap: 4px;
  border-top: 1px solid var(--color-border);
}
.header-mobile a {
  padding: 0.85rem 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.header-mobile a:hover { background: var(--color-accent-soft); }
.header-mobile .header-mobile-phone { color: var(--color-text-accent); }
.site-header.open .header-mobile { display: flex; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-gap); }

/* Alternating bands: white / silver grey. Slightly translucent so the
   ambient background still shows through faintly. */
.section--white { background: rgba(255, 255, 255, 0.82); }
.section--grey  { background: rgba(232, 230, 226, 0.55); }
.section-head { max-width: 640px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: var(--space-2) 0 var(--space-3); }
.section-sub { color: var(--color-text-muted); font-size: var(--text-md); margin: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-9);
  background:
    radial-gradient(1100px 460px at 88% -8%, var(--color-accent-soft), transparent 62%),
    radial-gradient(720px 380px at -5% 0%, var(--grey-100), transparent 60%);
}
.hero > .container { position: relative; z-index: 1; }

/* Ambient background: slow drifting glows + rising dots */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.55;
}
.orb-1 {
  width: 360px; height: 360px; top: -90px; right: 6%;
  background: radial-gradient(circle at 50% 50%, var(--orange-200), transparent 70%);
  animation: floatA 24s ease-in-out infinite;
}
.orb-2 {
  width: 300px; height: 300px; bottom: -120px; left: 2%;
  background: radial-gradient(circle at 50% 50%, var(--grey-300), transparent 70%);
  animation: floatB 30s ease-in-out infinite;
}
.orb-3 {
  width: 200px; height: 200px; top: 32%; left: 38%;
  opacity: 0.4; filter: blur(54px);
  background: radial-gradient(circle at 50% 50%, var(--orange-100), transparent 70%);
  animation: floatA 28s ease-in-out infinite reverse;
}
.hero-bg .dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange-200);
  opacity: 0;
}
.dot-1 { left: 18%; bottom: 8%;  animation: drift 15s ease-in-out 0s infinite; }
.dot-2 { left: 64%; bottom: 4%;  width: 6px; height: 6px; background: var(--grey-300); animation: drift 19s ease-in-out 3s infinite; }
.dot-3 { left: 44%; bottom: 12%; width: 7px; height: 7px; animation: drift 17s ease-in-out 6s infinite; }
.dot-4 { left: 80%; bottom: 10%; width: 5px; height: 5px; background: var(--grey-300); animation: drift 21s ease-in-out 1.5s infinite; }
.dot-5 { left: 30%; bottom: 2%;  width: 8px; height: 8px; animation: drift 23s ease-in-out 8s infinite; }
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-34px, 26px) scale(1.07); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -22px) scale(1.05); }
}
@keyframes drift {
  0%   { transform: translateY(20px) scale(0.6); opacity: 0; }
  15%  { opacity: 0.55; }
  85%  { opacity: 0.55; }
  100% { transform: translateY(-160px) scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .orb-1, .orb-2, .orb-3 { animation: none; }
  .hero-bg .dot { display: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-9);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.4vw, var(--text-4xl));
  margin: var(--space-4) 0;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--color-text-accent);
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.18em;
  bottom: 0.02em;
  height: 0.09em;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 0.7s var(--ease-out) 1s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 em::after { animation: none; transform: scaleX(1); }
}
.hero-copy .lead {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0 0 var(--space-6);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.hero-media { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  animation: photoIn 1.4s var(--ease-out) both;
}
@keyframes photoIn {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-float {
  position: absolute;
  left: -18px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  animation: bob 6s ease-in-out 2s infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.hero-float-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  background: var(--color-accent);
  color: var(--color-text-on-accent);
}
.hero-float-label { font-size: var(--text-xs); color: var(--color-text-muted); }
.hero-float-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-text);
  text-decoration: none;
}
.hero-float-num:hover { color: var(--color-text-accent); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-9);
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 5 / 4.2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-copy h2 { margin: var(--space-2) 0 var(--space-4); }
.check-list {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  display: grid;
  gap: var(--space-3);
}
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.check {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-circle);
  background: var(--color-accent-soft);
  color: var(--color-accent-active);
  margin-top: 2px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.service {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-border);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-soft);
  color: var(--color-accent-active);
}
.service h3 { margin: 0; }
.service p { color: var(--color-text-muted); margin: 0; }
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-text-accent);
  text-decoration: none;
}
.service-link:hover { gap: var(--space-3); color: var(--color-accent-active); }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.value { text-align: center; }
.value-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: var(--color-accent-soft);
  color: var(--color-accent-active);
  margin-bottom: var(--space-3);
  transition: transform var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out);
}
.value:hover .value-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.06);
  background: var(--orange-100);
}
.value h3 { margin: 0 0 var(--space-2); }
.value p { color: var(--color-text-muted); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
.contact-copy h2 { margin: var(--space-2) 0 var(--space-3); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
  display: grid;
  gap: var(--space-4);
}
.contact-list li { display: flex; gap: var(--space-3); align-items: center; }
.contact-ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-soft);
  color: var(--color-accent-active);
}
.contact-k { display: block; font-size: var(--text-sm); color: var(--color-text-muted); }
.contact-v { font-weight: 600; color: var(--color-text); text-decoration: none; font-size: var(--text-md); }
a.contact-v:hover { color: var(--color-text-accent); }

.access-note {
  background: var(--color-surface-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.access-note p { margin: var(--space-1) 0 0; color: var(--color-text-muted); font-size: var(--text-sm); }

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
}
.contact-form-card form { display: grid; gap: var(--space-4); }
.form-title { margin: 0; }
.field { display: grid; gap: var(--space-2); }
.field label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.field .req { color: var(--color-accent-active); margin-left: 0.15em; }
.field .help { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

.input, .textarea, .select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-surface);
  border: 2px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  min-height: 48px;
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.4; }
.input::placeholder, .textarea::placeholder { color: var(--color-text-subtle); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--focus-ring);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2363615D' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

/* Honeypot field: hidden from people, visible to bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Thanks page ---------- */
.thanks-main {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--space-9);
}
.thanks-card { display: grid; gap: var(--space-4); justify-items: center; max-width: 46ch; }
.thanks-ic {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-circle);
  background: var(--positive-50);
  color: var(--positive-500);
}
.thanks-card p { color: var(--color-text-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-surface-inverse);
  color: rgba(255, 255, 255, 0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-7);
  padding-block: var(--space-9) var(--space-6);
}
.footer-brand img { height: 84px; width: auto; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-inverse);
  margin: var(--space-4) 0;
}
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--color-text-inverse);
}
.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-on-accent);
}
.footer-col h2 {
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.footer-col a, .footer-col span {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-bottom p { margin: 0; font-size: var(--text-sm); }
.footer-ack { max-width: 52ch; opacity: 0.8; }
.built-by { opacity: 0.5; }
.built-by a { color: inherit; text-decoration: none; }
.built-by a:hover { text-decoration: underline; }

/* ---------- Calm reveal (fade + rise) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(5px);
  transition: opacity 0.75s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* Staggers */
.hero-copy .eyebrow      { transition-delay: 0ms; }
.hero-copy h1            { transition-delay: 90ms; }
.hero-copy .lead         { transition-delay: 180ms; }
.hero-copy .hero-cta     { transition-delay: 270ms; }
.hero-copy .hero-badges  { transition-delay: 360ms; }
.hero-media.reveal       { transition-delay: 160ms; }
.services-grid .reveal:nth-child(2) { transition-delay: 130ms; }
.values-grid .reveal:nth-child(2)   { transition-delay: 120ms; }
.values-grid .reveal:nth-child(3)   { transition-delay: 240ms; }
.values-grid .reveal:nth-child(4)   { transition-delay: 360ms; }
.contact-form-card.reveal           { transition-delay: 120ms; }
.about-copy.reveal                  { transition-delay: 120ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .header-nav, .header-actions { display: none; }
  .header-burger { display: flex; }
  .logo img { height: 48px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .about-media { order: 2; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float { left: 12px; }
}
@media (max-width: 520px) {
  .values-grid { grid-template-columns: 1fr; }
  .logo-tagline { display: none; }
}
