:root {
  --navy: #1a2b4d;
  --navy-dark: #10192f;
  --orange: #e0791f;
  --orange-dark: #c4650f;
  --cream: #faf8f5;
  --text: #2b2b2b;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }

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

header {
  background: var(--navy);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: 48px; }
.brand-text { font-family: Georgia, serif; font-weight: bold; font-size: 1.3rem; }
.brand-text span { display: block; font-family: Arial, sans-serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--orange); font-weight: normal; }

nav ul { list-style: none; display: flex; gap: 24px; }
nav a { font-size: 0.95rem; }
nav a:hover { color: var(--orange); }

.header-phone { color: var(--orange); font-weight: bold; }

.hero {
  background: linear-gradient(rgba(26,43,77,0.85), rgba(26,43,77,0.85)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=60') center/cover;
  color: white;
  text-align: center;
  padding: 110px 24px;
}

.hero h1 { color: white; font-size: 2.6rem; margin-bottom: 16px; }
.hero p { font-size: 1.15rem; max-width: 620px; margin: 0 auto 30px; }

.btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--orange-dark); }

section { padding: 70px 24px; }
.section-title { text-align: center; margin-bottom: 12px; font-size: 2rem; }
.section-sub { text-align: center; color: #666; max-width: 600px; margin: 0 auto 44px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-top: 4px solid var(--orange);
  padding: 28px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: #555; font-size: 0.95rem; }

.about { background: white; }
.about-wrap { display: flex; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 280px; }
.about-badge {
  flex: 0 0 220px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
}
.about-badge img { width: 90px; margin-bottom: 12px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  background: #e4e0d8;
  border: 2px dashed #b8b0a0;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7365;
  font-size: 0.9rem;
  border-radius: 4px;
  text-align: center;
  padding: 10px;
}

.contact { background: var(--navy); color: white; }
.contact .section-title, .contact .section-sub { color: white; }
.contact .section-sub { color: #cfd6e4; }

.contact-wrap { display: flex; gap: 50px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 260px; }
.contact-info p { margin-bottom: 14px; }
.contact-info strong { color: var(--orange); display: block; font-size: 0.85rem; letter-spacing: 1px; }

.contact-form { flex: 1.3; min-width: 300px; background: white; padding: 30px; border-radius: 6px; }
.contact-form label { display: block; color: var(--text); font-size: 0.85rem; font-weight: bold; margin-bottom: 6px; margin-top: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form button { margin-top: 20px; width: 100%; }

footer {
  background: var(--navy-dark);
  color: #a9b1c3;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}
footer a { color: var(--orange); }

@media (max-width: 640px) {
  nav ul { display: none; }
  .hero h1 { font-size: 2rem; }
}
