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

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: #111827;
  color: #fff;
}

.brand-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 85vh;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              #111827;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("oceana.jpg") center/cover no-repeat;
  opacity: 0.22;
  filter: grayscale(100%) brightness(1.05) saturate(0.9);
  transform: scale(1.02);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn {
  background: #b88a44;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
}

section {
  padding: 80px 8%;
}

.services-hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  padding-top: 70px;
  padding-bottom: 50px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #fbbf24;
  margin-bottom: 12px;
}

.services-hero h1 {
  font-size: 42px;
  max-width: 760px;
  margin-bottom: 14px;
}

.services-hero .lead {
  max-width: 700px;
  color: #e5e7eb;
  font-size: 18px;
}

.services-grid-wrap,
.services-process {
  background: #f8fafc;
}

.services-grid-wrap h2,
.services-process h2 {
  font-size: 36px;
  margin-bottom: 12px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.process-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.process-card h3 {
  margin-bottom: 10px;
  color: #111827;
}

.contact-page {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.contact-intro h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.contact-intro p {
  color: #4b5563;
  max-width: 520px;
}

.contact-info-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.info-card,
.contact-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.info-card h3,
.contact-card h2 {
  margin-bottom: 8px;
  color: #111827;
}

.contact-card {
  background: #fff;
}

.contact-note {
  color: #4b5563;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #111827;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  border: none;
  cursor: pointer;
}

.about-preview {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.about-preview h2,
.services h2,
.why h2,
.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  border-bottom: 4px solid #b88a44;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #111827;
}

.why {
  background: #111827;
  color: white;
  text-align: center;
}

.why ul {
  list-style: none;
  margin-top: 30px;
}

.why li {
  margin: 12px 0;
  font-size: 20px;
}

.cta {
  text-align: center;
  background: #f3f0eb;
}

.gallery-hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  padding-top: 70px;
  padding-bottom: 50px;
}

.gallery-hero h1 {
  font-size: 42px;
  max-width: 760px;
  margin-bottom: 14px;
}

.gallery-hero .lead {
  max-width: 700px;
  color: #e5e7eb;
  font-size: 18px;
}

.gallery-grid-wrap {
  padding-top: 40px;
  padding-bottom: 60px;
  background: #f8fafc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

footer {
  text-align: center;
  padding: 25px;
  background: #111827;
  color: white;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .navbar nav {
    margin-top: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}
