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

:root {
  --navy: #0D1B3D;
  --navy-dark: #091228;
  --white: #ffffff;
  --accent: #0D1B3D;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: rgba(0,0,0,0.1);
  --top-bar-height: 58px;
  --nav-height: 0px;
}

html { scroll-behavior: smooth; }

/* ── TOP BAR (now the single nav bar) ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--navy);
  height: var(--top-bar-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 40px;
}

.top-bar-logo {
  line-height: 0;
}

.top-bar-logo img {
  height: 50px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.top-bar a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.top-bar a:hover { color: #fff; }

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.top-bar-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.top-bar-nav a:hover { color: #fff; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* ── NAVBAR (removed — merged into top bar) ── */
.navbar { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  background: var(--navy-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,61,0.25) 0%,
    rgba(13,27,61,0.1) 40%,
    rgba(13,27,61,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-area {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.hero-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}

.hero-btn:hover {
  background: rgba(13,27,61,0.85);
  transform: translateY(-1px);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 18px 40px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px;
}

.trust-icon {
  color: #7ec8a0;
  font-weight: 700;
  font-size: 14px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ── SHARED SECTION ── */
.section { padding: 88px 0; }
.section-light { background: #f7f8fa; }
.section-navy { background: var(--navy); }

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

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-label.light { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.light { color: #fff; }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-sub.light { color: rgba(255,255,255,0.65); }

/* ── SERVICES EDITORIAL ── */
.services-editorial { background: #fff; }

.svc-row {
  display: grid;
  grid-template-columns: 58px 1fr 1.25fr 130px;
  align-items: baseline;
  gap: 28px;
  padding: 30px 14px;
  border-bottom: 1px solid #e4e7ec;
  text-decoration: none;
  transition: background 0.15s ease;
}

.svc-row:hover { background: #f5f7f9; }

.svc-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: #aab1bc;
}

.svc-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #16243f;
  margin: 0;
}

.svc-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: #5a6473;
  margin: 0;
}

.svc-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: #16243f;
  white-space: nowrap;
  text-align: right;
}

/* ── WHO WE HELP ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.who-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 28px 24px;
}

.who-icon { font-size: 28px; margin-bottom: 14px; }

.who-card h3 {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.who-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-para {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-points {
  list-style: none;
  margin-bottom: 36px;
}

.about-points li {
  font-size: 14px;
  color: inherit;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
  position: relative;
}

.about-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: inherit;
  font-weight: 700;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eef0f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  border: 1px dashed #ccc;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--navy-dark); }

/* ── GALLERY PLACEHOLDER ── */
.gallery-placeholder {
  width: 100%;
  height: 260px;
  background: #eef0f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  border: 1px dashed #ccc;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.45); }

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.checkbox-label input { accent-color: #7ec8a0; width: 15px; height: 15px; }

.form-submit {
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 4px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.form-submit:hover { opacity: 0.88; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.contact-detail a:hover { color: #fff; text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.4fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 4px;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  line-height: 1.5;
}

.footer-links a:hover,
.footer-contact a:hover { color: #fff; }

.footer-insured {
  color: #7ec8a0 !important;
  font-weight: 600;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  :root {
    --top-bar-height: 104px;
  }

  /* Top bar: logo row + nav row */
  .top-bar {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    height: auto !important;
    padding: 8px 16px 6px;
    gap: 0;
  }

  .top-bar-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .top-bar-logo img { height: 38px; }

  /* Show only phone number, hide email */
  .top-bar-contact {
    grid-column: 2;
    grid-row: 1;
    gap: 0;
  }

  .top-bar-contact a:first-child,
  .top-bar-divider { display: none !important; }

  /* Shorten phone to just the number, no emoji text overflow */
  .top-bar-contact a[href^="tel"] {
    font-size: 11px;
    letter-spacing: 0;
  }

  /* Nav links: full-width second row */
  .top-bar-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 0;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 7px;
    margin-top: 6px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
    min-width: 0;
    width: 100%;
  }

  .top-bar-nav::-webkit-scrollbar { display: none; }

  .top-bar-nav li { flex-shrink: 0; }

  .top-bar-nav a { font-size: 11px; letter-spacing: 0; white-space: nowrap; padding: 0; }

  /* Hero */
  .hero { min-height: 100svh; }

  .hero-title { font-size: 32px; }

  .hero-sub { font-size: 11px; }

  /* Trust bar */
  .trust-bar { padding: 14px 20px; }

  .trust-bar-inner { gap: 4px; flex-direction: column; align-items: flex-start; }

  .trust-item { padding: 4px 0; font-size: 13px; }

  .trust-divider { display: none; }

  /* Container */
  .container { padding: 0 20px; }

  .section { padding: 56px 0; }

  /* About section */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row { grid-template-columns: 1fr; }

  .checkbox-group { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Services page rows */
  .svc-row {
    grid-template-columns: 36px 52px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 20px 12px;
  }

  .svc-row > p,
  .svc-row > span.svc-arrow { display: none; }

  /* Section teaser on homepage */
  .section-title { font-size: 28px; }
}
