/* === COLOR PALETTE === */
:root {
  --cream: #F8F5E3;
  --cream-light: #FFF7E0;
  --black: #181818;
  --gold: #D48A1B;
  --red: #B13A2B;
  --gray: #E5D8B0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--black);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVBAR === */
.navbar {
  background: var(--black);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(24,24,24,0.06);
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-menu li a:hover {
  color: var(--gold);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--black) 60%, var(--red) 100%);
  color: var(--cream);
  padding: 64px 0 48px 0;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
}
.hero-content {
  flex: 1 1 340px;
  min-width: 300px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(24,24,24,0.12);
}
.hero-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--cream-light);
}
.btn.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(24,24,24,0.10);
  transition: background 0.2s, color 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.btn.btn-primary:hover {
  background: var(--red);
  color: var(--cream);
  transform: translateY(-2px) scale(1.03);
}
.hero-logo-badge {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-placeholder {
  background: #f3ecdf;
  border-radius: 50%;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 32px rgba(24,24,24,0.18);
  margin: 0 auto;
}
.logo-placeholder img.site-logo {
  display: block;
  width: 290px;
  height: 290px;
  background: transparent;
  box-shadow: none;
  margin: 0 auto;
}

/* Navbar logo badge */
.nav-logo-badge {
  background: #f3ecdf;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(24,24,24,0.10);
}
.nav-logo-badge img.site-logo {
  width: 36px;
  height: 36px;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

/* === ABOUT === */
.about {
  background: var(--cream-light);
  padding: 64px 0 48px 0;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.about-flex {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about-text {
  flex: 2 1 340px;
  min-width: 300px;
  font-size: 1.1rem;
  color: var(--black);
}
.about-services {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.06);
  padding: 24px 20px;
}
.about-services h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-list li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  border-bottom: 1px solid var(--gray);
  color: var(--black);
  position: relative;
  font-size: 1rem;
}
.services-list li:last-child {
  border-bottom: none;
}
.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* === PORTFOLIO === */
.portfolio {
  background: var(--cream);
  padding: 64px 0 48px 0;
}
.portfolio-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-card {
  background: var(--cream-light);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.08);
  padding: 32px 28px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 24px;
  text-align: center;
  border: 2px solid var(--gray);
}
.portfolio-card h3 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.portfolio-card p {
  color: var(--black);
  font-size: 1rem;
}

/* === CONTACT === */
.contact {
  background: var(--cream-light);
  padding: 64px 0 48px 0;
}
.contact-flex {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 260px;
  min-width: 220px;
  font-size: 1.1rem;
  color: var(--black);
}
.contact-info h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-details {
  margin-top: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.contact-icon {
  font-size: 1.25rem;
}
.contact-item a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.contact-item a:hover {
  text-decoration: underline;
}
.contact-form {
  flex: 2 1 340px;
  min-width: 300px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.06);
  padding: 32px 28px;
  border: 2px solid var(--gray);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--black);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--cream-light);
  color: var(--black);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button[type="submit"] {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(24,24,24,0.10);
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.contact-form button[type="submit"]:hover {
  background: var(--red);
  color: var(--cream);
  transform: translateY(-2px) scale(1.03);
}

/* === FOOTER === */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 32px 0 16px 0;
}
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 1rem;
  color: var(--cream-light);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-flex, .about-flex, .contact-flex, .footer-flex, .portfolio-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .hero-content, .about-text, .about-services, .contact-info, .contact-form {
    min-width: 0;
    width: 100%;
  }
  .portfolio-card {
    min-width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .logo-placeholder {
    width: 140px;
    height: 140px;
  }
  .logo-placeholder img.site-logo {
    width: 100px;
    height: 100px;
  }
  .nav-menu {
    gap: 1rem;
  }
  .footer-links {
    gap: 1rem;
  }
} 