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

:root {
  --primary: #2d462d;
  --primary-light: #436343;
  --accent: #bc8253;
  --accent-hover: #a57044;
  --bg-main: #fcfbf7;
  --bg-card: #f5f3eb;
  --text-dark: #1e251e;
  --text-muted: #535d53;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-title: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

section {
  padding: 6.25rem 0;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(252, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 70, 45, 0.08);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  height: 42px;
  width: auto;
  fill: var(--primary);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
}

.burger span {
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.hero-sec {
  padding-top: 180px;
  padding-bottom: 110px;
  background-color: var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.75rem;
  margin-bottom: 1.75rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 530px;
}

.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subheader {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background-color: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(45,70,45,0.05);
}

.feature-icon {
  background-color: rgba(188, 130, 83, 0.1);
  width: 54px;
  height: 54px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.quote-sec {
  background-color: var(--bg-card);
  text-align: center;
  padding: 6.25rem 0;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-family: var(--font-title);
  font-size: 1.85rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: var(--primary);
}

.quote-author {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--accent);
}

.cta-sec {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 7.5rem 0;
}

.cta-sec h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.cta-sec p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
}

.footer {
  background-color: #171f17;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, a255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-text {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.95rem;
  max-width: 250px;
  line-height: 1.6;
}

.footer-heading {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #171f17;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 70%;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-cookie-reject {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover {
  color: var(--white);
  border-color: var(--white);
}

.about-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(45, 70, 45, 0.1);
  padding-top: 2rem;
}

.stat-item h4 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0;
}

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

.service-box {
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

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

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

.team-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.team-role {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(45, 70, 45, 0.1);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  transition: var(--transition);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent);
  transition: var(--transition);
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

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

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-top: 1rem;
}

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

.blog-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more-btn:hover {
  color: var(--accent);
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
}

.contact-info h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.contact-detail-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-detail-content p, .contact-detail-content a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-detail-content a:hover {
  color: var(--accent);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(45, 70, 45, 0.15);
  border-radius: 6px;
  background-color: var(--bg-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(188, 130, 83, 0.1);
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type='checkbox'] {
  margin-top: 4px;
  accent-color: var(--accent);
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 400;
}

.checkbox-group label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-message {
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(45, 70, 45, 0.1);
  color: var(--primary);
  border: 1px solid rgba(45, 70, 45, 0.2);
}

.form-message.error {
  display: block;
  background-color: #fcebeb;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}

.map-wrapper {
  margin-top: 5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  margin-top: 4rem;
}

.article-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.article-info-bar {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(45, 70, 45, 0.1);
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2.5rem;
}

.article-body-p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.article-subheading {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.article-quote {
  border-left: 4px solid var(--accent);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--primary);
  line-height: 1.5;
}

.article-sidebar-widget {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.article-sidebar-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.legal-text-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.legal-text-content p, .legal-text-content ul {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.legal-text-content ul {
  padding-left: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-img-wrap img {
    height: 380px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about-sec-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-layout {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 1.5rem;
  }
  .cookie-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .header-container {
    height: 80px;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-main);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    left: 0;
  }
  .burger {
    display: flex;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-sec h2 {
    font-size: 2.25rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}