* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #18212b;
  background: #f7f9fc;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #dfe6ee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  color: #0e2b4a;
  font-weight: 700;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: #4a5a6d;
  font-weight: 600;
}

.nav a.active,
.nav a:hover {
  color: #0e2b4a;
}

.hero,
.page-hero {
  background: linear-gradient(135deg, #0e2b4a, #1a4672);
  color: #ffffff;
}

.hero {
  padding: 86px 0;
}

.small-hero {
  padding: 54px 0;
}

.hero-grid,
.grid-2,
.about-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.9fr;
  align-items: center;
}

.grid-2,
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: #d3e2f1;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.lead,
.text-muted {
  line-height: 1.8;
  color: #5a6776;
}

.lead {
  color: #e3edf7;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions,
.section-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
}

.btn-primary {
  background: #d7a74b;
  color: #16212a;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.hero-card,
.card,
.info-panel,
.about-image-wrap,
.gallery-item,
.contact-form {
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(19, 38, 60, 0.06);
}

.hero-card {
  padding: 24px;
  color: #223140;
}

.hero-card h3 {
  margin-top: 0;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

.section {
  padding: 72px 0;
}

.section h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #10263d;
}

.section-label {
  color: #9a742c;
}

.soft-bg {
  background: #eef3f8;
}

.card-grid,
.gallery-grid {
  display: grid;
  gap: 20px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.large-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 24px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #123150;
}

.card p {
  margin: 0;
  color: #586878;
  line-height: 1.7;
}

.info-panel {
  padding: 24px;
}

.info-item + .info-item {
  margin-top: 18px;
}

.info-title {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #9a742c;
  margin-bottom: 6px;
}

.info-item p {
  margin: 0;
  color: #445465;
  line-height: 1.7;
}

.text-link {
  color: #0e2b4a;
  font-weight: 700;
}

.about-image-wrap {
  padding: 14px;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  min-height: 320px;
  object-fit: cover;
  background: #dde5ef;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.contact-form {
  padding: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #123150;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #cfd9e4;
  border-radius: 10px;
  font: inherit;
}

.site-footer {
  background: #0d2034;
  color: #dbe5ee;
  padding: 22px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

button {
  background: #d7a74b;
  color: #16212a;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  opacity: 0.95;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .about-grid,
  .contact-grid,
  .card-grid,
  .gallery-grid,
  .large-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    justify-content: center;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-img {
  height: 100px;   /* adjust size here */
  width: auto;
  object-fit: contain;
}