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

:root {
  --navy: #1b3461;
  --navy-light: #2a4a80;
  --silver: #b0b8c8;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --text: #222831;
  --text-muted: #5a6374;
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-logo span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem 5rem;
}

.hero img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--silver);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero .tagline {
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.85);
}

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover { background: var(--silver); transform: translateY(-1px); }

/* SECTIONS */
section { padding: 5rem 1.5rem; }
section:nth-child(even) { background: var(--off-white); }

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

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e4ec;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.15s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(27,52,97,0.12);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p { color: var(--text-muted); font-size: 0.95rem; }

.service-list {
  list-style: none;
  margin-top: 0.75rem;
}

.service-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.2rem 0;
}

.service-list li::before {
  content: "✓ ";
  color: var(--navy);
  font-weight: 700;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(27,52,97,0.18);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pillar {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem;
  border-radius: 6px;
  text-align: center;
}

.pillar .pillar-icon { font-size: 1.6rem; margin-bottom: 0.3rem; }
.pillar strong { display: block; font-size: 0.95rem; letter-spacing: 0.05em; }

.about-logo {
  text-align: center;
}

.about-logo img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
}

/* CONTACT */
#contact { background: var(--navy); color: var(--white); }
#contact h2 { color: var(--white); }
#contact .section-label { color: var(--silver); }
#contact .section-intro { color: var(--silver); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info p {
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.contact-info strong { color: var(--white); }

form { display: flex; flex-direction: column; gap: 1rem; }

form input,
form textarea,
form select {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

form input::placeholder,
form textarea::placeholder { color: rgba(255,255,255,0.45); }

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--silver);
}

form select option { background: var(--navy); }

form textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 0.85rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--silver); }

/* FOOTER */
footer {
  background: #0f1e3a;
  color: var(--silver);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

footer strong { color: var(--white); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}

.footer-social a:hover { opacity: 0.85; transform: translateY(-2px); }

.footer-social a.facebook { background: #1877F2; }
.footer-social a.yelp     { background: #D32323; }

/* MOBILE NAV */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-logo span { font-size: 1rem; }
}
