:root {
  --bg: #0f0f10;
  --panel: #f5f6f7;
  --muted: #9aa0a6;
  --accent: #33a56a;
  /* green */
  --white: #ffffff;
  --dark-gray: #1b1b1b;
  --card: #121314;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
}

body {
  background: linear-gradient(180deg, #f1f2f3 0%, #ececec 100%);
  color: var(--dark-gray);
}

/* Page transition */
body {
  opacity: 1;
  transition: opacity 0.35s ease;
}

body.page-exit {
  opacity: 0;
}

/* Top navigation */
header {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.5px
}

.brand .logo {
  width: 48px;
  height: 48px;
  background: var(--panel);
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

nav {
  display: flex;
  gap: 20px;
  align-items: center
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px
}

.cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600
}
/* Branch links */
.branch-links {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.branch-links a {
  color: var(--muted);
  text-decoration: none;
}

.branch-links a:hover {
  color: var(--accent);
}

.contact-title {
  font-weight: 700;
  color: var(--panel);
  margin-bottom: 8px;
}

.spacing-sm {
  margin-top: 6px;
}

.spacing-md {
  margin-top: 10px;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-cta {
  margin-top: 14px;
}


.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--panel);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  background: var(--accent);
  color: #ffffff;
}

.section-separated {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-light {
  background: linear-gradient(180deg, #f5f6f7 0%, #ededed 100%);
}

.section-dark {
  background: linear-gradient(
    180deg,
    rgba(27, 27, 27, 0.96),
    rgba(18, 18, 18, 0.96)
  );
}

.section-title {
  font-size: 28px;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  color: var(--dark-gray);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title.light {
  color: var(--panel);
}


/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 30px;
  align-items: center;
  padding: 48px 6%;
}

.hero-left {
  max-width: 760px;
}

.eyebrow {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px
}

h1 {
  font-size: 48px;
  margin: 0 0 16px;
  color: #0a0a0a;
  letter-spacing: -1px
}

p.lead {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 56ch
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600
}

.btn.primary {
  background: var(--accent);
  color: var(--white)
}

.btn.ghost {
  background: transparent;
  border: 1px solid #d6d6d6;
  color: #111
}

.hero-right {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #161616 0%, #0b0b0b 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 18px;
}

.hero-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  filter: grayscale(20%) contrast(1.05)
}

/* Services strip */
.services-strip {
  background: var(--panel);
  padding: 28px 6%;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6
}

.service-item {
  flex: 1;
  text-align: center;
  padding: 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent)
}

.service-item h3 {
  margin: 10px 0 6px;
  font-size: 18px
}

.service-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 10px
}

/* Feature blocks */


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.feature {
  background: var(--card);
  color: var(--panel);
  padding: 22px;
  border-radius: 12px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.feature img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(40%)
}

.feature h4 {
  margin: 12px 0 6px
}

.feature p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.5
}

/* Contact / Footer */
footer {
  padding: 36px 6%;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  color: var(--panel);
  margin-top: 24px
}

.footer-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between
}

.contact-card {
  background: linear-gradient(180deg, #0f0f10, #121212);
  padding: 20px;
  border-radius: 10px;
  min-width: 320px
}

.small {
  font-size: 13px;
  color: #9aa0a6
}

/* Responsive */
@media (max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px 5%
  }

  .hero-right {
    order: 2
  }

  .features {
    grid-template-columns: 1fr
  }

  .services-strip {
    flex-direction: column;
    gap: 12px
  }

  nav {
    display: none
  }
}

/* Branch website general */

.expertise-list,
.process-list {
  max-width: 720px;
  margin-top: 24px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.process-list li {
  margin-bottom: 10px;
  font-weight: 500;
}
/* Branch website general */

.branch-links {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.branch-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}
.branch-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.branch-links a:hover,
.branch-links a:focus {
  color: var(--accent);
}

.branch-links a:hover::after,
.branch-links a:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}
.branch-links a:hover {
  transform: translateY(-1px);
}

/* 2.1 Base clickable behavior */
.service-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* 2.2 Hover animation (modern & subtle) */
.service-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* 2.3 Accent feedback (ties into brand) */
.service-link strong {
  transition: color 0.25s ease;
}

.service-link:hover strong {
  color: var(--accent);
}

/* 2.4 Accessibility & keyboard support (important) */
.service-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}