:root {
  --primary-bg: #FCFAF8;
  --text-main: #2D2A26;
  --text-muted: #7A726D;
  --accent-black: #3D3835;
  --accent-black-hover: #5A534F;
  --accent-silver: #D1C7BD;
  --nav-bg: rgba(61, 56, 53, 0.98);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--nav-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.03);
}

.brand {
  font-size: 1.5rem;
  color: var(--primary-bg);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-bg);
  margin-left: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  display: flex;
  min-height: 90vh;
  padding: 140px 5% 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 500;
  display: block;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-quote {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent-black);
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent-silver);
  padding-left: 1.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Expertise Section */
.expertise {
  padding: 4rem 5% 8rem;
  max-width: 1400px;
  margin: 0 auto;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.expertise-card {
  background: #ffffff;
  padding: 4rem;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.expertise-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.expertise-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-black);
  color: #fff;
  border: 1px solid var(--accent-black);
}

.btn-primary:hover {
  background-color: var(--accent-black-hover);
  border-color: var(--accent-black-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.hero-image-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fadeLeft 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.image-quote {
  max-width: 480px;
  margin-bottom: 0;
  border-left: none;
  padding-left: 0;
  text-align: right;
  border-right: 3px solid var(--accent-silver);
  padding-right: 1.5rem;
}

.quote-author {
  display: block;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}

.hero-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  object-fit: cover;
}

.image-accent {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background-color: var(--accent-silver);
  z-index: -1;
  border-radius: 2px;
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 5% 3rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-title {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 3rem;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding-top: 120px;
    gap: 3rem;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image-container {
    order: 1;
    justify-content: center;
    width: 100%;
  }
  
  .image-accent {
    right: auto;
    left: 20px;
  }
  
  .expertise-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .expertise-title {
    font-size: 2rem;
  }
  .nav-links {
    display: none;
  }
}
