/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  background-color: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  height: 2.25rem;
  width: 2.25rem;
  place-items: center;
  border-radius: 0.25rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: hsl(var(--foreground));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
    padding: 6rem 0 8rem;
  }
}

.hero-content {
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-column: span 6;
    padding-right: 2rem;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(var(--muted-foreground));
}

.eyebrow-line {
  height: 1px;
  width: 2.5rem;
  background-color: hsl(var(--foreground) / 0.4);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.learn-more-line {
  display: block;
  height: 1px;
  width: 2rem;
  background-color: hsl(var(--foreground));
  transition: width 0.3s ease;
}

.learn-more-link:hover .learn-more-line {
  width: 3.5rem;
}

.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 1.875rem;
  }
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
}

.hero-image-wrapper {
  position: relative;
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    grid-column: span 6;
  }
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-elegant);
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-image {
    height: 640px;
  }
}

.testimonial-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  max-width: 260px;
  border-radius: 0.25rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .testimonial-card {
    display: block;
  }
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.4;
  color: hsl(var(--foreground));
}

.testimonial-author {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
}

/* About Section */
.section-about {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.4);
}

.about-grid {
  display: grid;
  gap: 3rem;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    padding: 8rem 0;
  }
}

.about-eyebrow {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .about-eyebrow {
    grid-column: span 4;
  }
}

.about-content {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .about-content {
    grid-column: span 8;
  }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-text {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* Why Section */
.section-why {
  border-top: 1px solid hsl(var(--border));
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-why {
    padding: 8rem 0;
  }
}

.why-header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.eyebrow-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(var(--muted-foreground));
}

.section-title-centered {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-title-centered {
    font-size: 3rem;
  }
}

.section-text-centered {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.features-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 0.25rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--border));
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  background-color: hsl(var(--card));
  padding: 2.5rem;
  transition: background-color 0.5s ease;
}

.feature-card:hover {
  background-color: hsl(var(--secondary) / 0.6);
}

.feature-icon {
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.feature-title {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.feature-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* How It Works */
.section-how {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.4);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-how {
    padding: 8rem 0;
  }
}

.how-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.how-header {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .how-header {
    grid-column: span 4;
  }
}

.steps-list {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .steps-list {
    grid-column: span 8;
  }
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background-color: hsl(var(--card));
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  margin-bottom: 1px;
  transition: background-color 0.2s;
}

.step-item:hover {
  background-color: hsl(var(--background));
}

@media (min-width: 768px) {
  .step-item {
    padding: 2.5rem;
  }
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .step-number {
    font-size: 2.25rem;
  }
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .step-title {
    font-size: 1.5rem;
  }
}

.step-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .step-text {
    font-size: 1rem;
  }
}

.step-icon {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ Section */
.section-faq {
  border-top: 1px solid hsl(var(--border));
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-faq {
    padding: 8rem 0;
  }
}

.faq-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.faq-header {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .faq-header {
    grid-column: span 4;
  }
}

.faq-contact {
  margin-top: 1.5rem;
  color: hsl(var(--muted-foreground));
}

.email-link {
  color: hsl(var(--primary));
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.faq-list {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .faq-list {
    grid-column: span 8;
  }
}

.faq-item {
  border-bottom: 1px solid hsl(var(--border));
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.25rem;
  }
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-size: 1rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* CTA Section */
.section-cta {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.4);
  padding: 6rem 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-cta {
    padding: 8rem 0;
  }
}

.cta-title {
  max-width: 48rem;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-text {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}

.section-cta .btn {
  margin-top: 2.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.footer-brand {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 5;
  }
}

.footer-description {
  margin-top: 1.25rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

.footer-links {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .footer-links {
    grid-column: span 3;
  }
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--foreground));
}

.footer-links ul {
  margin-top: 1.25rem;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--foreground));
}

.footer-contact {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .footer-contact {
    grid-column: span 4;
  }
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: hsl(var(--foreground));
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: grid;
  height: 2.5rem;
  width: 2.5rem;
  place-items: center;
  border-radius: 0.25rem;
  border: 1px solid hsl(var(--border));
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
  }
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}