:root {
  --navy-dark: #041e42;
  --slate: #0a3d67;
  --slate-light: #dde6ef;
  --gold: #c8a24a;
  --gold-dark: #a9853a;
  --cream: #f7f6f2;
  --white: #ffffff;
  --text-dark: #1c1c1c;
}

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

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

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

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

/* Nav */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 0;
}

.navbar.solid {
  position: relative;
  background: var(--cream);
}

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

.brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.navbar.solid .brand { color: var(--navy-dark); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
}

.nav-links a { color: var(--white); }
.navbar.solid .nav-links a { color: var(--navy-dark); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid currentColor;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-light { color: var(--white); }
.btn-light:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.btn-dark { color: var(--navy-dark); }
.btn-dark:hover { background: var(--navy-dark); border-color: var(--gold); color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,30,40,0.75), rgba(20,30,40,0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  padding: 100px 40px 60px;
}

.eyebrow {
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 28px;
}

.page-header {
  background: var(--cream);
  padding: 140px 0 60px;
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 400;
}

/* Sections */
section { padding: 80px 0; }
.section-light { background: var(--slate-light); }
.section-slate { background: var(--slate); color: var(--white); }

h2.section-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

h2.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--gold);
}

.center h2.section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.intro-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.intro-flex img {
  width: 45%;
  height: 380px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
}

.intro-flex .text { flex: 1; }
.intro-flex p { margin-bottom: 24px; font-size: 1.05rem; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.service-card p { font-size: 0.95rem; }

.center { text-align: center; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
}

.why-item h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.why-item p { font-size: 0.95rem; }

/* Footer */
footer {
  background: var(--slate);
  color: var(--white);
  padding: 60px 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-flex h2 { font-weight: 400; font-size: 2rem; color: var(--gold); }
.footer-flex .col { font-size: 0.95rem; }
.footer-flex .col p { margin: 0 0 4px; }

/* What We Do page */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.what-grid h3 { font-size: 1.4rem; margin-bottom: 20px; font-weight: 500; }
.what-grid ul { list-style: none; }
.what-grid li { margin-bottom: 16px; font-size: 0.95rem; }

.quote {
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  color: var(--navy-dark);
}

.why-item h3,
.what-grid h3 {
  color: var(--navy-dark);
}

.why-item h3::before,
.what-grid h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  margin-right: 8px;
  margin-bottom: 4px;
}

/* About page */
.about-block {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-block img {
  width: 40%;
  border-radius: 4px;
  object-fit: cover;
}

.about-block.reverse { flex-direction: row-reverse; }
.about-block .text { flex: 1; font-size: 1.05rem; }
.about-block .text p { margin-bottom: 20px; }

.values-list {
  list-style: none;
  text-align: center;
  font-size: 1.05rem;
}

.values-list li { margin-bottom: 8px; }

/* Contact page */
.contact-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-flex img {
  width: 45%;
  border-radius: 4px;
  object-fit: cover;
}

.contact-flex .text { flex: 1; }
.contact-flex p { font-size: 1.1rem; margin-bottom: 30px; }
.contact-flex .details p { margin-bottom: 6px; font-size: 1rem; }

/* Smooth minimal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-card img,
.about-block img,
.intro-flex img,
.contact-flex img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.03);
}

.about-block img:hover,
.intro-flex img:hover,
.contact-flex img:hover {
  transform: scale(1.01);
}

.btn {
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  .intro-flex, .about-block, .contact-flex { flex-direction: column; }
  .about-block.reverse { flex-direction: column; }
  .intro-flex img, .about-block img, .contact-flex img { width: 100%; }
  .services-grid, .what-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-content { margin: 0; max-width: 100%; }
  .nav-links { gap: 16px; font-size: 0.85rem; }
  .footer-flex { flex-direction: column; }
}
