:root {
  --navy: #1a2b3c;
  --navy-dark: #0f1c28;
  --gold: #c9a227;
  --gold-dark: #a8841c;
  --gray-bg: #f5f6f7;
  --text: #2b2b2b;
  --text-light: #6b6b6b;
  --white: #ffffff;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Header */
.site-header {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--white);
  font-weight: 500;
}
.nav a:hover { color: var(--gold); }
.nav-cta { white-space: nowrap; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(15,28,40,0.85), rgba(15,28,40,0.85)),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%231a2b3c"/></svg>');
  background-size: cover;
  color: var(--white);
  padding: 110px 0;
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}
.hero p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 32px;
  color: #d8dee3;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.trust-item strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
}
.trust-item span {
  color: #cfd6db;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--gray-bg); }
.section-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 8px;
  color: var(--navy-dark);
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 30px;
  border-top: 4px solid var(--gold);
}
.card h3 { margin-bottom: 10px; color: var(--navy-dark); }
.card p { color: var(--text-light); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.checklist { margin-top: 20px; }
.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  position: absolute;
  left: 0;
}

.image-placeholder {
  background: #e2e6e9;
  border: 2px dashed #b7bfc6;
  border-radius: 8px;
  color: #7c868d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  font-size: 14px;
  padding: 20px;
}

/* Values */
.values-grid { margin: 40px 0; }
.value-card {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 26px 22px;
  text-align: center;
}
.value-card h3 {
  color: var(--gold-dark);
  font-size: 17px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.value-card p { color: var(--text-light); font-size: 14px; }

.expect-block {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 30px 34px;
  margin-top: 10px;
}
.expect-block h3 { color: var(--navy-dark); margin-bottom: 14px; }
.expect-block .checklist li { margin-bottom: 12px; }

/* Before & After gallery */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.ba-card {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--white);
}
.ba-before { background: rgba(43,43,43,0.75); }
.ba-after { background: var(--gold-dark); }
.ba-card h3 {
  padding: 16px 18px;
  color: var(--navy-dark);
  font-size: 16px;
}

.more-work-title {
  text-align: center;
  color: var(--navy-dark);
  font-size: 20px;
  margin-bottom: 24px;
}
.more-work-grid .project-card {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
}
.more-work-grid .project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.more-work-grid .project-card h3 {
  padding: 14px 16px;
  color: var(--navy-dark);
  font-size: 15px;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-details { margin-top: 20px; }
.contact-details li { margin-bottom: 10px; }

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  gap: 6px;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}
.form-note {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #b7c0c7;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px;
    display: none;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 32px; }
}
