@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FAF7F2;
  color: #3D2E28;
  overflow-x: hidden;
  line-height: 1.72079;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  color: #2B1F1A;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.25rem;
}

em {
  font-style: italic;
}

section {
  padding: 96px 60px;
  position: relative;
}
@media (max-width: 640px) {
  section {
    padding: 64px 20px;
  }
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1801975em;
  text-transform: uppercase;
  color: #C4856A;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #2B1F1A;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 0.95rem;
  color: #8A7068;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 52px;
  max-width: 520px;
}

.btn, .btn-enroll, .btn-ghost, .btn-white, .btn-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-primary {
  background: #C4856A;
  color: white;
}
.btn-primary:hover {
  background: #b5754f;
  transform: translateY(-7.2079px);
}

.btn-white {
  background: white;
  color: #C4856A;
  font-size: 0.82rem;
  padding: 11px 22px;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  padding: 11px 22px;
}
.btn-ghost:hover {
  border-color: white;
  color: white;
}

.btn-enroll {
  display: block;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.btn-enroll.solid {
  background: white;
  color: #C4856A;
}
.btn-enroll.fill {
  background: #C4856A;
  color: white;
}
.btn-enroll.ghost {
  background: transparent;
  color: rgba(245, 237, 227, 0.55);
  border: 1px solid rgba(245, 237, 227, 0.2);
}

a {
  color: #C4856A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  text-decoration: underline;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1080px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
}
@media (max-width: 860px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.dark-section {
  background: #2B1F1A;
}
.dark-section .eyebrow {
  color: #C8A96E;
}
.dark-section .section-title {
  color: #F5EDE3;
}
.dark-section .section-sub {
  color: rgba(245, 237, 227, 0.55);
}

.warm-section {
  background: #F5EDE3;
}

.ivory-section {
  background: #FAF7F2;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.glass-light {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.072079), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.glass-dark {
  background: rgba(43, 31, 26, 0.25);
  border: 1px solid rgba(196, 133, 106, 0.12);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.1081185), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.glass-deep {
  background: rgba(43, 31, 26, 0.45);
  border: 1px solid rgba(200, 169, 110, 0.08);
  box-shadow: 0 16px 48px rgba(43, 31, 26, 0.144158), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-deep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.glass-hover:hover {
  background: rgba(250, 247, 242, 0.12);
  transform: translateY(-7.2079px);
  box-shadow: 0 12px 40px rgba(43, 31, 26, 0.1081185), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-card, .support-card {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.072079), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-card::before, .support-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
.glass-card, .support-card {
  padding: 32px;
}
.glass-card::after, .support-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #C4856A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.72079s;
}
.glass-card:hover::after, .support-card:hover::after {
  transform: scaleX(1);
}
.glass-card:hover, .support-card:hover {
  transform: translateY(-7.2079px);
}

.glass-nav {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.072079), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  border-bottom: 1px solid rgba(196, 133, 106, 0.0072079);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
}

.glass-pricing {
  background: rgba(43, 31, 26, 0.25);
  border: 1px solid rgba(196, 133, 106, 0.12);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.1081185), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
.glass-pricing {
  padding: 26px;
  border-radius: 16px;
}
.glass-pricing.featured {
  background: rgba(196, 133, 106, 0.2079);
  border-color: rgba(196, 133, 106, 0.072079);
}
.glass-pricing.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -11px;
  left: 24px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1081185em;
  text-transform: uppercase;
  background: #C8A96E;
  color: #2B1F1A;
  padding: 3px 11px;
  border-radius: 100px;
}

.glass-blog {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.072079), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
.glass-blog {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}
.glass-blog .blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.glass-blog .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72079s;
}
.glass-blog:hover .blog-thumb img {
  transform: scale(1.04);
}
.glass-blog:hover {
  transform: translateY(-7.2079px);
  box-shadow: 0 16px 40px rgba(43, 31, 26, 0.0864948);
}

.glass-testimonial {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  box-shadow: 0 8px 32px rgba(43, 31, 26, 0.072079), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
.glass-testimonial {
  border-radius: 20px;
  padding: 34px 30px;
  background: rgba(255, 255, 255, 0.6);
}
.glass-testimonial.featured {
  background: rgba(196, 133, 106, 0.2079);
  border-color: rgba(196, 133, 106, 0.072079);
  margin-top: 28px;
}
.glass-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(43, 31, 26, 0.072079);
}

.glass-crisis {
  background: rgba(43, 31, 26, 0.45);
  border: 1px solid rgba(200, 169, 110, 0.08);
  box-shadow: 0 16px 48px rgba(43, 31, 26, 0.144158), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.glass-crisis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  pointer-events: none;
}
.glass-crisis {
  background: rgba(196, 133, 106, 0.72079);
  border-color: rgba(196, 133, 106, 0.072079);
  margin-top: 52px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

@supports not (backdrop-filter: blur(20px)) {
  .glass-light,
  .glass-card,
  .support-card,
  .glass-blog,
  .glass-testimonial {
    background: rgba(250, 247, 242, 0.95);
  }
  .glass-dark,
  .glass-pricing {
    background: rgba(43, 31, 26, 0.9);
  }
  .glass-deep,
  .glass-crisis {
    background: rgba(43, 31, 26, 0.95);
  }
  .glass-nav {
    background: rgba(250, 247, 242, 0.95);
  }
}
@media (max-width: 640px) {
  .glass-nav {
    padding: 0 20px;
    height: 56px;
  }
  .glass-card, .support-card,
  .glass-testimonial,
  .glass-pricing {
    padding: 24px 20px;
  }
  .glass-light,
  .glass-dark,
  .glass-deep {
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
  }
}
.hero {
  margin-top: 64px;
  height: 520px;
  position: relative;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(43, 31, 26, 0.82) 0%, rgba(43, 31, 26, 0.3) 60%, transparent 100%);
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  max-width: 500px;
}
@media (max-width: 640px) {
  .hero .hero-content {
    left: 24px;
  }
}
.hero .hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C8A96E;
  margin-bottom: 12px;
}
.hero .hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero .hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 28px;
}

.nav-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2B1F1A;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A7068;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #C4856A;
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}

.nav-crisis {
  font-size: 0.78rem;
  font-weight: 500;
  background: #C4856A;
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-crisis:hover {
  background: #2B1F1A;
}

.support-card .support-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(196, 133, 106, 0.0072079);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.support-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #F5EDE3;
  margin-bottom: 8px;
}
.support-card p {
  font-size: 0.85rem;
  color: rgba(245, 237, 227, 0.5);
  line-height: 1.7;
  margin-bottom: 18px;
}
.support-card .support-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #C8A96E;
  text-decoration: none;
}
.support-card .support-link:hover {
  text-decoration: underline;
}

.t-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: #C4856A;
  margin-bottom: 10px;
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.t-stars span {
  color: #C8A96E;
  font-size: 0.88rem;
}

.t-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #3D2E28;
  margin-bottom: 22px;
  font-weight: 300;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.t-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2B1F1A;
}

.t-role {
  font-size: 0.76rem;
  color: #8A7068;
  margin-top: 2px;
}

.t-card.featured .t-text,
.t-card.featured .t-name {
  color: white;
}
.t-card.featured .t-role {
  color: rgba(255, 255, 255, 0.65);
}
.t-card.featured .t-quote {
  color: rgba(255, 255, 255, 0.35);
}
.t-card.featured .t-stars span {
  color: rgba(255, 255, 255, 0.8);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  max-width: 1080px;
}
@media (max-width: 860px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-grid .blog-card:first-child .blog-thumb {
  height: 260px;
}

.blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72079s;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 31, 26, 0.6) 0%, rgba(43, 31, 26, 0.05) 60%);
}

.blog-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(250, 247, 242, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-body {
  padding: 22px;
}
.blog-body h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #2B1F1A;
  line-height: 1.3;
  margin-bottom: 9px;
}
.blog-card:first-child .blog-body h3 {
  font-size: 1.5rem;
}
.blog-body p {
  font-size: 0.83rem;
  color: #8A7068;
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 300;
}

.blog-meta {
  font-size: 0.74rem;
  color: #8A7068;
  margin-bottom: 7px;
}

.blog-read {
  font-size: 0.79rem;
  font-weight: 500;
  color: #C4856A;
  text-decoration: none;
}
.blog-read:hover {
  text-decoration: underline;
}

.community-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
}
@media (max-width: 760px) {
  .community-layout {
    grid-template-columns: 1fr;
  }
}

.community-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  position: relative;
  margin-bottom: 30px;
}
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.community-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 31, 26, 0.5) 0%, transparent 60%);
}

.c-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.c-feat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(125, 158, 140, 0.0072079);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.c-feat h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: #F5EDE3;
  margin-bottom: 3px;
}

.c-feat p {
  font-size: 0.81rem;
  color: rgba(245, 237, 227, 0.48);
  line-height: 1.6;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.pricing-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: #F5EDE3;
  margin-bottom: 2px;
}

.pricing-desc {
  font-size: 0.76rem;
  color: rgba(245, 237, 227, 0.42);
}

.pricing-amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #F5EDE3;
  line-height: 1;
  text-align: right;
}

.pricing-period {
  font-size: 0.7rem;
  color: rgba(245, 237, 227, 0.38);
  text-align: right;
}

.pricing-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.pricing-perks li {
  font-size: 0.8rem;
  color: rgba(245, 237, 227, 0.58);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-perks li::before {
  content: "✓";
  font-size: 0.7rem;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(125, 158, 140, 0.0072079);
  color: #7D9E8C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-amount {
  color: white;
}
.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-card.featured .pricing-perks li {
  color: rgba(255, 255, 255, 0.88);
}
.pricing-card.featured .pricing-perks li::before {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

footer {
  background: #2B1F1A;
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 640px) {
  footer {
    padding: 32px 20px;
    flex-direction: column;
    text-align: center;
  }
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: #F5EDE3;
}

.footer-contact {
  font-size: 0.78rem;
  color: rgba(245, 237, 227, 0.4);
  text-align: center;
}
.footer-contact a {
  color: #C8A96E;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(245, 237, 227, 0.28);
}

.pinterest-save {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  opacity: 0;
  transition: opacity 0.72079s;
  cursor: pointer;
}
.pinterest-save img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
.pinterest-save span {
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
}

.blog-card:hover .pinterest-save,
.blog-thumb:hover .pinterest-save {
  opacity: 1;
}

.bmac-float, .kofi-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: #C4856A;
  color: white;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(43, 31, 26, 0.2);
  transition: all 0.72079s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bmac-float:hover, .kofi-float:hover {
  background: #b5754f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 31, 26, 0.3);
}
@media (max-width: 640px) {
  .bmac-float, .kofi-float {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

.kofi-float {
  background: #C8A96E;
  color: #2B1F1A;
}
.kofi-float:hover {
  background: #b8985a;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #C4856A, #C8A96E);
  z-index: 1000;
  transition: width 0.1s linear;
}

/*# sourceMappingURL=main.css.map */