/* ============================================================
   Adventure Through Lens Photography ??? Photo-Led Editorial
   ============================================================ */

/* 1. :root */
:root {
  --color-primary: #1E3A5F;
  --color-secondary: #4A5568;
  --color-accent: #2563EB;
  --color-dark: #0f1a2e;
  --color-light: #f8f9fc;
  --color-off-white: #E2E8F0;
  --color-footer: #e8effc;
  --gradient-footer: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafbff 45%,
    #f4f7fe 78%,
    #e8effc 100%
  );
  --font-heading: 'Cormorant Garamond', serif;
  --font-sub: 'Raleway', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* === CAROUSEL HERO === */

.page-home-nav {
  position: relative;
  z-index: 100;
  flex-shrink: 0;
  width: 100%;
  background: #ffffff;
}

.page-home-nav__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 14px clamp(20px, 4vw, 48px);
  background: #f4f5f7;
  border-bottom: 1px solid #e4e7ec;
}

.page-home-nav__connect {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.page-home-nav__connect-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #5a6478;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-home-nav__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.page-home-nav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: #3d4656;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.page-home-nav__social a:hover {
  color: var(--color-accent);
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.page-home-nav__logo {
  justify-self: center;
  text-decoration: none;
  line-height: 0;
}

.page-home-nav__logo img {
  height: clamp(3rem, 6vw, 4.5rem);
  width: auto;
  display: block;
}

.page-home-nav__cta {
  justify-self: end;
  white-space: nowrap;
}

.page-home-nav__bottom {
  background: #ffffff;
  border-bottom: 1px solid #e8eaee;
  padding: 16px clamp(20px, 4vw, 48px);
}

.page-home-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3.5vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home-nav__links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.page-home-nav__links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.page-home-nav__links a:hover,
.page-home-nav__links a.active {
  color: var(--color-accent);
}

.page-home-nav__links a:hover::after,
.page-home-nav__links a.active::after {
  width: 100%;
}

.page-home-nav__toggle,
.page-home-nav__menu {
  display: none;
}

.page-home-nav__toggle {
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-accent);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition), transform 0.2s ease;
}

.page-home-nav__toggle:hover {
  color: #1d4ed8;
}

.page-home-nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0.75rem 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: var(--shadow-md);
  z-index: 110;
}

.page-home-nav__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-home-nav__menu-list a {
  display: block;
  padding: 0.65rem 0.5rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.page-home-nav__menu-list a::after {
  content: "";
  position: absolute;
  bottom: 0.35rem;
  left: 0.5rem;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.page-home-nav__menu-list a:hover,
.page-home-nav__menu-list a.active {
  color: var(--color-accent);
}

.page-home-nav__menu-list a:hover::after,
.page-home-nav__menu-list a.active::after {
  width: calc(100% - 1rem);
}

.page-home-nav__menu-extras {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8eaee;
  text-align: center;
}

.page-home-nav__social--menu {
  justify-content: center;
  margin: 0.65rem 0 1rem;
}

.page-home-nav__cta--menu {
  display: inline-flex;
}

.hero-carousel {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  background: linear-gradient(160deg, #eef1f7 0%, #dce3ef 50%, #e8eaf2 100%);
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.hero-text {
  box-sizing: border-box;
}

.hero-text__eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a9ab0;
}

.hero-text h1 {
  font-style: italic;
  font-weight: 400;
  color: #111111;
}

.hero-text__sub {
  color: #667788;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-hero-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

.btn-hero-primary .bi {
  font-size: 11px;
}

.btn-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--color-dark);
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-hero-white:hover {
  background: #f4f7fe;
  border-color: #ffffff;
  color: var(--color-dark);
  transform: scale(1.02);
}

.btn-hero-white .bi {
  font-size: 11px;
}

.btn-hero-ghost {
  background: none;
  border: none;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color var(--transition);
}

.btn-hero-ghost:hover {
  color: #1d4ed8;
}

.atl-carousel {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atl-stage {
  --atl-center-h: min(52vh, 600px);
  --atl-center-w: min(50vw, 860px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(8px, 1vw, 16px);
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
}

.atl-slide {
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.atl-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.atl-center {
  width: var(--atl-center-w);
  height: var(--atl-center-h);
  min-height: 380px;
  aspect-ratio: 3 / 2;
  opacity: 1;
  z-index: 2;
  position: relative;
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.16);
  flex-shrink: 1;
}

.atl-side {
  width: calc(var(--atl-center-w) * 320 / 540);
  aspect-ratio: 240 / 178;
  height: auto;
  opacity: 1;
  z-index: 1;
  flex-shrink: 0;
}

.atl-slide.atl-center {
  position: relative;
}

.hero-text--overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-sizing: border-box;
  pointer-events: none;
}

.hero-text--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 46, 0.9) 0%,
    rgba(30, 58, 95, 0.82) 45%,
    rgba(37, 99, 235, 0.72) 100%
  );
  z-index: 0;
}

.hero-text--overlay .hero-text__inner {
  position: relative;
  z-index: 1;
  max-width: 92%;
  pointer-events: auto;
}

.hero-text--overlay .hero-text__heading,
.hero-text--overlay h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-text__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 1rem;
}

.hero-text--overlay .hero-text__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  max-width: 38rem;
  margin: 0 auto 1.5rem;
}

.hero-text--overlay .hero-text__ctas {
  margin-top: 0;
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .hero-text--overlay .hero-text__heading,
  .hero-text--overlay h1,
  .hero-text__heading {
    font-size: clamp(1.75rem, 2.1vw, 2.5rem);
    line-height: 1.14;
    margin-bottom: 0.75rem;
  }

  .hero-text--overlay .hero-text__sub {
    font-size: clamp(0.875rem, 0.95vw, 1rem);
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .hero-text--overlay {
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 2.5vw, 2rem);
  }

  .hero-text--overlay .hero-text__inner {
    max-width: 88%;
  }
}

.atl-reflection {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 0 32px;
  height: 52px;
  margin-top: -2px;
  overflow: hidden;
  box-sizing: border-box;
}

.atl-refl {
  flex-shrink: 0;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  background: rgba(80, 90, 110, 0.5);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
}

.atl-refl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleY(-1);
}

.atl-refl-center {
  width: 380px;
  height: 52px;
  opacity: 0.22;
}

.atl-refl-side {
  width: 240px;
  height: 52px;
  opacity: 0.1;
}

.atl-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  padding-bottom: 32px;
}

.atl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(100, 110, 140, 0.28);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.atl-dot:hover {
  background: rgba(60, 70, 110, 0.5);
}

.atl-dot.active {
  background: rgba(60, 70, 110, 0.72);
}

@media (max-width: 991.98px) {
  .atl-center {
    width: 300px;
    height: 200px;
  }

  .atl-side {
    width: 185px;
    height: 138px;
  }

  .atl-refl-center {
    width: 300px;
  }

  .atl-refl-side {
    width: 185px;
  }

  .page-home-nav__links {
    gap: 16px;
  }

  .page-home-nav__links a {
    font-size: 10px;
  }

  .page-home-nav__logo img {
    height: 2.75rem;
  }
}

@media (max-width: 767.98px) {
  .atl-side,
  .atl-refl-side {
    display: none;
  }

  .page-home .atl-side {
    display: block;
  }

  .page-home .atl-refl-side {
    display: none;
  }

  .page-home .atl-refl-center {
    display: none;
  }

  .atl-center {
    width: 88vw;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .page-home .atl-slide.atl-center {
    width: 100%;
    max-width: 100%;
  }

  .atl-refl-center {
    width: 88vw;
  }

  .page-home-nav__bottom {
    display: none;
  }

  .page-home-nav__top {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
    position: relative;
  }

  .page-home-nav__connect,
  .page-home-nav__top > .page-home-nav__cta {
    display: none !important;
  }

  .page-home-nav__logo {
    justify-self: center;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .page-home-nav__logo img {
    height: clamp(3.25rem, 14vw, 3.75rem);
  }

  .page-home-nav__top {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .page-home-nav__toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .page-home-nav__menu {
    display: none;
  }

  .page-home-nav.is-open .page-home-nav__menu {
    display: block;
  }
}


/* 2. Reset / base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-secondary);
  background-color: var(--color-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary);
}

/* 3. Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-sub);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
}

.eyebrow {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-subline {
  font-size: 1.1rem;
  max-width: 540px;
}

.section-subline.text-center {
  margin-left: auto;
  margin-right: auto;
}

.text-on-dark h1,
.text-on-dark h2,
.text-on-dark h3,
.text-on-dark p {
  color: #fff;
}

.text-on-dark .section-subline {
  color: rgba(255, 255, 255, 0.75);
}

.text-on-dark .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

/* 4. Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--color-dark);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: 0.02em;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.nav-social {
  display: flex;
  gap: 0.75rem;
  margin-left: 1rem;
}

.nav-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition), transform 0.2s ease;
}

.nav-social a:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* 5. Buttons & CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: color 0.3s ease, transform 0.25s ease, box-shadow var(--transition);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-primary:hover {
  color: #fff;
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--color-dark);
  border: none;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: color 0.3s ease, transform 0.25s ease;
  z-index: 1;
}

.btn-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-white:hover {
  color: #fff;
  transform: scale(1.02);
}

.btn-white:hover::before {
  transform: translateX(0);
}

.text-link {
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition), color var(--transition);
}

.text-link:hover {
  color: var(--color-primary);
  gap: 0.6rem;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link-light:hover {
  color: #fff;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.section-cta {
  margin-top: 2.25rem;
}

.section-cta.text-center {
  display: flex;
  justify-content: center;
}

.service-text__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* 6. Photo collage patterns */

/* Border treatment */
.photo-bordered {
  position: relative;
  display: inline-block;
}

.photo-bordered::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  z-index: -1;
  pointer-events: none;
}

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern A ??? Scatter Cluster */
.photo-scatter {
  position: relative;
  min-height: 480px;
  width: 100%;
}

.photo-scatter .photo-item {
  position: absolute;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.photo-scatter .photo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-scatter .photo-item:nth-child(1) {
  width: 58%;
  height: auto;
  top: 0;
  left: 5%;
  transform: rotate(-3deg);
  z-index: 3;
}

.photo-scatter .photo-item:nth-child(2) {
  width: 48%;
  height: auto;
  top: 200px;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}

.photo-scatter .photo-item:nth-child(3) {
  width: 36%;
  height: auto;
  bottom: 0;
  left: 12%;
  transform: rotate(-2deg);
  z-index: 1;
}

.photo-scatter--about {
  min-height: 520px;
}

.photo-scatter--about .photo-item:nth-child(1) {
  width: 42%;
  height: 300px;
  top: 40px;
  left: 0;
  transform: rotate(-4deg);
}

.photo-scatter--about .photo-item:nth-child(2) {
  width: 38%;
  height: 240px;
  top: 0;
  right: 8%;
  transform: rotate(2deg);
}

.photo-scatter--about .photo-item:nth-child(3) {
  width: 34%;
  height: 220px;
  bottom: 20px;
  right: 0;
  transform: rotate(-1deg);
}

/* Pattern B ??? Stacked Column */
.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.photo-stack .photo-stack__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.photo-stack .photo-stack__item:nth-child(odd) {
  transform: translateX(-8px);
}

.photo-stack .photo-stack__item:nth-child(even) {
  transform: translateX(16px);
}

.photo-stack .photo-stack__item--tall {
  width: 100%;
  height: 380px;
}

.photo-stack .photo-stack__item--wide {
  width: 92%;
  height: 220px;
  margin-top: -24px;
  align-self: flex-end;
}

.photo-stack .photo-stack__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stack--bleed {
  margin-bottom: -60px;
  z-index: 2;
  position: relative;
}

/* Pattern C ??? Framing Text */
.photo-frame-text {
  position: relative;
  padding: 3rem 0;
}

.photo-frame-text__float-left,
.photo-frame-text__float-right {
  position: absolute;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 1;
}

.photo-frame-text__float-left {
  width: 200px;
  height: 280px;
  left: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-2deg);
}

.photo-frame-text__float-right {
  width: 240px;
  height: 160px;
  right: -30px;
  top: 30%;
  transform: rotate(2deg);
}

.photo-frame-text__float-left img,
.photo-frame-text__float-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern D ??? Masonry Strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 420px;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(12px, 2vw, 32px);
  box-sizing: border-box;
  overflow: visible;
}

.photo-strip__item {
  overflow: hidden;
  min-width: 0;
  height: 100%;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip__item:nth-child(1) {
  height: 85%;
}

.photo-strip__item:nth-child(2) {
  height: 100%;
}

.photo-strip__item:nth-child(3) {
  height: 70%;
}

.photo-strip__item:nth-child(4) {
  height: 90%;
}

.photo-strip__item:nth-child(5) {
  height: 72%;
}

.photo-strip--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Pattern E ??? Overlapping Duo */
.photo-duo {
  position: relative;
  min-height: 420px;
  width: 100%;
}

.photo-duo__back {
  width: 88%;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.photo-duo__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-duo__front {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 52%;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.photo-duo__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-duo__caption {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.photo-duo--right .photo-duo__front {
  left: auto;
  right: 0;
  top: 40px;
}

.photo-strip-wrap {
  background: var(--color-light);
}

.photo-strip-wrap .section-cta {
  padding-bottom: 3.5rem;
}

/* Pattern F ??? Full-Bleed Interlude */
.photo-interlude {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 55vh;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.photo-interlude--short {
  height: 50vh;
}

.photo-interlude__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.photo-interlude--parallax .photo-interlude__bg {
  background-attachment: fixed;
}

.photo-interlude__bg--landscape-1 {
  background-image: url('/img/landscape-1.jpeg');
}

.photo-interlude__bg--landscape-2 {
  background-image: url('/img/landscape-2.jpeg');
}

.photo-interlude__bg--landscape-3 {
  background-image: url('/img/landscape-3.jpeg');
}

/* 7. Photo reveal animations */
[data-photo-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-photo-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.photo-scatter .photo-item:nth-child(1).revealed {
  transform: rotate(-3deg);
}

.photo-scatter .photo-item:nth-child(2).revealed {
  transform: rotate(3deg);
}

.photo-scatter .photo-item:nth-child(3).revealed {
  transform: rotate(-2deg);
}

.photo-scatter--about .photo-item:nth-child(1).revealed {
  transform: rotate(-4deg);
}

.photo-scatter--about .photo-item:nth-child(2).revealed {
  transform: rotate(2deg);
}

.photo-scatter--about .photo-item:nth-child(3).revealed {
  transform: rotate(-1deg);
}

.photo-stack .photo-stack__item:nth-child(odd).revealed {
  transform: translateX(-8px);
}

.photo-stack .photo-stack__item:nth-child(even).revealed {
  transform: translateX(16px);
}

/* 8. Section styles */

.section-pad {
  padding: 5.5rem 0;
  position: relative;
}

.section-pad-lg {
  padding: 6.5rem 0;
  position: relative;
}

.bg-dark { background: var(--color-dark); }
.bg-light { background: var(--color-light); }
.bg-off-white { background: var(--color-off-white); }

.deco-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}

.deco-blur--navy { background: var(--color-primary); }
.deco-blur--blue { background: var(--color-accent); }

/* Hero ??? full bleed */
.hero-editorial {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-editorial__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-editorial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 1.4s ease forwards;
}

.hero-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 26, 46, 0.92) 0%, rgba(15, 26, 46, 0.65) 45%, rgba(15, 26, 46, 0.15) 100%);
  z-index: 1;
}

.hero-editorial__content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 50%;
}

.hero-editorial__content h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero-editorial__content .hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.hero-editorial__content .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.hero-headline { animation: fadeUp 0.7s ease forwards; }
.hero-sub { animation: fadeUp 0.7s ease 0.25s forwards; opacity: 0; }
.hero-cta { animation: fadeIn 0.5s ease 0.45s forwards; opacity: 0; }

/* Collage intro */
.collage-intro {
  background: var(--color-light);
}

.collage-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.collage-intro__text {
  padding-left: 1rem;
}

/* Pain points */
.pain-section {
  background: var(--color-dark);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(37, 99, 235, 0.3);
}

.pain-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.pain-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-card__question {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.pain-card__answer {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Guide section */
.guide-section {
  background: var(--color-light);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.guide-content p {
  margin-bottom: 1.15rem;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.process-step {
  text-align: center;
}

.process-step__photo {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.process-step__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 5.5vw, 4.75rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

/* Feature tiles */
.features-section {
  background: var(--color-dark);
}

.feature-tiles {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature-tile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-tile__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-tile h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.feature-tile p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.features-section h2 {
  color: #fff;
}

/* Accent banner */
.accent-banner {
  background: var(--color-accent);
  padding: 6.25rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.accent-banner--navy {
  background: linear-gradient(160deg, var(--atl-navy, #1a2233) 0%, var(--color-dark) 100%);
}

.page-home .process-section.accent-banner {
  background: linear-gradient(160deg, var(--atl-navy, #1a2233) 0%, var(--color-dark) 100%);
}

.accent-banner h2 {
  color: #fff;
}

.accent-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.accent-banner .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.accent-banner .section-subline {
  color: rgba(255, 255, 255, 0.88);
  margin-left: auto;
  margin-right: auto;
}

.accent-banner .section-cta {
  margin-top: 3rem;
}

.accent-banner h3 {
  color: #fff;
}

/* Portfolio ??? asymmetric editorial */
.portfolio-section {
  background: var(--color-light);
}

.portfolio-editorial {
  margin-top: 2.5rem;
}

.portfolio-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.portfolio-row--offset {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.portfolio-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.portfolio-item__img {
  overflow: hidden;
  width: 100%;
}

.portfolio-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item__img img {
  transform: scale(1.04);
}

.portfolio-item__caption {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.65rem 0 0;
}

.portfolio-item--large {
  flex: 0 0 66.666%;
}

.portfolio-item--large .portfolio-item__img {
  height: 480px;
}

.portfolio-item--tall {
  flex: 0 0 33.333%;
}

.portfolio-item--tall .portfolio-item__img {
  height: 540px;
  margin-bottom: -60px;
}

.portfolio-item--medium {
  flex: 0 0 33.333%;
}

.portfolio-item--medium .portfolio-item__img {
  height: 280px;
}

.portfolio-item--wide {
  flex: 0 0 66.666%;
}

.portfolio-item--wide .portfolio-item__img {
  height: 300px;
}

/* Testimonials + duo */
.testimonials-duo-section {
  background: var(--color-dark);
}

.testimonials-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.testimonials-duo-section h2 {
  color: #fff;
}

/* Services photo tiles */
.services-photo-section {
  background: var(--color-light);
}

.services-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-photo-tile {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-photo-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-photo-tile__img {
  height: 220px;
  overflow: hidden;
}

.service-photo-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-photo-tile:hover .service-photo-tile__img img {
  transform: scale(1.04);
}

.service-photo-tile__body {
  padding: 1.75rem;
}

.service-photo-tile__body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.service-photo-tile__body p {
  font-size: 0.95rem;
  margin: 0;
}

/* Final CTA */
.final-cta-section {
  position: relative;
  text-align: center;
  background-color: var(--color-dark);
  background-image:
    linear-gradient(
      135deg,
      rgba(15, 26, 46, 0.9) 0%,
      rgba(30, 58, 95, 0.82) 45%,
      rgba(37, 99, 235, 0.72) 100%
    ),
    url('../img/landscape-1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta-section .container {
  position: relative;
  z-index: 1;
}

.final-cta-section h2 {
  color: #fff;
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.final-cta-section .cta-group {
  justify-content: center;
}

/* About ??? founder */
.founder-section {
  background: var(--color-light);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-content p {
  margin-bottom: 1.15rem;
}

/* Pull quote with scatter */
.pull-quote-scatter {
  background: var(--color-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.pull-quote-scatter__layout {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pull-quote-scatter__layout .photo-scatter--about {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pull-quote-scatter__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.pull-quote-scatter__mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-accent);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.pull-quote-scatter blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.pull-quote-scatter cite {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

/* Approach tiles */
.approach-section {
  background: var(--color-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.approach-tile {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-dark) 100%);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.approach-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.approach-tile__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.approach-tile h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.approach-tile p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin: 0;
}

/* About testimonials (light) */
.testimonials-light-section {
  background: var(--color-light);
}

.testimonials-light-section .testimonial-card {
  background: #fff;
  border: none;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.testimonials-light-section .testimonial-card blockquote {
  color: var(--color-dark);
}

.testimonials-light-section .testimonial-card cite {
  color: var(--color-secondary);
}

.testimonials-light-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* About CTA */
.about-cta-section {
  background: var(--color-dark);
  text-align: center;
}

.about-cta-section h2 {
  color: #fff;
}

.about-cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.about-cta-section .cta-group {
  justify-content: center;
}

/* 9. Cards ??? covered above */

/* 10. Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="120"] { transition-delay: 0.12s; }
[data-animate][data-delay="150"] { transition-delay: 0.15s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="240"] { transition-delay: 0.24s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

/* 11. Utilities */
.text-center { text-align: center; }

/* 12. Footer */
.site-footer {
  background: #ffffff;
  color: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.footer-upper {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: #ffffff;
}

.footer-upper__grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 1.15fr) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.footer-upper__col {
  min-width: 0;
}

.footer-upper__email {
  text-align: left;
  align-self: center;
}

.footer-upper__phone {
  text-align: right;
  align-self: center;
}

.footer-contact-line {
  margin: 0;
  color: var(--color-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-line a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-line a:hover {
  color: var(--color-accent);
}

.footer-contact-line strong {
  font-weight: 600;
  color: var(--color-primary);
}

.footer-upper__brand {
  text-align: center;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid #e2e6ec;
  border-right: 1px solid #e2e6ec;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: 0;
  text-decoration: none;
}

.footer-logo img {
  height: clamp(3.5rem, 7vw, 5rem);
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer-logo:hover {
  opacity: 0.88;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--color-primary);
  margin: 0 auto;
  max-width: 26rem;
}

.footer-heading {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
  color: var(--color-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links a,
.footer-contact a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-contact strong {
  font-weight: 600;
  color: var(--color-primary);
}

.footer-nav-bar {
  background: #e8effc;
  border-top: 1px solid #dce6f8;
  border-bottom: 1px solid #dce6f8;
  padding: 18px 0;
}

.footer-nav-bar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-bar__links a {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-bar__links a:hover {
  color: var(--color-accent);
}

.footer-meta {
  background: #ffffff;
  padding: 14px 0 18px;
}

.footer-meta__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-meta__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: start;
}

.footer-meta__social-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: #5a6478;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: color var(--transition), transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.footer-copyright {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
  text-align: center;
  justify-self: center;
}

.footer-credit {
  font-size: 0.75rem;
  color: #6b7280;
  opacity: 0.45;
  text-align: right;
  justify-self: end;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

.footer-credit a:hover {
  color: var(--color-accent);
  opacity: 0.85;
}

/* 13. Media queries */
@media (max-width: 1199.98px) {
  .portfolio-item--large .portfolio-item__img { height: 400px; }
  .portfolio-item--tall .portfolio-item__img { height: 460px; }
}

@media (max-width: 991.98px) {
  .hero-editorial__content {
    max-width: 100%;
    padding: 7rem 0 4rem;
  }

  .collage-intro__grid,
  .guide-grid,
  .founder-grid,
  .testimonials-duo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .photo-scatter {
    min-height: 400px;
    margin-bottom: 2rem;
  }

  .photo-stack--bleed {
    margin-bottom: 0;
  }

  .pain-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .portfolio-row {
    flex-direction: column;
  }

  .portfolio-item--large,
  .portfolio-item--tall,
  .portfolio-item--medium,
  .portfolio-item--wide {
    flex: 1 1 100%;
  }

  .portfolio-item--tall .portfolio-item__img {
    height: 320px;
    margin-bottom: 0;
  }

  .portfolio-row--offset {
    margin-top: 0;
  }

  .services-photo-grid,
  .approach-grid,
  .testimonials-light-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    height: 280px;
  }

  .photo-interlude--parallax .photo-interlude__bg {
    background-attachment: scroll;
  }

  .pull-quote-scatter {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 3.5rem 0; }
  .section-pad-lg { padding: 4rem 0; }

  .photo-scatter .photo-item:nth-child(1) {
    width: 70%;
    height: auto;
  }

  .photo-scatter .photo-item:nth-child(2) {
    width: 55%;
    height: auto;
    top: 160px;
  }

  .photo-scatter .photo-item:nth-child(3) {
    width: 45%;
    height: auto;
  }

  .photo-duo {
    min-height: 320px;
  }

  .photo-duo__back {
    height: 260px;
  }

  .photo-duo__front {
    width: 60%;
    height: 200px;
    top: 40px;
    left: 20px;
  }

  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-section .cta-group,
  .about-cta-section .cta-group {
    align-items: center;
  }

  .footer-upper__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-upper__brand {
    order: -1;
    border-left: none;
    border-right: none;
    border-top: 1px solid #e2e6ec;
    border-bottom: 1px solid #e2e6ec;
    padding: 2rem 0;
  }

  .footer-upper__email,
  .footer-upper__phone {
    text-align: center;
  }

  .footer-meta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.85rem;
  }

  .footer-meta__social {
    justify-self: center;
    justify-content: center;
  }

  .footer-copyright,
  .footer-credit {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .btn-primary,
  .btn-white {
    width: 100%;
  }

  .photo-strip {
    height: 200px;
  }

  .accent-banner {
    padding: 4rem 1.25rem;
  }
}

/* === SERVICES & PORTFOLIO MODIFICATIONS === */

/* Services Alternating Layout */
.services-alternating {
  background: var(--color-light);
}

.services-alternating .section-header .section-heading {
  margin-bottom: 0;
}

.services-alternating .service-row {
  width: 100%;
}

.services-alternating .service-row--light {
  background: var(--color-light);
}

.services-alternating .service-row--alt {
  background: var(--color-off-white);
}

.services-alternating .service-row__inner {
  display: flex;
  min-height: 420px;
  align-items: stretch;
  overflow: hidden;
}

.services-alternating .service-row__inner.reverse {
  flex-direction: row-reverse;
}

.services-alternating .service-photo {
  width: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.services-alternating .service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.services-alternating .service-row:hover .service-photo img {
  transform: scale(1.03);
}

.services-alternating .service-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}

.services-alternating .service-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3vw, 3.25rem);
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.services-alternating .service-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-secondary);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.services-alternating .service-photo[data-animate] {
  opacity: 0;
  transform: translateX(-40px);
}

.services-alternating .service-row.reverse .service-photo[data-animate],
.services-alternating .service-row__inner.reverse .service-photo[data-animate] {
  transform: translateX(40px);
}

.services-alternating .service-photo[data-animate].visible {
  opacity: 1;
  transform: translateX(0);
}

/* Portfolio Freeform Collage */
.portfolio-collage-section {
  background: var(--color-light);
  padding-bottom: 100px;
}

.portfolio-collage-header {
  background: var(--color-light);
  padding: 80px 24px 48px;
}

.portfolio-collage-header .section-heading {
  margin-bottom: 0.75rem;
}

.collage-wrap {
  position: relative;
  width: 100%;
  max-width: 1060px;
  min-height: 820px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.collage-item {
  position: absolute;
  overflow: visible;
  box-shadow: none;
  height: auto;
}

.collage-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 8-photo reference layout ??? Maggie T style cluster */

/* 1 ??? top-center large portrait (anchor, back layer) */
.collage-item:nth-child(1) {
  width: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* 2 ??? top-left portrait */
.collage-item:nth-child(2) {
  width: 235px;
  top: 22px;
  left: calc(50% - 358px);
  z-index: 1;
}

/* 3 ??? top-right portrait */
.collage-item:nth-child(3) {
  width: 255px;
  top: 14px;
  left: calc(50% + 152px);
  z-index: 2;
}

/* 4 ??? mid-left landscape, overlaps 2 bottom + 1 lower-left */
.collage-item:nth-child(4) {
  width: 340px;
  top: 228px;
  left: calc(50% - 418px);
  z-index: 5;
}

/* 5 ??? mid-right portrait, overlaps 1 lower-right + 3 lower-left */
.collage-item:nth-child(5) {
  width: 228px;
  top: 218px;
  left: calc(50% + 198px);
  z-index: 6;
}

/* 6 ??? bottom-left small landscape, tucked under 4 */
.collage-item:nth-child(6) {
  width: 200px;
  top: 468px;
  left: calc(50% - 378px);
  z-index: 3;
}

/* 7 ??? bottom-center large landscape, foreground over 5 */
.collage-item:nth-child(7) {
  width: 430px;
  top: 388px;
  left: calc(50% - 98px);
  z-index: 8;
}

/* 8 ??? bottom-right portrait */
.collage-item:nth-child(8) {
  width: 228px;
  top: 478px;
  left: calc(50% + 242px);
  z-index: 5;
}

.collage-item[data-photo-reveal]:nth-child(1) {
  transform: translateX(-50%) translateY(24px) scale(0.97);
}

.collage-item[data-photo-reveal]:nth-child(2),
.collage-item[data-photo-reveal]:nth-child(3),
.collage-item[data-photo-reveal]:nth-child(4),
.collage-item[data-photo-reveal]:nth-child(5),
.collage-item[data-photo-reveal]:nth-child(6),
.collage-item[data-photo-reveal]:nth-child(7),
.collage-item[data-photo-reveal]:nth-child(8) {
  transform: translateY(24px) scale(0.97);
}

.collage-item[data-photo-reveal].revealed:nth-child(1) {
  transform: translateX(-50%);
}

.collage-item[data-photo-reveal].revealed:nth-child(2),
.collage-item[data-photo-reveal].revealed:nth-child(3),
.collage-item[data-photo-reveal].revealed:nth-child(4),
.collage-item[data-photo-reveal].revealed:nth-child(5),
.collage-item[data-photo-reveal].revealed:nth-child(6),
.collage-item[data-photo-reveal].revealed:nth-child(7),
.collage-item[data-photo-reveal].revealed:nth-child(8) {
  transform: none;
}

.portfolio-collage-cta {
  padding-top: 48px;
}

.portfolio-collage-cta__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .services-alternating .service-row__inner,
  .services-alternating .service-row__inner.reverse {
    flex-direction: column;
  }

  .services-alternating .service-photo,
  .services-alternating .service-text {
    width: 100%;
  }

  .services-alternating .service-photo {
    height: 280px;
  }

  .services-alternating .service-text {
    padding: 40px 24px;
  }

  .services-alternating .service-photo[data-animate],
  .services-alternating .service-row.reverse .service-photo[data-animate],
  .services-alternating .service-row__inner.reverse .service-photo[data-animate] {
    transform: translateY(24px);
  }

  .services-alternating .service-photo[data-animate].visible {
    transform: translateY(0);
  }

  .collage-wrap {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 16px;
  }

  .collage-item {
    position: static;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
  }

  .collage-item[data-photo-reveal].revealed {
    transform: none !important;
  }

  .portfolio-collage-header {
    padding: 48px 24px 32px;
  }
}

/* === PROBLEM SECTION COMBINED === */

.problem-unified {
  background: #ffffff;
}

.problem-unified__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.problem-unified__photo {
  position: relative;
}

.problem-unified__photo img {
  width: 100%;
  max-height: 620px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.problem-unified__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.problem-unified__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.problem-unified__item {
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-accent);
  transition: border-color var(--transition), transform var(--transition);
}

.problem-unified__item:hover {
  border-left-color: var(--color-primary);
  transform: translateX(4px);
}

.problem-unified__item-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.problem-unified__item p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.45;
  margin: 0;
}

.problem-unified__close {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-secondary);
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-off-white);
}

@media (max-width: 991.98px) {
  .problem-unified__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .problem-unified__photo img {
    max-height: 520px;
    aspect-ratio: 16 / 11;
  }
}

/* === HOMEPAGE STREAMLINE === */

.page-home .section-pad {
  padding: 7rem 0;
}

.page-home .section-pad-lg {
  padding: 8.5rem 0;
}

.page-home .problem-unified__grid {
  gap: clamp(3rem, 6vw, 5.5rem);
}

.page-home .problem-unified__photo {
  padding: 1.25rem 0;
}

.page-home .problem-unified__lead {
  margin-bottom: 2.5rem;
}

.page-home .problem-unified__list {
  gap: 1.75rem;
  margin-bottom: 2.75rem;
}

.page-home .problem-unified__close {
  padding-top: 2rem;
}

.guide-grid--single {
  align-items: center;
}

.page-home .guide-grid--single {
  gap: clamp(3rem, 6vw, 5rem);
}

.page-home .guide-content p {
  margin-bottom: 1.35rem;
}

.guide-section__photo {
  padding: 1.25rem 0;
}

.guide-section__photo img {
  width: 100%;
  max-height: 580px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.page-home .photo-strip-wrap {
  background: #ffffff;
  overflow: visible;
}

.page-home .photo-strip {
  gap: 12px;
  height: 380px;
  padding: 0 clamp(16px, 2.5vw, 40px);
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-items: end;
  overflow: visible;
}

.page-home .photo-strip__item {
  border-radius: 2px;
}

.page-home .photo-strip__item img {
  border-radius: 2px;
}

.page-home .services-alternating .section-header {
  padding-top: 2.5rem !important;
  padding-bottom: 3.5rem !important;
}

.page-home .services-alternating .service-row {
  padding: 4.5rem 0;
}

.page-home .services-alternating .service-row__inner {
  gap: 3rem;
  min-height: auto;
  padding: 0 1rem;
  overflow: visible;
  align-items: center;
}

.page-home .services-alternating .service-photo {
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  height: auto;
}

.page-home .services-alternating .service-photo img {
  width: 100%;
  height: auto;
  min-height: 340px;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.page-home .services-alternating .service-row:hover .service-photo img {
  transform: scale(1.02);
}

.page-home .services-alternating .service-text {
  padding: 3rem 3.5rem 3rem 2rem;
}

.page-home .process-steps {
  gap: 3rem;
  margin-top: 3.5rem;
}

.page-home .process-step p {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section {
  background: #fff;
}

.testimonials-section .section-heading {
  color: var(--color-dark);
}

.testimonials-section .testimonial-card {
  background: var(--color-light);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.testimonials-section .testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: var(--shadow-md);
}

.testimonials-section .testimonial-card blockquote {
  color: var(--color-primary);
}

.testimonials-section .testimonial-card cite {
  color: var(--color-secondary);
}

.testimonial-cards--centered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
}

/* Single testimonial layout */
.testimonial-single {
  max-width: 680px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.testimonial-single blockquote,
.testimonial-single .testimonial-text {
  font-size: 1.2em;
}

.page-home .testimonial-single {
  margin-top: 4rem;
}

.page-home .testimonial-cards--centered {
  gap: 2.75rem;
  margin-top: 4rem;
}

.page-home .testimonial-card {
  padding: 2.75rem;
}

.page-home .final-cta-section .container > div {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-home .final-cta-section p {
  margin-bottom: 2.5rem;
}

@media (max-width: 991.98px) {
  .page-home .section-pad {
    padding: 5.5rem 0;
  }

  .page-home .section-pad-lg {
    padding: 6.5rem 0;
  }

  .page-home .services-alternating .service-row {
    padding: 3rem 0;
  }

  .page-home .services-alternating .service-row__inner {
    gap: 2rem;
    padding: 0;
  }

  .page-home .services-alternating .service-photo {
    padding: 1.25rem;
    height: auto;
  }

  .page-home .services-alternating .service-text {
    padding: 2.5rem 2rem;
  }

  .page-home .process-steps {
    gap: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .page-home .section-pad {
    padding: 4.25rem 0;
  }

  .page-home .section-pad-lg {
    padding: 5rem 0;
  }

  .page-home .photo-strip {
    height: 340px;
    padding: 0 clamp(16px, 2.5vw, 40px);
    gap: 12px;
  }

  .page-home .services-alternating .service-row {
    padding: 2.5rem 0;
  }

  .page-home .services-alternating .service-photo {
    padding: 1rem 1rem 0;
    height: auto;
  }

  .page-home .services-alternating .service-photo img {
    min-height: 260px;
    max-height: 320px;
  }

  .page-home .services-alternating .service-text {
    padding: 2rem 1.5rem 2.5rem;
  }

  .testimonial-cards--centered {
    grid-template-columns: 1fr;
  }
}

/* === CAROUSEL HERO ? cascade overrides (must load last) === */

.page-home .hero-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  --hero-height: 100vh;
  height: var(--hero-height);
  max-height: var(--hero-height);
  min-height: var(--hero-height);
  background: linear-gradient(160deg, #eef1f7 0%, #dce3ef 50%, #e8eaf2 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.page-home .page-home-nav {
  flex-shrink: 0;
}

.page-home .hero-text {
  box-sizing: border-box;
}

.page-home .hero-text:not(.hero-text--overlay) {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  flex-shrink: 0;
}

.page-home .hero-text__eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a9ab0;
}

.page-home .hero-text:not(.hero-text--overlay) h1 {
  font-style: italic;
  font-weight: 400;
  color: #111111;
}

.page-home .hero-text:not(.hero-text--overlay) .hero-text__sub {
  color: #667788;
}

.page-home .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .btn-hero-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

.page-home .btn-hero-primary .bi {
  font-size: 11px;
}

.page-home .btn-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--color-dark);
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .btn-hero-white:hover {
  background: #f4f7fe;
  border-color: #ffffff;
  color: var(--color-dark);
  transform: scale(1.02);
}

.page-home .btn-hero-white .bi {
  font-size: 11px;
}

.page-home .btn-hero-ghost {
  background: none;
  border: none;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.page-home .btn-hero-ghost:hover {
  color: #1d4ed8;
}

.page-home .atl-carousel.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(2vw, 4vw, 3rem);
  padding-right: clamp(2vw, 4vw, 3rem);
  overflow: hidden;
  box-sizing: border-box;
}

.page-home .atl-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 0;
  min-width: 0;
  padding-top: 0.5rem;
  gap: 0;
  box-sizing: border-box;
}

.page-home .atl-stage {
  --atl-refl-center-h: clamp(3rem, 11vh, 6.875rem);
  --atl-refl-side-h: clamp(2.25rem, 8vh, 5rem);
  flex: 0 1 auto;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.5vw, 1.2vw, 1rem);
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-home .atl-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  flex: 1 1 0;
  line-height: 0;
}

.page-home .atl-column--center {
  flex: 1.4 1 0;
}

.page-home .atl-column:not(.atl-column--center)::before,
.page-home .atl-column:not(.atl-column--center)::after {
  content: "";
  flex: 1 1 0;
  min-height: 0;
}

.page-home .atl-slide.atl-center {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  opacity: 1;
  z-index: 2;
  position: relative;
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.16);
  flex-shrink: 0;
  border-radius: 3px 3px 0 0;
}

.page-home .atl-slide.atl-side {
  width: 100%;
  height: auto;
  aspect-ratio: 240 / 178;
  opacity: 1;
  z-index: 1;
  flex-shrink: 0;
  border-radius: 3px 3px 0 0;
  margin: 0;
}

.page-home .atl-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-home .atl-reflection {
  display: none;
}

.page-home .atl-slide {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
  margin-bottom: 0;
  min-width: 0;
}

.page-home .atl-refl {
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  margin-top: 0;
  padding-top: 0;
  line-height: 0;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    transparent 100%
  );
}

.page-home .atl-refl img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  margin: 0;
}

.page-home .atl-refl.atl-refl-center {
  height: var(--atl-refl-center-h);
  min-height: var(--atl-refl-center-h);
  max-height: var(--atl-refl-center-h);
  opacity: 0.6;
}

.page-home .atl-refl.atl-refl-side {
  height: var(--atl-refl-side-h);
  min-height: var(--atl-refl-side-h);
  max-height: var(--atl-refl-side-h);
  opacity: 0.45;
}

.page-home .atl-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  padding-bottom: 16px;
  flex-shrink: 0;
}

.page-home .atl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(100, 110, 140, 0.28);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s ease;
}

.page-home .atl-dots {
  display: none;
}

.page-home .atl-dot.active {
  background: var(--color-accent);
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .page-home .hero-carousel {
    gap: clamp(1.5rem, 3vh, 2.75rem);
    --hero-height: auto;
    height: auto;
    max-height: none;
    min-height: 0;
    padding-bottom: clamp(1.25rem, 2.5vh, 2rem);
  }

  .page-home .atl-carousel {
    justify-content: flex-start;
    padding-top: 0;
    flex: 0 0 auto;
  }

  .page-home .atl-column--center {
    flex: 1.22 1 0;
  }

  .page-home .atl-stage {
    --atl-refl-center-h: clamp(2rem, 6.5vh, 4.25rem);
    --atl-refl-side-h: clamp(1.75rem, 5vh, 3.75rem);
  }

  .page-home .atl-slide.atl-center {
    max-height: min(42vh, 470px);
    width: 100%;
    height: auto;
  }
}

@media (max-width: 991.98px) {
  .page-home .hero-carousel {
    --hero-height: auto;
    height: auto;
    max-height: none;
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .page-home .hero-carousel {
    gap: 0;
    padding-bottom: 0;
  }

  .page-home .atl-carousel.container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .atl-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
    padding: 0 0.625rem 0.875rem;
    overflow: visible;
    align-items: stretch;
    justify-content: stretch;
    --atl-refl-center-h: 0;
    --atl-refl-side-h: 0;
  }

  .page-home .atl-column {
    flex: none;
    min-width: 0;
    display: block;
  }

  .page-home .atl-column--center {
    grid-column: 1 / -1;
    grid-row: 1;
    order: 0;
    width: calc(100% + 1.25rem);
    max-width: none;
    margin-left: -0.625rem;
    margin-right: -0.625rem;
    padding: 0;
    margin-bottom: 0.25rem;
  }

  .page-home .atl-column:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .page-home .atl-column:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .page-home .atl-column:not(.atl-column--center)::before,
  .page-home .atl-column:not(.atl-column--center)::after {
    display: none;
  }

  .page-home .atl-refl {
    display: none;
  }

  .page-home .atl-slide.atl-center {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    max-height: min(72vh, 560px);
    border-radius: 0;
    box-shadow: none;
  }

  .page-home .atl-slide.atl-side {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.1);
  }

  .page-home .hero-text--overlay {
    padding: clamp(1rem, 4vw, 1.25rem);
  }

  .page-home .hero-text__heading {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
  }

  .page-home .hero-text--overlay .hero-text__sub {
    font-size: clamp(0.875rem, 3.5vw, 0.95rem);
    margin-bottom: 1rem;
  }
}

@media (max-width: 479.98px) {
  .page-home .atl-stage {
    gap: 0.4rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .page-home .atl-column--center {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .page-home .atl-slide.atl-center {
    aspect-ratio: 1 / 1;
    max-height: min(68vh, 480px);
  }

  .page-home .atl-slide.atl-side {
    aspect-ratio: 4 / 3;
  }
}

/* === EDITORIAL REDESIGN ? PAIN / MEET ALICIA / SERVICES === */

:root {
  --atl-navy: #1a2233;
  --atl-body: #5a6478;
  --atl-label: #8a95a8;
  --atl-accent: #2563EB;
  --atl-accent-soft: #93c5fd;
  --atl-border: #e2e6ed;
  --atl-surface: #f5f7fa;
  --atl-image-fallback: #dce2ec;
  --font-editorial: 'Playfair Display', serif;
  --font-ui: 'Inter', sans-serif;
}

.atl-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--atl-accent);
  margin-bottom: 14px;
}

.atl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--atl-navy);
  border: 1px solid var(--atl-navy);
  padding: 11px 20px;
  border-radius: 2px;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.atl-btn-outline:hover {
  background: var(--atl-accent);
  border-color: var(--atl-accent);
  color: #ffffff;
}

.atl-btn-outline .bi {
  font-size: 11px;
}

.atl-text-link {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--atl-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.atl-text-link:hover {
  color: var(--atl-accent);
}

.atl-text-link .bi {
  font-size: 11px;
}

/* --- Pain Points (Version A & B) --- */

.pain-points {
  font-family: var(--font-ui);
}

.pain-points__inner {
  box-sizing: border-box;
}

.pain-points__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pain-points__heading {
  font-family: var(--font-editorial);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 8px;
}

.pain-points__heading em {
  font-style: italic;
}

.pain-points__intro {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.7;
}

.pain-points__quote {
  margin: 0;
  border-radius: 0;
}

.pain-points__quote-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pain-points__quote p {
  font-family: var(--font-editorial);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.pain-points__resolution {
  font-family: var(--font-ui);
  line-height: 1.8;
  margin: 0;
}

.pain-points__cta {
  margin-top: 0;
}

/* Version A ? centered, dark */

.pain-points--a {
  background: #1a2233;
  padding: 64px 0;
}

.pain-points--a .pain-points__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.pain-points--a .pain-points__label {
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.pain-points--a .pain-points__heading {
  font-size: 34px;
  color: #ffffff;
  text-align: center;
}

.pain-points--a .pain-points__heading em {
  color: #a8c0e8;
}

.pain-points--a .pain-points__intro {
  color: rgba(255, 255, 255, 0.55);
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.pain-points--a .pain-points__quotes-wrap {
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.12);
  margin: 32px 0;
  padding: 32px 0;
  text-align: left;
  max-width: 100%;
}

.pain-points--a .pain-points__quote {
  border-left: none;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 4px;
}

.pain-points--a .pain-points__quote:first-child {
  border-top: none;
  padding-top: 0;
}

.pain-points--a .pain-points__quote-label {
  color: rgba(255, 255, 255, 0.45);
}

.pain-points--a .pain-points__quote p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.pain-points--a .pain-points__resolution {
  max-width: 42rem;
  margin: 0 auto 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.pain-points--a .pain-points__cta {
  text-align: center;
}

/* Version B ? dark navy, two column */

.pain-points--b {
  background: #1a2233;
  padding: 64px 48px;
}

.pain-points--b .pain-points__inner--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.pain-points--b .pain-points__label {
  color: rgba(255, 255, 255, 0.45);
}

.pain-points--b .pain-points__heading {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
}

.pain-points--b .pain-points__heading em {
  color: #a8c0e8;
}

.pain-points--b .pain-points__intro {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pain-points--b .pain-points__resolution {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0 28px;
}

.pain-points--b .pain-points__quotes-col {
  padding-top: 8px;
}

.pain-points--b .pain-points__quote {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0 12px 20px;
  margin-bottom: 20px;
}

.pain-points--b .pain-points__quote-label {
  color: rgba(255, 255, 255, 0.45);
}

.pain-points--b .pain-points__quote p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.pain-points__btn--light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  text-decoration: none;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pain-points__btn--light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.pain-points__btn--light .bi {
  font-size: 11px;
}

/* --- Meet Alicia --- */

.guide-section {
  background: #ffffff;
  padding: 40px 0 64px;
  font-family: var(--font-ui);
}

.guide-section__bio {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 480px);
  grid-template-areas:
    "eyebrow portrait"
    "content portrait";
  gap: 24px 72px;
  align-items: center;
  margin-bottom: 0;
}

.guide-section__eyebrow {
  grid-area: eyebrow;
  align-self: end;
  margin-bottom: 0;
}

.guide-section__content {
  grid-area: content;
  align-self: start;
}

.guide-section__portrait-col {
  grid-area: portrait;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}

.guide-section__heading {
  font-family: var(--font-editorial);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--atl-navy);
  margin-bottom: 1.5rem;
}

.guide-section__heading em {
  font-style: italic;
  color: var(--atl-accent);
}

.guide-section__content p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--atl-body);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.guide-section__ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.guide-section__portrait {
  width: 100%;
  max-width: 440px;
  position: relative;
}

.guide-section__portrait img {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
  box-shadow: 0 8px 32px rgba(26, 34, 51, 0.1);
}

.guide-section__name-card {
  background: #ffffff;
  border: 0.5px solid var(--atl-border);
  border-radius: 2px;
  padding: 10px 16px;
  margin-top: 16px;
  margin-right: auto;
  margin-left: 20px;
  align-self: flex-start;
  display: inline-block;
}

.guide-section__name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--atl-navy);
  margin: 0;
}

.guide-section__title {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--atl-label);
  letter-spacing: 0.06em;
  margin: 4px 0 0;
}

.guide-section__gallery,
.work-gallery-section {
  border-top: 0.5px solid var(--atl-border);
  padding-top: 48px;
  padding-bottom: 56px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  font-family: var(--font-ui);
}

.work-masonry {
  column-count: 3;
  column-gap: 16px;
}

.work-masonry__cell {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--atl-image-fallback);
  line-height: 0;
}

.work-masonry__cell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Services --- */

.services-alternating {
  background: #ffffff;
  padding: 0;
}

.services-alternating__header {
  padding: 56px 0 12px;
}

.services-alternating__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--atl-navy);
  margin: 0;
}

.services-alternating .service-row {
  border-bottom: 0.5px solid var(--atl-border);
}

.services-alternating .service-row:last-child {
  border-bottom: none;
}

.services-alternating .service-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  min-height: 0;
}

.services-alternating .service-row__content {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-ui);
}

.services-alternating .service-row__number {
  font-family: var(--font-editorial);
  font-size: 72px;
  color: #e8eaf0;
  line-height: 1;
  margin-bottom: -12px;
  display: block;
}

.services-alternating .service-row__number:empty {
  display: none;
}

.services-alternating .service-row__heading {
  font-family: var(--font-editorial);
  font-size: 34px;
  font-weight: 400;
  color: var(--atl-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-alternating .service-row__heading em {
  font-style: italic;
  color: var(--atl-accent);
}

.services-alternating .service-row__body {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--atl-body);
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.services-alternating .service-row__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.services-alternating .service-row__media {
  background: transparent;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.services-alternating .service-row__media img {
  width: 100%;
  max-width: 480px;
  height: auto;
  min-height: 0;
  max-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-alternating .service-row:hover .service-row__media img {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.16);
}


.page-home .guide-section {
  padding: 40px 0 64px;
}

/* --- Responsive: tablet (900px) --- */

@media (max-width: 900px) {
  .pain-points--b .pain-points__inner--grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guide-section__bio {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "portrait"
      "content";
    gap: 28px;
  }

  .guide-section__eyebrow {
    align-self: center;
    text-align: center;
    margin-bottom: 0;
  }

  .guide-section__portrait-col {
    order: 0;
    align-items: center;
    max-width: min(92vw, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .guide-section__portrait {
    width: 100%;
    max-width: 100%;
  }

  .guide-section__portrait img {
    max-height: 480px;
  }

  .guide-section__name-card {
    margin-left: 0;
    align-self: flex-start;
  }

  .services-alternating__header {
    padding: 40px 0 8px;
  }

  .services-alternating .service-row__grid,
  .services-alternating .service-row__grid--image-left {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .services-alternating .service-row__grid .service-row__media {
    order: -1;
  }

  .services-alternating .service-row__grid--image-left .service-row__media {
    order: -1;
  }

  .services-alternating .service-row__media img {
    max-height: 320px;
    max-width: 100%;
  }

  .services-alternating .service-row__content {
    padding: 0;
  }

  .work-masonry {
    column-count: 2;
    column-gap: 12px;
  }

  .work-masonry__cell {
    margin-bottom: 12px;
  }
}

/* --- Responsive: mobile (600px) --- */

@media (max-width: 600px) {
  .pain-points--a,
  .pain-points--b {
    padding: 40px 24px;
  }

  .pain-points--a .pain-points__heading {
    font-size: 26px;
  }

  .pain-points--b .pain-points__heading {
    font-size: 24px;
  }

  .guide-section {
    padding-top: 32px;
  }

  .services-alternating .service-row__number {
    font-size: 48px;
  }

  .services-alternating .service-row__content {
    padding: 0;
  }

  .guide-section__heading {
    font-size: 30px;
  }

  .work-masonry {
    column-count: 2;
    column-gap: 10px;
  }
}

.page-home .services-alternating .service-row {
  padding: 0;
}

@media (max-width: 991.98px) {
  .page-home .services-alternating .service-row {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .page-home .photo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, minmax(70px, auto));
    grid-template-areas:
      "one one one two two two"
      "one one one three three three"
      "four four five five five five"
      "four four five five five five";
    height: auto;
    min-height: 0;
    gap: 7px;
    padding: 0 1rem 0.25rem;
    margin: 0;
    align-items: stretch;
    overflow: visible;
  }

  .page-home .photo-strip__item {
    height: auto;
    min-height: 0;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(26, 34, 51, 0.09);
  }

  .page-home .photo-strip__item:nth-child(1) {
    grid-area: one;
    min-height: 210px;
    height: auto;
  }

  .page-home .photo-strip__item:nth-child(2) {
    grid-area: two;
    min-height: 100px;
    height: auto;
    transform: rotate(1.25deg);
  }

  .page-home .photo-strip__item:nth-child(3) {
    grid-area: three;
    min-height: 100px;
    height: auto;
    transform: rotate(-0.75deg);
  }

  .page-home .photo-strip__item:nth-child(4) {
    grid-area: four;
    min-height: 118px;
    height: auto;
    transform: rotate(-1deg);
  }

  .page-home .photo-strip__item:nth-child(5) {
    grid-area: five;
    min-height: 118px;
    height: auto;
    transform: rotate(0.85deg);
  }

  .page-home .photo-strip__item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    border-radius: 3px;
  }

  .page-home .photo-strip__item:nth-child(1) img {
    object-position: center 18%;
  }

  .page-home .photo-strip__item:nth-child(2) img {
    object-position: center 22%;
  }

  .page-home .photo-strip__item:nth-child(3) img {
    object-position: center center;
  }

  .page-home .photo-strip__item:nth-child(4) img {
    object-position: center 28%;
  }

  .page-home .photo-strip__item:nth-child(5) img {
    object-position: center 12%;
  }

  .page-home .services-alternating .service-row {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .work-masonry {
    column-count: 3;
    column-gap: 22px;
  }

  .work-masonry__cell {
    margin-bottom: 22px;
  }
}

/* Neutralize legacy homepage overrides for redesigned sections */

/* === SERVICE & CONTACT PAGES === */

.pain-points--service {
  padding: 56px 0;
}

.pain-points--service .pain-points__inner {
  max-width: 42rem;
}

.service-detail-section {
  background: #ffffff;
  padding: 4rem 0 2rem;
}

.service-detail-section .services-alternating__header {
  padding-bottom: 2rem;
}

.service-benefits-section {
  background: var(--color-light);
  padding: 4rem 0;
}

.service-benefits-section .approach-grid {
  margin-top: 2.5rem;
}

.service-benefits-section .approach-tile__icon {
  color: rgba(255, 255, 255, 0.92);
  display: block;
  line-height: 1;
}

.events-cover-section {
  background: #ffffff;
  padding-bottom: 1rem;
}

.events-cover-section .services-alternating__header {
  padding-top: 2rem;
}

.service-faq-section {
  background: var(--color-light);
  padding: 4.5rem 0 5rem;
}

.service-faq-section .section-heading {
  margin-bottom: 0.25rem;
}

.atl-faq {
  max-width: 44rem;
  margin: 2.75rem auto 0;
}

.atl-faq__item {
  border-bottom: 1px solid rgba(26, 34, 51, 0.1);
}

.atl-faq__item:first-child {
  border-top: 1px solid rgba(26, 34, 51, 0.1);
}

.atl-faq__header {
  margin: 0;
}

.atl-faq__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.35rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.atl-faq__button:hover,
.atl-faq__button:focus-visible {
  color: var(--atl-accent);
  outline: none;
}

.atl-faq__button:not(.collapsed) {
  color: var(--atl-navy);
}

.atl-faq__question {
  font-family: var(--font-editorial);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.35;
  color: inherit;
  flex: 1;
}

.atl-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.atl-faq__icon::before,
.atl-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--atl-navy);
  transition: transform 0.3s ease, background 0.25s ease;
}

.atl-faq__icon::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.atl-faq__icon::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.atl-faq__button:not(.collapsed) .atl-faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.atl-faq__button:not(.collapsed) .atl-faq__icon::before,
.atl-faq__button:not(.collapsed) .atl-faq__icon::after {
  background: var(--atl-accent);
}

.atl-faq__body {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--atl-body);
  padding: 0 0 1.5rem;
  max-width: 38rem;
}

.service-faq-section .accordion-item {
  border: 0.5px solid var(--atl-border, #e2e6ed);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.service-faq-section .accordion-button {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--atl-navy);
  background: #ffffff;
  box-shadow: none;
  padding: 1.1rem 1.25rem;
}

.service-faq-section .accordion-button:not(.collapsed) {
  color: var(--color-accent);
  background: #f8f9fc;
}

.service-faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.service-faq-section .accordion-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-secondary);
  padding: 0 1.25rem 1.25rem;
}

.work-masonry--compact {
  column-count: 2;
}

@media (min-width: 768px) {
  .work-masonry--compact {
    column-count: 3;
  }
}

.contact-steps-section {
  background: #ffffff;
  padding: 4rem 0;
}

.contact-form-section {
  background: var(--color-light);
  padding: 4rem 0;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  border: 0.5px solid var(--atl-border, #e2e6ed);
  border-radius: 2px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card .form-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 0.5px solid #d8dee8;
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-primary);
  background: #ffffff;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.12);
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: #ffffff;
  border: 0.5px solid var(--atl-border, #e2e6ed);
  border-radius: 2px;
  padding: 1.35rem 1.5rem;
}

.contact-info-card h3 {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.contact-info-card p,
.contact-info-card a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
}

.contact-info-card a {
  color: var(--color-accent);
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--color-primary);
}

.contact-faq-section {
  background: #ffffff;
  padding: 4rem 0 5rem;
}

@media (max-width: 991.98px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Inner page banner hero */
.page-banner {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 46vh, 500px);
  overflow: hidden;
  background: #1a2233;
}

.page-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-banner .hero-text--overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 100%;
}

.page-banner .hero-text__inner {
  max-width: 40rem;
}

.page-banner .hero-text__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .page-home .page-home-nav + .hero-carousel {
    padding-top: clamp(1.5rem, 3vh, 2.75rem);
  }

  .page-banner .hero-text__heading {
    font-size: clamp(1.75rem, 2.1vw, 2.5rem);
  }

  .page-banner .hero-text__sub {
    font-size: clamp(0.875rem, 0.95vw, 1rem);
  }
}

@media (max-width: 767.98px) {
  .page-banner {
    min-height: clamp(300px, 58vh, 420px);
  }

  .page-banner .hero-text__heading {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
  }
}

/* === HOMEPAGE HERO ? banner + compact triptych test layout === */

.page-home .hero-carousel--banner-test {
  --hero-height: auto;
  height: auto;
  max-height: none;
  min-height: 0;
  gap: 0;
}

.page-home .hero-carousel--banner-test .page-banner--home {
  flex-shrink: 0;
  min-height: clamp(400px, calc(48vh + 60px), 580px);
}

.page-home .hero-carousel--banner-test .page-banner--home .hero-text__inner {
  max-width: 48rem;
}

.page-home .hero-carousel--banner-test .page-banner--home .hero-text__heading,
.page-home .hero-carousel--banner-test .page-banner--home .hero-text--overlay h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.12;
}

.page-home .hero-carousel--banner-test .atl-carousel--compact {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 32px clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.hero-filmstrip__label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a9ab0;
  margin: 0 0 14px;
}

.page-home .hero-carousel--banner-test .atl-stage {
  --atl-compact-slide-h: min(24vh, 200px);
  --atl-refl-side-h: clamp(1.5rem, 4vh, 2.75rem);
  max-width: 980px;
  margin: 0 auto;
  align-items: flex-end;
  gap: 9px;
}

.page-home .hero-carousel--banner-test .atl-column,
.page-home .hero-carousel--banner-test .atl-column--center {
  flex: 1 1 0;
}

.page-home .hero-carousel--banner-test .atl-column:not(.atl-column--center)::before,
.page-home .hero-carousel--banner-test .atl-column:not(.atl-column--center)::after {
  display: none;
}

.page-home .hero-carousel--banner-test .atl-slide.atl-side,
.page-home .hero-carousel--banner-test .atl-slide.atl-center {
  width: 100%;
  height: auto;
  max-height: var(--atl-compact-slide-h);
  aspect-ratio: 240 / 178;
  min-height: 0;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 6px 24px rgba(30, 58, 95, 0.12);
}

.page-home .hero-carousel--banner-test .atl-refl.atl-refl-side,
.page-home .hero-carousel--banner-test .atl-refl.atl-refl-center {
  height: var(--atl-refl-side-h);
  min-height: var(--atl-refl-side-h);
  max-height: var(--atl-refl-side-h);
  opacity: 0.42;
}

.page-home .hero-carousel--banner-test .atl-dots {
  display: none;
}

@media (min-width: 992px) and (max-width: 1599.98px) {
  .page-home .hero-carousel--banner-test {
    padding-bottom: 0;
  }

  .page-home .page-home-nav + .hero-carousel--banner-test {
    padding-top: 0;
    gap: 0;
  }

  .page-home .hero-carousel--banner-test .page-banner--home {
    min-height: clamp(360px, calc(42vh + 60px), 520px);
  }

  .page-home .hero-carousel--banner-test .page-banner--home .hero-text__heading,
  .page-home .hero-carousel--banner-test .page-banner--home .hero-text--overlay h1 {
    font-size: clamp(2.125rem, 2.85vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 1rem;
  }

  .page-home .hero-carousel--banner-test .atl-stage {
    --atl-compact-slide-h: min(22vh, 180px);
    --atl-refl-side-h: clamp(1.25rem, 3.5vh, 2.25rem);
  }
}

@media (max-width: 767.98px) {
  .page-home .hero-carousel--banner-test .page-banner--home {
    min-height: clamp(360px, calc(52vh + 60px), 460px);
  }

  .page-home .hero-carousel--banner-test .page-banner--home .hero-text__heading,
  .page-home .hero-carousel--banner-test .page-banner--home .hero-text--overlay h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.14;
  }

  .page-home .hero-carousel--banner-test .atl-carousel--compact {
    padding: 32px 0.625rem;
  }

  .page-home .hero-carousel--banner-test .atl-stage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 9px;
    padding: 0;
    --atl-compact-slide-h: none;
  }

  .page-home .hero-carousel--banner-test .atl-column,
  .page-home .hero-carousel--banner-test .atl-column--center {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    order: 0;
  }

  .page-home .hero-carousel--banner-test .atl-refl {
    display: none;
  }

  .page-home .hero-carousel--banner-test .atl-slide.atl-side,
  .page-home .hero-carousel--banner-test .atl-slide.atl-center {
    aspect-ratio: 4 / 5;
    max-height: min(28vw, 150px);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
  }
}

/* Loom canvas overrides ? keep these at the bottom (editor preview only). */
body.loom-canvas-body [data-animate],
.loom-canvas-body [data-animate] {
	opacity: 1 !important;
	transform: none !important;
}

body.loom-canvas-body [data-photo-reveal],
.loom-canvas-body [data-photo-reveal] {
	opacity: 1 !important;
	transform: none !important;
}
