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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FAF9F6;
  color: #2C2C2A;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 220px;
  height: auto;
}

.tagline {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
}

.hero-bottom {
  position: relative;
  max-width: 780px;
}

.hero-bottom h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  letter-spacing: 0.02em;
}

.contact-bar {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.phone-btn {
  border: 1px solid #BA7517;
  padding: 10px 28px;
  text-decoration: none;
  color: #BA7517;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  transition: all 0.15s;
}

.phone-btn:hover {
  background: #BA7517;
  color: white;
}
