
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #D4AF37;
  --primary-gold-dark: #B8860B;
  --secondary-cream: #F8F4E3;
  --accent-rust: #B7410E;
  --text-dark: #2D1B00;
  --text-light: #F8F4E3;
  --text-muted: #6B4F1E;
  --border-light: #E6D7B8;
  --shadow-soft: rgba(45, 27, 0, 0.1);
  --shadow-gold: rgba(212, 175, 55, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

.text-white strong,
.text-white b,
.text-light strong,
.text-light b,
[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b {
  color: inherit;
}


.text-gold {
  color: var(--primary-gold);
}

.text-rust {
  color: var(--accent-rust);
}

.text-dark {
  color: var(--text-dark);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}


.bg-gold {
  background-color: var(--primary-gold);
}

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

.bg-rust {
  background-color: var(--accent-rust);
}

.bg-dark {
  background-color: var(--text-dark);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(183, 65, 14, 0.4);
  border: 2px solid rgba(183, 65, 14, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-gold-dark);
  border-color: var(--accent-rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 65, 14, 0.5);
}

.btn-secondary {
  background-color: var(--text-dark);
  color: var(--text-light);
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 15px rgba(45, 27, 0, 0.3);
}

.btn-secondary:hover {
  background-color: #1a1000;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 27, 0, 0.4);
}

.btn-outline {
  background-color: rgba(212, 175, 55, 0.2);
  border: 3px solid var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 244, 227, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--secondary-cream);
  box-shadow: 0 2px 20px var(--shadow-soft);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.logo span {
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link.active {
  color: var(--primary-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--secondary-cream);
  z-index: 1001;
  padding: 4rem 2rem;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .nav-menu {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}


.section {
  padding: 6rem 0;
}

.section-light {
  background-color: var(--secondary-cream);
}

.section-dark {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h4 {
  color: inherit;
}

.section-dark .card {
  color: var(--text-dark);
}
.section-dark .bg-cream {
  color: var(--text-muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}


.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 27, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 4rem;
  color: var(--text-light);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  min-width: 40px;
}

.feature-content h4 {
  margin-bottom: 0.5rem;
}


.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  border-left: 4px solid var(--primary-gold);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
}

.team-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--text-muted);
  font-style: italic;
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1002;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}


.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
}


.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
}

.team-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--text-muted);
  font-style: italic;
}

.blog-post {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-soft);
}

.read-more-btn {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.read-more-btn:hover {
  background-color: var(--primary-gold-dark);
  transform: translateY(-2px);
}

.blog-content-hidden {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-consent-banner {
    padding: 1rem;
  }
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1rem 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-question h4 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 2.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1002;
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-gold);
  transform: rotate(90deg);
}