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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif; font-weight: 300;
  color: #3A3A3A; background-color: #F8F8F6;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; color: #1A1A1A; }

.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background-color 0.3s ease;
}
.header.scrolled {
  background-color: rgba(248,248,246,0.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid #E0E0DC;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { height: 32px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 0.75rem; font-weight: 400; color: #5A5A5A;
  text-transform: uppercase; letter-spacing: 0.15em;
  transition: color 0.3s ease; position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background-color: #C9A96E;
  transition: width 0.3s ease;
}
.header-nav a:hover { color: #3A3A3A; }
.header-nav a:hover::after { width: 100%; }
.header-nav a.active { color: #3A3A3A; }
.header-nav a.active::after { width: 100%; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 24px; height: 1px;
  background-color: #3A3A3A; margin: 6px 0; transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 48px 80px; background-color: #F8F8F6;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,8vw,7rem); font-weight: 400;
  color: #3A3A3A; letter-spacing: 0.02em; line-height: 1.05;
  margin-bottom: 16px;
  opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease forwards;
}
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem,1.2vw,0.9rem); font-weight: 400;
  color: #C9A96E; text-transform: uppercase; letter-spacing: 0.35em;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px); animation: fadeUp 1s ease 0.3s forwards;
}
.hero-divider {
  width: 40px; height: 1px; background-color: #C9A96E; margin-bottom: 48px;
  opacity: 0; animation: fadeIn 1s ease 0.6s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.75rem,3vw,2.5rem); color: #1A1A1A; margin-bottom: 16px; }
.section-header .divider { width: 40px; height: 1px; background-color: #C9A96E; margin: 0 auto 20px; }
.section-header p { font-size: 0.95rem; color: #5A5A5A; max-width: 600px; margin: 0 auto; font-weight: 300; }

.partners { padding: 60px 48px 100px; text-align: center; background-color: #F8F8F6; }
.partners-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: #8A8A8A; margin-bottom: 32px; }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.partner-item { width: 100px; height: 60px; border: 1px solid #E0E0DC; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #B0B0B0; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; transition: border-color 0.3s ease; }
.partner-item:hover { border-color: #C9A96E; }

.footer { border-top: 1px solid #C9A96E; padding: 32px 48px; background-color: #F8F8F6; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-info { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-info span { font-size: 0.7rem; color: #8A8A8A; font-weight: 300; letter-spacing: 0.02em; }
.footer-copy { font-size: 0.65rem; color: #B0B0B0; }

.page-header { padding: 140px 48px 60px; text-align: center; background-color: #F8F8F6; }
.page-header h1 { font-size: clamp(2rem,4vw,3rem); color: #1A1A1A; margin-bottom: 12px; }
.page-header .divider { width: 40px; height: 1px; background-color: #C9A96E; margin: 0 auto 16px; }
.page-header p { font-size: 0.9rem; color: #5A5A5A; max-width: 500px; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; padding: 0 48px 100px; max-width: 1200px; margin: 0 auto; }
.service-card { padding: 40px; background-color: #FFFFFF; border: 1px solid #F0F0ED; transition: all 0.3s ease; }
.service-card:hover { border-color: #C9A96E; box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.service-card .card-icon { width: 32px; height: 1px; background-color: #C9A96E; margin-bottom: 24px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #1A1A1A; margin-bottom: 12px; font-weight: 400; }
.service-card p { font-size: 0.85rem; color: #5A5A5A; line-height: 1.7; font-weight: 300; }

.about-content { padding: 0 48px 100px; max-width: 800px; margin: 0 auto; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1A1A1A; margin: 48px 0 16px; font-weight: 400; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 0.9rem; color: #5A5A5A; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.values-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 32px; }
.value-item { padding: 24px; border-left: 1px solid #C9A96E; }
.value-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: #1A1A1A; margin-bottom: 8px; font-weight: 400; }
.value-item p { font-size: 0.8rem; color: #5A5A5A; line-height: 1.6; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; padding: 0 48px 100px; max-width: 1200px; margin: 0 auto; }
.blog-card { padding: 32px; background-color: #FFFFFF; border: 1px solid #F0F0ED; transition: all 0.3s ease; }
.blog-card:hover { border-color: #C9A96E; }
.blog-card .date { font-size: 0.65rem; color: #C9A96E; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #1A1A1A; margin-bottom: 12px; font-weight: 400; line-height: 1.4; }
.blog-card p { font-size: 0.8rem; color: #5A5A5A; line-height: 1.6; font-weight: 300; }
.blog-card .read-more { display: inline-block; margin-top: 16px; font-size: 0.7rem; color: #C9A96E; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s ease; }
.blog-card .read-more:hover { color: #A8894E; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 0 48px 100px; max-width: 1000px; margin: 0 auto; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #1A1A1A; margin-bottom: 32px; font-weight: 400; }
.contact-item { margin-bottom: 24px; }
.contact-item .label { font-size: 0.65rem; color: #C9A96E; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 4px; }
.contact-item .value { font-size: 0.9rem; color: #3A3A3A; font-weight: 400; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 16px; border: 1px solid #E0E0DC; background-color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #3A3A3A; margin-bottom: 16px; transition: border-color 0.3s ease; font-weight: 300; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #C9A96E; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-submit { display: inline-block; padding: 12px 32px; background-color: transparent; color: #3A3A3A; border: 1px solid #3A3A3A; font-family: 'Inter', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer; transition: all 0.3s ease; font-weight: 400; }
.contact-form .btn-submit:hover { background-color: #3A3A3A; color: #FFFFFF; }

@media (max-width:768px) {
  .header { padding: 20px 24px; }
  .menu-toggle { display: block; }
  .header-nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background-color: rgba(248,248,246,0.98); backdrop-filter: blur(12px); flex-direction: column; justify-content: center; gap: 40px; padding: 80px 40px; transition: right 0.4s ease; border-left: 1px solid #E0E0DC; }
  .header-nav.open { right: 0; }
  .header-nav a { font-size: 0.85rem; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 60px 24px; }
  .partners { padding: 40px 24px 60px; }
  .partners-grid { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 20px; }
  .service-card { padding: 28px; }
  .about-content { padding: 0 24px 60px; }
  .values-list { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 20px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 60px; }
  .footer { padding: 24px; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-info { flex-direction: column; gap: 8px; align-items: center; }
  .page-header { padding: 100px 24px 40px; }
}