@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FBF7F2;
  color: #2E2A26;
  line-height: 1.7;
}

a {
  color: inherit;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(46, 42, 38, 0.08);
}

.back-link {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #9B8F86;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #2E2A26;
}

.main-nav a {
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #2E2A26;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #C98A6E;
  transition: width 0.2s ease;
}

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

/* Hero */
.hero {
  padding: 7rem 2rem 5rem;
  max-width: 760px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C98A6E;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: #6B6258;
  max-width: 480px;
}

/* Sections */
.section {
  padding: 4.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C98A6E;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-text {
  font-size: 1.05rem;
  color: #6B6258;
  max-width: 640px;
}

/* About section */
.about-section {
  border-top: 1px solid rgba(46, 42, 38, 0.08);
  border-bottom: 1px solid rgba(46, 42, 38, 0.08);
  background-color: #F5EFE7;
}

.about-content {
  max-width: 680px;
}

.lead-text {
  font-size: 1.2rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: #4A433D;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: #6B6258;
  margin-bottom: 1.25rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}

.credential-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #C98A6E;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.credential-link:hover {
  border-color: #C98A6E;
}

.credential-note {
  font-size: 0.85rem;
  color: #A89E94;
  font-style: italic;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.package-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(46, 42, 38, 0.08);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.package-card-featured {
  border-color: #C98A6E;
  box-shadow: 0 4px 24px rgba(201, 138, 110, 0.12);
}

.package-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.package-desc {
  color: #6B6258;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.package-list {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.package-list li {
  font-size: 0.9rem;
  color: #4A433D;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(46, 42, 38, 0.06);
}

.package-list li:last-child {
  border-bottom: none;
}

.package-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #C98A6E;
}

/* Contact */
.contact-section {
  text-align: left;
}

.contact-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background-color: #2E2A26;
  color: #FBF7F2;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.contact-button:hover {
  background-color: #C98A6E;
}

/* Footer */
.site-footer {
  padding: 2rem;
  border-top: 1px solid rgba(46, 42, 38, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #A89E94;
}

.site-footer a {
  text-decoration: none;
  color: #9B8F86;
}

.site-footer a:hover {
  color: #C98A6E;
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav a {
    margin-left: 1rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 4.5rem 1.5rem 3.5rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .credentials {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Focus states */
a:focus-visible {
  outline: 2px solid #C98A6E;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
