* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #1f1f1f;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* HEADER */
.header {
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  font-size: 14px;
  color: #666;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* HERO */
.hero {
  background: #fafafa;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.eyebrow {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.lead {
  color: #555;
  margin-bottom: 20px;
}

.tags span {
  display: inline-block;
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin: 5px 5px 10px 0;
}

.buttons {
  margin: 20px 0;
}

.btn {
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}

.primary {
  background: #1f1f1f;
  color: white;
}

.secondary {
  border: 1px solid #ccc;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.contact-cards div {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
}

/* HERO IMAGE */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder {
  width: 100%;
  height: 320px;
  background: #eaeaea;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  text-align: center;
}

/* SECTIONS */
.section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 16px;
}

.card span {
  font-size: 12px;
  color: #777;
}

.light {
  background: #fafafa;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item {
  background: #e0e0e0;
  height: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #e5e5e5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
