/* Right Now Services — clean, simple, classic */

:root {
  --navy: #0b1420;
  --navy-2: #111d2e;
  --blue: #1899d6;
  --blue-dark: #0e6fa3;
  --ink: #22303f;
  --muted: #5c6b7a;
  --line: #dde4ea;
  --bg: #ffffff;
  --bg-soft: #f4f7f9;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-dark); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: Georgia, serif; line-height: 1.2; color: var(--navy); }

h2 { font-size: 1.9rem; margin-bottom: 8px; }

.section { padding: 64px 0; }
.section.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.kicker {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: bold;
  margin-bottom: 6px;
}

.lede { color: var(--muted); max-width: 720px; margin-bottom: 30px; }

/* Header */
.topbar {
  background: var(--navy);
  color: #cfe8f5;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.85rem;
  padding: 7px 0;
  border-bottom: 1px solid #1d2c3f;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; font-weight: bold; }

header.site {
  background: var(--navy-2);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--blue);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand-name {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.brand-name small {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.68rem;
  font-weight: normal;
  color: #8fc9e8;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
nav.main { display: flex; align-items: center; gap: 22px; font-family: "Trebuchet MS", Verdana, sans-serif; flex-wrap: wrap; justify-content: flex-end; }
nav.main .btn { white-space: nowrap; }
nav.main a { color: #d8e6f0; text-decoration: none; font-size: 0.95rem; }
nav.main a:hover, nav.main a.active { color: #fff; border-bottom: 2px solid var(--blue); }
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  text-decoration: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}
.btn:hover { background: var(--blue-dark); }
.btn.ghost { background: transparent; border: 2px solid #fff; }
.btn.ghost:hover { background: rgba(255,255,255,0.12); }

/* Hero */
.hero { position: relative; color: #fff; }
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero .shade { position: absolute; inset: 0; background: rgba(8, 18, 30, 0.68); }
.hero .wrap { position: relative; padding: 96px 20px; max-width: 860px; text-align: center; }
.hero img.hero-logo { height: 160px; width: auto; margin: 0 auto 18px; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45)); }
.hero h1 { color: #fff; font-size: 2.6rem; margin-bottom: 14px; }
.hero p { font-size: 1.15rem; color: #e3edf4; margin-bottom: 26px; }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Trust bar */
.trust { background: var(--navy); color: #fff; padding: 22px 0; }
.trust .wrap { display: flex; justify-content: space-around; gap: 18px; flex-wrap: wrap; text-align: center; }
.trust b { display: block; font-family: Georgia, serif; font-size: 1.05rem; color: #fff; }
.trust span { font-family: "Trebuchet MS", Verdana, sans-serif; font-size: 0.85rem; color: #9fc3d8; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 6px;
  padding: 24px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card ul { list-style: none; }
.card li {
  padding: 6px 0 6px 22px;
  border-bottom: 1px dotted var(--line);
  font-size: 0.97rem;
  position: relative;
}
.card li:last-child { border-bottom: none; }
.card li::before { content: "✓"; color: var(--blue-dark); position: absolute; left: 0; font-weight: bold; }
.card .note {
  margin-top: 12px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.gallery figure {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.gallery img, .gallery video {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: #000;
}
.gallery figcaption {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 8px 12px;
}

/* Commercial clients strip */
.clients { text-align: center; }
.clients .marks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.clients .mark {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: #6b7c8c;
  font-weight: bold;
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.clients .mark small {
  display: block;
  font-size: 0.62rem;
  font-weight: normal;
  letter-spacing: 0.22em;
  color: #8fa1b0;
}
.clients .mark.serif { font-family: Georgia, serif; text-transform: none; letter-spacing: 0.02em; }

/* Values / two-column */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split img { border-radius: 6px; border: 1px solid var(--line); }
.values { list-style: none; margin-top: 12px; }
.values li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.values li:last-child { border-bottom: none; }
.values b { color: var(--navy); }

/* Contact */
.contact-box {
  background: var(--navy-2);
  color: #fff;
  border-radius: 8px;
  padding: 42px;
  text-align: center;
}
.contact-box h2 { color: #fff; }
.contact-box p { color: #b9cede; max-width: 620px; margin: 10px auto 24px; }

/* Footer */
footer.site {
  background: var(--navy);
  color: #8ea3b5;
  padding: 34px 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.85rem;
}
footer.site .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
footer.site img { height: 44px; border-radius: 4px; }
footer.site a { color: #cfe3f0; text-decoration: none; }

/* Page banner (About) */
.banner { position: relative; color: #fff; }
.banner .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner .shade { position: absolute; inset: 0; background: rgba(8, 18, 30, 0.72); }
.banner .wrap { position: relative; padding: 64px 20px; text-align: center; }
.banner h1 { color: #fff; font-size: 2.2rem; }
.banner p { color: #dbe7ef; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  nav.main { gap: 14px; }
  .brand-name { display: none; }
}
