:root {
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 10;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.site-header .logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem;
}

.site-header .logo img {
  max-width: 170px;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
}

.site-header nav a:hover {
  opacity: 0.75;
}

.quote-btn {
  background: #033E6A;
}

/* ---------- Hamburger toggle (hidden on desktop) ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Responsive breakpoint ---------- */
@media (max-width: 960px) {
  .site-header {
    padding: 1rem 1.25rem;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(75%, 320px);
    background: rgba(0, 0, 0, 0.92);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .site-header nav ul {
    flex-direction: column;
    gap: 0;
    padding-top: 5rem;
    height: 100%;
  }
  .site-header nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header nav.is-open {
    transform: translateX(0);
  }
}
/* ---------- Hero / Video ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* adjust as needed, e.g. 80vh */
  overflow: hidden;
  background-color: #111; /* fallback while video loads */
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Optional dark overlay to improve text contrast over video */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-content-outer {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-heading {
  position: absolute;
  bottom: 5rem;
  left: 3rem;
  z-index: 3;
  color: #fff;
  max-width: 800px;
}

.hero-heading p.flag {
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: bold;
}

.hero-heading h1 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
}

.hero-heading p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-heading h1,
.hero-heading p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
  .site-header {
    padding: 0 1rem;
  }
  .site-header nav ul {
    gap: 1rem;
  }
  .hero-heading {
    left: 1rem;
    bottom: 2rem;
  }
}
/* ---------- Hero CTA stack (bottom right) ---------- */
.hero-cta-stack {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  z-index: 3;
  /*display: flex;*/
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.hero-cta-stack a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 220px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  color: #0b1f33;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: background 0.2s ease;
}

.hero-cta-stack a:hover {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
  .hero-cta-stack {
    right: 1rem;
    bottom: 2rem;
    left: 1rem;
    align-items: stretch;
  }
  .hero-cta-stack a {
    min-width: 0;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}
/* ---------- Expertise and Resources ---------- */
.expertise {
  font-family: "Outfit", sans-serif;
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #e9f1f9 100%);
}

.expertise-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 7rem 2rem 17rem 2rem;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: 4rem;
  align-items: start;
  background-image: url("images/logo-stripes.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

.expertise-intro h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 3vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1rem 0;
  color: #0b1f33;
}

.expertise-intro p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 1.5rem 0;
}

.expertise-intro .btn {
  display: inline-block;
  background: #0b2a52;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 0.25rem;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.expertise-card .card-label {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.85rem 0.5rem;
}

@media (max-width: 900px) {
  .expertise-inner {
    grid-template-columns: 1fr; /* intro stacks above cards */
    gap: 2.5rem;
    padding: 5rem 2rem 6rem 2rem;
    background-position: right 90%; /* keep the stripe graphic from colliding with stacked content */
  }
  .expertise-cards {
    grid-template-columns: repeat(3, 1fr); /* still 3-up here, just under the intro */
  }
}
@media (max-width: 700px) {
  .expertise-cards {
    grid-template-columns: repeat(2, 1fr); /* 2-up on tablets/phablets */
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .expertise-cards {
    grid-template-columns: 1fr; /* fully stacked on phones */
  }
  .expertise-card {
    aspect-ratio: 16/10; /* taller 3:4 cards look awkward full-width; wider ratio reads better stacked */
  }
}
/* ---------- Why Liftman ---------- */
.why-liftman {
  display: flex;
  flex-wrap: wrap;
  background: #033E6A;
  color: #fff;
}

.why-liftman-media,
.why-liftman-content {
  width: 50%;
  box-sizing: border-box;
}

.why-liftman-media {
  overflow: hidden; /* required so the zoomed image doesn't spill out */
}

.why-liftman-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.4s ease;
}

.why-liftman-media img.in-view {
  transform: scale(1.08);
}

.why-liftman-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 7rem;
}

.why-liftman-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 3vw, 3.25rem);
  margin: 0 0 1.5rem 0;
  color: #72A4D7;
}

.why-liftman-content p {
  line-height: 1.6;
  opacity: 0.9;
  font-size: 1.25rem;
  margin: 0;
}

.why-liftman-content .cta-btn {
  margin-top: 2rem;
}
.why-liftman-content .cta-btn a {
  background: #72A4D7;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
}

@media (max-width: 800px) {
  .why-liftman-media,
.why-liftman-content {
    width: 100%;
  }
  .why-liftman-media {
    height: 60vw; /* gives the image a defined height once it's no longer a flex sibling of equal height */
    max-height: 400px;
  }
  .why-liftman-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
/* ---------- Get Started ---------- */
.get-started {
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, #ffffff 0%, #e9f1f9 100%);
}

.get-started h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 2vw, 2.25rem);
  margin: 0 0 1rem 0;
  color: #1A5B5D;
}

.get-started > p {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  opacity: 0.9;
}

.get-started-cards {
  max-width: 1400px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.get-started-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  text-align: left;
  background: #fff;
  color: #1a1a1a;
  border-color: transparent;
  text-align: center;
}

.get-started-card.filled {
  background: #fff;
  color: #1a1a1a;
  border-color: transparent;
}

.get-started-card .icon {
  border-radius: 0.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

.get-started-card .icon img {
  width: 70px;
  height: 70px;
  stroke: #fff;
}

.get-started-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.85rem 0.5rem;
}

.get-started-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.get-started-card .btn {
  display: inline-block;
  background: #0b2a52;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.4rem;
  text-align: center;
  margin: 0 auto;
}

.live-chat {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #5b8bc4;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  z-index: 20;
}

@media (max-width: 900px) {
  .get-started-cards {
    grid-template-columns: 1fr;
  }
}
/* ---------- Scroll reveal (bottom-up unmask) ---------- */
.reveal-heading {
  overflow: hidden;
  display: block;
}

.reveal-heading .reveal-inner {
  display: inline-block;
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transition: clip-path 1.3s cubic-bezier(0.65, 0, 0.35, 1);
  -webkit-transition: -webkit-clip-path 1.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal-heading.is-visible .reveal-inner {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-heading .reveal-inner {
    clip-path: none;
    -webkit-clip-path: none;
    transition: none;
  }
}
.boston {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 400px; /* set whatever height you need */
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 10%, rgba(255, 255, 255, 0) 70%), url("images/boston.jpg");
  background-size: cover;
  background-position: center;
}

.site-footer {
  background: #f2f3f5;
  padding: 3rem 2rem;
  font-family: "Outfit", sans-serif;
  color: #2b2b2b;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 260px;
}

.footer-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2f6fb0;
  margin: 0 0 1.25rem 0;
  font-family: "Montserrat", sans-serif;
}

/* --- Contact column --- */
.footer-phone {
  color: #2f6fb0;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.footer-address {
  font-style: normal;
  line-height: 1.9;
  font-size: 1rem;
  color: #2b2b2b;
  margin-bottom: 2rem;
}

.footer-privacy {
  color: #2f6fb0;
  text-decoration: none;
  font-size: 1rem;
}

.footer-privacy:hover {
  text-decoration: underline;
}

.footer-nav-cols {
  display: flex;
  gap: 3rem;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  margin-bottom: 1rem;
}

.footer-nav-list li:last-child {
  margin-bottom: 0;
}

.footer-nav-list a {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 1rem;
}

.footer-nav-list a:hover {
  color: #2f6fb0;
  text-decoration: underline;
}

/* --- Connect column --- */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon.linkedin {
  background: #1a6ba8;
}

.social-icon.twitter {
  background: #1a7fc4;
}

/* --- Stack on smaller screens --- */
@media (max-width: 700px) {
  .site-footer {
    flex-direction: column;
    gap: 2.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
