@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-main: #fefefe;
  --bg-soft: #f8f7f5;
  --bg-card: #ffffff;
  
  --text-main: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  
  --accent-primary: #8b7355;
  --accent-hover: #6d5940;
  --accent-light: #d4c4b0;
  
  --line-subtle: #e8e6e3;
  --shadow-soft: rgba(0, 0, 0, 0.04);
  --shadow-hover: rgba(0, 0, 0, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 254, 254, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line-subtle);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  color: var(--accent-primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 4px;
}

.nav a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--accent-primary);
  background: var(--bg-soft);
}

/* Footer */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-subtle);
  padding: 80px 48px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-subtle);
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer {
    padding: 60px 24px;
  }
}