/* ==========================================================================
   Full Circle CBT — design system
   ========================================================================== */

/* ----- self-hosted fonts (variable woff2, latin subset) ----- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2-variations'),
       url('../fonts/inter.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2-variations'),
       url('../fonts/cormorant-garamond.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}

:root {
  --cream:        #F7F3EC;
  --cream-deep:   #EEE6D5;
  --cream-warm:   #F2EBDC;
  --sage:         #7A8F7B;
  --sage-deep:    #4F6850;
  --sage-soft:    #C5D0BF;
  --sage-mist:    #DDE4D6;
  --charcoal:     #2B2D2A;
  --muted:        #5E625B;
  --gold:         #B89968;
  --white:        #FFFFFF;

  --shadow-sm:    0 2px 8px rgba(43,45,42,0.06);
  --shadow-md:    0 8px 24px rgba(43,45,42,0.08);
  --shadow-lg:    0 24px 60px rgba(43,45,42,0.12);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;

  --max-width:    1200px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--sage-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--charcoal); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1.2em; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.4rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.8rem; height: 1px;
  background: var(--sage);
}

/* ----- navigation ----- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(247, 243, 236, 0.0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.nav-brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
}
.nav-links a {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--sage-deep);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  background: var(--sage-deep);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--charcoal); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(85%, 360px);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    box-shadow: var(--shadow-lg);
    gap: 1.4rem;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; }
  .nav-cta { font-size: 1rem; padding: 0.8rem 1.6rem; }
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sage-deep); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--sage);
}
.btn-ghost:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(122,143,123,0.10), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(184,153,104,0.08), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-weight: 400;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--sage-deep);
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-image {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sage-mist);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.6s var(--ease-out);
}
.hero.is-loaded .hero-image img { transform: scale(1); }
.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 250px;
}
.hero-badge .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
  flex-shrink: 0;
}
.hero-badge .dot::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hero-badge span {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 4; max-width: 480px; margin: 0 auto; }
  .hero-badge { left: 1rem; bottom: -1rem; }
}

/* ----- sections ----- */
section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }
.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head.left { margin: 0 0 3rem; text-align: left; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

.section-alt { background: var(--cream-warm); }
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--sage-soft); }
.section-dark .eyebrow::before { background: var(--sage-soft); }

/* ----- intro/about row ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-image {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.split-image:hover img { transform: scale(1.04); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .split-image { aspect-ratio: 4 / 3; max-width: 600px; margin: 0 auto; }
}

/* ----- service cards ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ----- feature list ----- */
.feature-list {
  list-style: none;
  padding: 0; margin: 2rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--charcoal);
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--sage-mist);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F6850' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ----- testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--sage-mist);
}
.testimonial blockquote {
  margin: 0 0 1.4rem;
  font-size: 1.02rem;
  color: var(--charcoal);
  line-height: 1.7;
  position: relative;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--sage-deep);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* ----- CTA strip ----- */
.cta-strip {
  background: linear-gradient(135deg, var(--sage-deep) 0%, #3d5240 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-strip::before { width: 380px; height: 380px; top: -180px; right: -120px; }
.cta-strip::after  { width: 260px; height: 260px; bottom: -130px; left: -80px; }
.cta-strip h2 { color: var(--white); margin-bottom: 1rem; }
.cta-strip p {
  color: rgba(247,243,236,0.85);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  position: relative;
}
.cta-strip .btn-primary {
  background: var(--cream);
  color: var(--charcoal);
  position: relative;
}
.cta-strip .btn-primary:hover { background: var(--white); color: var(--sage-deep); }

/* ----- page header (interior pages) ----- */
.page-header {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(122,143,123,0.12), transparent 55%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p {
  font-size: 1.2rem;
  color: var(--muted);
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--sage-deep); }
.breadcrumbs span { margin: 0 0.6rem; opacity: 0.5; }

/* ----- article (blog post) ----- */
.article {
  padding: 4rem 0 6rem;
}
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article-cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 1.06rem; line-height: 1.85; }
.article-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 3rem 0 1.2rem;
}
.article-body h3 { margin: 2.2rem 0 1rem; }
.article-body p { color: var(--charcoal); }
.article-body ul {
  margin: 1.4rem 0 1.6rem;
  padding-left: 0;
  list-style: none;
}
.article-body ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 0.9rem; height: 1px;
  background: var(--sage-deep);
}
.article-body a { text-decoration: underline; text-underline-offset: 4px; }
.article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.article-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.article-meta .tag {
  padding: 0.3rem 0.8rem;
  background: var(--sage-mist);
  color: var(--sage-deep);
  border-radius: 999px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ----- blog index ----- */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sage-mist);
}
.post-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.post-card:hover .post-card-image img { transform: scale(1.06); }
.post-card-body { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.post-card-body .tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background: var(--sage-mist);
  color: var(--sage-deep);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}
.post-card h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.post-card p { color: var(--muted); margin: 0 0 1.6rem; flex-grow: 1; }
.post-card .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.post-card .read-more .arrow { transition: transform 0.3s ease; }
.post-card:hover .read-more .arrow { transform: translateX(4px); }

/* ----- contact page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  margin-bottom: 1.2rem;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.contact-card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-card .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--charcoal);
}
.contact-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { aspect-ratio: 4 / 3; max-width: 520px; margin: 0 auto; }
}

/* ----- policy / long-form ----- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.prose h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; }
.prose p, .prose li { color: var(--charcoal); }
.prose ul { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ----- footer ----- */
.site-footer {
  background: var(--charcoal);
  color: rgba(247,243,236,0.78);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 48px; height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-blurb { font-size: 0.92rem; max-width: 28ch; }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.7rem; }
.footer a { color: rgba(247,243,236,0.78); font-size: 0.93rem; }
.footer a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247,243,236,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247,243,236,0.55);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- scroll animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ----- utility ----- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
