:root {
  --cream: #f4f7fa;
  --warm: #e4ebf2;
  --charcoal: #1a2332;
  --charcoal-light: #2d3a4d;
  --accent: #3d5066;
  --accent-light: #6b8499;
  --accent-dark: #2c3e50;
  --wine: #1e3348;
  --wine-dark: #152536;
  --shadow-soft: 0 4px 20px -4px rgba(26, 35, 50, 0.08);
  --shadow-card: 0 8px 40px -12px rgba(26, 35, 50, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(61, 80, 102, 0.2);
  color: var(--charcoal);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container-main {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container-main {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-main {
    padding: 0 2rem;
  }
}

.font-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.light .section-label {
  color: var(--accent-light);
}

.section-heading.light .section-title {
  color: var(--cream);
}

.section-heading.light .section-desc {
  color: rgba(244, 247, 250, 0.7);
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-desc {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 35, 50, 0.7);
}

@media (min-width: 768px) {
  .section-desc {
    font-size: 1.125rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--charcoal-light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-cta {
  background: var(--cream);
  color: var(--wine);
}

.btn-cta:hover {
  background: #fff;
  color: var(--accent-dark);
}

.btn-full {
  width: 100%;
}

@media (min-width: 640px) {
  .btn-full-sm-auto {
    width: auto;
  }
}

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 1.5rem 0;
}

.site-header.scrolled {
  background: rgba(244, 247, 250, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}

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

.logo img {
  height: 3.5rem;
  width: auto;
  max-width: min(380px, 82vw);
  object-fit: contain;
  object-position: left;
}

@media (min-width: 640px) {
  .logo img {
    height: 4rem;
  }
}

@media (min-width: 1024px) {
  .logo img {
    height: 5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  color: rgba(26, 35, 50, 0.8);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
}

.menu-toggle:hover {
  color: var(--accent);
}

.nav-mobile {
  display: none;
  overflow: hidden;
  background: rgba(244, 247, 250, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(26, 35, 50, 0.05);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile-inner {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  color: var(--charcoal);
}

.nav-mobile a:hover {
  color: var(--accent);
}

.nav-mobile-cta {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(26, 35, 50, 0.1);
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream), var(--cream), rgba(228, 235, 242, 0.3));
}

.hero-blob-1,
.hero-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.hero-blob-1 {
  top: 5rem;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(61, 80, 102, 0.05);
}

.hero-blob-2 {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(61, 80, 102, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0 6rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
}

.hero-desc {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(26, 35, 50, 0.7);
  max-width: 36rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-card-wrap {
    margin: 0;
  }
}

.hero-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 35, 50, 0.05);
}

@media (min-width: 768px) {
  .hero-card {
    padding: 2rem;
  }
}

.hero-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
}

.hero-photo {
  aspect-ratio: 3 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

.hero-stat span:first-child {
  font-size: 0.875rem;
  color: rgba(26, 35, 50, 0.6);
}

.hero-stat span:last-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 500;
}

.hero-quote {
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
}

.hero-oab {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(26, 35, 50, 0.6);
}

.hero-card-shadow {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(61, 80, 102, 0.2);
  z-index: -1;
}

/* Trust */
.trust {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid rgba(26, 35, 50, 0.05);
  border-bottom: 1px solid rgba(26, 35, 50, 0.05);
}

@media (min-width: 768px) {
  .trust {
    padding: 5rem 0;
  }
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}

.trust-item:hover {
  background: rgba(244, 247, 250, 0.5);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(61, 80, 102, 0.1);
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: var(--accent);
  color: #fff;
}

.trust-item h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  color: var(--charcoal);
}

.trust-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26, 35, 50, 0.6);
}

/* Sections common */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: #fff;
}

.bg-dark {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.bg-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(61, 80, 102, 0.3), transparent, transparent);
}

.bg-dark .container-main {
  position: relative;
  z-index: 1;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-photo-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-deco {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(61, 80, 102, 0.3);
  border-radius: 1rem;
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .about-deco {
    display: block;
  }
}

.about-text p {
  margin: 0 0 1.5rem;
  line-height: 1.7;
  color: rgba(26, 35, 50, 0.8);
}

.about-text p.lead {
  font-size: 1.125rem;
}

.about-text p.muted {
  color: rgba(26, 35, 50, 0.7);
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(26, 35, 50, 0.8);
}

.credentials svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .cards-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(244, 247, 250, 0.5);
  border: 1px solid rgba(26, 35, 50, 0.05);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .area-card {
    padding: 2rem;
  }
}

.area-card:hover {
  border-color: rgba(61, 80, 102, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.area-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.area-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(61, 80, 102, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.area-card:hover .area-icon {
  background: var(--accent);
  color: #fff;
}

.area-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--charcoal);
}

.area-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26, 35, 50, 0.6);
}

/* Process */
.process-wrap {
  position: relative;
}

.process-line {
  display: none;
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(61, 80, 102, 0.2);
    transform: translateY(-50%);
  }
}

.process-step {
  text-align: center;
}

@media (min-width: 1024px) {
  .process-step {
    text-align: left;
  }
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--charcoal);
}

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(26, 35, 50, 0.6);
}

/* Differentials */
.diff-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .diff-card {
    padding: 2rem;
  }
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(61, 80, 102, 0.3);
}

.diff-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: rgba(61, 80, 102, 0.2);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.diff-card:hover .diff-icon {
  background: var(--accent);
  color: #fff;
}

.diff-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--cream);
}

.diff-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(244, 247, 250, 0.6);
}

/* Testimonials */
.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(244, 247, 250, 0.6);
  border: 1px solid rgba(26, 35, 50, 0.05);
  transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
}

.testimonial-quote-icon {
  color: rgba(61, 80, 102, 0.2);
  margin-bottom: 1rem;
}

.testimonial-text {
  margin: 0 0 1.5rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(26, 35, 50, 0.8);
}

.testimonial-author {
  font-style: normal;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(26, 35, 50, 0.5);
}

/* CTA */
.cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--wine), var(--wine-dark));
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--cream);
}

.cta p {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(244, 247, 250, 0.7);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

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

.contact-form {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 35, 50, 0.05);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(26, 35, 50, 0.1);
  background: rgba(244, 247, 250, 0.3);
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(61, 80, 102, 0.15);
}

.form-group textarea {
  resize: none;
  min-height: 7rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item a:hover {
  opacity: 0.8;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(61, 80, 102, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.875rem;
  color: rgba(26, 35, 50, 0.5);
  margin: 0 0 0.125rem;
}

.contact-info-value {
  margin: 0;
  line-height: 1.6;
  color: var(--charcoal);
}

.social-link {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(26, 35, 50, 0.05);
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(244, 247, 250, 0.7);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
  height: 3rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (min-width: 768px) {
  .footer-logo img {
    height: 3.5rem;
  }
}

.footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 247, 250, 0.4);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom p {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(244, 247, 250, 0.4);
  max-width: 48rem;
}

.footer-copy {
  color: rgba(244, 247, 250, 0.3) !important;
  margin-bottom: 0 !important;
}
