@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Figtree:wght@400;500;600&display=swap');

:root {
  --color-taupe: #BFA98F;
  --color-olive: #8A9A5B;
  --color-clay: #C68A6A;
  --color-charcoal: #3F3F3F;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F3F0;
  --color-border: #E8E4E0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  line-height: 1.76;
  color: var(--color-charcoal);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.76;
}

a {
  color: var(--color-taupe);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--color-clay);
  transform: scale(1.02);
}

button, .btn {
  background-color: var(--color-taupe);
  color: var(--color-white);
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  transition: all 0.3s ease;
  font-weight: 500;
}

button:hover, .btn:hover {
  background-color: var(--color-clay);
  transform: scale(1.04);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-custom {
  max-width: 1520px;
  padding: 0 100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container-custom {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  body {
    font-size: 16px;
  }
}

header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 100px;
  max-width: 1520px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 20px;
  }
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo a {
  color: inherit;
}

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

.nav-menu a {
  color: var(--color-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-taupe);
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
}

.hero-section {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 150px;
}

.hero-content {
  position: absolute;
  text-align: center;
  z-index: 10;
  color: var(--color-white);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-section {
    height: 300px;
    margin-bottom: 100px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

.section {
  padding: 150px 100px;
  max-width: 1520px;
  margin: 0 auto;
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .section {
    padding: 100px 20px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-top: 0;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  opacity: 0.8;
}

.content-row {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-row.reverse {
  grid-template-columns: 45% 55%;
}

.content-row img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  object-fit: cover;
}

.content-text h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .content-row, .content-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-row img {
    max-height: 250px;
  }
}

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

.card {
  background-color: var(--color-light-gray);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-top: 0;
  color: var(--color-charcoal);
}

.card p {
  margin-bottom: 1rem;
  font-size: 16px;
}

.card a {
  display: inline-block;
  color: var(--color-taupe);
  font-weight: 500;
  transition: color 0.3s ease;
}

.card a:hover {
  color: var(--color-clay);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

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

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--color-taupe);
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-charcoal);
  opacity: 0.8;
  padding-top: 0;
}

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

.disclaimer-box {
  background-color: var(--color-light-gray);
  border-left: 4px solid var(--color-taupe);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 16px;
}

.disclaimer-box h4 {
  margin-top: 0;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 60px 100px;
  margin-top: 150px;
}

footer a {
  color: var(--color-taupe);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-clay);
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-taupe);
  font-family: 'Lora', serif;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  max-width: 1520px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px;
    margin-top: 100px;
  }
  
  .footer-content {
    gap: 2rem;
  }
}

.cta-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  padding: 3rem 0;
  margin: 2rem 0;
  opacity: 0.9;
}

.cta-text a {
  color: var(--color-taupe);
  text-decoration: underline;
  font-weight: 500;
}

.cta-text a:hover {
  color: var(--color-clay);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.blog-teaser {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-teaser:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

.blog-teaser-content {
  padding: 1.5rem;
}

.blog-teaser-content h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.blog-teaser-content p {
  font-size: 15px;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
  opacity: 0.8;
}

.blog-teaser-link {
  display: inline-block;
  color: var(--color-taupe);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.blog-teaser-link:hover {
  color: var(--color-clay);
}

.numbered-list {
  max-width: 800px;
  margin: 2rem auto;
}

.numbered-list ol {
  padding-left: 1.5rem;
  counter-reset: item;
  list-style-type: none;
}

.numbered-list ol li {
  counter-increment: item;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.numbered-list ol li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-taupe);
  color: white;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  color: var(--color-charcoal);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-taupe);
  box-shadow: 0 0 0 3px rgba(191, 169, 143, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--color-taupe);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Figtree', sans-serif;
}

.submit-btn:hover {
  background-color: var(--color-clay);
  transform: scale(1.02);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text p {
  margin-bottom: 0.5rem;
}

.cookie-text p:last-child {
  margin-bottom: 0;
}

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

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-buttons .accept-btn {
  background-color: var(--color-taupe);
  color: white;
}

.cookie-buttons .accept-btn:hover {
  background-color: var(--color-clay);
}

.cookie-buttons .reject-btn {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.cookie-buttons .reject-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
}

.highlight {
  font-weight: 500;
  color: var(--color-charcoal);
}

.text-balance {
  text-wrap: balance;
}

.opacity-muted {
  opacity: 0.75;
}

.space-top {
  margin-top: 3rem;
}

.space-bottom {
  margin-bottom: 3rem;
}
